*{
	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: #F59524;
	--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 styles*/
h1 {
	font-family: "Roboto_Condensed"; 
    text-transform: uppercase;
	font-size: 46px;
	line-height: 110%;
	font-weight: 800;
}
h2 {
	font-size: 48px;
	line-height: 156%;
	font-weight: 500;
}
/*!!!*/

/*inputs/selects styles*/

/*!!!*/

/*buttons*/

/*!!!*/

.container {
	width: 1500px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}
main .container {
	display: flex;
	flex-direction: column;
	gap: 125px;
}
.blue-bg {
	background: var(--blue-color) !important;
}
.main-blue-bg {
	background: var(--main-color) !important;
}
/*header*/
header {
position: relative;
}
header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	padding: 44px 20px;
	font-family: "Roboto_Condensed"; 
}
header .container > a {
	height: 57px;
	display: block;
}
header nav ul {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	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: 55px;
}
.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: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: 1001px) {
	header nav {
		display: block !important;
	}
}
@media(min-width: 701px) {
	.phones_mob {
		display: none;
	}
}
@media(max-width: 1000px) {
	header nav {
		position: absolute;
		width: 100%;
        left: 0;
        top: 117px;
        z-index: 9999;
        padding: 30px;
        background-color: #fff;
	}
    header nav ul::before {
        content: '';
        width: calc(100% - 60px);
        height: 2px;
        background-color: #244D77;
        position: absolute;
        top: 0;
        left: 30px;
    }
	header nav ul li {
		position: relative;
		z-index: 99999;
	}
}
@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;
	}
}
/*!!!*/

/*footer*/
.line {
	width: 100%;
	height: 1px;
	background: var(--main-color);
	margin-top: -20px;
}
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: 167px;
	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 {
	max-width: 184px;
	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: center;
	text-transform: uppercase;
}
/*!!!*/

/*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: 80px;
}
.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);
}
.top_banner {
	height: calc(100vh - 145px);
	max-height: 854px;
	margin-bottom: 9px;
}
.top_slider__container {
	position: absolute;
	top: 145px;
	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;
}
.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 svg {
	transition: all 0.5s;
}
.touch-us-block a:hover svg {
	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: 350px;
	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 {
	margin-top: 5px;
	font-size: 30px;
}
.main-banner__text_big {
	font-size: 40px;
}
main {
	overflow: clip;
}
#services-slider {
	margin: 0 -7px;
}
.services-section .blue-arrows .slick-arrow, .services-section .blue-arrows .slick-dots {
	background: var(--blue-color);
	top: 90px;
}
.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.slick-active button, .services-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 {
	transition: all 0.5s;
	z-index: 0;
}
.advantages__inner {
  max-width: 1434px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: advantage;
  margin: 0 auto;
}

.advantages__item {
  position: relative;
  padding: 0 26px 0 27px;
  border-left: 1px solid #edf0f3;
  counter-increment: advantage;
}

.advantages__item: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 {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.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: 20px;
  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: rgba(90, 192, 246, 0.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: 78%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 223px);
  gap: 0;
}
.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;
  background: #000;
  
}
.grid-block__item p {
  margin: 0;
}
.grid-block__item--top-left {
  grid-column: 1 / span 2;
  grid-row: 1;
}
.grid-block__item--top-right {
  grid-column: 4 / span 2;
  grid-row: 1 / span 2;
}
.grid-block__item--bottom-left {
  grid-column: 1 / span 2;
  grid-row: 3;
}
.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: #003060;
  position: relative;
  z-index: 1;
}

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

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

.service-card__media img {
  width: auto;
  min-height: 315px;
  position: absolute;
  top: 0;
}

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

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

.service-card__arrow {
  width: 11px;
  height: 11px;
  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);
}
.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;
}

.logos__item img {
  width: auto;
  height: auto;
}
.news__grid {
  width: 100%;
  max-width: 1440px;
  height: 384px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
}

.news-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
}

.news-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.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;
	background: 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__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);
}
.news-card__content--wide {
  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.8);
}

.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: 30px;
	}
	.main-banner__text_small {
		font-size: 20px;
	}
	.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 {
		max-width: 100%;
		width: 100%;
		flex-direction: row;
		justify-content: center;
		order: 1;
	}
	.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: 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));
		height: 682px;
	}
	.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: 1000px) {
	.services-section .blue-arrows .slickNext {
		left: 216px;
	}
	.services-section .blue-arrows .slick-arrow, .services-section .blue-arrows .slick-dots {
		top: 65px;
	}
	header nav {
		display: none;
	}
	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: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) {
	#services-slider {
		width: 55%;
	}
	.services-section .blue-arrows .slick-arrow, .services-section .blue-arrows .slick-dots {
		top: unset;
		bottom: -58px;
	}
	h2 {
		text-align: center;
		margin-bottom: 15px;
	}
	.advantages-section h2 {
		margin-bottom: 0 !important;
	}
	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: 142px;
	}
	.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, .main-banner__text_small {
		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);
	}
	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;
	}
  .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__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        height: 1300px;
		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 {
		width: 100%;
		height: auto;
	}
	#services-slider .slick-list {
		overflow: hidden;
	}
}
/*!!!*/