html {
	font-size: 16px;
}

body {
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	color: #1d1c1e;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: "liga", "kern";
	text-rendering: optimizelegibility;
	width: 100%;
	overflow-x: hidden;
}

main {
	position: relative;
	width: 100%;
	background-color: #fff;
}
/*------------------------------------
  General
------------------------------------*/
.h-70vh {
	min-height: 70vh;
}
.h-35vh {
	min-height: 35vh;
}
.fw-800 {
	font-weight: 800;
}
.fw-300 {
	font-weight: 300;
}
.img-bg, .fixed-bg .bg-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
.fixed-bg {
	position: relative;
	overflow: hidden;
}
@media(min-width: 992px){
	.fixed-bg .bg-img {
		position: fixed;
		z-index: -1;
	}
}
.fixed-bg.visible .bg-img {
	z-index: 0;
}
.h-100vh {
	min-height: 100vh;
}
.h-50vh {
	min-height: 50vh;
}
@media (max-width: 992px) {
	.h-100vh {
		min-height: 600px;
	}
	.h-50vh {
		min-height: 300px;
	}
}
.z-1 {
	position: relative;
	z-index: 1;
}
.py-6 {
	padding-top: 5rem!important;
	padding-bottom: 5rem!important;
}
.abs-top-right {
	position: absolute;
	top: 0;
	right: 0;
}
.abs-top-left {
	position: absolute;
	top: 0;
	left: 0;
}
@media (max-width: 1199px) {
	h1, .h1 {
		font-size: 2.25rem;
	}
	h2, .h2 {
		font-size: 1.75rem;
	}
	h3, .h3 {
		font-size: 1.25rem;
	}
}
@media (max-width: 991px) {
	html {
		font-size: 14px;
	}
	h1, .h1 {
		font-size: 2rem;
	}
	h2, .h2 {
		font-size: 1.5rem;
	}
	h3, .h3 {
		font-size: 1.25rem;
	}
}
@media (max-width: 767px) {
	h1, .h1 {
		font-size: 1.75rem;
	}
	h2, .h2 {
		font-size: 1.25rem;
	}
	h3, .h3 {
		font-size: 1rem;
	}
}
/*------------------------------------
  Colors
------------------------------------*/
.text-primary {
	color: #67ACBC!important;
}
.text-body {
	color: #1d1c1e!important;
}
.bg-primary-0_8 {
	background-color: rgba(103,172,188,.8);
}
.bg-primary {
	background-color: #67ACBC!important;
}
/*------------------------------------
  Buttons
------------------------------------*/
.btn-primary {
	border-radius: 0;
	border: 0;
	background-color: #67ACBC!important;
	transition: all .3s;
}
.btn-primary:hover {
	background-color: #4d8896!important;
}



/*------------------------------------
  Header
------------------------------------*/
.logo a {
	line-height: 1;
	padding: 2rem 0;
	transition: all .5s;
}
.navbar {
	padding: 1.5rem .5rem;
	transition: all .5s;
}
header {
	height: 104px;
	box-shadow: 0 2px 3px rgba(0,0,0,0.3);
	transition: all .5s;
}
header.scrolled {
	height: calc(104px - 2rem);
}
header.scrolled .logo a {
	padding: 1rem 0;
}
header.scrolled .navbar {
	padding: .5rem .5rem;
}
.logo a:hover {
	text-decoration: none;
}
nav a {
	font-size: .96rem;
	color: #67ACBC!important;
	font-weight: 700;
	text-transform: uppercase;
	padding: .5rem 1rem!important;
	transition: all .3s;
}
nav a:hover, nav .active a {
	color: #1d1c1e!important;
}
.navbar-toggler, .navbar-toggler:focus, .navbar-toggler:hover, .navbar-toggler:active {
	width: 36px;
	height: 36px;
	border: none;
	outline: none;
	position: relative;
	z-index: 101;
	transition: all .5s;
}
.navbar-toggler .toggler {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 4px;
	transform: translateY(-2px);
	background-color: #1d1c1e;
}
.navbar-toggler .toggler:before, .navbar-toggler .toggler:after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #1d1c1e;
	transition: all .5s;
}
.navbar-toggler .toggler:before {
	top: -12px;
} 
.navbar-toggler .toggler:after {
	bottom: -12px;
}
.navbar-toggler[aria-expanded="true"] .toggler:before {
	transform: rotate(-45deg);
	width: 50%;
	top: -5px;
	left: -3px;
}
.navbar-toggler[aria-expanded="true"] .toggler:after {
	transform: rotate(45deg);
	width: 50%;
	bottom: -5px;
	left: -3px;
}
@media (max-width: 991px) {
	.navbar-collapse {
		position: fixed;
	    top: 0;
	    left: 0;
	    bottom: 0;
	    background-color: #fff;
	    width: 90vw;
	    z-index: 100;
	    padding-top: 80px!important;
	    transform: translateX(-100%);
	    transition: all .5s;
	}
	.navbar-collapse .collapsing, .navbar-collapse.show {
		transform: translateX(0);
	}
}
/*------------------------------------
  Index
------------------------------------*/
.halfscreen-img {
	width: 100%;
	min-width: 50vw;
	height: 100%;
	float: right;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
@media (max-width: 1199px) {
	.halfscreen-img {
		min-width: 65vw;
	}
}
.adv-number {
	font-size: 7rem;
	line-height: 1;
	opacity: .15;
}
.socials a:hover {
	text-decoration: none;
	opacity: .8;
}
@media (max-width: 991px) {
	.map-wrap {
		padding: 0!important;
	}
}
#wrap {
	display: none;
    opacity: 0.8;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 16px;
    background-color: rgba(1, 1, 1, 0.725);
    z-index: 200;
    overflow: auto;
}
#window {
    width: 360px;
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    background: #fff;
    z-index: 250;   
    padding: 5px;
    border-radius: 8px;
	border: 2px solid #67acbc;
}
#window p {
    margin-top: 0px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}
#window input[type="text"] {
    padding: 6px 10px;
    width: 308px;
	font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #A9A9A9;
}
#window select {
    padding: 6px;
    width: 308px;
	font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #A9A9A9;
	height: 35px;
}
.close {
    margin-left: 308px;
    cursor: pointer;
}
.zakaz {
    width: 190px;
    height: 36px;
    background-color: #67ACBC;
    font-size: 15px;
    color: #FFF;
    border: 0;
    margin-top: 4px;
	margin-bottom: 15px;
}
/*.bus-info-item {
	padding-right: 4px;
}*/
.bus-card .bus-img-block {
	position: relative;
}
.bus-card .bus-info {
	position: absolute;
	background-color: rgba(29,28,30,.75);
	top: 0;
	left: 0;
	bottom: 0;
	color: #fff;
}
.bus-card .bus-info-icon {
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	display: flex;
	margin: 0 5px 0 8px;
}
.bus-card .bus-info-item p {
	padding: 3px;
	margin-bottom: 0;
	font-size: 14px;
	display: none;
	transition: 0.5s;
}
.bus-card .bus-info-item:hover {
	color: #67ACBC;
	cursor: default;
}