* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background-color: #FFF;
	font-family: "Roboto";
	font-weight: 400;
    color: var(--main-color);
	font-size: 18px;
}
/*colors*/
:root {
	--orange-color: #ff9f5b;
	--blue-color: #59A8E5;
	--main-color: #003060;
}
/*!!!*/

/*fonts*/
@font-face {
	font-family: "Roboto"; 
	src: url(../fonts/Roboto-Regular.ttf);
	font-weight: 400;
}
@font-face {
	font-family: "Roboto"; 
	src: url(../fonts/Roboto-Medium.ttf);
	font-weight: 500;
}
@font-face {
	font-family: "Roboto"; 
	src: url(../fonts/Roboto-Bold.ttf);
	font-weight: 700;
}
@font-face {
	font-family: "Roboto"; 
	src: url(../fonts/Roboto-Black.ttf);
	font-weight: 900;
}
@font-face {
	font-family: "Roboto_Condensed"; 
	src: url(../fonts/Roboto_Condensed-SemiBold.ttf);
	font-weight: 600;
}
@font-face {
	font-family: "Roboto_Condensed"; 
	src: url(../fonts/Roboto_Condensed-Bold.ttf);
	font-weight: 700;
}
@font-face {
	font-family: "Roboto_Condensed"; 
	src: url(../fonts/Roboto_Condensed-ExtraBold.ttf);
	font-weight: 800;
}
/*!!!*/

a {
	text-decoration: none;
	color: var(--main-color);
	transition: all 0.5s;
}
nav a:hover {
	color: var(--blue-color);
}
.headline-block a:hover {
	color: var(--blue-color);
}
.touch-us-block a {
cursor: pointer;
}
/*headline styles*/
.top_banner h1, .hero-banner h1 {
	font-family: "Roboto_Condensed"; 
    text-transform: uppercase;
	font-size: 41px;
	line-height: 110%;
	font-weight: 800;
color: #fff;
border-bottom: none;
padding-bottom: 0;
}
.top_banner h1 {
text-transform: none;
}
h1 {
color: var(--main-color);
font-size: 48px;
font-weight: 500;
width: 100%;
padding-bottom: 21px;
border-bottom: 5px solid var(--blue-color);
}
h2 {
	font-size: 48px;
	line-height: 156%;
	font-weight: 500;
max-width: max-content;
}
/*!!!*/
/*cookies*/
.warning {
display: none;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 30px;
background: var(--main-color);
color: #fff;
z-index: 99;
}
.warning__text {
line-height: 1.3;
font-size: 13px;
}
.warning__text a {
color: var(--blue-color);
}
.warning.warning--active {
display: flex;
align-items: center;
justify-content: center;
gap: 15px 30px;
}
.warning__apply {
	color: var(--main-color);
    background: #ffffff;
    padding: 5px;
    text-transform: capitalize;
    font-weight: 400;
    transition: all 0.5s;
    border-radius: 3px;
font-size: 13px;
}
.warning__apply:hover {
color: #fff;
    background: var(--blue-color);
}
@media(max-width: 1200px) {
.warning.warning--active {
flex-direction: column;
align-items: start;
	}
}
@media(max-width: 700px) {
.warning.warning--active {
text-align: center;
align-items: center;
padding: 20px 15px;
	}
}
/*!!!*/
/*temorary*/
header nav ul li:nth-child(5), footer nav ul li:nth-child(9), footer nav ul li:nth-child(10) {
display: none;
}
/*!!!*/
/*privacy-page*/
.privacy-page a {
color: var(--blue-color);
}
.privacy-page h2:not(section h2) {
margin: 30px 0 10px !important;
line-height: 120%;
border-bottom: none;
width: 100% !important;
text-align: left !important;
}
.privacy-page, .privacy-page ul {
display: flex;
flex-direction: column;
gap: 15px;
}
.privacy-page ul {
padding-left: 2rem;
}
.privacy-table {
display: flex;
flex-direction: column;
}
.privacy__line {
display: flex;
gap: 5px 15px;
padding: 20px;
}
.privacy__line p:first-child {
font-weight: 700;
}
.privacy__line:nth-child(odd) {
background: rgb(149 149 149 / 20%);
}
.privacy__line:nth-child(even) {
background: #f5f5f5;
}
.privacy__line p {
flex: 1;
}
@media(max-width: 700px) {
.privacy__line {
flex-direction: column;
	}
.privacy-page h2:not(section h2) {
font-size: 24px !important;
	}
}
/*!!!*/
/*CTA form*/
.cta-form-open {
cursor: pointer;
}
.form__container.active, .CTA-form.active {
display: flex;
}
.form__container {
width: 100%;
height: 100vh;
position: fixed;
top: 0;
left: 0;
display: none;
justify-content: center;
align-items: center;
z-index: 999;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
}
.CTA-form {
display: none;
flex-direction: column;
align-items: center;
background: var(--main-color);
color: #fff;
padding: 20px 40px;
width: 100%;
max-width: 600px;
gap: 25px;
position: relative;
overflow-y: scroll;
max-height: 100vh;
}
.CTA-form__cross {
position: absolute;
top: 20px;
right: 20px;
cursor: pointer;
}
.CTA-form h2:not(section h2) {
margin-bottom: 0 !important;
border-bottom: none !important;
line-height: 1.1;
max-width: calc(100% - 10px);
text-align: left;
align-self: start;
}
.radio-btns {
display: flex;
gap: 15px 40px;
flex-wrap: wrap;
}
.radio-btns label {
display: flex;
gap: 10px;
}
.CTA-form input[type="text"], .CTA-form textarea {
width: 100%;
background: transparent;
border-radius: 0;
border: 1px solid #fff;
color: #fff;
padding: 15px;
font-family: 'Roboto';
font-size: 18px;
}
.CTA-form input[type="text"]::placeholder, .CTA-form textarea::placeholder {
color: #fff;
}
.CTA-form input[type="text"]:focus, .CTA-form textarea:focus {
outline: none;
}
.CTA-form input[type="checkbox"], .CTA-form input[type="radio"] {
appearance: none;
min-width: 20px;
width: 20px;
height: 20px;
border: 1px solid #fff;
border-radius: 0;
cursor: pointer;
}
.CTA-form input[type="radio"]:checked {
background-image: url(../image/blue-square.svg);
background-position: center;
background-repeat: no-repeat;
}
.CTA-form input[type="checkbox"]:checked {
background-color: var(--blue-color);
border-color: var(--blue-color);
background-image: url(../image/white-check.svg);
background-position: 3px center;
background-repeat: no-repeat;
}
.CTA-form button[type="submit"] {
border: none;
background: var(--orange-color);
border-radius: 0;
width: 100%;
max-width: 300px;
font-family: 'Roboto_Condensed';
color: #fff;
min-height: 58px;
display: flex;
justify-content: center;
align-items: center;
text-transform: uppercase;
font-size: 18px;
cursor: pointer;
transition: all 0.5s;
}
.CTA-form button[type="submit"]:hover {
	background: #eaf4fb;
    color: var(--main-color);
}
.form__fields {
display: flex;
flex-direction: column;
gap: 15px;
}
.form__block {
width: 100%;
display: flex;
flex-direction: column;
gap: 10px;
}
.form__subheader {
font-size: 16px;
font-family: 'Roboto_Condensed';
text-transform: uppercase;
}
.checkboxes {
display: flex;
flex-direction: column;
gap: 15px;
}
label {
cursor: pointer;
}
.checkboxes label {
display: flex;
gap: 10px;
align-items: stretch;
}
.checkboxes label a {
color: var(--blue-color);
}
.CTA-form::-webkit-scrollbar {
height: 10px;
width: 10px;
}
.CTA-form::-webkit-scrollbar-track {
background: rgba(0, 48, 96, 0.8);
}
.CTA-form::-webkit-scrollbar-thumb {
background-color: #fff;
border-radius: 0px;
}
@media(max-width: 700px) {
.CTA-form h2:not(section h2) {
font-size: 24px;
	}
}
/*!!!*/
/*pagination*/
.bx-pagination {
margin: -75px 0 0 !important;
}
.bx-pagination-container ul {
display: flex !important;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
}
.bx-pagination .bx-pagination-container ul li span, .bx-pag-next, .bx-pag-prev {
background-color: var(--blue-color) !important;
height: 38px !important;
display: flex !important;
align-items: center;
justify-content: center;
color: #fff !important;
font-size: 20px !important;
border-radius: 40px !important;
width: 40px !important;
margin: 0 !important;
transition: all 0.5s;
}
.bx-pagination .bx-pagination-container ul li span:hover, .bx-pag-next:hover, .bx-pag-prev:hover, .bx-pagination .bx-pagination-container ul li.bx-active span {
background-color: var(--main-color) !important;
}
.bx-pag-next, .bx-pag-prev, .bx-pagination .bx-pagination-container ul li.bx-active span {
min-width: 58px;
border: none !important;
}
.bx-pagination .bx-pagination-container ul li a {
width: 100%;
height: 100%;
display: block;
}
.bx-pag-next, .bx-pag-prev {
background-size: auto;
background-repeat: no-repeat;
background-position: center;
}
.bx-pag-next {
background-image: url(../image/arrow-right.svg);
}
.bx-pag-prev {
background-image: url(../image/arrow-left.svg);
}
.bx-pagination .bx-pagination-container ul li.bx-pag-next span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span {
display: none !important;
}
@media(max-width: 1200px) {
.bx-pagination {
margin: -30px 0 0 !important;
}
}
/*!!!*/

/*buttons*/
.solution-btn {
	padding: 5px 7px;
    background: var(--blue-color);
    border-radius: 0px;
    max-width: 155px;
    height: auto !important;
    color: #fff !important;
    text-align: center;
    font-family: "Roboto";
    font-weight: 500;
    font-size: 10px;
    line-height: 130%;
    text-transform: uppercase;
    display: block;
    transition: all 0.5s;
}
.solution-btn:hover {
background: var(--main-color);
}
nav .solution-btn {
display: none;
	}
@media(max-width: 1250px) {
.solution-btn {
max-width: 100%;
	}
}
@media(max-width: 700px) {
.phones_mob {
font-size: 18px;
	}
header .container > a {
display: flex !important;
align-items: center;
	}
header .container > a img {
width: 80px;
	}
.header_right {
max-width: calc(100% - 95px) !important;
flex-wrap: nowrap;
gap: 15px !important;
	}
}
@media(max-width: 400px) {
.solution-btn {
	max-width: min-content;
}
}
@media(max-width: 350px) {
.solution-btn {
	padding: 10px 5px;
}

}
/*!!!*/

.container {
	width: 1500px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}
main .container {
	display: flex;
	flex-direction: column;
	gap: 125px;
}
.blue-bg {
	background-color: var(--blue-color);
	transition: all 0.5s;
}
.blue-bg:hover {
	background-color: var(--main-color);
}
.main-blue-bg {
	background-color: var(--main-color);
	transition: all 0.5s;
}
.main-blue-bg:hover {
	background-color: var(--blue-color);
}
/*header*/
header {
position: relative;
}
header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	padding: 30px 30px;
	font-family: "Roboto_Condensed"; 
}
header .container > a {
	height: 57px;
	display: block;
}
header nav ul {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}
nav ul li {
	list-style-type: none;
}
header nav ul li a {
	line-height: 0.87;
}
.header_right {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.phones {
	margin-left: 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.telegram {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
}
.language-select {
  position: relative;
  font-weight: 600;
}

.language-select__button {
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 10px;
  margin: -10px;
  border: none;
  background-color: #ffffff;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.language-select__button:hover,
.language-select__button:focus,
.language-select__button:active,
.language-select.is-open .language-select__button {
  border-color: transparent;
  background-color: var(--main-color);
  color: #fff;
  outline: none;
}

.language-select__arrow {
  width: 7px;
  height: 4px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.language-select__button:hover .language-select__arrow,
.language-select__button:focus .language-select__arrow,
.language-select__button:active .language-select__arrow,
.language-select.is-open .language-select__arrow {
  filter: brightness(0) invert(1);
}

.language-select__dropdown {
  position: absolute;
  z-index: 9999;
  top: calc(100% + 10px);
  left: -10px;
  width: 55px;
  display: none;
  margin: 0;
  padding: 5px 0;
  list-style: none;
  border: 1px solid var(--main-color);
  background-color: #ffffff;
}

.language-select__option {
  padding: 5px 10px;
  cursor: pointer;
}
.language-select__option.is-selected {
display: none;
}
.language-select__option:hover,
.language-select__option:focus,
.language-select__option:active {
  background-color: var(--main-color);
  color: #fff;
  outline: none;
}

.language-select.is-open .language-select__dropdown {
  display: block;
}

.language-select.is-open .language-select__arrow {
  transform: rotate(180deg);
}
.burger {
	display: none;
	position: relative;
	width: 30px;
	height: 25px;
	cursor: pointer;
}
.burger span {
	position: absolute;
	left: 0;
	background: var(--main-color);
	height: 3px;
	width: 30px;
	transition: all 0.5s;
}
.burger span:first-child {
	top: 0;
}
.burger span:nth-child(2) {
	top: 11px;
}
.burger span:nth-child(3) {
	top: 22px;
}
.burger.active span:first-child {
	top: 10px;
	transform: rotate(-45deg);
}
.burger.active span:nth-child(2) {
	display: none;
}
.burger.active span:nth-child(3) {
	top: 10px;
	transform: rotate(45deg);
}
.telegram svg path {
transition: all 0.5s;
}
.telegram:hover svg path {
fill: var(--blue-color);
}
@media(min-width: 1151px) {
	header nav {
		display: block !important;
	}
}
@media(min-width: 701px) {
	.phones_mob {
		display: none;
	}
}
@media screen and (max-width: 1250px) and (min-width: 701px) {
.header_right {
flex-wrap: wrap-reverse;
max-width: 220px;
gap: 7px 15px !important;
	}
}
@media(max-width: 1150px) {
	header nav {
		position: absolute;
		width: 100%;
        left: 0;
        top: 97px;
        z-index: 9999;
        padding: 30px;
        background-color: #fff;
	}
    header nav ul::before {
        content: '';
        width: calc(100% - 60px);
        height: 2px;
        background-color: var(--blue-color);
        position: absolute;
        top: 0;
        left: 30px;
    }
	header nav ul li {
		position: relative;
		z-index: 99999;
	}
.header_right {
	max-width: 281px;
	}
}
@media(max-width: 700px) {
	header nav ul a {
        font-size: 18px !important;
    }
    header nav {
        top: 87px;
        padding: 17px 15px 32px;
    }
	header nav ul {
		flex-direction: column;
		align-items: start;
		background-color: #fff;
	}
    header nav ul::before {
        width: calc(100% - 30px);
        left: 15px;
    }
    .phones_mob {
        display: flex;
		flex-direction: column;
		gap: 12px;
		position: absolute;
		top: 17px;
		right: 15px;
    }
	.phones {
		display: none;
	}
}
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
font-size: 20px;
margin: -75px 0 !important;
}
.breadcrumbs a {
margin: 0;
font-size: 20px;
}
.breadcrumbs a:hover {
	color: var(--blue-color);
}
.breadcrumbs svg {
	margin-top: 3px;
}
@media(max-width: 1200px) {
.breadcrumbs {
margin: -30px 0 !important;
}
}
/*!!!*/

/*footer*/
.line {
	width: 1440px;
	max-width: calc(100% - 60px);
	height: 2px;
    background: #003060;
	margin: 60px auto 0;
}

footer .container {
	padding: 54px 30px 108px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 15px;
	gap: 30px;
}
.logo-block {
	display: flex;
	font-weight: 700;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: min-content;
	text-align: center;
	font-family: "Roboto_Condensed";
}
.logo-block img {
	width: 117px;
	height: auto;
}
.footer_center {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 58.5%;
}
footer nav {
	min-width: fit-content;
}
footer nav a {
	font-family: "Roboto_Condensed";
	text-transform: uppercase;
	white-space: nowrap;
}
.contacts {
	display: flex;
	justify-content: space-between;
}
.contact__col {
	display: flex;
	flex-direction: column;
	gap: 7.5px;
}
.contact__headline {
	text-transform: uppercase;
	font-weight: 700;
}
.footer_right__outer {
	max-width: 200px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.footer_right {
	display: flex;
	flex-direction: column;
	gap: 19px;
}
.footer_right a {
	text-decoration: underline;
	font-size: 14px;
	text-align: right;
	display: block;
transition: all 0.5s;
}
.footer_right a:hover {
	color: var(--blue-color);
}
footer nav ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.sep {
	width: 5px;
	height: 5px;
	background: var(--main-color);
	border-radius: 5px;
}
.mail__headline {
	font-weight: 700;
}
.copyright {
	width: 100%;
	text-align: right;
	text-transform: uppercase;
	font-size: 14px;
}
@media(max-width: 400px) {
footer nav li {
		width: calc(40% - 5px) !important;
	}
footer nav li:nth-child(9), footer nav li:nth-child(11), footer nav li:nth-child(13) {
		width: calc(60% - 5px) !important;
	}
}
/*!!!*/

/*main*/
.transportation-section h2 {
	margin-bottom: 24px;
}
.branches-section h2 {
	margin-bottom: 60px;
}
.faq-section h2 {
	margin-bottom: 42px;
}
.serts-section h2 {
	margin-bottom: 45px;
}
.trusted-section h2 {
	margin-bottom: 82px;
}
.trusted-section {
	margin-bottom: 53px;
}
.news-section h2 {
	margin-bottom: 40px;
}
.advantages-section h2 {
	margin-bottom: 26px;
}
.nums-section h2 {
	margin-bottom: 42px;
}
.services-section h2 {
	margin-bottom: 100px;
}
.serts-section {
	margin-bottom: 82px;
}
.trusted-section .blue-arrows .slick-dots {
	display: none !important;
}
.trusted-section .blue-arrows .slick-arrow {
	background: var(--blue-color);
	bottom: -58px;
}
.trusted-section .blue-arrows .slickPrev {
	left: calc(50% - 65px);
}
.trusted-section .blue-arrows .slickNext {
	right: calc(50% - 65px);
}
.transportation.blue-arrows .slick-dots, .transportation.blue-arrows .slick-arrow {
	bottom: -53px;
}
.transportation.blue-arrows .slick-dots {
	left: calc(50% - 52px);
}
.transportation.blue-arrows .slickPrev {
	left: calc(50% - 125px);
}
.transportation.blue-arrows .slickNext {
	right: calc(50% - 125px);
}
main {
position: relative;
}
.top_banner {
	height: calc(100vh - 145px);
	max-height: 854px;
	margin-bottom: 9px;
}
.top-banner_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5px 20px;
	flex-wrap: wrap;
	margin-top: 5px;
}
.delivery-count {
	height: 35px;
	max-width: fit-content;
	display: flex;
	align-items: center;
	padding: 0 12px;
	color: var(--orange-color);
	/*border: 1px solid var(--orange-color);*/
	text-decoration: underline;
	text-transform: none;
	font-size: 18px;
	line-height: 100%;
	gap: 6px;
transition: all 0.5s;
border-radius: 3px;
}
.delivery-count svg path {
transition: all 0.5s;
}
.delivery-count:hover svg path {
fill: #fff !important;
}
.delivery-count:hover {
background-color: var(--orange-color);
color: #fff;
text-decoration: none;
}
@media(min-width: 1201px) {
.serts-section .blue-arrows .slick-dots {
top: 190px;
left: -280px;
bottom: unset;
	}
.serts-section h2 {
margin-bottom: 130px !important;
}
.serts-section {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 25px;
	}
.serts-slider {
width: calc(100% - 350px);
	}
.serts-slider .slick-arrow {
top: 190px;
bottom: unset;
	}
.serts-slider .slickPrev {
left: -350px !important;
	}
.serts-slider .slickNext {
left: -280px;
right: unset;
	}
}
@media(max-width: 1000px) {
.delivery-count {
	height: 25px;
	font-size: 14px;
	gap: 6px;
}
}
.top_slider__container {
	position: absolute;
	top: 0px;
	left: 0;
	min-height: fit-content;
	width: 100%;
	overflow: clip;
}
#top-slider {
	margin-bottom: 0px !important;
	margin-left: -10px;
	margin-right: -10px;
}
#top-slider .slick-slide {
	height: calc(100vh - 145px);
	max-height: 854px;
	background-size: cover;
	background-position: center;
	margin: 0 10px;
display: flex !important;
justify-content: center;
align-items: center;
}
#top-slider .slick-slide img {
	width: auto;
height: 853px;
}
@media(min-width: 1920px) {
#top-slider .slick-slide img {
	width: 100%;
height: auto;
}
}
@media screen and (max-width: 700px) {
#top-slider .slick-slide img {
min-height: unset;
width: 100%;
    height: auto;
	}
}
@media(max-width: 450px) {
#top-slider .slick-slide img {
	height: 220px;
	width: auto;
}
}
.blue-arrows .slick-dots li {
	margin: 0;
	width: 14px;
	height: 14px;
	transition: all 0.5s;
}
#top-slider .slick-dots {
	bottom: 54px;
	left: calc(50% - 28px);
}
#top-slider .slick-arrow {
	bottom: 54px;
	z-index: 1;
}
#top-slider .slickPrev {
	left: calc(50% - 100px);
}
#top-slider .slickNext {
	right: calc(50% - 100px);
}
.blue-arrows .slick-dots {
	background: var(--main-color);
	display: flex !important;
	gap: 9px;
	padding: 12px 11px;
	border-radius: 20px;
	width: fit-content;
}
.blue-arrows .slick-dots li.slick-active button, .blue-arrows .slick-dots li:hover button {
	background: #489DD0;
}
.blue-arrows .slick-dots li button:before {
	display: none;
}
.blue-arrows .slick-dots li button {
	width: 14px;
	height: 14px;
	border-radius: 14px;
	background: #fff;
transition: all 0.5s;
}
.touch-us-block {
	position: fixed;
	right: 16px;
	bottom: 13px;
	background: var(--orange-color);
	display: flex;
	align-items: center;
	gap: 31px;
	padding: 15px 25px;
	border-radius: 3.75px;
	z-index: 99;
}
.touch-us-block a {
	display: flex;
}
.touch-us-block a img {
	transition: all 0.5s;
}
.touch-us-block a:hover img {
	opacity: 0.4;
}
.touch-us-block::after {
	content: '';
	background: url(../image/orange-triangle.svg) no-repeat;
	width: 21px;
	height: 18px;
	bottom: -18px;
	right: 16px;
	position: absolute;
}
.main-banner-block {
	background: rgba(0, 48, 96, 0.84);
	position: absolute;
	top: 205px;
	color: #fff;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	gap: 38px;
	padding: 50px 40px 48px 54px;
	width: 729px;
	max-width: 100%;
}
.main-banner__text_big, .main-banner__text_small {
	font-family: "Roboto_Condensed";
	font-weight: 700;
}
.main-banner__text_small {
	font-size: 27px;
}
.main-banner__text_big {
	font-size: 36px;
}
main {
	overflow: clip;
}
#services-slider {
	margin: 0 -7px;
}
.services-section .blue-arrows .slick-arrow, .services-section .blue-arrows .slick-dots {
top: 110px;
}
.services-section .blue-arrows .slick-arrow, .services-section .blue-arrows .slick-dots,
.serts-section .blue-arrows .slick-arrow, .serts-section .blue-arrows .slick-dots {
	background: var(--blue-color);
}
.services-section .blue-arrows .slick-dots {
	left: 73px;	
	bottom: unset;
}
.services-section .blue-arrows .slickPrev {
	left: 0;
}
.services-section .blue-arrows .slickNext {
	left: 170px;
}
.services-section .blue-arrows .slick-dots li:hover button,
.serts-section .blue-arrows .slick-arrow:hover,
.serts-section .blue-arrows .slick-dots li:hover button {
	background: var(--main-color);
}
#services-slider .slick-list {
	overflow: visible;
}
#services-slider .slick-slide {
	margin: 0 7px;
	position: relative;
	min-height: 365px;
}
#services-slider .slick-slide h3 {
	max-width: 50%;
}
#services-slider .slick-slide img {
	z-index: 0;
}
.services-section .blue-arrows .slick-dots li.slick-active button,
.serts-section .blue-arrows .slick-dots li.slick-active button {
background: rgba(255, 255, 255, 0.5);
}
.advantages__inner {
  max-width: 1434px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: advantage;
  margin: 0 auto;
}
#services-slider .slick-slide .service-card__media img {
min-width: 100%;
}
.advantages__item {
  position: relative;
  padding: 0 26px 0 27px;
  counter-increment: advantage;
}

.advantages__item:not(:last-child) {
  border-right: 1px solid #edf0f3;
}

.advantages__item::after {
  position: absolute;
  top: 5px;
  right: 30px;
  content: counter(advantage);
  color: #f3f4f6;
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}

.advantages__icon-box {
  position: relative;
  z-index: 1;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.advantages__icon-box svg path {
stroke: var(--orange-color);
}

.advantages__icon {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
	max-height: 100%;
}

.advantages__title {
  margin: 23px 0 0;
  color: #003060;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 400;
}

.advantages__text {
  max-width: 390px;
  margin: 12px 0 0;
  color: #003060;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 400;
}
.transportation {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.transportation__item {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(149 149 149 / 12%);
  flex: 1;
}

.transportation__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
  max-width: 200px;
}

.transportation__text p {
  margin: 0;
}

.transportation__text p:first-child {
  font-weight: 900;
}

.transportation__text span {
  font-size: 56px;
  line-height: 100%;
}
.grid-block {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 223px);
  gap: 0;
max-width: 1120px;
}
.grid-block__item {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.grid-block__item p {
  margin: 0;
}
.grid-block__item--wide {
  grid-column: 1 / span 2;
}
.grid-block__item--top-right {
  grid-column: 4 / span 2;
  grid-row: 1 / span 2;
}
.branch-list {
  display: flex;
  flex-direction: column;
gap: 20px;
}
.branches {
	display: flex;
	gap: 34px;
	align-items: center;
}
.branch-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.grid_bg {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center;
	transition: all 0.5s;
	z-index: 0;
}
.grid-block__item:hover .grid_bg {
	transform: scale(1.1);
}
.grid-block__item {
	position: relative;
	overflow: clip;
}
.grid-block__item span {
	display: none;
}
.grid-block__item p {
	position: relative;
}
.branch-list__icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branch-list__icon img {
  width: auto;
  height: auto;
}

.branch-list__item p {
  max-width: 185px;
}
.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #003060;
  color: #ffffff;
  text-decoration: none;
}

.service-card__top {
  min-height: 102px;
  display: flex;
  align-items: flex-start;
  padding: 20px 25px;
  background-color: #59a8e5;
  position: relative;
  z-index: 1;
	justify-content: space-between;
	align-items: center;
}

.service-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
max-width: 200px;
}

.service-card__media {
  height: 178px;
  overflow: hidden;
  background-color: #d8e4ef;
}

.service-card__media img {
  width: auto;
  height: 315px;
  position: absolute;
  top: 0;
transition: all 0.5s;
    margin-top: 30px;
}

.service-card__bottom {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  background-color: #59a8e5;
  position: relative;
  z-index: 1;
}

.service-card__more {
  font-size: 15px;
  line-height: 1.2;
}

.service-card__arrow {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.service-card:hover .service-card__media img,
.service-card:focus-visible .service-card__media img {
  transform: scale(1.1);
}

.service-card:hover .service-card__arrow,
.service-card:focus-visible .service-card__arrow {
  transform: rotate(45deg);
}

.service-card:focus-visible {
  outline: 2px solid #66b8f1;
  outline-offset: 3px;
}
.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 27px;
  border: 0.75px solid var(--main-color);
  background-color: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.accordion__arrow {
  display: block;
  width: 7px;
  height: 4px;
  flex-shrink: 0;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.accordion__content {
  display: none;
  padding: 36px 27px;
  border: 0.75px solid var(--main-color);
  border-top: 0;
  font-size: 20px;
  line-height: 130%;
}

.accordion__content p {
  margin: 0;
}

.accordion__item.is-open .accordion__header {
  background-color: var(--main-color);
  color: #ffffff;
  font-weight: 700;
}

.accordion__item.is-open .accordion__arrow {
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
}
.serts-slider .slick-slide {
	display: flex !important;
	justify-content: center;
	margin: 0 29px;
}
.serts-slider .slick-arrow {
	bottom: -82px;
}
.serts-slider .slickNext {
	right: calc(50% - 65px);
}
.serts-slider .slickPrev {
	left: calc(50% - 65px);
}
.serts-slider .slick-slide img {
max-width: 233px;
width: 100%;
height: auto;
	}
.serts-slider a:nth-child(5) img, .serts-slider a:nth-child(7) img, .serts-slider a:nth-child(9) img {
filter: grayscale(1) contrast(1.3) !important;
}
.headline-block {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.headline-block a {
	font-size: 20px;
	text-decoration: underline;
	display: block;
}
.blue-arrows {
	position: relative;
}
.blue-arrows .slick-arrow {
	width: 58px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--main-color);
	border-radius: 20px;
	cursor: pointer;
	position: absolute;
transition: all 0.5s;
}
.blue-arrows .slick-arrow:hover/*, .serts-section .blue-arrows .slick-arrow*/ {
	background-color: var(--blue-color);
}
/*.serts-section .blue-arrows .slick-arrow:hover, */.services-section .blue-arrows .slick-arrow:hover,
.trusted-section .blue-arrows .slick-arrow:hover {
	background-color: var(--main-color);
}
.logos__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 67px;
  margin: 0;
  padding: 0;
}

.logos__item {
  min-height: 64.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 36px;
  background-color: #f5f5f5;
filter: grayscale(1) brightness(1.0);
}

.logos__item img {
  width: auto;
  height: auto;
}
.news__grid {
  width: 100%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
}
.smi-news__grid {
gap: 16px;
}
.news-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
height: 384px;border: 7px solid #fff;
}
.news-card:hover .news-card__bg {
transform: scale(1.1);
}
.news-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
transition: all 0.5s;
filter: brightness(1.2);
}
.news-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background-color: rgba(0, 36, 62, 0.18);
  pointer-events: none;
}
.news-card:hover .news-card__filter {
	opacity: 0;
}
.news-card__filter {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	background1: rgba(0, 0, 0, 0.4);
	transition: all 0.5s;
}
.news-card__date {
  position: absolute;
  z-index: 4;
  min-width: 118px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  background-color: #66b8f1;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  transition: all 0.5s;
}
.news-card:hover .news-card__date {
color: #0E3861;
}
.news-card__date--top-left {
  top: 0;
  left: 0;
}

.news-card__date--bottom-left {
  left: 0;
  bottom: 0px;
}

.news-card__date--bottom-right {
  right: 0;
  bottom: 0px;
}
.news-card--wide {
	grid-column: span 2;
}
.news-card__content {
  position: absolute;
  z-index: 3;
  padding: 20px 16px;
  background-color: rgba(0, 48, 96, 0.89);
}

.news-card__content--top {
  top: 0;
  left: 0;
}

.news-card__content--top-right {
  top: 0;
  right: 0;
}

.news-card__content--bottom {
  left: 0;
  bottom: 0;
}
.news-card__content {
width: calc(100% - 25px);
max-width: 323px;
}
.news-card__content--wide {
  width: 348px;
	max-width: 100%;
}

.news-card__content--short {
  width: calc(100% - 47px);
}

.news-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 700;
  transition: all 0.5s;
}
.news-card__text {
  margin: 9px 0 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  transition: all 0.5s;
}

.news-card:hover .news-card__content .news-card__text,
.news-card:hover .news-card__content .news-card__title {
  color: #59A8E5;
}
.news-card:hover .news-card__play {
	opacity: 1;
}
.news-card__play {
opacity: 0;
  position: absolute;
  z-index: 4;
  top: 45%;
  right: 9px;
  transition: all 0.5s;
}
.nums {
  position: relative;
  color: #fff;
}

.nums::before,
.nums::after {
  position: absolute;
  inset: 0;
  content: "";
}

.nums::before {
  z-index: 1;
  background-image: url("../image/nums-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.nums::after {
  z-index: 2;
  background-color: rgba(0, 48, 96, 0.39);
}

.nums__content {
  position: relative;
  z-index: 3;
  min-height: 447px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 67px;
  column-gap: 48px;
  padding: 77px 60px 76px;
}

.nums__item {
  min-width: 0;
}

.nums__heading {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
}

.nums__value {
  font-size: 56px;
}

.nums__label {
  font-size: 27px;
}

.nums__text {
  max-width: 430px;
  margin: 19px 0 0;
  line-height: 1.25;
}
#services-slider {
	position: static;
}
.services-section {position: relative;}
@media(max-width: 1500px) {
	h1 {
		font-size: 35px;
	}
	.main-banner__text_big {
		font-size: 26px;
	}
	.main-banner__text_small {
		font-size: 18px;
	}
	.top_banner, #top-slider .slick-slide {
		height: 600px;
	}
	.main-banner-block {
		top: 30px;
	}
	.top_banner {
		position: relative;
	}
	.top_slider__container {
		top: 0;
		left: -30px;
		width: calc(100% + 60px);
	}
	
}
@media(max-width: 1400px) {
	
	.header_right {
		gap: 15px;
	}
	.phones {
		margin-left: 0;
	}
	header nav ul a, .phones {
		font-size: 16px;
	}
	footer .container {
		flex-wrap: wrap;
		gap: 30px;
	}
	.footer_right__outer {
		max-width: 100%;
		width: 100%;
		gap: 15px;
	}
	.footer_right {
		max-width: 100%;
		width: 100%;
		flex-direction: row;
		justify-content: center;
		order: 1;
	}
	.copyright {
		text-align: center;
		font-size: auto;
	}
	.footer_center {
		width: calc(100% - 200px);
	}
	.grid-block {
		grid-template-rows: repeat(3, 180px);
	}
	.grid-block__item {
		font-size: 12px;
	}
	#services-slider {
		width: 90%;
	}
	.services-section .blue-arrows .slickNext {
		left: 193px;
	}
.branch-list {
gap: 0;
	}
}
@media(max-width: 1200px) {
	header .container {
		padding: 20px 30px;
	}
	footer .container {
		padding: 60px 30px 30px;
	}
	header nav ul {
		gap: 15px;
	}
	footer nav ul {
		gap: 0;
	}
	footer nav {
		width: 100%;
	}
	.contacts {
		gap: 20px;
	}
	.contact__col {
		flex: 1;
	}
	.logo-block img {
		width: 150px;
	}
	.logo-block p {
		font-size: 12px;
		max-width: 200px;
	}
	.footer_center {
		width: calc(100% - 180px);
	}
	main .container {
		gap: 60px;
	}
	.branches {
		flex-direction: column;
		gap: 60px;
	}
	.grid-block {
		width: 100%;
	}
	.branch-list {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 10px 30px;
	}
	.branch-list__item {
		width: calc(33% - 20px);
		gap: 5px;
	}
	.transportation__text {
		text-align: center;
	}
	.transportation__text span {
		font-size: 40px;
	}
	.transportation__text p {
		font-size: 16px;
	}
	.transportation {
		gap: 10px;
	}
	.transportation__item {
		height: 140px;
		padding: 5px;
	}
	.news__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));

	}
.news-card {
height: 340px;
	}
.news-card--wide {
grid-column: span 1;
	}
	.news-card__bg {
		background-position: top center;
	}
	.news-card__content {
		left: 0 !important;
		bottom: 0 !important;
		right: unset !important;
		top: unset !important;
		width: 65% !important;
	}
	.news-card__date {
		left: 0 !important;
		bottom: unset !important;
		right: unset !important;
		top: 0 !important;
	}
	.touch-us-block {
		gap: 20px;
		padding: 8px 13px;
	}
	/*.touch-us-block svg, .touch-us-block a {
		width: 23px;
		height: 21px;
	}*/
	#top-slider .slick-arrow, #top-slider .slick-dots {
		bottom: 30px;
	}
}
@media(max-width: 1150px) {
header nav {
		display: none;
	}
}
@media(max-width: 1000px) {
	.services-section .blue-arrows .slickNext {
		left: 216px;
	}
	.services-section .blue-arrows .slick-arrow, .services-section .blue-arrows .slick-dots {
		top: 65px;
	}

footer nav li {
		width: calc(50% - 5px);
	}
	.burger {
		display: block;
	}
	.phones {
		font-size: 18px;
	}
	.header_right {
		gap: 40px;
	}
	.sep {
		display: none;
	}
	.footer_right a {
		text-align: center;
	}
	footer nav a {
		white-space: wrap;
		padding-right: 12px;
		position: relative;
	}
	footer nav a::after {
		content: '';
		width: 4px;
		height: 7px;
		position: absolute;
		right: 0;
		top: calc(50% - 3.5px);
		background: url(../image/blue-angle.svg) no-repeat;
	}
	footer nav ul {
		flex-direction: column;
		flex-wrap: wrap;
		align-items: start;
		gap: 10px;
		max-height: 120px;
		justify-content: start;
	}
	body {
		font-size: 16px;
	}
	h2 {
		margin-bottom: 20px !important;
		font-size: 32px;
	}
	.services-section h2 {
		margin-bottom: 80px !important;
	}
	.grid-block__item {
		padding: 10px;
	}
	.grid-block {
        grid-template-rows: repeat(3, 150px);
    }
	.logos__list {
		gap: 20px;
		justify-content: space-between;
	}
	.advantages__title {
		font-size: 24px;
	}
	.advantages__text {
		font-size: 16px;
	}
	.advantages__inner {
		gap: 30px;
	}
	.advantages__item, .advantages__item:not(:last-child) {
		padding: 0;
		border: none;
	}
	.nums__content {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 44px;
		padding: 48px 36px;
	}
	.logos__item img {
		width: 100%;
		height: auto;
	}
}
@media (max-width: 700px) {
.main-banner-block {
background: var(--main-color);
	}
h1 {
padding-bottom: 11px;
	}
.serts-slider .slick-slide {
margin: 0 15px;
	}
	#services-slider {
		width: 55%;
	}
	.services-section .blue-arrows .slick-arrow, .services-section .blue-arrows .slick-dots {
		top: unset;
		bottom: -58px;
	}
	h2:not(.news-section h2) {
		text-align: center;
		margin-bottom: 15px;
		margin-right: auto;
		margin-left: auto;
	}
	.advantages-section h2 {
		margin-bottom: 0 !important;
	}
	.top_banner h1 {
		font-size: 20px;
		line-height: 110%;
	}
	.transportation-section {
		margin-bottom: 53px;
	}
	.trusted-section {
		margin-bottom: 58px;
	}
	.logos__list.slick-slider, .transportation {
		margin-bottom: 0 !important;
	}
	.service-card__more {
		font-size: 20px;
	}
	.top_banner, #top-slider .slick-slide {
		height: 218px;
	}
	.top_banner {
		margin-bottom: 170px;
	}
	.top_slider__container, .main-banner-block {
		max-width: calc(100% + 30px);
		left: -15px;
	}
	.main-banner-block {
		padding: 21px;
		gap: 10px;
		top: 100%;
	}
	#top-slider .slick-arrow, #top-slider .slick-dots {
		bottom: 15px;
	}
	.main-banner__text_big {
		font-size: 15px;
		color: #C2E4F3;
		order: 0;
	}
	.main-banner-block h1, .top-banner_bottom {
		order: 1;
	}
	.main-banner__text_small {
		font-size: 11px;
	}
	footer nav ul {
		max-height: 160px;
		padding: 20px 0;
		border-top: 1px solid rgba(114, 190, 225, 0.3);
		border-bottom: 1px solid rgba(114, 190, 225, 0.3);
	}
	.mail {
		order: 1;
	}
	header .container {
		padding: 15px;
	}
	.container {
		padding: 0 15px;
	}
	footer .container {
		flex-direction: column;
		padding: 27px 15px 71px;
		gap: 20px;
	}
	.footer_center {
		width: 100%;
		gap: 15px;
	}
	.header_right {
		gap: 20px;
	}
	.contacts {
		flex-wrap: wrap;
		gap: 20px;
	}
	.contact__col {
		flex: unset;
		width: calc(50% - 10px);
	}
	.contact__col:first-child {
		width: 100%;
	}
	.logo-block {
		flex-direction: row;
		gap: 17px;
		width: 100%;
	}
	.logo-block img {
		width: 112px;
	}
	.logo-block p {
		text-align: left;
	}
	.copyright {
		margin-top: 10px;
	}
	.footer_right {
		flex-direction: column;
		gap: 5px;
	}
	.line {
		/*background: rgba(114, 190, 225, 0.3);*/
		max-width: calc(100% - 30px);
	}
	main .container {
		gap: 50px;
	}
	.grid-block {
		display: flex;
		flex-wrap: wrap;
    }
	.grid-block__item {
		width: 50%;
		height: 150px;
		font-size: 15px;
	}
	.grid-block__item span {
		display: inline-block;
	}
	.grid-block__item--top-left, .grid-block__item--top-right, .grid-block__item--bottom-left {
		grid-column: unset;
		grid-row: unset;
	}
	.grid-block__item:nth-child(4) {
		order: 1;
	}
	.grid-block__item:nth-child(6) {
		order: 2;
	}
	.grid-block__item:nth-child(3) {
		order: 3;
	}
	.grid-block__item:nth-child(8) {
		order: 4;
	}
	.grid-block__item:nth-child(7) {
		order: 5;
	}
	.grid-block__item:nth-child(9) {
		order: 6;
	}
	.grid-block__item:nth-child(10) {
		order: 7;
	}
	.branch-list {
		gap: 5px;
	}
	.branches {
		gap: 20px;
	}
	.branch-list__item {
		width: calc(50% - 2.5px);
		flex-direction: column;
		text-align: center;
		font-size: 18px;
	}
	.logos__item img {
		width: auto;
		height: auto;
	}
	.advantages__inner {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
	.transportation .slick-slide {
		display: flex !important;
	}
	.transportation .slick-slide .transportation__text p {
		font-size: 18px;
	}
	.transportation .slick-slide .transportation__text span {
		font-size: 56px;
	}
	.services-section .blue-arrows .slick-dots {
		display: none !important;
	}
	.logos__list .slick-slide {
		min-height: 60px;
		display: flex !important;
		margin: 0 33px;
	}
	.advantages__text {
		font-size: 18px;
		max-width: 100%;
	}
	.advantages__inner {
		gap: 10px;
	}
	.advantages__title {
		margin-top: 10px;
	}
	.advantages__text {
		margin-top: 5px;
	}
	.news-card__content {
		width: 100% !important;
		max-width: 100% !important;
	}
  .nums {
    min-height: 0;
  }

  .nums__content {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px 24px;
  }

  .nums__heading {
    flex-wrap: wrap;
  }

  .nums__value {
    font-size: 44px;
  }

  .nums__label {
    font-size: 23px;
  }

  .nums__text {
    max-width: none;
    margin-top: 12px;
  }
.news-card {
height: 318px;
	}
.news-card__filter {
opacity: 0;
	}
  .news__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 10px;
    }
	.touch-us-block {
		flex-direction: column;
		right: 12px;
		padding: 13px 8px;
		bottom: 10px;
	}
	.touch-us-block::after {
		width: 14px;
		height: 11px;
		transform: rotate(-90deg);
		bottom: 10px;
		right: -12px;
		background-size: cover;
	}
	.services-section h2 {
		margin-bottom: 15px !important;
	}
	.services-section {
		margin-bottom: 53px;
	}
	#services-slider .slickNext {
		right: calc(50% - 65px);
		left: unset;
	}
	#services-slider .slickPrev {
		left: calc(50% - 65px);
	}
	#services-slider .slick-arrow {
		bottom: -53px;
		top: unset;
	}
}
@media(max-width: 500px) {
	#services-slider {
		width: calc(100% + 14px);
		
	}
	#services-slider .slick-slide .service-card__media img {
		height: auto;
	}
	#services-slider .slick-list {
		overflow: hidden;
	}
}
/*!!!*/

/*service*/
.service-page-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 16px;
}
.service-page-grid .service-card {
position: relative;
}
.service-page-grid .service-card__media img {
min-width: 100%;
}
@media(max-width: 1200px) {
.service-page-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media(max-width: 900px) {
.service-page-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media(max-width: 600px) {
.service-page-grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.service-page-grid .service-card__media img {
height: auto;
}
}
/*!!!*/

/*service page*/
.optimal-section {
display: flex;
flex-direction: column;
gap: 24px;
}
.optimal-options-block {
	display: flex;
flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
}
.optimal__option {
	display: flex;
	flex: 1;
	align-items: center;
	gap: 20px;
	padding: 20px;
	max-width: 50%;
	box-shadow: 0 20px 44px rgba(0, 48, 96, 0.08);
transition: all 0.35s ease;
}
.optimal__option:hover, .alt__option:hover {
	transform: translateY(-6px);
}
.alt-options-block {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.alt__option {
	flex: 1;
	max-width: 33%;
	box-shadow: 0 20px 44px rgba(0, 48, 96, 0.08);
transition: all 0.35s ease;
}
.alt__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 21px 18px 21px 30px;
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	background: #3E97CD;
}
.alt__head svg {
	min-width: 107px;
	height: auto;
}
.alt__body {
	padding: 20px;
	background: #fff;
}
.alt__body a {
	font-weight: 600;
}
.alt__body a:hover {
	color: var(--blue-color);
}
@media (max-width: 1200px) {
	.optimal-section {
		gap: 22px;
	}

	.optimal__option {
		flex: 1 1 calc(50% - 8px);
		max-width: calc(50% - 8px);
		gap: 18px;
		padding: 18px;
	}

	.alt__option {
		flex: 1 1 calc(33.333% - 11px);
		max-width: calc(33.333% - 11px);
	}

	.alt__head {
		gap: 24px;
		padding: 20px;
		font-size: 20px;
	}

	.alt__head svg {
		min-width: 70px;
	}
}

@media (max-width: 1000px) {
	.optimal-section {
		gap: 20px;
	}

	.optimal__option {
		gap: 16px;
		padding: 16px;
	}

	.alt__option {
		flex: 1 1 calc(50% - 8px);
		max-width: calc(50% - 8px);
	}

	.alt__head {
		gap: 18px;
		padding: 18px;
	}

	.alt__head svg {
		min-width: 78px;
	}
}

@media (max-width: 700px) {
	.optimal-section {
		gap: 18px;
	}

	.optimal-options-block,
	.alt-options-block {
		flex-direction: column;
		gap: 15px;
	}

	.optimal__option,
	.alt__option {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
	}

	.optimal__option {
		flex-direction: column;
		align-items: flex-start;
		padding: 15px;
	}

	.alt__head {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 15px;
		padding: 15px;
		font-size: 24px;
	}

	.alt__body {
		padding: 15px;
	}

	.alt__head svg {
		min-width: 64px;
		max-width: 78px;
	}
}
@media(max-width: 500px) {
.delivery-count {
width: 100%;
max-width: 100%;
justify-content: center;
	}
}
@media (max-width: 400px) {
	.optimal-section,
	.optimal-options-block,
	.alt-options-block {
		gap: 15px;
	}

	.optimal__option,
	.alt__head,
	.alt__body {
		padding: 15px;
	}

	.alt__head svg {
		min-width: 56px;
		max-width: 68px;
	}
}
@media(min-width: 1201px) {
.service-page h1 {
font-weight: 600 !important;
font-size: 112px !important;
	}
}
.service-page--road-photos .service-hero__content {
    padding: 10% 30px 10%;
}
body.service-page main {
	overflow: visible;
}
.service-page {
display: flex;
flex-direction: column;
	gap: 96px;
}
.service-page .breadcrumbs {
margin: 0 !important;
}
.service-page .line {
	margin-top: 0;
}
.service-page h1 {
	font-size: 64px;
	line-height: 102%;
	border-bottom: none;
	color: #fff;
	font-family: "Roboto_Condensed";
    text-transform: uppercase;
	font-weight: 800;
}
.section-heading {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.section-heading p {
	max-width: 900px;
	font-size: 22px;
	line-height: 1.5;
	color: rgba(0, 48, 96, 0.8);
}
.section-heading--light p,
.section-heading--light h2 {
	color: #fff;
}
.service-hero {
	position: relative;
	min-height: 680px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: stretch;
	border-radius: 32px;
	overflow: hidden;
	background: var(--main-color);
	color: #fff;
	box-shadow: 0 32px 80px rgba(0, 48, 96, 0.18);
}
.service-hero::after {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	right: -120px;
	top: -90px;
	border-radius: 50%;
	background: rgba(245, 149, 36, 0.22);
	filter: blur(10px);
	z-index: 1;
}
.service-hero__media {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgb(62 151 205) 0%, rgb(62 151 205) 30%, rgb(33 129 181) 30%, rgba(0, 48, 96, 0.10) 100%), url("../image/road-hero-banner.png");
	background-size: cover;
	background-position: center;
}
.service-hero__content {
	position: relative;
	z-index: 2;
	padding: 76px 60px 76px 64px;
	max-width: 920px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.service-hero__eyebrow,
.road-fleet__eyebrow,
.road-cta__eyebrow {
	font-family: "Roboto_Condensed";
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.service-hero__eyebrow {
	color: #c2e4f3;
	margin-bottom: 20px;
}
.service-hero__lead {
	max-width: 760px;
	margin-top: 28px;
	font-size: 24px;
	line-height: 1.52;
}
.service-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}
.service-hero__chips span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	font-size: 16px;
	line-height: 1;
}
.service-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 42px;
}
.main-button,
.ghost-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 16px 28px;
	border-radius: 999px;
	font-family: "Roboto_Condensed";
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
cursor: pointer;
}
.main-button {
	background: var(--orange-color);
	color: #fff;
	box-shadow: 0 20px 45px rgba(245, 149, 36, 0.25);
}
.main-button:hover {
	background: #de8219;
	color: #fff;
	transform: translateY(-2px);
}
.ghost-button {
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}
.ghost-button:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}
.main-button--light {
	background: var(--orange-color);
	color: #fff;
	box-shadow: none;
border-radius: 58px !important;
}
.main-button--light:hover {
	background: #eaf4fb;
	color: var(--main-color);
}
.service-hero__panel {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 16px;
	padding: 34px 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.18) 100%);
	backdrop-filter: blur(14px);
}
.service-stat {
	padding: 22px 22px 24px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--main-color);
	box-shadow: 0 20px 40px rgba(0, 48, 96, 0.14);
}
.service-stat span {
	display: block;
	margin-bottom: 10px;
	color: var(--orange-color);
	font-family: "Roboto_Condensed";
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
}
.service-stat p {
	font-size: 16px;
	line-height: 1.45;
}
.road-benefits .advantages__item,
.road-fleet-card,
.road-step,
.road-region {
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.road-benefits .advantages__item:hover,
.road-fleet-card:hover,
.road-step:hover,
.road-region:hover {
	transform: translateY(-6px);
}
.road-fleet-card h3,
.road-region h3,
.road-step h3 {
	margin-top: 24px;
	font-size: 30px;
	line-height: 1.1;
	font-weight: 700;
}
.road-fleet__intro p,
.road-fleet-card p,
.road-region p,
.road-step p,
.road-cta__content p {
	line-height: 1.5;
}
.road-fleet-card p,
.road-step p {
	margin-top: 14px;
}
.road-benefits h2 {
	margin-bottom: 26px;
}
.road-benefits .advantages__icon-box {
	justify-content: flex-start;
}
.road-benefits .advantages__text {
	max-width: 405px;
}
.road-fleet {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.road-fleet__intro {
	padding: 36px 34px;
	border-radius: 28px;
	color: #fff;
	background:
		linear-gradient(150deg, rgba(0, 48, 96, 0.96) 0%, rgba(89, 168, 229, 0.9) 100%),
		url("../image/serv1.png");
	background-size: cover;
	background-position: center;
	box-shadow: 0 28px 64px rgba(0, 48, 96, 0.18);
}
.road-fleet__eyebrow {
	color: rgba(255, 255, 255, 0.74);
	margin-bottom: 18px;
}
.road-fleet__intro h2 {
	line-height: 1.18;
}
.road-fleet__intro p:last-child {
	margin-top: 18px;
	font-size: 20px;
}
.road-fleet__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}
.road-fleet-card {
	min-height: 250px;
	padding: 30px;
	border-radius: 24px;
	border: 1px solid #dbe7f0;
	background: #fff;
	box-shadow: 0 20px 44px rgba(0, 48, 96, 0.08);
}
.road-fleet-card__label {
	display: inline-flex;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(0, 48, 96, 0.06);
	font-family: "Roboto_Condensed";
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}
.road-fleet-card--accent,
.road-fleet-card--accent-secondary {
	color: #fff;
	border-color: transparent;
}
.road-fleet-card--accent {
	background: #3e97cd;
}
.road-fleet-card--accent-secondary {
	background: #3e97cd;
}
.road-fleet-card--accent .road-fleet-card__label,
.road-fleet-card--accent-secondary .road-fleet-card__label {
	background: rgba(255, 255, 255, 0.14);
}
.road-fleet-card--wide {
	grid-column: 1 / -1;
	min-height: 220px;
	background:
		linear-gradient(135deg, rgba(0, 48, 96, 0.05) 0%, rgba(89, 168, 229, 0.18) 100%);
}
.service-page--road-photos .road-fleet-card {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 0;
	border: 0px solid #dbe7f0;
}
.service-page--road-photos .road-fleet__grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}
.service-page--road-photos .road-fleet__grid > .road-fleet-card {
	grid-column: span 2;
}
.service-page--road-photos .road-fleet__grid > .road-fleet-card:nth-child(4),
.service-page--road-photos .road-fleet__grid > .road-fleet-card:nth-child(5),
.service-page--road-photos .road-fleet__grid > .road-fleet-card--wide {
	grid-column: span 3;
}
.service-page--road-photos .road-fleet-card__media {
	height: 170px;
	background: #3e97cd;
}
.service-page--road-photos .road-fleet-card__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	opacity: 0.8;
}
.service-page--road-photos .road-fleet-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px 20px 22px;
}
.service-page--road-photos .road-fleet-card--wide .road-fleet-card__media {
	height: 190px;
}
.service-page--road-photos .road-fleet-card--wide .road-fleet-card__body {
	padding: 20px 24px 24px;
}
.service-page--road-photos .road-fleet-card h3 {
	margin-top: 18px;
	font-size: 24px;
}
.service-page--road-photos .service-hero {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	display: flex;
}
.service-page--road-photos .service-hero__content {
	width: 1500px;
	max-width: 100%;
	margin: 0 auto;
	padding: 76px 30px;
}
.service-page--road-photos .service-hero__media {
	background-image: linear-gradient(90deg, rgb(62 151 205) 0%, rgb(62 151 205) 30%, rgb(33 129 181) 45%, rgba(0, 48, 96, 0) 70%), url("../image/road-hero-banner.png");
}
.service-page--road-photos .road-directions::before {
	background-image:
		linear-gradient(135deg, rgba(0, 48, 96, 0.9) 0%, rgba(0, 48, 96, 0.72) 48%, rgba(62, 151, 205, 0.0) 100%),
		url("../image/road-hero-eurasia-banner.jpg");
	background-size: cover;
	background-position: center;
}
.service-page--road-photos .road-benefits .advantages__item:first-child {
	border-left: none;
}
.service-page--road-photos .road-benefits .advantages__item:last-child {
	border-right: none;
}
.service-page--road-photos .road-process__grid {
	margin-top: 34px;
}
@media(max-width: 1200px) {
	.service-page--road-photos .road-fleet__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.service-page--road-photos .road-fleet__grid > .road-fleet-card,
	.service-page--road-photos .road-fleet__grid > .road-fleet-card:nth-child(4),
	.service-page--road-photos .road-fleet__grid > .road-fleet-card:nth-child(5),
	.service-page--road-photos .road-fleet__grid > .road-fleet-card--wide {
		grid-column: span 1;
	}
	.service-page--road-photos .service-hero__content {
		padding: 64px 30px 34px;
	}
}
@media(max-width: 700px) {
	.service-page--road-photos .road-fleet__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.service-page--road-photos .road-process__grid {
		margin-top: 20px;
	}
	.service-page--road-photos .road-fleet-card__media,
	.service-page--road-photos .road-fleet-card--wide .road-fleet-card__media {
		height: 160px;
	}
	.service-page--road-photos .road-fleet-card__body,
	.service-page--road-photos .road-fleet-card--wide .road-fleet-card__body {
		padding: 18px 18px 20px;
	}
	.service-page--road-photos .service-hero__content {
		padding: 30px 15px 24px;
	}
}
.road-directions {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
	background: var(--main-color);
}
.road-directions::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(135deg, rgba(0, 48, 96, 0.95) 0%, rgba(0, 48, 96, 0.78) 52%, rgba(89, 168, 229, 0.72) 100%),
		url("../image/branch-wide.png");
	background-size: cover;
	background-position: center;
}
.road-directions__content {
	position: relative;
	z-index: 1;
	padding: 54px 48px 48px;
}
.road-directions__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}
.road-region {
	padding: 26px 24px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	color: #fff;
}
.road-region__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}
.road-region__chips span {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	font-size: 15px;
	line-height: 1.2;
}
.road-region--wide {
	grid-column: 1 / -1;
}
.road-process__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}
.road-step {
	min-height: 300px;
	padding: 26px 24px 28px;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 20px 44px rgba(0, 48, 96, 0.08);
}
.road-step__number {
	display: block;
	color: #e2edf5;
	font-family: "Roboto_Condensed";
	font-size: 62px;
	font-weight: 800;
	line-height: 1;
}
.road-step h3 {
	font-size: 26px;
}
.road-cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 42px 46px;
	border-radius: 30px;
	background: #003060;
	color: #fff;
	overflow: hidden;
}
.road-cta::before,
.road-cta::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
}
.road-cta::before {
	width: 220px;
	height: 220px;
	right: -65px;
	top: -80px;
}
.road-cta::after {
	width: 140px;
	height: 140px;
	left: 42%;
	bottom: -75px;
}
.road-cta__content {
	position: relative;
	z-index: 1;
	max-width: 820px;
}
.road-cta__eyebrow {
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.78);
}
.road-cta__content p:last-child {
	margin-top: 12px;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
}
.road-cta .main-button {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}
@media(max-width: 1500px) {
	.service-page h1 {
		font-size: 52px;
	}
	.service-hero {
		grid-template-columns: minmax(0, 1fr) 320px;
	}
	.road-process__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media(max-width: 1200px) {
	body.service-page main .container {
		gap: 72px;
	}
	.section-heading p {
		font-size: 20px;
	}
	.service-hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.service-hero__content {
		padding: 64px 42px 34px;
	}
	.service-hero__panel {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
	}
	.road-directions__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.road-region--wide {
		grid-column: 1 / -1;
	}
}
@media(max-width: 1000px) {
	.service-page h1 {
		font-size: 42px;
	}
	.service-hero__lead {
		font-size: 20px;
	}
	.road-fleet__grid,
	.road-process__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.road-fleet-card h3,
	.road-region h3,
	.road-step h3 {
		font-size: 26px;
	}
	.road-cta {
		flex-direction: column;
		align-items: flex-start;
	}
}
@media(max-width: 700px) {
	.service-page {
		gap: 54px;
	}
	.service-page h1 {
		font-size: 32px;
	}
	.section-heading,
	.section-heading--light {
		align-items: flex-start;
	}
	.section-heading p {
		font-size: 18px;
	}
	.service-hero {
		border-radius: 24px;
	}
	.service-hero__content {
		padding: 30px 22px 24px;
	}
	.service-hero__eyebrow,
	.road-fleet__eyebrow,
	.road-cta__eyebrow {
		font-size: 14px;
	}
	.service-hero__lead {
		margin-top: 18px;
		font-size: 18px;
	}
	.service-hero__chips {
		margin-top: 22px;
	}
	.service-hero__chips span,
	.main-button,
	.ghost-button {
		width: 100%;
	}
	.service-hero__panel,
	.road-fleet__grid,
	.road-directions__grid,
	.road-process__grid {
		grid-template-columns: 1fr;
	}
	.service-stat,
	.road-fleet-card,
	.road-region,
	.road-step,
	.road-fleet__intro {
		border-radius: 22px;
	}
	.road-fleet__intro,
	.road-fleet-card,
	.road-region,
	.road-step {
		padding: 24px 20px;
	}
	.road-fleet-card--wide,
	.road-region--wide {
		grid-column: auto;
	}
	.road-directions__content {
		padding: 30px 20px;
	}
	.road-step {
		min-height: 0;
	}
	.road-step__number {
		font-size: 48px;
	}
	.road-cta {
		padding: 28px 22px;
		border-radius: 24px;
	}
	.road-cta__content p:last-child {
		font-size: 18px;
	}
	.road-cta .main-button {
		width: 100%;
	}
}
.service-page .service-hero,
.service-page .service-hero__chips span,
.service-page .main-button,
.service-page .ghost-button,
.service-page .service-stat,
.service-page .road-fleet__intro,
.service-page .road-fleet-card,
.service-page .road-fleet-card__label,
.service-page .road-directions,
.service-page .road-region,
.service-page .road-region__chips span,
.service-page .road-step,
.service-page .road-cta {
	border-radius: 0;
}
.service-page .service-hero::after,
.service-page .road-cta::before,
.service-page .road-cta::after {
	content: none;
}
/*!!!*/

/*about-company*/
.about-page {
	background:
		linear-gradient(180deg, rgba(89, 168, 229, 0.1) 0%, rgba(89, 168, 229, 0) 28%),
		#fff;
}

.about-page {
	--contacts-orange: #F59524;
}

.about-page main {
	padding: 46px 0 90px;
}

.about-page main .container {
	gap: 72px;
}

.about-hero {
	position: relative;
	overflow: hidden;
	padding: 56px 64px 62px;
	background:
		radial-gradient(circle at top right, rgba(245, 149, 36, 0.2) 0%, rgba(245, 149, 36, 0) 28%),
		linear-gradient(135deg, #003060 0%, #0f4f8d 55%, #59a8e5 100%);
	color: #fff;
}

.about-hero::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -80px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.about-hero > * {
	position: relative;
	z-index: 1;
	max-width: 860px;
}

.about-hero h1 {
	margin-top: 10px;
	font-size: 64px;
}

.about-hero__eyebrow,
.about-section-label {
	font-family: "Roboto_Condensed";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.about-hero__eyebrow {
	color: rgba(255, 255, 255, 0.72);
}

.about-hero__lead {
	margin-top: 18px;
	font-size: 24px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.about-story {
	display: flex;
	flex-direction: column;
	gap: 34px;
}

.about-story__heading {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 820px;
}

.about-story__heading h2 {
	line-height: 1.2;
}

.about-section-label {
	color: #59a8e5;
}

.about-story__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
	gap: 28px;
	align-items: start;
}

.about-story__content {
	display: flex;
	flex-direction: column;
	padding: 36px 38px;
	border: 1px solid rgba(0, 48, 96, 0.1);
	background: #fff;
	box-shadow: 0 20px 50px rgba(0, 48, 96, 0.08);
}

.about-story__timeline {
	display: grid;
	gap: 20px;
	padding: 28px;
	border-left: 6px solid var(--orange-color);
	background: linear-gradient(90deg, rgba(245, 149, 36, 0.08) 0%, rgba(245, 149, 36, 0.02) 100%);
}

.about-story__timeline-item {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
}

.about-story__timeline-date {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 14px;
	background: var(--orange-color);
	color: #fff;
	font-family: "Roboto_Condensed";
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.about-story__timeline-item p {
	margin: 0;
	line-height: 1.65;
}

.about-story__card p,
.about-director__quote p {
	line-height: 1.65;
}

.about-story__aside {
	display: grid;
	gap: 20px;
}

.about-story__card {
	padding: 32px 30px;
	background: linear-gradient(180deg, rgba(89, 168, 229, 0.12) 0%, rgba(89, 168, 229, 0.04) 100%);
	border: 1px solid rgba(89, 168, 229, 0.2);
}

.about-story__card-label, .about-story__heading h2 {
	margin-bottom: 14px;
	font-family: "Roboto_Condensed";
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
margin-left: 0 !important;
}

.about-director {
	display: grid;
	grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
	gap: 28px;
	align-items: stretch;
}

.about-director__photo {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 100%;
	padding: 32px;
	background: #0b3e72;
	color: #fff;
	overflow: hidden;
}

.about-director__photo-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.about-director__photo::before,
.about-director__photo::after {
	content: "";
	position: absolute;
}

.about-director__photo::before {
	inset: 0;
	border-radius: 0;
	background: linear-gradient(180deg, rgba(0, 48, 96, 0.08) 0%, rgba(0, 48, 96, 0.45) 100%);
}

.about-director__photo::after {
	left: -70px;
	bottom: -80px;
	width: 220px;
	height: 220px;
	background: rgba(255, 255, 255, 0.08);
}

.about-director__photo-badge {
	position: relative;
	z-index: 1;
}

.about-director__photo-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	font-family: "Roboto_Condensed";
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.about-director__content {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 36px 38px;
	background: #fff;
	box-shadow: 0 20px 50px rgba(0, 48, 96, 0.08);
	border: 1px solid rgba(0, 48, 96, 0.1);
}

.about-director__quote {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.about-director__quote p:first-child {
	font-family: "Roboto_Condensed";
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
}

.about-page ul {
	padding-left: 0;
	list-style: none;
	display: grid;
	gap: 16px;
}

.about-page ul li {
	position: relative;
	padding-left: 30px;
	line-height: 1.65;
}

.about-page ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--orange-color);
	transform: translateY(-50%);
}

@media(max-width: 1200px) {
	.about-hero {
		padding: 48px 42px 54px;
	}

	.about-hero h1 {
		font-size: 54px;
	}

	.about-story__grid,
	.about-director {
		grid-template-columns: 1fr;
	}

	.about-director__photo {
		min-height: 320px;
	}

	.about-director__photo-image {
		object-position: center top;
	}
}

@media(max-width: 700px) {
	.about-page main {
		padding: 28px 0 56px;
	}

	.about-page main .container {
		gap: 48px;
	}

	.about-hero {
		padding: 32px 24px 36px;
	}

	.about-hero h1 {
		font-size: 40px;
	}

	.about-hero__lead {
		font-size: 18px;
	}

	.about-story__content,
	.about-story__card,
	.about-director__photo,
	.about-director__content {
		padding: 24px 20px;
	}

	.about-story__timeline {
		padding: 18px;
	}

	.about-story__timeline-item {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.about-story__timeline-date {
		min-height: 42px;
		width: fit-content;
	}

	.about-story__card-label {
		font-size: 24px;
	}

	.about-director__quote p:first-child {
		font-size: 26px;
	}
}

/*!!!*/

/*projects-page*/
.projects-page {
	background:
		linear-gradient(180deg, rgba(89, 168, 229, 0.1) 0%, rgba(89, 168, 229, 0) 28%),
		#fff;
}

.projects-page {
	--orange-color: #f59524;
}

.projects-page main {
	padding: 46px 0 90px;
}

.projects-page main .container {
	gap: 72px;
}

.projects-hero {
	position: relative;
	overflow: hidden;
	padding: 56px 64px 62px;
	background:
		radial-gradient(circle at top right, rgba(245, 149, 36, 0.2) 0%, rgba(245, 149, 36, 0) 28%),
		linear-gradient(135deg, #003060 0%, #0f4f8d 55%, #59a8e5 100%);
	color: #fff;
}

.projects-hero::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -80px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.projects-hero > * {
	position: relative;
	z-index: 1;
	max-width: 860px;
}

.projects-hero h1 {
	margin-top: 10px;
	font-size: 64px;
}

.projects-hero__eyebrow {
	font-family: "Roboto_Condensed";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.projects-hero__lead {
	margin-top: 18px;
	font-size: 24px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.projects-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.project-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 48, 96, 0.1);
	box-shadow: 0 20px 50px rgba(0, 48, 96, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 60px rgba(0, 48, 96, 0.12);
}

.project-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: #e9f1f8;
}

.project-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.project-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 28px 30px 30px;
}

.project-card__label {
	font-family: "Roboto_Condensed";
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orange-color);
}

.project-card__title {
	font-size: 30px;
	line-height: 1.15;
}

@media(max-width: 1200px) {
	.projects-hero {
		padding: 48px 42px 54px;
	}

	.projects-hero h1 {
		font-size: 54px;
	}

	.projects-list {
		grid-template-columns: 1fr;
	}
}

@media(max-width: 700px) {
	.projects-page main {
		padding: 28px 0 56px;
	}

	.projects-page main .container {
		gap: 48px;
	}

	.projects-hero {
		padding: 32px 24px 36px;
	}

	.projects-hero h1 {
		font-size: 40px;
	}

	.projects-hero__lead {
		font-size: 18px;
	}

	.project-card__body {
		padding: 22px 20px 24px;
	}

	.project-card__title {
		font-size: 24px;
	}
}

/*!!!*/

/*projects-detail*/
.project-detail-page {
	background:
		/*linear-gradient(180deg, rgba(89, 168, 229, 0.1) 0%, rgba(89, 168, 229, 0) 28%),*/
		#fff;
	--orange-color: #f59524;
}

.project-detail-page main {
	padding: 46px 0 90px;
}

.project-detail-page.container {
	gap: 72px;
	padding: 0;
}

.project-detail-hero {
	position: relative;
	overflow: hidden;
	padding: 56px 64px 62px;
	background:
		radial-gradient(circle at top right, rgba(245, 149, 36, 0.2) 0%, rgba(245, 149, 36, 0) 28%),
		linear-gradient(135deg, #003060 0%, #0f4f8d 55%, #59a8e5 100%);
	color: #fff;
display: flex;
flex-direction: column;
}

/*.project-detail-hero::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -80px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}*/

.project-detail-hero > * {
	position: relative;
	z-index: 1;
}

.project-detail-hero h1 {
	margin-top: 10px;
	font-size: 64px;
}

.project-detail-hero__eyebrow {
	font-family: "Roboto_Condensed";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.project-detail-hero__lead {
	margin-top: 24px;
	font-size: 24px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.project-detail-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.project-detail-summary__card {
	padding: 28px 30px;
	background: #fff;
	border: 1px solid rgba(0, 48, 96, 0.1);
	box-shadow: 0 20px 50px rgba(0, 48, 96, 0.08);
}

.project-detail-summary__label {
	margin-bottom: 12px;
	font-family: "Roboto_Condensed";
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orange-color);
}

.project-detail-summary__card p:last-child {
	line-height: 1.6;
}

.project-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.project-gallery__item {
	position: relative;
	overflow: hidden;
	border: 0;
	padding: 0;
	background: #e9f1f8;
	aspect-ratio: 4 / 3;
	cursor: zoom-in;
	box-shadow: 0 18px 40px rgba(0, 48, 96, 0.08);
}

.project-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.project-gallery__item:hover img {
	transform: scale(1.04);
}

.project-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.project-lightbox.is-open {
	display: flex;
}

.project-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 48, 96, 0.82);
}

.project-lightbox__dialog {
	position: relative;
	z-index: 1;
	max-width: min(1100px, 100%);
	max-height: min(90vh, 100%);
	display: flex;
	align-items: center;
	gap: 18px;
}

.project-lightbox__image {
	display: block;
	max-width: 100%;
	max-height: 88vh;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.project-lightbox__close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
}

.project-lightbox__close span {
	position: absolute;
	left: 11px;
	top: 20px;
	width: 22px;
	height: 2px;
	background: #003060;
}

.project-lightbox__close span:first-child {
	transform: rotate(45deg);
}

.project-lightbox__close span:last-child {
	transform: rotate(-45deg);
}

.project-lightbox__nav {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	cursor: pointer;
	position: relative;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.project-lightbox__nav span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	border-top: 3px solid #003060;
	border-right: 3px solid #003060;
	transform-origin: center;
}

.project-lightbox__nav--prev span {
	transform: translate(-35%, -50%) rotate(-135deg);
}

.project-lightbox__nav--next span {
	transform: translate(-65%, -50%) rotate(45deg);
}
.solution-block {
	display: flex;
	gap: 18px;
}
.solution-block .road-step {
	flex: 1;
	border-radius: 0;
}
.road-step.solution_wide {
	flex: 2;
}
.solution-secrtion, .difficulty-section {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.dificulty-block {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.difficulty-item {
	border-left: 6px solid var(--orange-color);
	padding: 28px;
	padding-left: 22px;
	background: linear-gradient(to right, rgba(245, 149, 36, 0.08), rgba(245, 149, 36, 0.02));
transition: all 0.35s;
}
.difficulty-item:hover {
transform: translateY(-6px);
}
@media(max-width: 1200px) {
	.project-detail-hero {
		padding: 48px 42px 54px;
	}

	.project-detail-hero h1 {
		font-size: 54px;
	}

	.project-detail-summary,
	.project-gallery {
		grid-template-columns: 1fr 1fr;
	}

	.project-gallery__item:first-child {
		grid-column: 1 / -1;
	}
}
@media(max-width: 1000px) {
.solution-block {
	flex-wrap: wrap;
}
.solution-block .road-step {
min-width: calc(50% - 9px);
	}
.solution-secrtion, .difficulty-section {
	gap: 0px;
}
}
@media(max-width: 700px) {
.solution-block .road-step {
	min-width: 100%;
}
	.project-detail-page main {
		padding: 28px 0 56px;
	}

	.project-detail-page.container {
		gap: 48px;
	}

	.project-detail-hero {
		padding: 32px 24px 36px;
	}

	.project-detail-hero h1 {
		font-size: 40px;
	}

	.project-detail-hero__lead {
		font-size: 18px;
	}

	.project-detail-summary,
	.project-gallery {
		grid-template-columns: 1fr;
	}

	.project-detail-summary__card {
		padding: 22px 20px;
	}

	.project-lightbox {
		padding: 16px;
	}

	.project-lightbox__close {
		top: -14px;
		right: -14px;
	}

	.project-lightbox__dialog {
		gap: 10px;
	}

	.project-lightbox__nav {
		width: 44px;
		height: 44px;
	}
}

/*!!!*/

/*career*/
.career-page {
	background:
		/*linear-gradient(180deg, rgba(89, 168, 229, 0.1) 0%, rgba(89, 168, 229, 0) 30%),*/
		#fff;
	--orange-color: #F59524;
}

.career-page main {
	padding: 46px 0 90px;
}

.career-page.container {
	gap: 72px;
	padding: 0;
}

.career-hero {
	position: relative;
	overflow: hidden;
	padding: 56px 64px 62px;
	background:
		radial-gradient(circle at top right, rgba(245, 149, 36, 0.22) 0%, rgba(245, 149, 36, 0) 28%),
		linear-gradient(135deg, #003060 0%, #0f4f8d 55%, #59a8e5 100%);
	color: #fff;
}

.career-hero::after {
	content: "";
	position: absolute;
	left: -70px;
	bottom: -90px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.career-hero > * {
	position: relative;
	z-index: 1;
	max-width: 900px;
}

.career-hero h1 {
	margin-top: 10px;
	font-size: 64px;
}

.career-hero__eyebrow,
.career-section-label {
	font-family: "Roboto_Condensed";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.career-hero__eyebrow {
	color: rgba(255, 255, 255, 0.72);
}

.career-hero__lead {
	margin-top: 18px;
	font-size: 24px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.career-section-heading {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 860px;
}

.career-section-heading h2,
.career-profile__content h2 {
	line-height: 1.2;
}

.career-section-label {
	color: #59a8e5;
}

.career-benefits {
	display: flex;
	flex-direction: column;
	gap: 34px;
}

.career-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.career-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 34px 30px;
	border: 1px solid rgba(0, 48, 96, 0.1);
	background: #fff;
	box-shadow: 0 20px 50px rgba(0, 48, 96, 0.08);
}

.career-card__number {
	font-family: "Roboto_Condensed";
	font-size: 58px;
	font-weight: 800;
	line-height: 1;
	color: #d5e7f5;
}

.career-card p,
.career-profile__content p {
	line-height: 1.65;
}

.career-card__list {
	list-style: none;
	display: grid;
	gap: 0;
	padding-left: 0;
}

.career-card__list li {
	position: relative;
	padding-left: 30px;
	line-height: 1.65;
}

.career-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--orange-color);
	transform: translateY(-50%);
}

.career-profile {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 28px;
	align-items: stretch;
}

.career-profile__content,
.career-profile__actions {
	padding: 36px 38px;
	border: 1px solid rgba(0, 48, 96, 0.1);
	background: #fff;
	box-shadow: 0 20px 50px rgba(0, 48, 96, 0.08);
}

.career-profile__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.career-profile__actions {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 24px;
	background: linear-gradient(180deg, rgba(89, 168, 229, 0.12) 0%, rgba(89, 168, 229, 0.04) 100%);
	border-color: rgba(89, 168, 229, 0.2);
}

.career-links {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.career-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	border: 0;
	background: #f59524;
	color: #ffffff;
	font-family: "Roboto_Condensed";
	font-size: 20px;
	font-weight: 700;
	line-height: 1.15;
}

.career-link:hover {
	background: #003060;
	color: #fff;
}

.career-link--primary {
	background: #003060;
	border: 0;
	color: #ffffff;
}

.career-link--primary:hover {
	background: #59a8e5;
	border: 0;
}

@media(max-width: 1200px) {
	.career-hero {
		padding: 48px 42px 54px;
	}

	.career-hero h1 {
		font-size: 54px;
	}

	.career-benefits__grid,
	.career-profile {
		grid-template-columns: 1fr;
	}
}

@media(max-width: 700px) {
	.career-page main {
		padding: 28px 0 56px;
	}

	.career-page.container {
		gap: 48px;
	}

	.career-hero {
		padding: 32px 24px 36px;
	}

	.career-hero h1 {
		font-size: 40px;
	}

	.career-hero__lead {
		font-size: 18px;
	}

	.career-card,
	.career-profile__content,
	.career-profile__actions {
		padding: 24px 20px;
	}

	.career-card__number {
		font-size: 46px;
	}

	.career-link {
		padding: 16px 18px;
		font-size: 18px;
	}
}
/*!!!*/
/*contacts*/
.contacts-page {
		--contacts-main: var(--main-color, #003060);
		--contacts-blue: var(--blue-color, #59A8E5);
		--contacts-orange: var(--orange-color, #F59524);
		display: flex;
		flex-direction: column;
		gap: 24px;
		width: 100%;
	}

	.contacts-page__grid {
		display: grid;
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: 16px;
	}

	.contacts-page__card {
		position: relative;
		min-height: 292px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 26px;
		padding: 36px 40px;
		overflow: hidden;
		background: rgba(89, 168, 229, 0.12);
		color: var(--contacts-main);
	}

	.contacts-page__card::after {
		position: absolute;
		right: -66px;
		bottom: -82px;
		width: 220px;
		height: 220px;
		content: "";
		border-radius: 50%;
		background: rgba(89, 168, 229, 0.22);
		pointer-events: none;
	}

	.contacts-page__card--primary {
		background: var(--contacts-main);
		color: #ffffff;
		flex-direction: row;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.contacts-page__card--primary::after {
		background: rgba(255, 255, 255, 0.08);
	}

	.contacts-page__card--primary a {
		color: #ffffff;
	}

	.contacts-page__card--primary a:hover {
		color: var(--contacts-blue);
	}

	.contacts-page__heading {
		position: relative;
		z-index: 1;
		margin: 0;
		font-family: "Roboto_Condensed", "Roboto", sans-serif;
		font-size: 30px;
		line-height: 1.12;
		font-weight: 700;
		text-transform: uppercase;
	}

	.contacts-page__lines {
		position: relative;
		z-index: 1;
		display: flex;
		flex-direction: column;
		gap: 12px;
		font-size: 22px;
		line-height: 1.32;
	}

	.contacts-page__lines p {
		margin: 0;
	}

	.contacts-page .telegram {
		width: 42px;
		height: 42px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(255, 255, 255, 0.45);
		border-radius: 50%;
		color: #ffffff;
		transition: all 0.5s;
	}

	.contacts-page .telegram svg {
		width: 22px;
		height: 20px;
		display: block;
	}
	.contacts-page .telegram svg path {
		fill: #fff;
		transition: all 0.5s;
	}
	.contacts-page .telegram:hover svg path {
		fill: var(--blue-color);
	}
	.contacts-page .telegram:hover {
		border-color: #ffffff;
		background: #ffffff;
		color: var(--contacts-main);
	}

	.contacts-page__mark {
		position: relative;
		z-index: 1;
		flex: 0 0 auto;
		width: 28px;
		height: 28px;
		border-radius: 50%;
		background: var(--contacts-orange);
	}

	.contacts-page__map {
		position: relative;
		min-height: 430px;
		overflow: hidden;
		background: #d8e4ef;
	}

	.contacts-page__map iframe {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		border: 0;
	}

	.contacts-page__branches {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.contacts-page__branch {
		min-height: 270px;
		display: flex;
		align-items: flex-start;
		gap: 22px;
		padding: 34px 38px;
		border: 1px solid rgba(0, 48, 96, 0.22);
		background: #ffffff;
		transition: all 0.5s;
	}

	.contacts-page__branch:hover {
		border-color: var(--contacts-blue);
		background: rgba(89, 168, 229, 0.08);
	}

	.contacts-page__branch .contacts-page__heading {
		margin-bottom: 32px;
		color: var(--contacts-blue);
	}

	.contacts-page__accent {
		flex: 0 0 auto;
		width: 28px;
		height: 28px;
		margin-top: 3px;
		border-radius: 50%;
		background: var(--contacts-orange);
	}

	@media (max-width: 1200px) {
		.contacts-page__grid,
		.contacts-page__branches {
			grid-template-columns: 1fr;
		}

		.contacts-page__card,
		.contacts-page__branch {
			min-height: auto;
		}

		.contacts-page__map {
			min-height: 380px;
		}
	}

	@media (max-width: 700px) {
		.contacts-page {
			gap: 15px;
		}

		.contacts-page__card,
		.contacts-page__branch {
			padding: 24px 20px;
		}

		.contacts-page__card--primary,
		.contacts-page__branch {
			gap: 14px;
		}

		.contacts-page__heading {
			font-size: 24px;
		}

		.contacts-page__lines {
			gap: 9px;
			font-size: 18px;
		}

		.contacts-page__map {
			min-height: 320px;
		}

		.contacts-page__mark,
		.contacts-page__accent {
			width: 22px;
			height: 22px;
		}
	}
@media (min-width: 1000px) {
h2 {
    border-bottom: 2px solid #59a8e5;
	}
h2:not(.services-section h2) {

    padding-bottom: 0px;
    margin-bottom: 50px;
}
/*!!!*/







body h2 {
    font-size: 48px;
    line-height: 156%;
		font-weight: 900;}

.main-banner-block {
    background: rgb(0 48 96 / 32%);
		backdrop-filter: blur(10px);}

@media (min-width: 1000px) {
    h2 {
        border-bottom: 0px solid #59a8e5;
    }
}


header .container {

    font-weight: 400;

    font-family: "Roboto";
}

header nav ul li a {
    line-height: 0.87;
    font-size: 16px;
}

body .solution-btn {
    padding: 5px 7px;
    background: #ffffff;
    border-radius: 0px;
    max-width: 165px;
    height: auto !important;
    color: #003060 !important;

    border: 1px solid #003060;
}

.advantages__icon-box svg path {
    strok1e: #e5e6e7;filter: grayscale(1) brightness(1.3);
}

.advantages__icon-box svg path {

}

.language-select__button {

			padding: 5px;}


/*@media (max-width: 1150px) {
    header nav {
        display: none !important;
    }
}*/
	@media screen and (max-width: 1150px) and (min-width: 701px) {
        .header_right {
			max-width: 320px !important;}
}
@media (max-width: 1500px) {  
.language-select__button {
			width: 40px;font-size: 14px;}
.header_right {
            flex-wrap: wrap-reverse;

        }
        body .solution-btn {

			max-width: 100% !important;width: 100%;}

header .container > a {
    height: 57px;
    display: flex;
    align-items: center;
}  header .container > a img {
        width: 80px;
    }
        header nav ul li a {

        font-size: 14px;
    }
}

@media (max-width: 1150px) {
    .burger {
        display: block;
    }
}
@media screen and (max-width: 1450px) and (min-width: 701px) {
    .header_right {
        flex-wrap: wrap-reverse;
        max-width: 220px;
        gap: 7px 15px !important;
    }

.telegram {

			width: 20px;}
        .header_right {
            flex-wrap: wrap-reverse;
            max-width: 220px;
            gap: 7px 5px !important;
        }



body .solution-btn {
    padding: 2px 7px;
    background: #ffffff;
    border-radius: 0px;
    max-width: 165px;
    height: auto !important;
    color: #003060 !important;

    border: 1px solid #003060;
}
body .solution-btn:hover {
            background: #89bbe575;
}
}
body .solution-btn:hover {
            background: #89bbe575;
}