@font-face {
	font-family: "TT Fors Trial";
	src: url(../assets/fonts/TTForsTrial-Regular.woff2);
	src: url(../assets/fonts/TTForsTrial-Regular.woff2) format("woff2"),
		url(../assets/fonts/TTForsTrial-Regular.woff) format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "TT Fors Trial";
	src: url(../assets/fonts/TTForsTrial-Medium.woff2);
	src: url(../assets/fonts/TTForsTrial-Medium.woff2) format("woff2"),
		url(../assets/fonts/TTForsTrial-Medium.woff) format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "TT Fors Trial";
	src: url(../assets/fonts/TTForsTrial-DemiBold.woff2);
	src: url(../assets/fonts/TTForsTrial-DemiBold.woff2) format("woff2"),
		url(../assets/fonts/TTForsTrial-DemiBold.woff) format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "TT Fors Trial";
	src: url(../assets/fonts/TTForsTrial-Bold.woff2);
	src: url(../assets/fonts/TTForsTrial-Bold.woff2) format("woff2"),
		url(../assets/fonts/TTForsTrial-Bold.woff) format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

html {
	overflow-x: hidden;
}

html.locked {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.5;
	-webkit-transition: all .4s ease;
	transition: all .4s ease
}

:-moz-placeholder {
	color: inherit;
	opacity: 0.5;
	-webkit-transition: all .4s ease;
	transition: all .4s ease
}

::-moz-placeholder {
	color: inherit;
	opacity: 0.5;
	-webkit-transition: all .4s ease;
	transition: all .4s ease
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 0.5;
	-webkit-transition: all .4s ease;
	transition: all .4s ease
}

:focus::-webkit-input-placeholder {
	opacity: 0
}

:focus:-moz-placeholder {
	opacity: 0
}

:focus::-moz-placeholder {
	opacity: 0
}

:focus:-ms-input-placeholder {
	opacity: 0
}

blockquote,
body,
code,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
p,
pre,
td,
textarea,
th,
ul {
	margin: 0;
	padding: 0
}

textarea {
	resize: none
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

abbr,
fieldset,
img {
	border: 0
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: 400
}

ul li {
	list-style: none;
	color: inherit
}

caption,
th {
	text-align: left
}

input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
	display: block
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

footer,
header,
section {
	min-width: 320px;
}

.scrollTop,
.scrollto,
a,
button,
svg {
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

a,
a:active,
a:focus,
a:hover,
button,
button:active,
button:focus,
button:hover,
input,
input:active,
input:focus,
textarea,
textarea:active,
textarea:focus {
	text-decoration: none;
	outline: 0;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: transparent
}

section {
	position: relative;
}

a {
	color: inherit
}

:after,
:before,
a,
button,
div,
footer,
form,
header,
input,
li,
nav,
p,
section,
ul,
textarea {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

input:not([type=checkbox]):not([type=radio]),
select,
textarea {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important
}

input:invalid {
	-webkit-box-shadow: none;
	box-shadow: none
}

button {
	border: none
}

html {
	overflow-x: hidden
}

@-webkit-keyframes autofill {
	to {
		color: inherit;
		background: #fff;
	}
}

input:-webkit-autofill {
	-webkit-animation-name: autofill;
	-webkit-animation-fill-mode: both;
}

textarea.form-control {
	min-height: 140px;
	line-height: 1.2em;
	padding-top: 20px;
	padding-bottom: 20px;
}

.floating {
	-webkit-animation-name: floating;
	animation-name: floating;
	-webkit-animation-duration: 6s;
	animation-duration: 6s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.sphere-scale {
	-webkit-animation: sphere-scale 10s infinite linear alternate;
	animation: sphere-scale 10s infinite linear alternate;
}

.sphere-scale2 {
	-webkit-animation: sphere-scale2 8s infinite linear alternate;
	animation: sphere-scale2 8s infinite linear alternate;
}

.sphere-plus {
	-webkit-animation: sphere-plus 3s infinite linear alternate;
	animation: sphere-plus 3s infinite linear alternate;
}

@-webkit-keyframes floating {
	0% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}

	50% {
		-webkit-transform: translateY(3%);
		transform: translateY(3%);
	}

	100% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
}

@keyframes floating {
	0% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}

	50% {
		-webkit-transform: translateY(3%);
		transform: translateY(3%);
	}

	100% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
}

@-webkit-keyframes sphere-plus {

	100% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}
}


@keyframes sphere-plus {

	100% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}
}

@-webkit-keyframes sphere-rotate {
	100% {
		-webkit-transform: rotate3d(1, -1, 1, 60deg);
		transform: rotate3d(1, -1, 1, 60deg);
	}
}

@keyframes sphere-rotate {
	100% {
		-webkit-transform: rotate3d(1, -1, 1, 60deg);
		transform: rotate3d(1, -1, 1, 60deg);
	}
}


@-webkit-keyframes sphere-scale {

	100% {
		-webkit-transform: translate3d(50px, 50px, 50px);
		transform: translate3d(50px, 50px, 50px)
	}
}

@keyframes sphere-scale {

	100% {
		-webkit-transform: translate3d(50px, 50px, 50px);
		transform: translate3d(50px, 50px, 50px)
	}
}


@-webkit-keyframes sphere-scale2 {

	100% {
		-webkit-transform: translate3d(-50px, 100px, -70px);
		transform: translate3d(-50px, 100px, -70px)
	}
}

@keyframes sphere-scale2 {

	100% {
		-webkit-transform: translate3d(-50px, 100px, -70px);
		transform: translate3d(-50px, 100px, -70px)
	}
}

:root {
	--color-primary: #2E2E2E;
	--color-accent: #EA8E03;
	--color-secondary: #072FA0;
	--bg-gray-100: #F5F5F7;
	--bg-gray-200: #DCDCDE;
	--bg-gray-500: #A1A1A1;
	--border-radius: 16px;
	--gap: 24px;
	/*	--bg-secondary: #FFF8EE;*/
	/*	--box-shadow: 0 0px 10px 0 rgb(0 0 0 / 5%);*/
}

body {
	min-width: 320px;
	position: relative;
	margin: 0;
	padding: 0;
	color: var(--color-primary);
	font-family: "TT Fors Trial";
	font-size: 20px;
	font-style: normal;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: -0.01em;
	background: #ffffff;
	opacity: 1;
	border: 0;
}

a,
a:hover {
	text-decoration: none
}

.d-none {
	display: none;
}

[hidden] {
	display: none !important;
}

h1 {
	font-size: 72px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: -0.03em;
}

h2 {
	text-transform: uppercase;
	line-height: 1.4;
	font-size: 48px;
	color: var(--color-secondary);
	letter-spacing: -0.03em;
	font-weight: 500;
}

h3 {
	font-weight: 500;
	font-size: 26px;
	letter-spacing: 0;

}

p {
	font-weight: 400;
	letter-spacing: 0;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
}


main {
	/*	padding-top: 98px;*/
}

::-webkit-scrollbar,
::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 4px;
	height: 4px;
	border-radius: 4px;
	background-color: var(--bg-gray-100);
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background: var(--color-accent);
	-webkit-box-shadow: 0 0 1px var(--color-accent);
}

.fp-scroll-mac .fp-overflow::-webkit-scrollbar {
	width: 4px;
}

::-webkit-scrollbar,
::-webkit-scrollbar {
	border-radius: 4px;
}

.container {
	max-width: 100%;
	padding: 0 60px;
	width: 100%;
	position: relative;
	margin: 0 auto;
}

.button {
	border: none;
	outline: none;
	cursor: pointer;
	position: relative;
	border: none;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.2;
	text-align: center;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 24px 32px;
	border-radius: var(--border-radius);
	background: var(--color-secondary);
	color: #fff;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	position: relative;
	z-index: 2;
}

.button_accent {
	background: #EA8E03;
}

.button:focus,
.button:active {
	background: #052378
}

.button_accent:focus,
.button_accent:active {
	background: #FFAF36
}

.button:disabled {
	opacity: 0.5;
}

.button:hover {
	background: #062887
}

.button_accent:hover {
	background: #FF9B03
}

.button:active,
.button:focus,
input:active,
input:focus,
textarea:active,
textarea:focus {
	outline: none;
}

.pic-wrap {
	overflow: hidden;
	display: block;
}

.pic {
	-o-object-fit: cover;
	object-fit: cover;
	height: auto;
	min-height: 100%;
}

.flex-wrap {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.col-50 {
	width: calc(50% - var(--gap)/2);
}

.col-35 {
	width: calc(35% - var(--gap)/2);
}

.col-65 {
	width: calc(65% - var(--gap)/2);
}

section {
	scroll-margin-top: 98px;
	/*
	padding: 110px 0;
	
*/
}

.menu-icon {
	position: relative;
	width: 50px;
	height: 50px;
	z-index: 15;
	cursor: pointer;
	display: none;
	/*
	-webkit-box-shadow: 0 7px 5px 0 rgba(226, 230, 235, 0.25);
	box-shadow: 0 7px 5px 0 rgba(226, 230, 235, 0.25);
*/
}

.hamburger {
	height: 1px;
	width: 24px;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--color-secondary);
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	transform: translate(-50%, -50%) rotate(0deg);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.hamburger::before,
.hamburger::after {
	content: "";
	position: absolute;
	height: inherit;
	border-radius: inherit;
	background-color: inherit;
	width: 100%;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.hamburger::before {
	top: -7px;
	left: 0;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.hamburger::after {
	bottom: -8px;
	right: 0;
	-webkit-transform-origin: right;
	transform-origin: right;
}

.hamburger.open {
	-webkit-transform: translate(-50%, -50%) rotate(135deg);
	transform: translate(-50%, -50%) rotate(135deg);
}

.hamburger.open::before {
	top: 0;
	-webkit-transform: translateX(100%) rotate(-90deg);
	transform: translateX(100%) rotate(-90deg);
	width: 50%;
}

.hamburger.open::after {
	bottom: 0;
	-webkit-transform: translateX(-100%) rotate(-90deg);
	transform: translateX(-100%) rotate(-90deg);
	width: 50%;
}

.mobile-menu {
	background: #fff;
	position: fixed;
	padding: 60px 15px 30px 30px;
	z-index: 333;
	top: 64px;
	left: 0;
	width: 100%;
	height: calc(100% - 64px);
	visibility: hidden;
	opacity: 0;
	overflow-y: auto;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
}

.mobile-menu.active {
	visibility: visible;
	opacity: 1;
	width: 100%;
	max-width: 360px;
	-webkit-transition: opacity 1s cubic-bezier(.73, -0.44, .16, 1.56);
	transition: opacity 1s cubic-bezier(.73, -0.44, .16, 1.56);
	-webkit-filter: drop-shadow(15px 15px 20px rgba(131, 92, 72, 0.1));
	filter: drop-shadow(15px 15px 20px rgba(7, 47, 160, 0.15));
}

.mobile-menu .menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}

.mobile-menu .menu-item {
	text-align: left;
	font-weight: 500;
	line-height: 1.15em;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.mobile-menu .cta-buttons {
	gap: 16px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}


.arrows-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	width: 100%;
	padding: 0 24px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
}

.arrow {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
	z-index: 12;
	position: relative;
	background: var(--color-accent) url(../assets/images/chevron-arrow.svg) no-repeat center/5px 10px;
}

.arrow-next {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.arrow:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	background-color: #FF9B03;
}

.arrow-next:hover {
	-webkit-transform: scale(1.1) rotate(-180deg);
	transform: scale(1.1) rotate(-180deg);
	background-color: #FF9B03
}

.arrows-wrap_services .swiper-button-disabled,
.arrows-wrap_solutions .swiper-button-disabled {
	opacity: 0;
	-ms-touch-action: none;
	touch-action: none;
}

.cookies {
	gap: 10px;
}

.cookies {
	padding: 15px 0px;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 100%;
	max-width: 460px;
	margin: 0 auto;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0;
	background: inherit;
	-webkit-filter: drop-shadow(15px 15px 20px rgba(131, 92, 72, 0.1));
	filter: drop-shadow(15px 15px 20px rgba(131, 92, 72, 0.1));
	-webkit-transition: 0.3s;
	transition: 0.3s;
	z-index: 25;
	display: none;
	border-radius: var(--border-radius)
}

.cookies.show {
	display: block;
}

.cookies .container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px;
	padding: 0 15px
}

.cookies .button {
	padding: 16px 32px;
	border-radius: 8px;
}

html.modal-is-locked {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}

.popup {
	width: 100%;
	height: 100%;
	position: fixed;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	top: 0;
	left: 0;
	z-index: 20;
	display: none;
}

.popup.active {
	overflow-y: scroll;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 15;
	/*
	-webkit-animation: preloader 3s linear;
	animation: preloader 3s linear;
*/
	background: rgba(212, 237, 255, 0.45);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: flex-end;
	display: none;
	-webkit-animation: .4s linear forwards show;
	animation: .4s linear forwards show;
}

.popup .overlay {
	display: block;
}

.popup-modal {
	width: 100%;
	position: relative;
	padding: 60px;
	margin: 0 15px;
	background: #fff;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	z-index: 222;
	/*         	width: calc(100% - 2em);*/
	-webkit-filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.16));
	filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.16));
	border-radius: var(--border-radius);
	overflow: hidden;
}

.popup-modal_call {
	max-width: 1039px;
	padding: 60px;
}

.popup-modal_call h3 {
	margin-bottom: 30px;
	max-width: 617px;
	margin-left: auto;
}

.popup-modal_thanks {
	max-width: 776px;
	min-height: 247px;
}

.popup-modal_thanks h3 {
	margin-bottom: 15px;
	font-weight: 700;
	text-transform: uppercase;
}

.popup-modal .popup-close {
	position: absolute;
	z-index: 222;
	width: 24px;
	cursor: pointer;
	height: 24px;
	top: 40px;
	right: 40px;
	background: url(../assets/images/close-icon.svg) no-repeat center/contain;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.popup-modal .popup-close:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.popup-modal_services {
	max-width: 1200px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 40px 40px 16px;
	text-align: left;
}

.popup-modal_services .popup-content {
	width: 100%;
	position: relative;
}

.popup-modal_services .popup-content h3 {
	margin-bottom: 18px;
	color: var(--color-secondary);
}

.services-desc-steps {
	margin: 18px 0;
	height: 495px;
	overflow-y: scroll;
}

.services-desc-step {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: var(--gap);
}

.services-desc-step > span {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	line-height: 30px;
	font-weight: 400;
	font-size: 17px;
	letter-spacing: -0.03em;
	text-align: center;
	background: var(--bg-gray-500);
	color: #fff;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.services-desc-step:not(:last-of-type):after {
	content: "";
	position: absolute;
	height: calc(100% - 30px);
	width: 2px;
	left: 14px;
	top: 30px;
	background: var(--bg-gray-500);
}

.services-desc-step:last-of-type > span {
	background: none;
}

.services-desc-step:last-of-type:after {
	content: "";
	position: absolute;
	height: 30px;
	width: 30px;
	left: 0px;
	top: 0;
	background: url(../assets/images/check-icon.svg) no-repeat center center/contain;
	z-index: 2;
}

.services-desc-title {
	font-weight: 700;
	margin-top: 3px;
}

.services-desc-step ul {
	margin: 8px 0 13px;
	letter-spacing: 0;
	font-weight: 400
}

.services-desc-step li {
	list-style: disc;
	list-style-position: inside;
}

.popup-modal_services .services-desc-btns {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 8px;
}

.popup-modal_services .services-desc-btns div {
	font-weight: 400;
	letter-spacing: 0;
	font-size: 18px;
}

.disabled {
	opacity: 0.5;
	cursor: default;
	position: relative;
	pointer-events: none;
}

.disabled:hover {
	opacity: 1;
	/*	pointer-events: none;*/
}

.section-wrap {
	gap: var(--gap);
}

.section-desc {
	margin-top: 4px;
}

.header {
	display: block;
	width: 100%;
	z-index: 15;
	top: 0px;
}

.link {
	display: inline-block;
}

.menu-item,
.link {
	position: relative;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	color: var(--color-secondary);
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 0;
	font-weight: 400
}

.menu-item.active a {
	font-weight: 700;
}

.menu-item:after,
.link:after {
	content: "";
	height: 2px;
	width: 0;
	position: absolute;
	bottom: -4px;
	background: var(--color-secondary);
	display: block;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.menu-item:hover:after,
.link:hover:after {
	width: 100%;
}

.nav-bar {
	position: relative;
	z-index: 15;
	background: #fff;
	padding: 4px 0;
	width: 100%;
	position: fixed;
}

.nav-bar.scroll {
	-webkit-filter: drop-shadow(15px 15px 20px rgba(131, 92, 72, 0.1));
	filter: drop-shadow(15px 15px 20px rgba(131, 92, 72, 0.1));
}

.nav-bar .container {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.nav-bar.mobile {
	color: var(--color-secondary);
	background: transparent;
}

.logo {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.nav-bar .menu {
	gap: 10px 16px;
	margin-left: auto;
	margin-right: 27px;
}

.tel {
	color: var(--color-secondary);
}

.timetable {
	background: url(../assets/images/timetable-icon.svg) no-repeat left center/24px;
	padding-left: 25px;
	color: var(--text-primary)
}

.timetable:after {
	display: none;
}

.cta-buttons {
	gap: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.hero {
	padding: 170px 0 15px;
}

.hero-header {
	margin-bottom: 80px;
	gap: 30px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.hero-heading {
	max-width: 1000px;
}

.hero-heading span {
	letter-spacing: -0.03em;
}

.hero-heading img {
	display: inline-block;
	margin-left: 12px;
}

.hero-logo {
	text-transform: uppercase;
	text-align: right;
	letter-spacing: 0;
	font-size: 31px;
	line-height: 1;
}

.hero-logo span {
	font-weight: 700;
	font-size: 95px;
	display: block;
	color: var(--color-secondary);
	margin-bottom: 10px
}

.hero-bg {
	position: relative;
	border-radius: var(--border-radius);
	background: var(--color-secondary);
	color: #fff;
	overflow: hidden;
		position: relative;
		min-height: 534px;
}

.hero-block {
	padding: 88px 30px 88px 56px;
}

.hero-list {
max-width: 520px;	
}

.hero-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-transform: uppercase;
	font-size: 26px;
	letter-spacing: 0;
	margin-bottom: 32px;
}

.hero-map {
	width: 930px;
	height: 534px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
}

.hero-map-pic {
	position: absolute;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	
}

.hero-map-pic path {
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.hero-map-bg {
	bottom: 0;
	right: 0;
}

.hero-map-railway {
	top: -17.8%;
	right: 1.7%;
	width: 494px;
	height: 517px;
}

.hero-map-ring {
	top: -3.7%;
	width: 360px;
	height: 329px;
	right: 12%;
}

.hero-map-m2 {
	bottom: 8%;
	right: 33.3%;
	width: 41px;
	height: 276px;

}

.hero-map-m4 {
	bottom: -15.5%;
	right: 9%;
	width: 213px;
	height: 404px;
}

.hero-map-m4.hover path, .hero-map-m4:hover path, .hero-map-m2.hover path, .hero-map-m2:hover path, .hero-map-ring.hover path, .hero-map-ring:hover path, .hero-map-ring.hover path, .hero-map-ring:hover path,.hero-map-railway.hover path, .hero-map-railway:hover path {
	stroke: var(--color-accent);
	stroke-width: 4px;
}

.hero-map-tip {
	font-size: 18px;
	letter-spacing: 0;
	padding: 16px;
	max-width: 200px;
	font-weight: 400;
	position: absolute;
	left: 0;
	border-radius: var(--border-radius);
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	
	cursor: pointer;
}

.hero-map-tip:hover, .hero-map-tip.hover {
	background: #fff;
	color: var(--color-secondary);
}

.hero-map-tip span {
	font-weight: 700;
	font-size: 50px;
	line-height: 100%;
}

.hero-map-tip_m2 {
	left: 14.5%;
	bottom: 24%;
}

.hero-map-tip:after {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;

}

.hero-map-tip_m4:after {
	content: "";
	position: absolute;
	background-image: url(../assets/images/map/map-m4-line.svg);
	width: 224px;
	height: 149px;
	right: -202px;
	bottom: 36px;
}

.hero-map-tip_m2:after {
	content: "";
	position: absolute;
	background-image: url(../assets/images/map/map-m2-line.svg);
	width: 281px;
	height: 17px;
	left: 172px;
	top: 50px;
}

.hero-map-tip_ring:after {
	content: "";
	position: absolute;
	background-image: url(../assets/images/map/map-ring-line.svg);
	width: 291px;
	height: 26px;
	right: -269px;
	bottom: 44px;
}

.hero-map-tip_m4 {
	left: 28%;
	bottom: 2%;
}

.hero-map-tip_ring {
	left: 2%;
	top: 23%;
}


.hero-map-icon {
	position: absolute;
	width: 30px;
	height: 20px;
	background: var(--color-accent);
	color: #fff;
	border-radius: 4px;
	text-align: center;
	line-height: 20px;
	font-size: 10px;
	letter-spacing: 0;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	cursor: pointer;
}

.hero-map-icon:hover, .hero-map-icon.hover {
	-webkit-transform: scale(1.2);
	transform: scale(1.2)
}

.hero-map-icon_ring {
	right: 45.5%;
	bottom: 61.5%;
	width: 36px;
}

.hero-map-icon_m2 {
	right: 34%;
	bottom: 36%;
}

.hero-map-icon_m4 {
	right: 26%;
	bottom: 36%;
}

.hero-map-icon_railway {
	right: 3%;
	top: 37%;
	width: 88px;
	height: 28px;
	line-height: 12px;
	padding: 2px 0;
}

.hero-map-icon_logo {
	width: 158px;
	height: 42px;
	line-height: 42px;
	background: #fff;
	font-weight: 600;
	font-size: 21px;
	color: var(--color-secondary);
	bottom: 25%;
	right: 9%;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.hero-map-icon_logo:hover, .hero-map-icon_logo.hover {
	background: var(--color-accent);
	color: #fff;
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

.hero-map-icon_logo:before,
.hero-map-icon_logo:after {
	content: "";
	position: absolute;
	display: block;
	border-radius: 50%;
	background: #fff;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.hero-map-icon_logo:before {
	width: 22px;
	height: 22px;
	top: 10px;
	left: -34px;
}

.hero-map-icon_logo:after {
	width: 13px;
	height: 13px;
	border: 3px solid var(--color-secondary);
	top: 14.5px;
	left: -29.5px;
}


.hero-map-icon_logo:hover:before,.hero-map-icon_logo.hover:before  {
	background: var(--color-accent);
}

.hero-map-icon_logo:hover:after,.hero-map-icon_logo.hover:after {
	border-color: #fff;
	background: var(--color-accent);
}

.hero-button {
	margin-top: 24px;
	padding-top: 16px;
	padding-bottom: 16px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}


.benefits {
	padding: 65px 0;
}

.benefits-item {
	border-radius: var(--border-radius);
	padding: 38px;
	background: var(--bg-gray-100);
	position: relative;
	color: var(--color-secondary);
	height: 100%;
}

benefits-item img {
	max-width: 36px;
}

.benefits-title {
	margin: 12px 0;
}

.benefits-title span {
	font-size: 48px;
	letter-spacing: -0.03em;
}

.benefits-desc {
	text-transform: uppercase;
	letter-spacing: 0;
}

.services {
	background: var(--bg-gray-100);
	padding: 80px 0 116px;
}

.services-header {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.section-subheading {
	color: var(--bg-gray-500);
	letter-spacing: 0;
	text-transform: uppercase;
	padding-left: 40px;
	margin-bottom: 32px;
	position: relative;
	display: block;
}

.section-subheading:before,
.section-subheading:after {
	content: "";
	position: absolute;
	display: block;
	background: var(--color-secondary);
	border: 1px solid #fff;
	border-radius: 2px;
}

.section-subheading:before {
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
}

.section-subheading:after {
	left: 6px;
	top: 6px;
	width: 12px;
	height: 12px;
}

.services-header-block {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.services-header-block ul {
	margin-bottom: 12px;
}

.services-header-block ul li {
	list-style: disc;
	list-style-position: inside;
}

.services-list {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px;
	/*	grid-auto-rows: 1fr;*/
	width: 100%;
	margin-top: 64px;
}

.services-link_modal {
	grid-column: span 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
	gap: 32px;
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	position: relative;
	cursor: pointer;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	letter-spacing: -0.03em;
	font-size: 26px;
}

.services-link_modal:nth-child(7n+5),
.services-link_modal:nth-child(7n+6),
.services-link_modal:nth-child(7n+7) {
	grid-column: span 4;
}

.services-link_modal:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.services-item-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: var(--gap);
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.services-item-header span {
	font-size: 30px;
	font-weight: 400;
	color: var(--bg-gray-500);
}

.services-list .services-desc_modal {
	display: none;
}

.prices {
	background: var(--color-secondary);
	padding: 56px 0;
}

.prices-wrap {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.prices-subheading,
.prices-heading {
	color: #fff;
}

.prices-button {
	background: #fff;
	color: var(--color-secondary);
	margin-top: 32px;
}

.prices-button:hover {
	background: var(--bg-gray-100);
	color: var(--color-secondary);
}

.prices-button:focus,
.prices-button:active {
	background: var(--bg-gray-200);
	color: var(--color-secondary);
}

.prices-list {
	border-radius: var(--border-radius);
	padding: 32px;
	background: var(--bg-gray-100);
}

.prices-item {
	gap: var(--gap);
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 18px 0;
}

.prices-item:not(:last-of-type) {
	border-bottom: 1px dashed var(--bg-gray-500);
}

.prices-item div:nth-of-type(2) {
	color: var(--color-secondary);
}

.partnership {
	padding: 116px 0;
}

.partnership-button {
	margin-top: 32px;
}

.partnership-list {
	gap: 60px;
	margin-top: 27px;
}

.partnership-item {
	color: var(--color-secondary);
	text-align: center;
	width: calc(33.3% - 40px);
	letter-spacing: -0.03em;
}

.safety {
	padding: 128px 0;
	background: var(--bg-gray-100);
}

.safety-list {
	gap: 32px;
}

.safety-item {
	border-radius: var(--border-radius);
	background: #fff;
	padding: 20px;
	width: calc(50% - 16px);
	padding: 38px 24px;
	text-align: left;
}

.safety-icon {
	gap: var(--gap);
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.safety-icon span {
	font-size: 34px;
	font-weight: 400;
	letter-spacing: -0.03em;
	color: var(--bg-gray-500)
}

.safety-text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 8px;
	/*	text-align: right;*/
}

.safety-block {
	text-align: right;
}

.safety-button {
	margin-top: 32px;
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.contacts {
	padding: 32px 0;
}

.contacts-wrap {
	gap: 32px;
}

.contacts-form {
	border-radius: var(--border-radius);
	padding: 32px;
	background: var(--color-secondary);
	position: relative;
}

.contacts-heading {
	color: #fff;
	margin-bottom: 16px;
}

.contacts-inputs {
	gap: 16px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.contacts-inputs > .flex-wrap {
	gap: 16px;
}

.form-input {
	max-width: 100%;
	width: 100%;
	position: relative;
	display: inline-block;
}

.form-control {
	max-width: 100%;
	background: #FFFFFF;
	border: 1px solid #fff;
	height: 56px;
	border-radius: 8px;
	width: 100%;
	line-height: 34px;
	padding: 10px 16px;
	font-weight: 400;
	letter-spacing: 0;
	color: var(--color-primary);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.form-control.error {
	color: #D20A0A;
}

.form-input label.error {
	text-align: left;
	font-size: 12px;
	line-height: 24px;
	color: #D20A0A;
	padding-left: 30px;
	padding-right: 20px;
	height: 24px;
	display: block;
	position: absolute;
	width: auto;
	max-width: 100%;
	top: -12px;
	left: -12px;
}

.form-control.valid {
	color: var(--color-primary);
}

.form-control:focus,
.form-control:active {
	color: var(--color-primary);
}

.form-tip {
	margin-bottom: 16px;
	color: #fff;
	font-weight: 400;
}

.form-tip a {
	text-decoration: underline;
}

.form-tip a:hover {
	text-decoration: none;
}

.wpcf7-form .wpcf7-form-control-wrap input[type="file"] {
    display: none !important;
}

/* Стили для кастомной загрузки файлов */
.upload-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px dashed var(--bg-gray-500);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: var(--color-secondary);
    background: var(--bg-gray-100);
}

.plus-icon {
    width: 24px;
    height: 24px;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.plus-icon::before,
.plus-icon::after {
    content: '';
    position: absolute;
    background: var(--bg-gray-500);
    border-radius: 2px;
}

.plus-icon::before {
    width: 2px;
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.plus-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.upload-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary);
    opacity: 0.5
}

.file-list {
    margin-top: 16px;
    display: none;
}

.file-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 16px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #ffffff;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.file-item:not(:last-child) {
    margin-bottom: 8px;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.file-name {
    font-size: 14px;
    color: var(--color-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form-button {
	width: 100%;
	border: 1px solid #fff;
}

.contacts-links {
	margin: 32px 0;
	letter-spacing: 0em;
	text-transform: uppercase;
	gap: 32px;
}

.contacts-links > div {
	width: calc(50% - 16px);
}

.contacts-links a {
	font-size: 26px;
	margin-top: 8px;
	color: var(--color-secondary);
}

.map {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 372px;
	border-radius: var(--border-radius);
	margin-top: 8px;
}

.map ymaps {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.form-control.valid {
	position: relative;
}

.agree {
	position: relative;
	text-align: left
}

.agree label {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2em;
	cursor: pointer;
	position: relative;
	padding-left: 30px;
	display: block;
	max-width: 470px;
}

.agree label a:hover {
	color: var(--color-accent);
}

.agree input[type=checkbox] {
	position: absolute;
	width: 20px;
	height: 20px;
	z-index: 10;
	opacity: 0;
	cursor: pointer;
}

.agree input[type=checkbox] ~ .agree-label:before {
	content: "";
	position: absolute;
	border: 1px solid #E2E2E2;
	width: 20px;
	height: 20px;
	left: 0px;
	top: 0px
}

.agree input[type=checkbox] ~ .agree-label:after {
	width: 100%;
	height: 100%;
	background: var(--color-accent);
	-webkit-clip-path: polygon(45% 64%, 84% 14%, 100% 28%, 47% 100%, 0 49%, 15% 32%);
	clip-path: polygon(45% 64%, 84% 14%, 100% 28%, 47% 100%, 0 49%, 15% 32%);
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: transform .3s;
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
	position: absolute;
	width: 12px;
	height: 10px;
	display: block;
	content: "";
	left: 4px;
	top: 5px;
}

.agree input[type=checkbox]:checked ~ .agree-label:after {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.footer {
	margin-bottom: 32px;
}

.footer-block {
	background: var(--color-secondary);
	color: #fff;
	padding: 20px 72px 52px;
	letter-spacing: 0;
	font-weight: 400;
	border-radius: var(--border-radius);
}

.footer-block a {
	text-decoration: underline;
}

.footer-block a:hover {
	text-decoration: none;
}

.footer-wrap {
	margin-top: 24px;
}

.breadcrumbs {
	margin: 8px 0 64px;
	gap: 5px 10px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.breadcrumbs li {
	color: var(--color-primary);
	font-size: 18px;
	letter-spacing: 0;
	font-weight: 400;
}

.breadcrumbs li:not(:first-of-type) {
	padding-left: 10px;
}

.breadcrumbs li:not(:first-of-type):before {
	content: "/";
	position: relative;
	left: -10px;
	color: var(--bg-gray-500);
}

.breadcrumbs li > a {
	color: var(--bg-gray-500);
}

.breadcrumbs li > a:hover {
	color: var(--color-primary);
}

.innerpage {
	padding: 80px 0 116px;
}

.innerpage-desc {
	color: var(--bg-gray-500);
	margin-top: 32px;
}

.innerpage-logo {
	margin-top: 48px;
}

.innerpage-docs {
	margin-top: 72px;
}

.innerpage-docs > h3 {
	margin-bottom: var(--gap);
	text-transform: uppercase;
}

.innerpage-slider {
	position: relative;
}

.innerpage-slide {
	border-radius: var(--border-radius);
	position: relative;
	-webkit-transition: color 0.3s ease, height 7.8s ease-out;
	transition: color 0.3s ease, height 7.8s ease-out;
	cursor: pointer;
	background: var(--bg-gray-100);
	overflow: hidden;
}

.innerpage-docs .innerpage-slide:not(:last-of-type) {
	margin-bottom: var(--gap);
}

.innerpage-title {
	color: var(--color-secondary);
	padding: 10px 0px 10px 68px;
}

.innerpage-slide:after {
	content: "";
	background: url(../assets/images/cross-icon.svg) no-repeat center/contain;
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	left: 10px;
	top: 10px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.innerpage-docs .innerpage-slide:after {
	left: 53px;
	top: 23px;
}

.innerpage-docs .innerpage-title {
	padding-top: 24px;
	padding-left: 101px;
	padding-bottom: 24px;
	padding-right: 30px;
}

.innerpage-slide.active:after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.innerpage-slide .innerpage-heading {
	margin-bottom: 20px;
}

.innerpage-slide .innerpage-text {
	-webkit-transition: height 0.7s ease-out;
	transition: height 0.7s ease-out;
	height: 0;
	overflow: hidden;
	padding-left: 68px;
}

.innerpage-docs .innerpage-text {
	padding-left: 101px;
}

.innerpage-steps {
	margin-bottom: 65px;
}

.innerpage-step {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: var(--gap);
	padding: 24px 32px;
	border-radius: var(--border-radius);
	background: var(--bg-gray-100);
}

.innerpage-step:not(:last-of-type) {
	margin-bottom: 16px;
}

.innerpage-step .link {
	color: var(--color-secondary);
}

.innerpage-step .link:after {
	bottom: 0;
}

.innerpage-step > span {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--color-secondary);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.innerpage-step:not(:last-of-type):after {
	content: "";
	position: absolute;
	height: calc(100% + 16px);
	width: 2px;
	left: 55px;
	top: 64px;
	background: var(--color-secondary);
}

.innerpage-step:not(:first-of-type):before {
	content: "";
	position: absolute;
	height: 24px;
	width: 2px;
	left: 55px;
	top: 0px;
	background: var(--color-secondary);
}


.innerpage-step-title {
	margin-bottom: 16px;
	color: var(--color-secondary);
	margin-top: 9px;
}

.innerpage_drivers .innerpage-step-title {
	margin-bottom: 8px;
}

.innerpage_drivers .innerpage-docs {
	background: var(--bg-gray-100);
	padding: 72px 32px;
	margin-top: 0;
	border-radius: var(--border-radius)
}

.innerpage-step-desc {
	font-weight: 400;
	letter-spacing: 0;
}

.innerpage-step-desc:not(:last-child) {
	margin-bottom: 16px;
}

.innerpage-docs-list {
	gap: var(--gap);
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.innerpage-docs-item {
	border-radius: 8px;
	background: #fff;
	padding: 8px 16px;
	gap: 16px;
	font-size: 13px;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	max-width: 446px;
}

.innerpage-docs-item:hover {
	-webkit-box-shadow: 0px 4px 10px 0px #00000014;
	box-shadow: 0px 4px 10px 0px #00000014;
}


.innerpage-docs-item .flex-wrap {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 22px;
	letter-spacing: -0.03em;
	color: var(--bg-gray-500);
	margin-top: 4px;
/*	max-width: 120px;*/
}

.innerpage-docs-item img {
	max-width: 28px;
}

.innerpage-slide .innerpage-docs-list {
	margin-bottom: 16px;
}

.innerpage-docs .innerpage-docs-list {
	margin-bottom: var(--gap);
}

.innerpage_drivers .innerpage-docs-list {
	margin-bottom: 0;
}

.innerpage-slide .innerpage-text {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease, height 0.5s ease-out;
	transition: opacity 0.3s ease, height 0.5s ease-out;
}

.innerpage-slide.active .innerpage-text {
	opacity: 1;
}

.innerpage-text li {
	list-style: disc;
	margin-left: 24px;
	font-weight: 400;
	margin-bottom: 4px;
}

.services-item-header img {
	max-height: 100px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
      border-color: #fff!important;
    border-radius: var(--border-radius);
    padding: 16px;
	color: #fff;
	text-align: center;
	 margin: 0;
    margin-top: 16px;
}

.wpcf7-not-valid-tip {
    color: var(--bg-gray-200)!important;
    opacity: 0.8;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #fff!important;
    border-radius: var(--border-radius);
    padding: 16px;
    color: var(--color-secondary);
    text-align: center;
    border: 1px solid #fff;
    margin-top: 9px;
    font-size: 26px;
    background: #fff;
    margin: 0;
}

.wpcf7-spinner {
    margin: 0!important;
    position: absolute!important;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 30px;
}

@media screen and (min-width:1921px) {
	.container {
		max-width: 1780px;
		padding: 0 60px;
	}
	
	.hero-list {
max-width: 635px;	
}
}

@media screen and (min-width:2560px) {
	.container {
		max-width: 2000px;
		padding: 0 40px;
	}
	
		.hero-list {
max-width: 770px;	
}
}

@media screen and (max-width:1680px) {
	body {
		font-size: 18px;
	}

	.hero {
		padding-top: 140px;
	}

	.hero-header {
		margin-bottom: 60px;
	}

	.hero-heading {
		max-width: 750px;
	}

	.hero-item {
		font-size: 20px;

		margin-bottom: 24px;
	}

	h1 {
		font-size: 56px;
	}

	.hero-logo span {
		font-size: 85px;
	}

	h2 {
		font-size: 44px;
	}

	.button {
		font-size: 18px;
		padding: 17px 24px;
	}

	.services-link_modal {
		font-size: 20px;
	}
	
	.hero-list {
max-width: 440px;	
}
}

@media screen and (max-width:1480px) {
	.container {
		padding: 0 30px;
	}

	.arrows-wrap {
		padding: 0 5px;
	}

	.nav-bar .container,
	.cta-buttons {
		gap: 16px;
	}

	.nav-bar .menu {
		margin: 0;
	}

	.hero {
		padding-top: 120px;
	}

	.hero-header {
		margin-bottom: 50px;
	}

	.hero-block {
		padding: 60px 30px 60px 40px;
	}
	
	.hero-map {
		-webkit-transform: scale(0.9) translate(6%, 6%);
		transform: scale(0.9) translate(6%, 6%);
		overflow: visible;
	}

	.hero-list {
max-width: 340px;	
}
	
	.benefits {
		padding: 50px 0 65px;
	}

	.benefits-item {
		padding: 32px;
	}

	.services-list {
		margin-top: 48px;
	}

	.services {
		padding-bottom: 80px;
	}

	.partnership,
	.safety {
		padding: 96px 0;
	}

	h2 {
		font-size: 40px;
	}

	h3 {
		font-size: 24px;
	}

	.partnership-list {
		margin-top: 20px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}


	.section-subheading {
		line-height: 24px;
		margin-bottom: 24px;
	}

	.partnership-button,
	.prices-button {
		margin-top: 24px;
	}

	.footer-block {
		padding: 32px 32px 40px;
	}

}

@media screen and (max-width:1300px) {

	.nav-bar .menu {
		display: none;
	}

	.menu-icon {
		display: block;
	}

	.logo {
		margin-right: auto;
	}

	.services-link_modal {
		grid-column: span 4;
	}

	.services-header-block {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.services-item-header img {
		max-height: 80px;
	}

	.contacts-links {
		margin: 24px 0;
		gap: 24px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.contacts-links a {
		font-size: 24px;
	}

	.contacts-links div {
		width: 100%
	}

	.footer-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	h2 {
		font-size: 38px;
	}

	:root {
		--gap: 16px;
	}


	.prices-item {
		padding: 14px 0;
	}

	.partnership-list {
		gap: 50px;
	}

	.partnership-item {
		width: calc(33.3% - 33.3px);
	}

	.partnership,
	.safety {
		padding: 80px 0;
	}

	.contacts-inputs > .flex-wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.contacts {
		padding-top: 65px;
	}

	.innerpage-steps {
		margin-bottom: 40px;
	}

	.innerpage {
		padding-bottom: 40px;
	}
	
	.hero-map {
		-webkit-transform: scale(0.7) translate(22%, 22%);
		transform: scale(0.7) translate(22%, 22%);
	}
}


@media screen and (max-width:1000px) {

	.hero-header,
	.services-header-block {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.services-header-block {
		gap: 8px;
	}

	.hero-header {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 4px;
	}
	
	.hero-bg {
		min-height: 573px
	}

	.hero-block {
		padding: 32px 24px;
	}
	
	.hero-map {
	    -webkit-transform: scale(0.7) translate(21%, 31%);
	    transform: scale(0.7) translate(21%, 31%);
}

	.hero-item {
		font-size: 18px;
		gap: 16px;
		margin-bottom: 16px;
	}

	.hero-item img {
		max-width: 25px;
	}

	.services-link_modal {
		grid-column: span 6;
	}

	.services-item-header img {
		max-height: 60px;
	}


	.hero-button {
		margin-top: 16px;
	}

	.benefits {
		padding: 9px 0 24px;
	}

	.benefits-item {
		padding: 24px;
	}

	.services-header-block {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.services-link_modal:nth-child(7n+5),
	.services-link_modal:nth-child(7n+6) {
		grid-column: span 6;
	}

	.services-link_modal:nth-child(7n+7) {
		grid-column: span 12;
	}

	.services-link_modal {
		font-size: 18px;
	}

	.services-item-header span {
		font-size: 24px;
	}

	.services-link_modal {
		gap: 16px;
	}

	.prices-list {
		padding: 24px;
	}

	.benefits-title {
		margin: 8px 0;
	}

	/*
	.button {
		font-size: 16px;
		padding: 12px 16px;
	}
*/

	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 30px;
	}

	h3 {
		font-size: 22px;
	}

	.hero-logo {
		font-size: 23px;
		text-align: left;
	}

	.hero-logo span {
		font-size: 63px;
	}

	.hero-header {

		margin-bottom: 32px;
	}

	.hero {
		padding-top: 100px;
	}

	section {
		scroll-margin-top: 65px;
	}

	.footer-block {
		padding: 24px;
	}

	.nav-bar .timetable {
		display: none;
	}

	.footer-wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.section-subheading {
		margin-bottom: 16px;
	}

	.services,
	.partnership,
	.safety {
		padding: 50px 0;
	}

	.safety-item {
		padding: 16px;
		width: calc(50% - 8px);
	}

	.contacts-links {
		margin: 16px 0;
		gap: 16px;
	}

	.contacts-form {
		padding: 24px;
	}

	.form-tip {
		margin-bottom: 8px;
	}

	.safety-list {
		gap: 16px;
	}

	.safety-icon span {
		font-size: 20px;
	}

	.safety-icon img {
		max-height: 56px;
	}

	.partnership-list {
		gap: 32px;
	}

	.section-wrap {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.contacts-wrap {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.partnership-item {
		width: calc(33.3% - 21px);
	}

	.contacts {
		padding-bottom: 24px;
	}

	.contacts-wrap {
		gap: 24px;
	}

	.innerpage-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 24px;
	}

	.innerpage-logo {
		margin-top: 24px;
		max-height: 90px;
	}

	.innerpage-step:not(:last-of-type):after,
	.innerpage-step:not(:first-of-type):before {
		left: 47px;
	}


	.col-35,
	.col-65 {
		width: 100%;
	}

	.breadcrumbs {
		margin-bottom: 48px;
	}

	.innerpage-step {
		padding: 24px;
	}

	.innerpage {
		padding-bottom: 30px;
	}

	.innerpage_drivers .innerpage-docs {
		padding: 32px 24px;
	}

	.innerpage-title,
	.innerpage-slide .innerpage-text {
		padding-left: 50px;
	}

	.innerpage-docs {
		margin-top: 24px;
	}

	.innerpage-docs .innerpage-title,
	.innerpage-docs .innerpage-text {
		padding-left: 70px;
	}

	.innerpage-docs .innerpage-slide:after {
		left: 24px;
	}
}

@media screen and (max-width:768px) {
	.footer-wrap {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.nav-bar .cta-buttons {
		display: none;
	}

	.contacts {
		padding-bottom: 24px;
	}

	.contacts-links {
		text-transform: none;
		gap: 8px;
		font-weight: 600;
		font-size: 18px;
	}

	.contacts-links a {
		font-size: 20px;
		font-weight: 600;
	}

	.footer {
		margin-bottom: 24px;
	}

	.section-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 24px;
	}

	.col-50 {
		width: 100%;
	}

	.container {
		padding: 0 16px;
	}

	.partnership-header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		gap: 16px;
	}

	.partnership-button {
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}

	.partnership-desc {
		margin-top: 16px;
	}

	.button {
		border-radius: 8px;
		padding: 14px 24px;
	}


	.innerpage {
		padding-bottom: 15px;
	}

	.innerpage-steps {
		margin-bottom: 24px;
	}

}

@media screen and (max-width:767px) {
/*
	.hero-bg {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
*/
	
	.hero-map {
    -webkit-transform: scale(0.6) translate(33%, 46%);
    transform: scale(0.6) translate(33%, 46%);
}
	
	
	.wpcf7 form.sent .wpcf7-response-output {
		font-size: 22px;
	}
}

@media screen and (max-width: 600px) {
	body {
		font-size: 16px;
	}

	section {
		scroll-margin-top: 70px;
	}

	.button,
	.cookies .button {
		font-size: 16px;
		gap: 8px;
	}

	.mobile-menu {
		top: 58px;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		/*		height: calc(100% - 58px);*/
	}

	.mobile-menu.active {
		max-width: 100%;
		padding: 40px 15px 30px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		overflow: inherit;
	}

	.mobile-menu .menu {
		gap: 24px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-transform: uppercase;
		font-size: 18px;
	}

	.mobile-menu:before {
		content: "";
		width: 100%;
		height: 100vh;
		background: rgba(255, 255, 255, 0.5);
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		z-index: -1;
	}

	.section-wrap {
		gap: 24px;
	}

	.hero-heading {
		display: none;
	}

	.partnership-button,
	.prices-button {
		margin-top: 16px;
	}

	.services-list {
		margin-top: 32px;
	}

	.prices-list {
		padding: 16px;
	}

	.prices-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8px;
		padding: 8px 0;
	}
	
	.hero-map {
    -webkit-transform: scale(0.4) translate(79%, 76%);
    transform: scale(0.4) translate(79%, 76%);
}
	
	.hero-bg {
		min-height: 534px;
	}
	
	.hero-map-tip_ring {
    left: 15%;
		top: 15%;
}
	
	.hero-map-tip_m2 {
    left: 24%;
    bottom: 28%;
}
	
	.hero-map-tip_m4 {
    left: 34%;
	}
	
	.hero-map-tip {
    font-size: 24px;
    max-width: 300px;
	}
	
	.hero-map-tip:after {
		display: none;
	}

	.cta-buttons {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}


	.benefits-title {
		margin: 4px 0;
	}

	.benefits-title span {
		font-size: 40px;
	}

	.partnership-header {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 0;
	}

	.services-item-header span {
		font-size: 20px;
	}

	.services-link_modal {
		letter-spacing: 0;
		font-weight: 600;
		padding: 24px 16px;
	}

	.services-link_modal:nth-child(7n+5),
	.services-link_modal:nth-child(7n+6) {
		grid-column: span 12;
	}

	.partnership-desc {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 24px;
		margin-top: 0;
	}

	.partnership-list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 0;
	}

	.partnership-desc picture {
		width: 85px;
	}

	.partnership-item {
		width: 100%;
		height: 85px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: left;
	}

	.safety-icon img {
		max-height: 44px;
	}

	.safety-button {
		margin-top: 24px;
	}

	.contacts {
		padding-top: 50px;
	}

	.form-control {
		height: 50px;
		padding: 7px 16px;
	}

	.map {
		height: 243px;
	}

	h1 {
		font-size: 24px;
		text-align: center;
	}

	.hero-header {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom: 24px;
	}

	.hero-logo span {
		font-size: 47px;
	}

	.hero-logo {
		font-size: 20px;
		text-align: center;
	}

	h2 {
		font-size: 24px;
	}


	h3 {
		font-size: 18px;
	}

	p {
		font-size: 16px;
	}


	/*
	.services-header-block ul li:not(:last-child) {
		margin-bottom: 8px;
	}
*/

	.services-wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px;
	}

	.services-list {
		margin-left: 0;
		max-width: 430px;
		gap: 15px;
	}

	/*
	.arrows-wrap {
		gap: 15px;
		margin-top: 15px;
	}

	.arrow {
		width: 42px;
		height: 42px;
		background-size: 18px 18px;
	}
*/

	.upload-area {
		padding: 7px 16px;
	}

	.upload-title {
		font-size: 16px;
	}

	.innerpage-slide {
		margin-bottom: 15px;
	}

	.contacts-block h3 {
		font-size: 22px;
	}

	.popup-modal {
		padding: 30px 20px;
		font-size: 16px;
	}

	.popup-modal .popup-close {
		top: 24px;
		right: 24px;
	}

	.popup-modal_services .popup-content h3 {
		margin-bottom: 8px;
		padding-right: 30px;
	}

	.popup-modal_services .services-desc-btns {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		gap: 8px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.popup-modal_thanks {
		min-height: 200px;
	}

	.services-desc-step {
		gap: 8px;
		padding-right: 10px;
	}

	.cookies {
		padding: 15px 0px;
		text-align: center;
		max-width: 360px;
	}

	.cookies .container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 16px;
	}

	.cookies .button {
		width: 100%
	}

	.services-link_modal {
		grid-column: span 12;
	}

	.breadcrumbs {
		margin-bottom: 32px;
	}

	.innerpage-desc {
		margin-top: 16px;
	}

	.innerpage-step {
		padding: 24px 16px;
	}

	.innerpage-docs-list {
		gap: 8px;
	}

	.innerpage-docs-item {
		width: 100%;
	}

	.innerpage-logo {
		display: none;
	}

	.innerpage-step > span {
		width: 40px;
		height: 40px;
	}

	.innerpage-step:not(:last-of-type):after,
	.innerpage-step:not(:first-of-type):before {
		left: 34px;
	}

	.innerpage-title,
	.innerpage-slide .innerpage-text {
		padding-left: 35px;
	}

	.innerpage-slide:after {
		left: 0;
	}

	.innerpage-docs .innerpage-title,
	.innerpage-docs .innerpage-text {
		padding-left: 52px;
		padding-right: 16px;
	}

	.innerpage-docs .innerpage-slide:after {
		left: 16px;
	}
	
	.wpcf7 form.sent .wpcf7-response-output {
		font-size: 20px;
	}
}
