@import url("../css/reset.css");
@import url("../fonts/fonts.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #2A2A2A;
  font-size: 14px;
  font-weight: 500;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.font-uni {
  font-family: "Uni Sans", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  aspect-ratio: attr(width)/attr(height);
}

.link-white a {
  color: #fff;
}

.font-i {
  font-style: italic;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}

.fs-28 {
  font-size: 28px;
}

.fs-30 {
  font-size: 28px;
}

.fs-32 {
  font-size: 32px;
}

.fs-40 {
  font-size: 40px;
}

.fs-66 {
  font-size: 66px;
}

.fs-92 {
  font-size: 92px;
}

.fs-200 {
  font-size: 200px;
}

.text-center {
  text-align: center;
}

.text-blue-1 {
  color: #021B50;
}

.text-blue-2 {
  color: #7E89A0;
}

.text-blue-3 {
  color: #B5C0DB;
}

.text-white {
  color: #fff;
}

.text-gray {
  color: #B6B6B6;
}

.text-black {
  color: #2A2A2A;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
}

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

.container-full {
  padding: 0;
}

.d-block {
  display: block;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.title-section {
  margin-bottom: 60px;
}

.bg-blue {
  background: #021B50;
}

.bg-white {
  background: #fff;
}

.d-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.skewx {
  width: 100%;
  height: 100%;
  -webkit-transform: skewX(-8deg);
      -ms-transform: skewX(-8deg);
          transform: skewX(-8deg);
}

.skewx-reverse {
  -webkit-transform: skewX(8deg);
      -ms-transform: skewX(8deg);
          transform: skewX(8deg);
}

.btn {
  padding: 16px;
  color: #fff;
  border-radius: 8px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.btn.btn-block {
  width: 100%;
}
.btn.btn-blue {
  background: #021B50;
}
.btn.btn-blue:hover {
  background: #7E89A0;
}

.rad-16 {
  border-radius: 16px;
}

.mb-127 {
  margin-bottom: 127px;
}

.title-section-fixed {
  max-width: 859px;
  margin: 0 auto 60px;
}

.z-index-9 {
  z-index: 9;
}

.swiper {
  width: 100%;
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  background: #fff;
  border-radius: 0 0 12px 12px;
  z-index: 99;
}
.header .header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 0;
}
.header .header-top .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.header .header-top .info-item div,
.header .header-top .info-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.header .header-top .lang .dropmenu-lang {
  visibility: hidden;
}
.header .header-top .lang.active .dropmenu {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  top: -10px;
  visibility: visible;
}
.header .header-menu {
  border-top: 1px solid #B6B6B6;
  padding: 14px 0;
}
.header .header-menu .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header-menu .wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}
.header .header-menu .wrap ul a {
  color: #B6B6B6;
}
.header .header-menu .wrap .menu .shop-link {
  border-right: 1px solid #B6B6B6;
  padding-right: 22px;
}
.header .header-menu .wrap .menu .shop-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #021B50;
}

.section-hero {
  background: #021B50 url(../images/head-car.webp) no-repeat bottom 40px right;
  position: relative;
  padding: 260px 0;
  color: #fff;
}
.section-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
.section-hero .hero-box {
  max-width: 715px;
}
.section-hero .hero-box .small-text {
  max-width: 570px;
}

.section-services-menu .services-menu a {
  position: relative;
  display: block;
  border-radius: 10px;
  padding: 30px 30px 36px;
  color: #2A2A2A;
  height: 100%;
}
.section-services-menu .services-menu a .icon {
  position: absolute;
  right: 0;
  bottom: -2px;
}
.section-services-menu .services-menu a .link-info {
  max-width: 330px;
}
.section-services-menu .services-menu .slim-menu,
.section-services-menu .services-menu .fat-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.section-services-menu .services-menu .slim-menu a {
  background: #B5C0DB;
}
.section-services-menu .services-menu .fat-menu {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}
.section-services-menu .services-menu .fat-menu a {
  height: 468px;
  border: 1px solid #7E89A0;
}

.section-promo .promo-wrap {
  display: grid;
  grid-template-columns: 270px 1fr;
}
.section-promo .swiper-carousel {
  padding: 0 56px 0 10px;
}
.section-promo .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 40px;
}
.section-promo .swiper-pagination .slide-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  background: #2A2A2A url(../images/icons/slide-arrow.svg) no-repeat center;
}
.section-promo .swiper-pagination .slide-arrow.next-slide {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.section-promo .swiper-pagination .slide-arrow:hover {
  background: #B6B6B6 url(../images/icons/slide-arrow.svg) no-repeat center;
}
.section-promo .swiper .swiper-wrapper {
  margin-left: 22px;
}
.section-promo .swiper .swiper-wrapper .slide-carousel {
  width: 345px;
}
.section-promo .swiper .swiper-wrapper .slide-carousel .promo-item {
  border-radius: 10px;
  overflow: hidden;
}
.section-promo .swiper .swiper-wrapper .slide-carousel .promo-item .poster img {
  display: block;
  position: relative;
  left: -15px;
  width: calc(100% + 30px);
  max-width: inherit;
}
.section-promo .swiper .swiper-wrapper .slide-carousel .promo-item .desc {
  background: #7E89A0;
  padding: 15px 45px 45px;
}

.section-contacts .contacts {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;
}
.section-contacts .contacts .addresses-wrap {
  padding: 60px;
  color: #fff;
}
.section-contacts .contacts .addresses-wrap .tabs-head {
  font-size: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  color: #7E89A0;
}
.section-contacts .contacts .addresses-wrap .tabs-head li {
  cursor: pointer;
}
.section-contacts .contacts .addresses-wrap .tabs-head li.active {
  color: #fff;
}
.section-contacts .contacts .addresses-wrap .address-item {
  margin-bottom: 20px;
  font-size: 20px;
}
.section-contacts .contacts .addresses-wrap .address-item:last-child {
  margin-bottom: 0;
}
.section-contacts .contacts .addresses-wrap .address-item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.section-contacts .contacts .addresses-wrap .collapse-item {
  margin-top: 40px;
}
.section-contacts .contacts .addresses-wrap .collapse-item .collapse-head {
  cursor: pointer;
}
.section-contacts .contacts .addresses-wrap .collapse-item .collapse-body {
  display: none;
  margin-top: 27px;
}
.section-contacts .contacts .addresses-wrap .collapse-item.active .collapse-body {
  display: block;
}
.section-contacts .contacts .map-wrap {
  overflow: hidden;
}
.section-contacts .contacts .map-wrap .map {
  margin: -110px -15px 0 -110px;
  height: 100%;
}
.section-contacts .contacts .map-wrap .map iframe {
  width: 100%;
  height: calc(100% + 110px);
}

.section-benefits .video-slider {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.section-benefits .video-slider:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.section-benefits .video-slider video {
  width: 100%;
}
.section-benefits .video-slider .slide-item {
  position: absolute;
  top: 0;
  right: 50px;
  height: 100%;
  width: 50%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 45px;
}
.section-benefits .video-slider .slide-item .item {
  color: #fff;
  opacity: 0.2;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.section-benefits .video-slider .slide-item .item.active {
  opacity: 1;
}

.section-statistics {
  padding: 60px 0 80px;
  color: #fff;
}
.section-statistics .statistics-wrap {
  max-width: 1038px;
  padding: 0;
  position: relative;
  left: 50px;
}
.section-statistics .statistics-works {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}
.section-statistics .statistics-works .item {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 50px 45px;
}
.section-statistics .statistics-works .item:last-child {
  position: relative;
  left: -50px;
  grid-column-start: 1;
  grid-column-end: 3;
}
.section-statistics .statistics-works .item .info {
  max-width: 684px;
  margin: 0 auto;
}

.section-team .team .team-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.section-team .team .team-col:last-child {
  margin-top: 60px;
}
.section-team .team .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.section-team .team .item .position-wrap {
  width: auto;
  height: 52px;
  position: absolute;
  top: 30px;
  left: 30px;
  color: #fff;
  background: #021B50;
  border-radius: 5px;
}
.section-team .team .item .position-wrap .position-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 18px;
}
.section-team .team .item .position-wrap .position-box .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 62px;
  height: 52px;
  background: #fff;
  border-radius: 5px;
  margin-right: 10px;
}
.section-team .team .item .info-wrap {
  position: absolute;
  bottom: -94px;
  left: 0;
  width: 100%;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.section-team .team .item .info-wrap .info {
  color: #fff;
}
.section-team .team .item .info-wrap .info .desc {
  padding: 0 40px 40px;
}
.section-team .team .item .info-wrap .info .desc span {
  margin-right: 15px;
}
.section-team .team .item .info-wrap .info .desc span:last-child {
  margin-right: 0;
}
.section-team .team .item .info-wrap .sertificat {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #B5C0DB;
  border-radius: 10px 10px 20px 20px;
  padding: 19px 60px 16px;
}
.section-team .team .item:hover .info-wrap {
  bottom: 0;
}

.card-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.card-products .card {
  padding: 10px;
}
.card-products .card .title {
  display: block;
  margin-top: 15px;
}
.card-products .card .price {
  margin: 8px 0 20px;
}

.footer {
  background: #021B50;
  padding: 26px 0 50px;
  color: #fff;
  margin-top: 120px;
}
.footer .footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.footer .f-title {
  margin-bottom: 15px;
}
.footer .logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 319px;
}
.footer .copyright {
  opacity: 0.2;
}
.footer .footer-menu li a {
  display: block;
  margin-bottom: 8px;
}
.footer .footer-menu li:last-child a {
  margin-bottom: 0;
}
.footer .partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-top: 27px;
}