@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-Regular.ttf");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-Light.ttf");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-Medium.ttf");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-SemiBold.ttf");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-Bold.ttf");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-ExtraBold.ttf");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	box-sizing: border-box;
	vertical-align: baseline;
	background: none;
	font-family: "OpenSans";
}

html {
	font-family: "OpenSans";
	font-size: 0.95vw;
	line-height: 1.2;
	scroll-behavior: smooth;
}

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

body {
	overflow-x: hidden;
}

body.no_scroll {
	overflow: hidden;
}

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

a {
	text-decoration: none;
	transition: 0.3s ease all;
}

p {
	margin: 0 0 1rem;
}

p:last-child {
	margin-bottom: 0;
}

.container {
	padding: 0 13.75rem;
}

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

.section {
	background: #fff;
	padding: 6rem 0;
}

.section_title {
	font-size: 2.25rem;
	font-weight: 900;
	margin-bottom: 3.75rem;
}

@media screen and (max-width: 767px) {
	.section {
		padding: 36px 0;
		overflow: hidden;
	}

	.section_title {
		font-size: 1.25rem;
		margin-bottom: 20px;
	}
}

._black {
	background-color: #000;
}

/* .scrollTop {
	display: block;
	width: 3.75rem;
	height: 3.75rem;
	position: fixed;
	top: auto;
	bottom: 5.625rem;
	right: 13.6875rem;
	left: auto;
	cursor: pointer;
	z-index: 99999;
} */

.bg_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.btn {
	width: max-content;
}

.btn_gradient {
	cursor: pointer;
	text-decoration: none;
	position: relative;
	color: #fff;
	background: linear-gradient(90deg, #0052B3 0%, #7F0110 100%);
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 700;
	padding: 1.875rem 1.6875rem;
	box-shadow: -0.625rem .625rem 1.5625rem 0rem rgba(1, 50, 107, 0.8);
	border-radius: 1.25rem;
}

@media screen and (max-width: 767px) {
	.btn_gradient {
		width: 100%;
		font-size: 16px;
		padding: 1.5rem 2.375rem 1.5rem 2.375rem;
		text-align: center;
		box-shadow: -0.625rem .625rem 1.5625rem rgba(1, 50, 107, 0.8);
	}
}

.mob_only {
	display: none;
}

@media screen and (max-width: 767px) {
	.mob_hide {
		display: none !important;
	}

	.mob_only {
		display: block;
	}
}

.overlay {
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	transition: 0.3s ease all;
	visibility: hidden;
	opacity: 0;
	z-index: 8;
}

.overlay._active {
	visibility: visible;
	opacity: 1;
}

.overlay._active_popup {
	visibility: visible;
	opacity: 1;
	z-index: 98;
}

.popup {
	z-index: 99;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: 0.3s ease all;
	visibility: hidden;
	opacity: 0;
	width: 31.875rem;
	max-width: calc(100% - 32px);
	max-height: calc(100vh - 32px);
	overflow-y: auto;
}

.popup._open {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.popup_wrap {
	position: relative;
	background: #fff;
	padding: 3.75rem;
	border-radius: 1.25rem;
}

.popup_close {
	cursor: pointer;
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 3.125rem;
	height: 3.125rem;
	padding: .8438rem;
	transition: 0.3s ease all;
	transform: rotate(0deg);
}

.popup_close svg {
	width: 100%;
	height: auto;
	display: block;
}

@media screen and (min-width: 768px) {
	.popup_close:hover {
		transform: rotate(270deg);
	}
}

.popup_title {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.625rem;
	text-transform: uppercase;
}

.popup_text {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.1;
	color: #484848;
	margin-bottom: 1.625rem;
	text-transform: uppercase;
}

.popup .form .gfield {
	margin-bottom: 0.75rem;
}

.popup .form p {
	margin: 0;
}

.popup .wpcf7 form.invalid .wpcf7-response-output,
.popup .wpcf7-not-valid-tip,
.popup .wpcf7-spinner {
	display: none !important;
}

.popup .wpcf7 form .wpcf7-response-output {
	margin: 1 0 0;
	border: none;
	padding: 0;
}

@media screen and (max-width: 767px) {
	.popup_wrap {
		padding: 30px 16px;
	}

	.popup_close {
		width: 18px;
		height: 18px;
		top: 25px;
		right: 25px;
		padding: 0;
	}

	.popup_title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.popup_text {
		font-size: 16px;
		margin-bottom: 1.25rem;
	}

	.popup .form .gfield {
		margin-bottom: 12px;
	}
}

.gform_fields {
	list-style: none;
}

.gfield label {
	display: none;
}

input:not([type=submit]) {
	width: 100%;
	background: #E0E0E0;
	line-height: 1.5rem;
	font-size: 1rem;
	padding: 1.125rem 1.875rem;
	margin-bottom: .9375rem;
	border-radius: .625rem;
	border: 1px solid #E0E0E0;
}

input:not([type=submit]).wpcf7-not-valid {
	border: 1px solid red;
}

input:not([type=submit])::placeholder {
	color: #484848;
}

input[type=submit] {
	cursor: pointer;
	color: #fff;
	background: linear-gradient(90deg, #0052B3 0%, #7F0110 100%);
	font-size: 1.25rem;
	font-weight: 700;
	padding: 1.75rem 3.875rem;
	text-align: center;
	width: 100%;
	border-radius: 1.25rem;
	box-shadow: -10px 10px 25px 0px rgba(1, 50, 107, 0.8);
}

@media screen and (max-width: 767px) {
	input[type=submit] {
		font-size: 1rem;
		line-height: auto;
		margin-top: .625rem;
		padding: 1.875rem 2rem;
	}
}

.header {
	position: relative;
	z-index: 9;
	background: transparent;
	color: #fff;
	padding: 3.125rem 0 0;
	font-size: 1.25rem;
}

.header_wrap {
	display: flex;
	align-items: center;
	gap: 6rem;
}

.header_logo {
	width: 200px;
}

.header_logo img {
	width: 12.5rem;
}

.header_logo .logo_mob {
	display: none;
}

.header_left,
.header_right {
	width: calc(50% - 8.3rem);
	display: flex;
	align-items: center;
}

.header_left {
	gap: 2.25rem;
}

.header_right {
	gap: 3rem;
	justify-content: flex-end;
}

.header_right .btn {
	color: #fff;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25rem;
	background: linear-gradient(90deg, #0052B3 0%, #7F0110 100%);
	line-height: 1;
	padding: 1.4375rem 3.625rem;
	box-shadow: -16px 10px 25px 0px rgba(1, 50, 107, 0.8);
	border-radius: 1.25rem;
}

.header_lang {
	position: relative;
}

.header_lang_current {
	cursor: pointer;
	position: relative;
	color: #0067E1;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
}

.header_lang_list {
	color: #fff;
}

.header_lang_list_wrap {
	display: flex;
	gap: 1.125rem;
}

.header_lang_list a {
	display: block;
	color: #fff;
	font-size: 1rem;
	font-weight: 300;
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.header_lang:hover .header_lang_list {
		visibility: visible;
		opacity: 1;
	}
}

.header_menu {
	list-style: none;
	display: flex;
	gap: 5rem;
}

.header_menu li a {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}

.header_menu li a:hover {
	color: #0067E1;
}

.header .mob_phone,
.header .mob_popup,
.header .mob_menu_btn {
	display: none;
}

@media screen and (max-width: 767px) {
	.header {
		height: 100px;
		padding: 8px 0;
		z-index: 99999;
	}

	.header._black {
		background-color: #000 !important;
	}

	.header_wrap {
		display: flex;
		align-items: center;
		gap: 30px;
		justify-content: space-between;
	}

	.header_menu {
		display: none;
	}

	.header_right {
		width: auto;
		order: 1;
		display: flex;
		gap: 16px;
		order: 4;
	}

	.header_right .btn {
		display: none;
	}

	.header_phones {
		display: none;
	}

	.header_logo {
		width: 100px;
		order: 1;
	}

	.header_logo .logo_pc {
		display: none;
	}

	.header_logo .logo_mob {
		display: block;
		width: 80px;
	}

	.header .socials {
		display: flex;
		order: 2;
		gap: .625rem;
	}

	.header .socials svg {
		height: 30px;
	}

	.header .socials .mob_phone svg {
		width: 30px;
	}

	.header .mob_phone {
		display: block;
		order: 1;
	}

	.header .mob_popup {
		display: block;
		order: 2;
	}

	.header_left {
		width: auto;
		order: 4;
		display: flex;
		gap: 16px;
	}

	.header .mob_menu_btn {
		display: block;
		width: 20px;
		min-width: 20px;
		height: 16px;
		position: relative;
		transform: rotate(0deg);
		transition: 0.5s ease-in-out;
		cursor: pointer;
	}

	.header .mob_menu_btn span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background: #fff;
		opacity: 1;
		left: 0;
		transform: rotate(0deg);
		transition: 0.25s ease-in-out;
	}

	.header .mob_menu_btn span:nth-child(1) {
		top: 0px;
		transform-origin: left center;
	}

	.header .mob_menu_btn span:nth-child(2) {
		top: 6px;
		transform-origin: left center;
	}

	.header .mob_menu_btn span:nth-child(3) {
		top: 12px;
		transform-origin: left center;
	}

	.header .mob_menu_btn._open span:nth-child(1) {
		transform: rotate(45deg);
		top: 0px;
		left: 4px;
	}

	.header .mob_menu_btn._open span:nth-child(2) {
		width: 0%;
		opacity: 0;
	}

	.header .mob_menu_btn._open span:nth-child(3) {
		transform: rotate(-45deg);
		top: 14px;
		left: 4px;
	}

	.header_lang_list_wrap {
		gap: 5px;
	}

	.header_lang_current {
		padding-right: 0;
		font-size: 18px;
	}

	.header_lang_current::before {
		display: none;
	}

	.header_lang_list {
		left: unset;
		right: -20px;
	}

	.header_lang_list a {
		font-size: 18px;
	}

	.header_lang_list_wrap::after {
		top: -10px;
		left: unset;
		right: 22px;
	}

	.header_lang._open .header_lang_list {
		visibility: visible;
		opacity: 1;
	}
}

.mob_menu {
	display: none;
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	z-index: 9;
}

.mob_menu_wrap {
	background: #000;
	padding: 16px 20px 20px;
}

.mob_menu .menu {
	list-style: none;
}

.mob_menu .menu li {
	margin-bottom: 20px;
}

.mob_menu .menu li:last-child {
	margin-bottom: 0;
}

.mob_menu .menu li a {
	display: block;
	position: relative;
	color: #fff;
	font-weight: 500;
	font-size: 20px;
}

.mob_menu .socials {
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.mob_menu .btn.btn_small {
	display: block;
	text-align: center;
	font-size: 20px;
	padding: 16px;
}

.mob_menu .btn.btn_small::after {
	display: none;
}

.mob_menu .direction {
	border-bottom: 1px solid #D9D9D9;
	display: flex;
	gap: 24px;
	padding-bottom: 16px;
	margin-bottom: 16px;
}

.mob_menu .direction_item {
	width: calc(50% - 12px);
	text-align: center;
	color: #000;
	font-size: 16px;
	font-weight: 500;
}

.mob_menu .direction_item .img {
	height: 120px;
	margin-bottom: 16px;
}

.mob_menu .direction_item .img img {
	width: auto;
	height: auto;
	margin-inline: auto;
}

.mob_menu_white {
	top: 58px;
}

.mob_menu_white .mob_menu_wrap {
	background: #fff;
	color: #000;
}

.mob_menu_white .menu {
	border-color: #D9D9D9;
}

.mob_menu_white .menu li a {
	color: #000;
}

.mob_menu_white .phones {
	border-color: #D9D9D9;
}

.mob_menu_white .phones .phone {
	color: #000;
}

.footer {
	position: relative;
	background-color: #000;
}

.footer .logo img {
	max-width: 12.5rem;
}

.footer .scroll img {
	width: 3.75rem;
	height: 3.75rem;
	cursor: pointer;
}

.footer_bottom_wrap {
	color: #fff;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	padding: 5.625rem 0;
}

.footer a {
	color: #fff;
}

.footer .links {
	display: flex;
	align-items: center;
	gap: 3rem;
	line-height: 1.8;
}

.footer ul {
	list-style: none;
	display: flex;
	gap: 3rem;
}

@media screen and (max-width: 767px) {
	.footer_bottom_wrap {
		display: block;
		padding: 1.875rem 0;
	}

	.footer a {
		font-size: 14px;
	}

	.footer .links {
		margin-top: 1.875rem;
		margin-bottom: 1.25rem;
		font-size: 14px;
	}

	.footer .scroll {
		position: absolute;
		left: auto;
		right: 15px;
		top: 7.5rem;
		bottom: auto;
	}

	.footer .map {
		width: 100%;
		height: 240px;
	}

	.footer_contacts {
		width: 100%;
		padding: 24px 16px;
		display: block;
		font-size: 20px;
	}

	.footer_contacts .btn {
		margin-top: 16px;
		padding-left: 60px !important;
	}

	.footer_contacts_col:nth-child(2) {
		margin-top: 24px;
	}
}

.hero {
	position: relative;
	color: #fff;
	padding: 0 !important;
}

.hero .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
}

.hero .banner_wrap {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	gap: 10rem;
	padding: 2rem 0 5.625rem;
}

.hero .banner_text .btn {
	margin-top: 3.75rem;
}

/* .hero .banner_text {
	max-width: 32.3125rem;
} */

.hero .title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.hero .subtitle {
	font-size: 2.25rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.hero .text {
	font-size: 1.25rem;
	line-height: 1.7;
	font-weight: 700;
}

.hero .banner_auto {
	position: relative;
	width: 40rem;
	max-width: 100%;
}

.hero .banner_decor .img {
	position: absolute;
	bottom: -80px;
	width: 40.6875rem;
	max-width: unset;
	right: 0;
	z-index: -1;
}

.hero .banner_decor .img img {
	width: 100%;
	height: auto;
}

.hero .banner_auto_absolute .img {
	position: absolute;
	bottom: 0;
	width: 47.875rem;
	max-width: unset;
	right: 0;
	z-index: 99;
}

.hero .banner_auto_absolute .img img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 767px) {
	.hero {
		padding-bottom: 40px !important;
		overflow: hidden;
	}

	.hero .title {
		font-size: 32px;
		margin-bottom: 10px;
	}

	.hero .subtitle {
		font-size: 24px;
		margin-bottom: 10px;
	}

	.hero .text {
		font-size: 16px;
		max-width: 60%;
	}

	.hero .banner_text .btn {
		margin-top: 1.875rem;
	}

	.hero .banner_wrap {
		display: flex;
		gap: 0;
		padding: 35px 0 30px;
	}

	.hero .banner_wrap .banner_text {
		width: 100%;
	}

	.hero .banner_wrap .banner_decor {
		/* width: 40%; */
		position: absolute;
		bottom: 0;
		right: -50px;
	}

	.hero .banner_wrap .car_img {
		width: 240px !important;
		z-index: 9;
		position: relative;
	}

	.hero .banner_auto_absolute .img {
		width: 100%;
		position: relative;
		bottom: 0;
	}

	.hero .banner_decor .img {
		width: auto;
		position: relative;
		bottom: 0;
	}

	.hero .banner_decor .mob_absolute {
		right: 0;
		bottom: 0px;
		position: absolute;
		z-index: 1;
		filter: blur(5px);
		-webkit-filter: blur(5px);
	}
}

.section_steps .section_title {
	color: #fff;
	font-size: 2.25rem;
	font-weight: 900;
	line-height: 1.5;
	max-width: 52.3125rem;
}

.section_steps .steps_list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.875rem;
	justify-content: space-between;
}

.section_steps .item {
	position: relative;
	width: 18.125rem;
	min-height: 20rem;
	display: flex;
	align-items: flex-start;
	padding: 1rem .625rem 1rem 1.5625rem;
	color: #fff;
	background: linear-gradient(180deg, rgba(1, 67, 145, 0.8) 0%, rgba(127, 1, 16, 0.2) 100%);
	box-shadow: -0.625rem .625rem 1.5625rem 0rem rgba(0, 23, 51, 0.6);
	border-radius: 1.25rem;
}

.section_steps .item_count {
	display: block;
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 1.5625rem;
}

.section_steps .item_title {
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.section_steps .item_text {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.1;
	text-transform: uppercase;
}

@media screen and (max-width: 767px) {
	.section_steps {
		padding: 2.5rem 0;
	}

	.section_steps .section_title {
		font-size: 20px;
		margin-bottom: 20px;
		max-width: 80%;
	}

	.section_steps .steps_list {
		gap: 1.25rem;
	}

	.section_steps .item {
		width: 100%;
		padding: 20px 58px 20px 20px;
		min-height: auto
	}

	.section_steps .item_count {
		font-size: 32px;
		margin-bottom: 10px;
	}

	.section_steps .item_title {
		font-size: 18px;
	}

	.section_steps .item_text {
		font-size: 14px;
		line-height: 1.4;
	}
}

.cta_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 9.375rem;
}

.cta_wrap .section_title {
	color: #003068;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0;
}

.cta_wrap .left {
	width: 47.875rem;
	max-width: 100%;
}

.cta_wrap .right {
	width: max-content;
}

.cta_wrap .right .btn_gradient {
	padding-left: 2rem;
	padding-right: 2rem;
}

@media screen and (max-width: 767px) {
	.section_cta {
		padding: 40px 0;
	}

	.cta_wrap {
		display: block;
	}

	.cta_wrap .section_title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.cta_wrap .right {
		width: 100%;
	}

	.cta_wrap .right .btn_gradient {
		font-size: 16px;
	}
}

.section_advantages {
	position: relative;
}

.section_advantages .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.section_advantages .section_title {
	color: #fff;
}

.advantages_list {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	color: #fff;
}

.section_advantages .item {
	width: calc((100% - 4rem) / 3);
}

.section_advantages .item_title {
	background-color: #7F0110;
	color: #fff;
	font-weight: 900;
	padding: 2.125rem 4.75rem;
	text-align: center;
	text-transform: uppercase;
	border-radius: 1.25rem;
	box-shadow: -0.625rem .625rem 1.5625rem 0rem rgba(127, 1, 16, 0.6);
}

.section_advantages .item_text {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.7;
	padding: 1.875rem 1.5938rem 0 1.5938rem;
}

.section_advantages .content {
	position: relative;
	display: flex;
	gap: 3rem;
	width: 100%;
	padding-top: 3.125rem;
	padding-bottom: 3.125rem;
	margin-top: 9.0625rem;
	background: rgba(2, 54, 115, 0.8);
	box-shadow: -10px 10px 25px 0px rgba(1, 67, 145, 0.6);
}

.section_advantages .content .left {
	width: calc(50% - 1.5rem);
	position: relative;
}

.section_advantages .content .img {
	position: absolute;
	bottom: -3.125rem;
	width: 130%;
	max-width: unset;
	right: 0;
}

.section_advantages .content .img img {
	width: 100%;
	height: auto;
}

.section_advantages .content .text {
	width: 50%;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	margin-left: auto;
	text-transform: uppercase;
}

@media screen and (max-width: 767px) {
	.section_advantages {
		padding: 2.5rem 0;
	}

	.section_advantages .section_title {
		font-size: 20px;
	}

	.section_title {
		margin-bottom: 20px;
	}

	.advantages_list {
		display: block;
	}

	.section_advantages .item {
		width: 100%;
		margin-bottom: 1.25rem;
	}

	.section_advantages .item:last-child {
		margin-bottom: 0;
	}

	.section_advantages .item_title {
		font-size: 16px;
		padding: 1.5625rem 1.875rem;
	}

	.section_advantages .item_text {
		font-size: 14px;
		padding-top: 1.25rem;
		padding-left: 0;
		padding-right: 0;
	}

	.section_advantages .content {
		display: block;
		gap: 0;
		padding-top: 20px;
		padding-bottom: 20px;
		margin-top: 30px;
	}

	.section_advantages .content .left,
	.section_advantages .content .text {
		width: 100%;
	}

	.section_advantages .content .text {
		font-size: 16px;
		margin-top: 20px;
	}

	.section_advantages .content .img {
		width: 100%;
		position: relative;
		bottom: 0;
	}
}

.statistics_list {
	display: flex;
	/* flex-wrap: wrap;
	gap: 1.5rem; */
	align-items: center;
	color: #003068;
	justify-content: space-between;
}

.section_statistics .item {
	width: calc((100% - 6rem) / 5);
}

.section_statistics .item:first-child {
	width: 6rem;
	margin-right: 6.25rem;
}

.section_statistics .item:last-child {
	width: 8rem;
}

.section_statistics .first_item,
.section_statistics .last_item {
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 2.125rem;
	text-transform: uppercase;
}

.section_statistics .item_title {
	font-size: 3.125rem;
	font-weight: 700;
	line-height: 4.375rem;
	letter-spacing: 0.04em;
	margin: 0 0 1.5625rem;
}

.section_statistics .item_text {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5rem;
	min-height: 3.125rem;
}

@media screen and (max-width: 767px) {
	.section_statistics {
		display: block;
		margin-top: 0;
		padding: 2.5rem 0;
	}

	.section_statistics .section_title {
		font-size: 20px;
		color: #003068;
		text-transform: uppercase;
	}

	.section_statistics .item {
		width: 100%;
		margin-bottom: 1.25rem;
		display: flex;
		align-items: center;
		gap: 0;
	}

	.section_statistics .item:first-child {
		font-size: 20px;
		margin-right: 130px;
	}

	.section_statistics .item:nth-child(3),
	.section_statistics .item:last-child {
		margin-bottom: 0;
	}

	.section_statistics .item_title {
		font-size: 16px;
		line-height: 16px;
		margin: 0;
	}

	.section_statistics .item_text {
		font-size: 16px;
	}
}

.section_maps {
	display: flex;
	padding: 0 !important;
	overflow: hidden;
}

.section_maps .map {
	width: 50%;
	height: 38.6rem;
}

.section_maps .map iframe {
	width: 100%;
	height: 100%;
}

.maps_contacts {
	position: relative;
	width: 50%;
	padding: 5.625rem 6.5625rem;
	display: flex;
	gap: 3rem;
	font-size: 1.25rem;
	font-weight: 500;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.maps_contacts_col {
	z-index: 9;
}

.maps_contacts a {
	color: #fff;
}

.maps_contacts a:hover {
	color: #fff;
}

.maps_contacts .phone {
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: .9375rem;
	margin-bottom: 3.125rem;
	justify-content: center;
	letter-spacing: 0.08em;
}

.maps_contacts .phone:last-child {
	margin-bottom: 0;
}

.maps_contacts .phone_number img {
	width: 1.875rem;
}

.maps_contacts .phone_number img:not(:last-child) {
	margin-bottom: 4px;
}

.maps_contacts .btn {
	margin-bottom: 3.125rem;
}

.maps_contacts .address {
	color: #fff;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
}

.maps_contacts .mail {
	display: inline-block;
	font-size: 1rem;
	line-height: 1.5rem;
	border-bottom: 1px solid #E3E3E3;
}

.maps_contacts .gradient-line {
	display: block;
	width: 15.3125rem;
	height: .9375rem;
	border-radius: .625rem;
	background: linear-gradient(90deg, #0052B3 0%, #7F0110 100%);
	margin-top: .625rem;
}

.maps_contacts .socials {
	display: flex;
	align-items: center;
	gap: 2.6875rem;
	margin-bottom: 4.375rem;
	justify-content: center;
}

.maps_contacts .socials svg {
	width: 3.75rem;
	height: 3.75rem;
}

.maps_contacts .bottom_decor {
	position: absolute;
	width: 100%;
	height: 13.1875rem;
	left: 0;
	bottom: 0;
	background-color: rgba(127, 1, 16, 0.8);
	box-shadow: -5px 10px 25px 0px rgba(127, 1, 16, 0.6);
}

.maps_contacts .img_decor {
	position: absolute;
	height: 13.5rem;
	right: 0;
	bottom: .75rem;
}

@media screen and (max-width: 767px) {
	.section_maps {
		display: block;
	}

	.section_maps .map,
	.maps_contacts {
		width: 100%;
	}

	.section_maps .map {
		height: 25rem;
	}

	.maps_contacts {
		display: block;
		padding: 1.875rem 15px 2.5rem;
		gap: 0;
	}

	.maps_contacts .address {
		position: relative;
		font-size: 16px;
		z-index: 99999;
	}

	.maps_contacts .gradient-line {
		position: relative;
		z-index: 99999;
	}

	.maps_contacts .socials {
		margin-bottom: 16rem;
		gap: 2.8125rem
	}

	.maps_contacts .socials svg {
		width: 3.75rem;
		height: 3.75rem;
	}

	.maps_contacts .img_decor {
		right: -1.875rem;
		bottom: 8.75rem;
	}

	.maps_contacts .bottom_decor {
		height: 300px;
	}

	.maps_contacts .phone {
		margin-bottom: 30px;
	}

	.maps_contacts .phone span {
		font-size: 16px;
	}

	.maps_contacts .btn {
		margin-bottom: 30px;
	}
}

header,
footer,
main,
section {
	width: 100%;
	max-width: 100%;
}