/*!
Theme Name: BusExpress
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: busexpress
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

BusExpress is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--main-color: #FFC000;
	--mainHover-color: #FFB400;
	--heading-color: #1B1B1B;
	--text-color: #74787C;
}

body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Radio Canada', sans-serif;
	color: var(--text-color);
	line-height: 1.75;
}
body.post-type-archive-routes {
	background: #F5F5F5;
}
a, a:hover {
	color: var(--text-color);
	text-decoration: none;
	transition: .25s;
}
img {
	width: auto;
	height: inherit;
	max-width: 100%;
	max-height: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 25px;
}
h1 {
	font-size: 60px;
}
h2 {
	font-size: 48px;
}
h3 {
	font-size: 36px;
}
h4 {
	font-size: 28px;
}
h5 {
	font-size: 22px;
}
h6 {
	font-size: 18px;
}
p, ul, ol, blockquote, .wp-caption, .gallery {
	margin-bottom: 25px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child, .wp-caption:last-child, .gallery:last-child {
	margin-bottom: 0;
}
.form-field {
	position: relative;
	margin-bottom: 20px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"] {
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #D8D7D7;
	outline: none;
	padding: 13px 20px;
	font-size: 16px;
}
.wpcf7 form .wpcf7-response-output {
	position: relative;
	margin: 20px 0 0;
}


.btn {
	position: relative;
    --bs-btn-padding-x: 35px;
    --bs-btn-padding-y: 16px;
    --bs-btn-font-size: 16px;
    --bs-btn-font-weight: 500;
    --bs-btn-color: var(--heading-color);
    --bs-btn-border-width: 0px;
    --bs-btn-border-radius: 0;
    --bs-btn-box-shadow: none;
    --bs-btn-focus-box-shadow: none;
    text-transform: uppercase;
    transition: color .25s ease-in-out,background-color .25s ease-in-out,border-color .25s ease-in-out,box-shadow .25s ease-in-out;
    z-index: 1;
}
.btn:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transform: skewX(-12deg);
	z-index: -1;
}
.btn-primary {
    --bs-btn-color: var(--heading-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--heading-color);
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: var(--heading-color);
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: transparent;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--heading-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: transparent;
}
.btn-primary:before {
	background: var(--main-color);
}
.btn-primary:hover:before {
	background: var(--mainHover-color);
}



.soc-links {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.soc-links li {
	margin-right: 10px;
}
.soc-links li:last-child {
	margin-right: 0;
}
.soc-links li a {
	display: block;
	height: 20px;
}
.soc-links li img {
	max-width: 20px;
	vertical-align: inherit;
	transition: .25s;
}
.soc-links li a:hover img {
	opacity: .8;
}



.section {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 1;
}
.heading {
	position: relative;
	margin-bottom: 60px;
}
.heading h2 {
	text-transform: uppercase;
}
.heading h6 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 15px;
	color: var(--main-color);
	text-transform: uppercase;
}
.bg-grey {
	background: #f5f5f5;
}



.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: grid;
	grid-gap: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}
.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}
.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}


.wrapper {
	position: relative;
	top: 0;
	z-index: 1;
}
.topbar {
	position: relative;
	padding: 10px 0;
	background: var(--main-color);
	z-index: 90;
}
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.topbar-phone {
	color: var(--heading-color);
	margin-right: 30px;
}
.topbar-phone:last-child {
	margin-right: 0;
}
.topbar-phone-name {
	margin-right: 12px;
}
.topbar-phone-items {
	display: inline-block;
}
.topbar-phone-item {
	margin-right: 12px;
}
.topbar-phone-item:last-child {
	margin-right: 0;
}
.topbar-phone-item a {
	color: var(--heading-color);
}
.topbar-phone-item a:hover {
	color: var(--text-color);
}
.topbar-phone-item__type {
	margin-right: 5px;
}
.topbar-phone-item__type img {
	max-width: 20px;
}




.topbarMobile-inner {
	display: flex;
	justify-content: center;
	align-items: center;
}
.topbarMobile-phone {
	position: relative;
	margin-right: 10px;
}
.topbarMobile-phoneIcon {
	width: 21px;
	height: 21px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-radius: 50%;
	cursor: pointer;
	z-index: 1;
}
.topbarMobile-phoneIcon:before {
	content: '';
	background: url(images/phone.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 12px;
	max-width: 12px;
	height: 12px;
}
.topbarMobile-wrap {
	display: none;
	position: absolute;
	z-index: 2;
	background: #fff;
	width: 230px;
	margin: 0;
	padding: 15px;
	box-shadow: 0 0 4px rgba(0,0,0,.25);
	font-size: 14px;
	top: 100%;
	left: -60px;
}
.topbarMobile-phone.active .topbarMobile-wrap {
	display: block;
}






.header {
	position: sticky;
	background: var(--heading-color);
	box-shadow: 0 0 4px rgba(0,0,0,.25);
	padding: 15px 0;
	top: 0;
	z-index: 89;
}
.header:before {
	content: '';
	background: #ffffff;
	position: absolute;
	width: calc((100% - 1296px) / 2 + 320px);
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo {
	flex: 0 0 320px;
	max-width: 320px;
}
.header-logo img {
	max-width: 260px;
}
.main-menu {
	margin: 0;
	padding: 0 30px;
	list-style: none;
	display: flex;
	align-items: center;
}
.main-menu li {
	margin-right: 35px;
}
.main-menu li:last-child {
	margin-right: 0;
}
.main-menu li a {
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
}
.main-menu li a:hover {
	color: var(--main-color);
}





.mainBlock-section {
	position: relative;
	min-height: 860px;
	display: flex;
	z-index: 1;
}
.mainBlock-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.mainBlock-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.mainBlock-bg:after {
	content: '';
	background: url(images/hero_overlay.png) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.mainBlock-info {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
.mainBlock-content {
	position: relative;
	margin-bottom: 120px;
	font-size: 22px;
	color: #ffffff;
}
.mainBlock-advantages {
	position: absolute;
	left: 0;
	bottom: 80px;
	display: flex;
	align-items: center;
	padding: 20px 30px;
	z-index: 1;
}
.mainBlock-advantages:before {
	content: '';
	background: var(--heading-color);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transform: skewX(-12deg);
	z-index: -1;
}
.mainBlock-advantages p {
	position: relative;
	margin-bottom: 0;
	padding-left: 30px;
	margin-right: 35px;
	color: var(--main-color);
	text-transform: uppercase;
	font-weight: 500;
}
.mainBlock-advantages p:last-child {
	margin-right: 0;
}
.mainBlock-advantages p:before {
	content: '';
	width: 16px;
	height: 16px;
	background: var(--main-color);
	border: 4px solid #ffffff;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: calc(50% - 8px);
	z-index: 1;
}



.booking-section .heading {
	margin-bottom: 30px;
}
.booking-form {
	position: relative;
	padding: 50px 100px;
	background: #FFFFFF;
	box-shadow: 0px 4px 2px 4px rgba(108, 107, 107, 0.15);
}



.routes-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.routes-item {
	position: relative;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	background: #ffffff;
	padding: 60px 30px;
	text-align: center;
}
.routes-item:nth-child(2n) {
	background: var(--heading-color);
}
.routes-item__icon {
	position: relative;
	width: 136px;
	height: 136px;
	display: block;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.routes-item__icon:before {
	content: '';
	background: url(images/circle_mask-group.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.routes-item__icon img {
	max-height: 70px;
}
.routes-item h3 {
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 15px;
	transition: .25s;
}
.routes-item:nth-child(2n) h3 {
	color: #ffffff;
}
.routes-item:hover h3 {
	color: var(--main-color);
}



.cities-section .heading {
	margin-bottom: 30px;
}
.cities-items {
	position: relative;
	column-count: 2;
}
.cities-items p {
	display: flex;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.cities-items p:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	background: url(images/cities-item.svg) no-repeat center;
	background-size: contain;
	margin-right: 10px;
	margin-top: 1px;
}



.schedule-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.schedule-section .heading h2 {
	color: #ffffff;
}
.schedule-items {
	position: relative;
	margin-bottom: -45px;
}
.schedule-item {
	position: relative;
	margin-bottom: 45px;
}
.schedule-item:nth-child(1):before {
	content: '';
    background: url(images/process_line.png) no-repeat center;
    background-size: cover;
    width: 888px;
    height: 59px;
    position: absolute;
    left: 215px;
    top: 20px;
    z-index: -1;
}
.schedule-item:nth-child(5):before {
	content: '';
    background: url(images/process_line.png) no-repeat center;
    background-size: cover;
    width: 600px;
    height: 59px;
    position: absolute;
    left: 215px;
    top: 20px;
    z-index: -1;
}
.schedule-item__inner {
	position: relative;
	text-align: center;
}
.schedule-item__icon {
	position: relative;
	width: 136px;
	height: 136px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.schedule-item__icon:before {
	content: '';
	background: url(images/circle_mask-group-white.svg) no-repeat center;
	background-size: contain;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.schedule-item__icon img {
	max-height: 64px;
}
.schedule-item__icon span {
	font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border: 5px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.schedule-item h3 {
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 12px;
}





.about-section .heading {
	margin-bottom: 30px;
}
.about-images {
	position: relative;
}
.about-image-1 {
	max-width: 85%;
	margin-left: auto;
}
.about-image-2 {
	border: 8px solid #ffffff;
    position: absolute;
    top: calc(50% - 180px);
    left: 0;
    width: 360px;
    height: 360px;
    z-index: 1;
}
.about-image-2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.about-phone {
	position: absolute;
	background: var(--heading-color);
	padding: 18px 15px 15px 86px;
	bottom: 0;
	right: 80px;
	width: 335px;
	z-index: 2;
}
.about-phone-icon {
	position: absolute;
	width: 60px;
	height: 60px;
	left: 15px;
	top: calc(50% - 30px);
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.about-phone-icon:before {
	content: '';
	background: url(images/phone.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 18px;
	max-width: 18px;
	height: 18px;
}
.about-phone p {
	line-height: 1.5;
	margin-bottom: 0;
	color: #fff;
}
.about-phone p strong {
	font-size: 24px;
	font-weight: 600;
}
.about-phone p a {
	color: #fff;
}
.about-phone p a:hover {
	color: var(--main-color);
}
.about-additional {
	position: relative;
	margin-top: 30px;
}
.about-additional-label {
	font-weight: 600;
	color: var(--heading-color);
	text-transform: uppercase;
	margin-bottom: 10px;
}
.about-additional-value {
	font-size: 80px;
	line-height: 1;
	color: var(--main-color);
	letter-spacing: -4px;
	font-weight: 700;
}
.about-additional-content ul {
	padding: 0;
	list-style: none;
}
.about-additional-content ul li {
	position: relative;
	padding-left: 28px;
}
.about-additional-content ul li:before {
	content: '';
	background: url(images/check.svg) no-repeat center;
	background-size: contain;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 4px;
	left: 0;
	z-index: 1;
}



.parcel-items {
	position: relative;
	margin-bottom: -60px;
}
.parcel-item {
	position: relative;
	margin-bottom: 60px;
}
.parcel-item__inner {
	position: relative;
	padding-left: 75px;
	z-index: 1;
}
.parcel-item__icon {
	position: absolute;
	left: 0;
	top: -2px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.parcel-item__icon img {
	max-height: 60px;
}
.parcel-item__icon:after {
	content: '';
	width: 32px;
	height: 33px;
	background: var(--main-color);
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.parcel-item h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.parcel-item p a {
	font-weight: 500;
	color: var(--main-color);
	text-transform: uppercase;
}
.parcel-item p a:hover {
	color: var(--mainHover-color);
}




.footer {
	background: var(--heading-color);
}
.footer-widget {
	position: relative;
}
.footer-widget-title {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	padding-bottom: 5px;
	margin-bottom: 20px;
	z-index: 1;
}
.footer-widget-title:before {
	content: '';
	width: 62px;
	height: 2px;
	background: var(--main-color);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.footer-widget-title:after {
	content: '';
    border: 4px solid var(--heading-color);
    border-top: none;
    border-bottom: none;
    width: 20px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 36px;
    z-index: 2;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-menu li {
	margin-bottom: 5px;
}
.footer-menu li:last-child {
	margin-bottom: 0;
}
.footer-menu li a:hover {
	color: var(--main-color);
}


.footer-phone-name {
	color: var(--main-color);
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
}
.footer-phone-item {
	display: block;
	margin-bottom: 5px;
}
.footer-phone-item:last-child {
	margin-bottom: 0;
}
.footer-phone-item a {
	color: #ffffff;
	cursor: pointer;
}
.footer-phone-item a:hover {
	color: var(--main-color);
}
.footer-phone-item__type img {
	max-width: 20px;
}




.footer-bottom {
	position: relative;
	padding: 10px 0;
	background: var(--main-color);
	color: var(--heading-color);
	font-size: 14px;
	z-index: 1;
}
.footer-bottom a {
	color: var(--heading-color);
}
.footer-bottom a:hover {
	color: var(--text-color);
}




.page-header {
	position: relative;
	padding: 40px 0;
	background: url(images/page-header-bg.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
	text-align: center;
	z-index: 1;
}
.page-header:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(27, 27, 27, 0.5);
	z-index: -1;
}
.page-title {
	position: relative;
	color: #fff;
	font-size: 48px;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.page-title:after {
	content: '';
	width: 220px;
	height: 3px;
	background: var(--main-color);
	position: absolute;
	bottom: 0;
	left: calc(50% - 110px);
	z-index: 1;
}
.aioseo-breadcrumbs a {
	color: #ffffff;
}
.aioseo-breadcrumbs a:hover {
	color: var(--main-color);
}

.error-404-number {
	font-size: 220px;
	font-weight: bold;
	color: var(--main-color);
	text-align: center;
	line-height: 1;
}




.header-toggle {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 56px;
	max-width: 56px;
}
.header-toggle button {
	flex: 0 0 36px;
	max-width: 36px;
	height: 36px;
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #ffffff;
	border-radius: 0;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .25s;
}
.header-toggle button:hover {
	background-color: var(--main-color);
}


.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
  	transition: .25s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .25s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: #fff;
	border-radius: 4px 0 0 4px;
	height: 100%;
	width: 100%;
	max-width: 340px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 70px 20px 20px;
	transition: .25s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 20px;
	right: 20px;
	-webkit-mask-image: url(images/cancel.svg);
	mask-image: url(images/cancel.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--heading-color);
	width: 24px;
	height: 24px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .25s;
}
.modal-mobile-close:hover {
	background-color: var(--main-color);
}





.singleRoutes-iframeMap {
	position: relative;
}
.singleRoutes-iframeMap iframe {
	width: 100%;
	height: 460px;
}


.sidebar {
	position: relative;
	height: 100%;
	background: var(--heading-color);
	padding: 30px;
}
.sidebar-title {
	color: var(--main-color);
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	z-index: 1;
	padding-bottom: 5px;
	margin-bottom: 30px;
}
.sidebar-title:after {
	content: '';
	width: 74px;
	height: 2px;
	position: absolute;
	left: calc(50% - 37px);
	bottom: 0;
	background: var(--main-color);
	z-index: 1;
}
.sidebarRoutes-items {
	position: relative;
}
.sidebarRoutes-item {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.sidebarRoutes-item:last-child {
	margin-bottom: 0;
}
.sidebarRoutes-item__icon {
	position: relative;
	flex: 0 0 80px;
	max-width: 80px;
	height: 80px;
	margin-right: 20px;
	display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.sidebarRoutes-item__icon:before {
    content: '';
    background: url(images/circle_mask-group.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.sidebarRoutes-item__icon img {
	flex: 0 0 36px;
	max-width: 36px;
	height: 36px;
}
.sidebarRoutes-item h3 {
	position: relative;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	padding-bottom: 10px;
	line-height: 1.4;
}
.sidebarRoutes-item:hover h3 {
	color: var(--main-color);
}
.sidebarRoutes-item h3:after {
	content: '';
	width: 55px;
	height: 2px;
	background: var(--main-color);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}





.sidebarParcel-items {
	position: relative;
}
.sidebarParcel-item {
	position: relative;
	margin-bottom: 30px;
}
.sidebarParcel-item:last-child {
	margin-bottom: 0;
}
.sidebarParcel-item__inner {
	position: relative;
	padding-left: 75px;
	z-index: 1;
}
.sidebarParcel-item__icon {
	position: absolute;
	left: 0;
	top: -2px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.sidebarParcel-item__icon img {
	max-height: 60px;
}
.sidebarParcel-item__icon:after {
	content: '';
	width: 32px;
	height: 33px;
	background: var(--main-color);
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.sidebarParcel-item h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
	color: #fff;
}
.sidebarParcel-item p a {
	font-weight: 500;
	color: var(--main-color);
	text-transform: uppercase;
}
.sidebarParcel-item p a:hover {
	color: var(--mainHover-color);
}








@media (max-width:1399px) {
	h1 {
		font-size: 54px;
	}
	h2,
	.page-title {
		font-size: 42px;
	}
	h3 {
		font-size: 32px;
	}
	.header:before {
		width: calc((100% - 1116px) / 2 + 280px);
	}
	.header-logo {
	  	flex: 0 0 280px;
	  	max-width: 280px;
	}
	.main-menu li {
	  	margin-right: 25px;
	}
	.mainBlock-section {
		min-height: 720px;
	}
	.schedule-item:nth-child(1)::before,
	.schedule-item:nth-child(5)::before {
		left: 138px;
	}
}





@media (max-width: 1199px) {
	h1 {
		font-size: 44px;
	}
	h2,
	.page-title {
		font-size: 36px;
	}
	h3 {
		font-size: 32px;
	}
	h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, .wp-caption, .gallery {
		margin-bottom: 20px;
	}
	.btn {
		--bs-btn-padding-x: 20px;
	}
	.topbar-phone {
		margin-right: 10px;
	}
	.topbar-phone-item {
	  	margin-right: 10px;
	}
	.topbar-phone-item__type {
	  	margin-right: 0px;
	}
	.topbar-phone-item__type img,
	.footer-phone-item__type img {
		max-width: 16px;
	}
	.header::before {
	  	width: calc((100% - 936px) / 2 + 220px);
	}
	.header-logo {
	  	flex: 0 0 220px;
	  	max-width: 220px;
	}
	.header-logo img {
	  	max-width: 200px;
	}
	.main-menu {
		padding: 0 15px;
	}
	.main-menu li {
	  	margin-right: 15px;
	}
	.mainBlock-section {
		min-height: 640px;
	}
	.mainBlock-content {
		font-size: 18px;
	}
	.routes-item__icon,
	.schedule-item__icon {
		width: 110px;
		height: 110px;
		margin-bottom: 20px;
	}
	.routes-item__icon img,
	.schedule-item__icon img {
		max-height: 56px;
	}
	.routes-item h3,
	.schedule-item h3,
	.parcel-item h3 {
		font-size: 18px;
	}
	.schedule-item:nth-child(1)::before {
		width: 710px;
	}
	.schedule-item:nth-child(5)::before {
		width: 460px;
	}
	.about-additional-value {
		font-size: 56px;
	}
	.about-phone p strong {
		font-size: 20px;
	}
	.error-404-number {
  		font-size: 180px;
  	}
  	.page-header {
  		padding: 30px 0
  	}
}




@media (max-width: 991px) {
	.section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.heading {
		margin-bottom: 30px;
	}
	.topbar-phone {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.topbar-phone:last-child {
		margin-bottom: 0;
	}
	.topbar-phone-name {
		font-weight: 600;
		color: var(--main-color);
	}
	.topbar-phone-item {
		margin-right: 0;
		width: 100%;
		display: block;
	}
	.header::before {
	  	width: calc((100% - 696px) / 2 + 696px - 56px);
	}
	.main-menu {
		padding: 0;
		margin-bottom: 30px;
		display: block;
	}
	.main-menu li {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.main-menu li:last-child {
		margin-bottom: 0;
	}
	.main-menu li a {
		display: block;
		padding: 5px 0;
		color: var(--heading-color);
	}
	.mainBlock-section {
	 	min-height: 560px;
	 	padding-top: 40px;
	}
	.mainBlock-advantages {
		bottom: 40px;
	}
	.booking-form {
		padding: 40px;
	}
	.routes-item {
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
		padding: 40px 30px;
	}
	.routes-item:nth-child(2n) {
		background: #ffffff;
	}
	.routes-item:nth-child(2n) h3 {
		color: var(--heading-color);
	}
	.routes-item:nth-child(2),
	.routes-item:nth-child(3),
	.routes-item:nth-child(6),
	.routes-item:nth-child(7) {
		background: var(--heading-color);
	}
	.routes-item:nth-child(2) h3,
	.routes-item:nth-child(3) h3,
	.routes-item:nth-child(6) h3,
	.routes-item:nth-child(7) h3 {
		color: #ffffff;
	}
	.cities-image {
		margin-bottom: 30px;
	}
	.schedule-item:nth-child(1)::before,
	.schedule-item:nth-child(5)::before {
		display: none;
	}
	.about-images {
		margin-bottom: 30px;
	}
	.footer {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.footer-bottom {
		text-align: center;
	}
	.schedule-item__icon span {
		font-size: 16px;
		width: 40px;
		height: 40px;
		border: 3px solid #fff;
	}
}





@media (max-width: 767px) {
	body {
		font-size: 14px;
	}
	h1 {
		font-size: 36px;
	}
	h2,
	.page-title {
		font-size: 32px;
	}
	h3 {
		font-size: 28px;
	}
	h4 {
		font-size: 24px;
	}
	h5 {
		font-size: 20px;
	}
	input[type="text"], input[type="tel"], input[type="email"], input[type="date"] {
		font-size: 14px;
	}
	.btn {
		font-size: 14px;
	}
	.header::before {
		width: calc((100% - 516px) / 2 + 516px - 56px);
	}
	.mainBlock-content {
		margin-bottom: 50px;
		font-size: 16px;
	}
	.mainBlock-advantages {
		position: relative;
		bottom: 0px;
		padding: 10px 20px;
		flex-direction: column;
		max-width: 200px;
		align-items: flex-start;
	}
	.mainBlock-advantages p {
		margin-right: 0;
		margin-bottom: 4px;
	}
	.mainBlock-advantages p:last-child {
		margin-bottom: 0;
	}
	.about-phone-icon {
		width: 48px;
		height: 48px;
		top: calc(50% - 24px);
	}
	.about-phone {
		padding: 18px 15px 15px 80px;
		right: 40px;
		width: 270px;
	}
	.about-phone p strong {
		font-size: 18px;
	}
	.about-image-2 {
		border: 6px solid #ffffff;
		top: calc(50% - 120px);
		width: 240px;
		height: 240px;
	}
	.routes-item h3, .schedule-item h3, .parcel-item h3, .sidebarParcel-item h3 {
		font-size: 16px;
	}
}



@media (max-width: 575px) {
	h1 {
		font-size: 32px;
	}
	h2,
	.page-title {
		font-size: 28px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 21px;
	}
	h5 {
		font-size: 18px;
	}
	h6 {
		font-size: 16px;
	}
	.header {
		padding: 10px 0;
	}
	.header::before {
		width: calc(100% - 56px - 12px);
	}
	.routes-item {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 20px;
	}
	.routes-item:nth-child(2), .routes-item:nth-child(3), .routes-item:nth-child(6), .routes-item:nth-child(7) {
		background: #ffffff;
	}
	.routes-item:nth-child(2n) {
		background: var(--heading-color);
	}
	.routes-item:nth-child(2) h3, .routes-item:nth-child(3) h3, .routes-item:nth-child(6) h3, .routes-item:nth-child(7) h3 {
		color: var(--heading-color);
	}
	.routes-item:nth-child(2n) h3 {
		color: #ffffff;
	}
	.routes-item__icon, .schedule-item__icon {
		width: 80px;
		height: 80px;
		margin-bottom: 15px;
	}
	.routes-item__icon img, .schedule-item__icon img {
		max-height: 36px;
	}
	.routes-item h3, .schedule-item h3 {
		margin-bottom: 10px;
	}
	.schedule-items,
	.parcel-items {
		margin-bottom: -20px;
	}
	.schedule-item,
	.parcel-item {
		margin-bottom: 20px;
	}
	.sidebarParcel-item__inner {
		padding-left: 65px;
	}
	.parcel-item__icon,
	.sidebarParcel-item__icon {
		width: 48px;
		height: 48px;
	}
	.parcel-item__icon img,
	.sidebarParcel-item__icon img {
		max-height: 48px;
	}
	.parcel-item__icon::after,
	.sidebarParcel-item__icon::after {
		width: 20px;
		height: 20px;
	}
	.error-404-number {
		font-size: 120px;
	}


	.singleRoutes-iframeMap iframe {
		height: 380px;
	}
	.sidebarRoutes-item h3 {
		font-size: 16px;
	}
	.page-title {
		padding-bottom: 12px;
		margin-bottom: 12px;
	}
	.page-title:after {
		width: 150px;
		height: 2px;
		left: calc(50% - 75px);
	}
}