@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "beta";
  src: url("../assets/font/FontsFree-Net-Inter-Light-BETA.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

body * {
  box-sizing: border-box;
}

.body-overflow {
  overflow: hidden;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
li {
  padding: 0;
  margin: 0;
}

ul {
  list-style-type: none;
}

.container {
  width: 100%;
  max-width: 1380px;
  padding: 0 40px;
}

.btn,
.btn-black,
.btn-white {
  background-color: #6DD400;
  padding: 17px 50px 17px 30px;
  color: #0F0F0F;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
  border: none;
  border-radius: unset;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:after,
.btn-black:after,
.btn-white:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 2px;
  width: 20px;
  background-color: #0F0F0F;
}

.btn-black {
  background-color: #0E0F14;
  color: #8CD9CC;
}

.btn-black:after {
  background-color: #8CD9CC;
}

.btn-black:hover {
  background-color: #28292F;
  color: #8CD9CC;
}

.btn-white {
  background-color: white;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #0F0F0F;
}

.btn:hover {
  background: #88F316;
  color: #0F0F0F;
}

.btn-hover:hover {
  padding-right: 70px;
}

.btn-hover:hover:after {
  width: 40px;
}

.link {
  color: #0F0F0F;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 21px;
  display: inline-flex;
  align-items: center;
  border: none;
  background-color: transparent;
  padding: 0;
  transition: all 0.3s;
}

.link svg {
  transition: all 0.3s;
  margin-left: 8px;
}

.link:hover {
  color: #6DD400;
}

.link:hover svg {
  margin-left: 18px;
}

.link:hover svg * {
  fill: #6DD400;
}

.title-m,
.title-m-light,
.title-m-bold {
  color: #0F0F0F;
  font-size: 28px;
  letter-spacing: -0.6px;
  line-height: 38px;
  font-weight: 300;
}

.title-m-light {
  color: #61646B;
}

.title-m-bold {
  font-weight: bold;
}

.descr-s {
  color: #61646B;
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.more .link {
  margin-top: 40px;
}

.more .link:hover svg {
  margin-left: 8px;
}

.more-show {
  animation-name: zoom-in;
  animation-duration: 0.2s;
  opacity: 1;
  display: block;
}

.more-hide {
  animation-name: zoom-out;
  animation-duration: 0.3s;
  opacity: 0;
  display: none;
}

.list-num {
  padding-left: 20px;
}

.list-num li {
  counter-increment: item;
  padding-left: 20px;
  margin-top: 8px !important;
}

.list-num li:first-child {
  counter-reset: item;
}

.list-num li::marker {
  color: #0C0E12;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 28px;
}

.list-num ol {
  padding-left: 0;
}

.list-num ol li {
  display: block;
}

.list-num ol li:before {
  content: counters(item, ".") ".";
  padding-right: 15px;
  color: #0C0E12;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 28px;
}

.list .descr-s-l,
.check-list .descr-s-l {
  margin-top: 8px;
  position: relative;
  padding-left: 24px;
}

.list .descr-s-l:first-child,
.check-list .descr-s-l:first-child {
  margin-top: 16px;
}

.list .descr-s-l:after,
.check-list .descr-s-l:after {
  position: absolute;
  content: url("/images/html/ic-list.svg");
  left: 0;
  top: 60%;
  transform: translateY(-50%);
}

.check-list .descr-s-l {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 24px;
  padding-left: 36px;
  margin-top: 12px;
}

.check-list .descr-s-l:first-child {
  margin-top: 0;
}

.check-list .descr-s-l:after {
  content: url("/images/html/ic-check-circle.svg");
}

@keyframes zoom-in {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoom-out {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0);
    opacity: 0;
  }
}

.wrapper {
  display: flex;
  width: 100%;
}

.wrapper-left {
  width: 50.625%;
  display: flex;
  justify-content: flex-end;
}

.wrapper-left-deep {
  width: 100%;
  max-width: 660px;
}

.wrapper-right {
  width: 49.375%;
  display: flex;
  justify-content: flex-start;
}

.wrapper-right-deep {
  width: 100%;
}

.wrapper-right-deep-wrap {
  max-height: 800px;
  height: 100%;
  position: relative;
}

.wrapper-right-deep-wrap img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper-right-deep-wrap svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.wrapper .clip {
  position: relative;
}

.wrapper .clip:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 50px solid #DADADA;
  border-left: 50px solid transparent;
  top: 0;
  right: 0;
}

@media (max-width: 1380px) {
  .wrapper-left-deep {
    padding-left: 40px;
  }
}

@media (max-width: 750px) {
  .wrapper {
    flex-direction: column;
  }

  .wrapper-left {
    width: 100%;
  }

  .wrapper-right {
    width: 100%;
  }
}

.title-l-w,
.title-l-b {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: -0.7px;
  line-height: 48px;
}

.title-l-b {
  color: #0C0E12;
}

.textWrap {
  position: relative;
}

.textWrap .text {
  opacity: 0;
}

.textWrap .writeText {
  position: absolute;
  top: 0;
  left: 0;
}

#my-text span:not(:first-child) {
  opacity: 0;
}

.animated-text-cursor {
  background-color: #6DD400;
  display: inline-flex;
  height: 48px;
  width: 1px;
  position: relative;
  top: 5px;
}

.banner {
  padding-top: 266px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.banner iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
}

.banner-wrap {
  background-color: rgba(14, 15, 17, 0.9);
  padding: 50px;
  width: 100%;
  max-width: 712px;
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 8%, 95% 0);
  backdrop-filter: blur(5px);
}

.banner-wrap-title {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: -0.7px;
  line-height: 48px;
  text-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.3);
}

.banner-wrap-title span {
  color: #6DD400;
}

.banner-wrap .my-text {
  color: #6DD400;
}

.banner-wrap-descr {
  margin-top: 20px;
  color: #C7CED1;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

.banner-wrap .btn {
  margin-top: 40px;
}

.video-bg {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 800px) {
  .banner-wrap {
    width: 100%;
  }
}

@media (max-width: 775px) {
  .banner {
    text-align: center;
    padding-top: 0;
  }

  .banner .container {
    padding: 0;
  }

  .banner-wrap .btn {
    width: 100%;
  }

  .video-bg {
    position: static;
  }

}



.services {
  margin-top: 70px;
}

.services-title {
  color: #61646B;
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 34px;
  text-align: center;
  font-weight: 300;
}

.services-content {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  margin-top: 40px;
}

.services-content-item {
  background-color: #EEF0F1;
  width: calc(25% - 17px);
  cursor: pointer;
  position: relative;
  height: 149px;
}

.services-content-item-wrap {
  max-height: 149px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #EEF0F1;
  padding: 30px 30px 26px 30px;
  border: 1px solid #EEF0F1;
  transition: all 0.4s;
  position: absolute;
}

.services-content-item-title {
  color: #0F0F0F;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: -0.6px;
  line-height: 26px;
  margin-top: 16px;
  max-width: 80%;
}

.services-content-item-hidden {
  margin-top: 14px;
  transition: ease 0.3s;
  max-height: 0;
  visibility: hidden;
}

.services-content-item-hidden-descr {
  color: #61646B;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 22px;
}

.services-content-item-hidden .link {
  margin-top: 64px;
  font-size: 16px;
}

.services-content-item-hidden .btn {
  position: relative;
  width: calc(100% + 60px);
  left: -30px;
  bottom: -26px;
  text-align: start;
}

@media (min-width: 900px) {
  .services-content-item:hover .services-content-item-wrap {
    border-color: #6DD400;
    background-color: #FFFFFF;
    position: absolute;
    max-height: 1000px;
  }

  .services-content-item:hover svg path {
    fill: #6DD400;
  }

  .services-content-item:hover .services-content-item-hidden {
    visibility: visible;
    max-height: 1000px;
  }

  .services-content-item:hover:after {
    position: absolute;
    content: "";
    bottom: calc(-100% - 100px);
    height: calc(100% + 100px);
    width: 100%;
    background: white;
    pointer-events: unset;
  }

  .services-content-item:after {
    position: absolute;
    content: "";
    bottom: calc(-100% - 100px);
    height: calc(100% + 100px);
    width: 100%;
    background: white;
    pointer-events: none;
  }
}

@keyframes scroll {
  from {
    height: 100%;
  }

  to {
    height: 0;
  }
}

@media (max-width: 900px) {
  .services .container {
    padding: 0 20px;
  }

  .services-content-item {
    width: calc(33.333% - 16px);
  }
}

@media (max-width: 650px) {
  .services-content-item {
    width: calc(50% - 12px);
  }
}

@media (max-width: 575px) {
  .services-content {
    row-gap: 10px;
  }

  .services-content-item {
    width: 100%;
    display: flex;
    align-items: center;
    height: unset;
    position: relative;
  }

  .services-content-item-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 20px 46px 20px 20px;
    position: static;
  }

  .services-content-item-wrap:after {
    position: absolute;
    content: url("/images/html/ic-arrow-menu.svg");
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }

  .services-content-item-title {
    margin-top: 0;
  }

  .services-content-item-hidden {
    display: none;
  }
}

.about {
  background-color: #EEEFF1;
  margin-top: 70px;
  position: relative;
}

.about-info {
  padding: 164px 130px 162px 0;
}

.about-info-title {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: -0.8px;
  line-height: 54px;
}

.about-info-descr {
  margin-top: 30px;
  color: #61646B;
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.about-info .link {
  margin-top: 32px;
}

.about-info-wrap {
  margin-top: 70px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
}

.about-info-wrap-item {
  width: calc(33.33333% - 7px);
}

.about-info-wrap-item-num {
  margin-top: 26px;
  color: #0F0F0F;
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 29px;
}

.about-info-wrap-item-title {
  margin-top: 6px;
  color: #61646B;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 22px;
}

.about .clip:after {
  border-bottom: 50px solid #EEF0F1;
  border-right: 50px solid transparent;
  border-top: unset;
  border-left: unset;
  left: 0;
  top: unset;
  bottom: 0;
}

@media (max-width: 975px) {
  .about-info {
    padding: 40px 15px 60px 0;
  }

  .about-info-wrap {
    row-gap: 10px;
  }

  .about-info-wrap-item {
    width: calc(50% - 5px);
  }
}

@media (max-width: 750px) {
  .about {
    flex-direction: column-reverse;
  }
}

@media (max-width: 675px) {
  .about-info-wrap {
    margin-top: 52px;
  }

  .about-info-wrap-item {
    width: calc(33.33333% - 7px);
  }
}

@media (max-width: 550px) {
  .about-info-wrap-item {
    width: 100%;
    position: relative;
  }

  .about-info-wrap-item svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
  }
}

.smallBanner {
  margin-top: 80px;
}

.smallBanner-wrap {
  background-position: center;
  /* background-size: 100% 100%; */
  background-size: cover;
  background-repeat: no-repeat;
  padding: 93px 100px;
  position: relative;
  overflow: hidden;
}

.smallBanner-wrap-content {
  max-width: 650px;
  position: relative;
  z-index: 4;
}

.smallBanner-wrap-content-title {
  color: #FFFFFF;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: -0.8px;
  line-height: 50px;
}

.smallBanner-wrap-content-title span {
  color: #6DD400;
}

.smallBanner-wrap-content .btn {
  margin-top: 40px;
  height: 64px;
  min-width: 199px;
}

.smallBanner-wrap .vector {
  position: absolute;
  top: -162px;
  right: -151px;
}

@media (max-width: 775px) {
  .smallBanner {
    margin: 0;
  }

  .smallBanner .container {
    padding: 0;
  }

  .smallBanner .container svg {
    display: none;
  }
}

@media (max-width: 400px) {
  .smallBanner-wrap {
    padding: 40px;
  }

  .smallBanner-wrap-content-title {
    font-size: 28px;
  }

  .smallBanner-wrap-content .btn {
    width: 100%;
  }
}

.thumb .swiper-wrapper .swiper-slide {
  height: 80px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.thumb .swiper-wrapper .swiper-slide-thumb-active {
  background-color: #EEEFF1;
}

.slide-window {
  position: relative;
  max-width: 640px;
}

.slide-window .mySwiper {
  margin: 50px 0 0 0;
  width: 100%;
  min-height: 360px;
  position: relative;
}

.slide-window .mySwiper .swiper-wrapper {
  position: relative;
}

.slide-window .mySwiper .swiper-wrapper .swiper-slide {
  padding: 50px 50px 35px 50px;
  background-color: #EEEFF1;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.slide-window .mySwiper .swiper-wrapper .swiper-slide-descr {
  color: #61646B;
  font-size: 19px;
  letter-spacing: -0.6px;
  line-height: 26px;
  flex-grow: 2;
}

.slide-window .mySwiper .swiper-wrapper .swiper-slide-bottom {
  padding-right: 100px;
}

.slide-window .mySwiper .swiper-wrapper .swiper-slide-bottom-title {
  color: #0F0F0F;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 26px;
  margin-bottom: 1px;
}

.slide-window:after {
  content: "";
  position: absolute;
  top: -29px;
  left: 85px;
  border: 15px solid transparent;
  border-bottom: 14px solid #EEEFF1;
}

.slide-window-btns {
  display: flex;
  position: absolute;
  bottom: 35px;
  right: 35px;
  z-index: 10;
}

.slide-window-btns .swiper-next,
.slide-window-btns .swiper-prev {
  height: 54px;
  width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.3s;
}

.slide-window-btns .swiper-next:hover,
.slide-window-btns .swiper-prev:hover {
  background-color: #88F316;
}

@media (max-width: 900px) {
  .slide-window .mySwiper .swiper-wrapper .swiper-slide-bottom {
    padding-right: 0;
  }
}

.delivery {
  background-color: #EEEFF1;
  padding: 70px 0;
}

.delivery .wrapper-left-deep {
  padding-top: 93px;
  padding-bottom: 93px;
}

.delivery .wrapper-left-deep .delivery-left-content {
  margin-top: 40px;
  max-width: 530px;
  padding-left: 3px;
  padding-right: 10px;
}

.delivery .wrapper-left-deep .delivery-left-content button {
  color: #05051A;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 30px;
  margin-top: 20px;
  border: none;
  padding: 0 0 0 30px;
  position: relative;
  text-align: start;
  background-color: #EEEFF1;
}

.delivery .wrapper-left-deep .delivery-left-content button:after {
  content: url("/images/html/list-item-arrow-black.svg");
  position: absolute;
  top: 0;
  left: 0;
}

.delivery .wrapper-left-deep .delivery-left-content button:hover {
  color: #6DD400;
}

.delivery .wrapper-left-deep .delivery-left-content button:hover:after {
  content: url("/images/html/list-item-arrow.svg");
}

.delivery .wrapper-left-deep .delivery-left-content .active {
  color: #6DD400;
}

.delivery .wrapper-left-deep .delivery-left-content .active:after {
  content: url("/images/html/list-item-arrow.svg");
}

.delivery .wrapper-left-deep .nav {
  display: block;
}

.delivery .wrapper-right {
  background-color: #0F0F0F;
}

.delivery .wrapper-right-deep {
  max-width: 640px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.delivery .wrapper-right-deep .delivery-right-content {
  flex-grow: 2;
  margin-bottom: 20px;
}

.delivery .wrapper-right-deep .delivery-right-content .title-m {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.delivery .wrapper-right-deep .delivery-right-content .title-m span {
  color: #6DD400;
}

.delivery .wrapper-right-deep .delivery-right-content .delivery-right-content-descr {
  opacity: 0.7;
  color: #FFFFFF;
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 26px;
  margin-top: 14px;
}

.delivery .wrapper-right-deep .btn {
  min-height: 64px;
  min-width: 268px;
}

.advantages {
  border-bottom: 1px solid #EEF0F1;
}

.advantages .wrapper-left {
  padding: 140px 130px 140px 0;
}

.advantages .wrapper-left-deep {
  max-width: 530px;
}

.advantages .wrapper-left-deep .advantages-subtitle {
  color: #0F0F0F;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 30px;
  text-decoration: underline;
}

.advantages .wrapper-left-deep .advantages-section-one .advantages-subtitle {
  margin-top: 39px;
  margin-bottom: 30px;
}

.advantages .wrapper-left-deep .advantages-section-one .descr-s {
  margin-top: 20px;
}

.advantages .wrapper-left-deep .advantages-section-two {
  margin-top: 40px;
  display: flex;
}

.advantages .wrapper-left-deep .advantages-section-two-wrap {
  padding: 30px;
  background-color: #EEEFF1;
}

.advantages .wrapper-left-deep .advantages-section-two-wrap-title {
  margin-top: 20px;
  color: #0F0F0F;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.advantages .wrapper-left-deep .advantages-section-two-wrap-descr {
  margin-top: 13px;
  color: #61646B;
  font-size: 14px;
  letter-spacing: -0.3px;
  line-height: 22px;
}

.advantages .wrapper-left-deep .advantages-section-two-wrap-price {
  margin-top: 28px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 20px;
  background-color: #0F0F0F;
  padding: 10px 20px 10px 30px;
  position: relative;
  left: -30px;
  width: calc(100% + 20px);
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 22%, 93% 0);
}

.advantages .wrapper-left-deep .advantages-section-two-wrap .link {
  margin-top: 30px;
}

.advantages .wrapper-left-deep .advantages-section-two-wrap:first-child {
  background-color: rgba(237, 240, 242, 0.5);
}

.advantages .wrapper-left-deep .advantages-section-two-wrap:last-child {
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 7%, 87% 0);
}

.advantages .wrapper-left-deep .advantages-section-three {
  margin-top: 70px;
}

.advantages .wrapper-left-deep .advantages-section-three-content {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.advantages .wrapper-left-deep .advantages-section-three-content-item {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.advantages .wrapper-left-deep .advantages-section-three-content-item-wrap {
  width: 84.9%;
}

.advantages .wrapper-left-deep .advantages-section-three-content-item-wrap-title {
  color: #0F0F0F;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.advantages .wrapper-left-deep .advantages-section-three-content-item-wrap-descr {
  margin-top: 4px;
  color: #61646B;
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.advantages .wrapper-left-deep .advantages-section-three-content-item svg {
  margin-left: 10px;
}

.advantages .wrapper-left-deep .advantages-section-three-content-item:first-child {
  margin-top: 0;
}

.advantages .wrapper-right-deep-wrap {
  max-height: 100vh;
  position: sticky;
  top: 0;
}

.advantages .wrapper-right-deep-wrap svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.advantages .wrapper-right-deep-wrap img {
  height: 100%;
}

.partner {
  padding: 70px 0;
}

.partner .wrapper-left-deep {
  padding-right: 130px;
}

.partner .wrapper-left-deep .title-wrap {
  margin-top: 30px;
}

.partner .wrapper-left-deep .title-wrap-item {
  color: #0F0F0F;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 60px;
  text-transform: uppercase;
}

.partner .wrapper-left-deep .title-wrap-item:nth-child(1n) {
  font-weight: 100;
}

.partner .wrapper-left-deep .title-wrap-item:nth-child(2n) {
  font-weight: 300;
}

.partner .wrapper-left-deep .title-wrap-item:nth-child(3n) {
  font-weight: 600;
}

.partner .wrapper-left-deep .title-wrap-item:nth-child(4n) {
  font-weight: 900;
}

.partner .wrapper-left-deep .descr-s {
  margin-top: 50px;
  font-size: 19px;
  letter-spacing: -0.6px;
  line-height: 26px;
}

.partner .wrapper-left-deep .btn {
  margin-top: 50px;
  min-height: 64px;
  min-width: 268px;
}

.partner .wrapper-right-deep .slide-window {
  margin-right: 40px;
}

.partner .wrapper-right-deep .slide-window .slide-logo {
  display: none;
}

@media (max-width: 1100px) {
  .advantages .wrapper-left-deep .advantages-section-two {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 900px) {
  .delivery {
    display: none;
  }

  .delivery .wrapper-right-deep {
    padding: 30px;
  }

  .partner {
    padding-bottom: 20px;
  }

  .partner .wrapper-left-deep {
    padding-right: 40px;
  }

  .partner .wrapper-right-deep .thumb {
    display: none;
  }

  .partner .wrapper-right-deep .swiper {
    margin-right: 40px;
  }

  .partner .wrapper-right-deep .slide-window {
    max-width: unset;
    margin-right: 0;
  }

  .partner .wrapper-right-deep .slide-window .slide-logo {
    display: block;
    margin-bottom: 20px;
  }

  .partner .wrapper-right-deep .slide-window .swiper-slide {
    padding: 30px 30px 85px 30px;
    width: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }

  .partner .wrapper-right-deep .slide-window .swiper-slide-descr,
  .partner .wrapper-right-deep .slide-window .swiper-slide-descr-s {
    font-size: 17px;
  }

  .partner .wrapper-right-deep .slide-window:after {
    content: none;
  }

  .partner .wrapper-right-deep .slide-window .slide-window-btns {
    display: none;
  }

  .partner .wrapper-right-deep .slide-window .swiper-pagination {
    background-color: #FFFFFF;
    bottom: -1px;
    padding: 20px;
  }

  .partner .wrapper-right-deep .slide-window .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background-color: #0F0F0F;
    border-radius: unset;
    opacity: 1;
  }

  .partner .wrapper-right-deep .slide-window .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #6DD400;
  }

  .quest .wrapper-left-deep-contact-item {
    flex-wrap: wrap;
  }

  .quest .wrapper-left-deep-contact-item-link {
    font-size: 15px;
  }

  .quest .wrapper-left-deep-contact-item-data {
    font-size: 15px;
    padding-left: 18px;
  }

  .quest .wrapper-left-deep-contact-item-data:after {
    padding: 0 7px;
  }

  .quest .wrapper-right-deep {
    padding: 30px;
  }

  .advantages .wrapper-left {
    padding: 100px 15px 100px 0;
  }

  .advantages .wrapper-left-deep {
    max-width: 100%;
  }
}

@media (max-width: 550px) {
  .partner .wrapper-left-deep .title-m-light {
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 24px;
  }

  .partner .wrapper-left-deep .title-wrap {
    margin-top: 20px;
  }

  .partner .wrapper-left-deep .title-wrap-item {
    font-size: 40px;
    letter-spacing: -1.2px;
    line-height: 50px;
  }

  .partner .wrapper-left-deep .descr-s {
    margin-top: 20px;
    font-size: 17px;
    letter-spacing: -0.4px;
    line-height: 26px;
  }

  .partner .wrapper-left-deep .btn {
    width: 100%;
    margin-top: 30px;
  }
}

.questions {
  padding: 80px 0 70px 0;
}

.accordion {
  margin-top: 40px;
}

.accordion-item {
  margin-top: 4px;
  outline: none;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: unset;
}

.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button {
  border-radius: unset;
}

.accordion-button {
  background-color: #EEEFF1;
  color: #0F0F0F;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 26px;
  padding: 24px 30px;
}

.accordion-button:not(.collapsed) {
  background-color: #EEEFF1;
  color: #0F0F0F;
}

.accordion-button:not(.collapsed):after {
  background-image: url("/images/html/ic-faq-arrow.svg");
}

.accordion-button:after {
  background-image: url("/images/html/ic-faq-arrow.svg");
}

.accordion-button:hover {
  background-color: #E6E6E6;
}

.accordion-button:focus {
  box-shadow: unset;
}

.info {
  background-color: #EEEFF1;
  padding: 70px 0;
}

.info .title-m-light {
  max-width: 530px;
}

.info-descr {
  color: #6E7077;
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 26px;
  margin-top: 14px;
}

.footer {
  background-color: #0C0E12;
}

.footer-menu {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  position: relative;
  overflow: hidden;
}

.footer-menu .container {
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
}

.footer-menu .container:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-menu .footer-banner {
  padding: 30px;
  background-color: rgba(238, 239, 241, 0.05);
  display: flex;
  column-gap: 42px;
}

.footer-menu .footer-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-menu .footer-banner-text p {
  opacity: 0.7;
  color: #FFFFFF;
  font-size: 12px;
  letter-spacing: -0.4px;
  line-height: 20px;
}

.footer-menu .footer-banner svg {
  max-width: 300px;
}

.footer-menu-list {
  width: calc(25% - 15px);
}

.footer-menu-list-title {
  margin-bottom: 24px;
  color: #8CD9CC;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 21px;
}

.footer-menu-list li {
  margin-top: 16px;
}

.footer-menu-list li .footer-link {
  opacity: 0.7;
  color: #FFFFFF;
  letter-spacing: -0.4px;
  position: relative;
  transition: all 0.3s;
  font-size: 14px;
  line-height: 20px;
  background-color: transparent;
  border: none;
}

.footer-menu-list li .footer-link:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  bottom: -2px;
  left: 0;
}

.footer-menu-list li:hover a,
.footer-menu-list li:hover button {
  opacity: 1;
}

.footer-menu-list li:hover a:after,
.footer-menu-list li:hover button:after {
  width: 100%;
}

.footer-menu-list .btn-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.footer-menu-list .btn-group .footer-link {
  display: flex;
  align-items: center;
  padding: 0;
}

.footer-menu-list .btn-group svg {
  position: static;
  margin-left: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-menu-list .btn-group .footer-link.show svg {
  transform: rotate(180deg);
}

.footer-menu-list .btn-group ul {
  width: 100%;
  padding: 0;
  position: static !important;
  transform: none !important;
  border: none;
  background-color: transparent;
  margin-top: 10px !important;
}

.footer-menu-list .btn-group ul li {
  margin-top: 8px;
}

.footer-menu-list .btn-group ul li a {
  opacity: 0.5;
  color: #FFFFFF;
  font-size: 12px;
  margin: 0;
  letter-spacing: -0.4px;
  line-height: 18px;
  padding: 0;
  transition: all 0.3s;
  display: inline;
}

.footer-menu-list .btn-group ul li a:hover {
  background-color: transparent;
  color: #FFFFFF;
  opacity: 1;
}

.footer-menu-list .btn-group ul li .dropdown-divider {
  background-color: #FFFFFF;
  margin: 20px 0 6px 0;
  opacity: 0.1;
}

.footer-menu-list .btn-group ul li:first-child {
  margin-top: 0;
}

.footer-bottom {
  padding: 21px;
  background-color: rgba(238, 239, 241, 0.1);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
}

.footer-bottom-wrap {
  display: flex;
  column-gap: 20px;
}

.footer-bottom-text,
.footer-bottom-text a,
.footer-bottom a {
  opacity: 0.7;
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 22px;
  transition: all 0.3s;
}

.footer-bottom a:hover {
  opacity: 1;
}

@media (max-width: 1210px) {
  .footer-menu .container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .footer-menu-list {
    width: calc(33.333% - 15px);
  }
}

@media (max-width: 875px) {
  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
  }
}

@media (max-width: 735px) {
  .footer-menu-list {
    width: calc(50% - 10px);
  }

  .footer-menu-list .btn-group {
    justify-content: space-between;
  }

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

  .footer-bottom-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
  }

  .footer-bottom-wrap .footer-bottom-text:first-child {
    margin-bottom: 12px;
  }
}

@media (max-width: 475px) {
  .footer-menu {
    padding: 40px 0;
  }

  .footer-menu-list {
    width: 100%;
  }
}

.contactBlock {
  background-color: #0C0E12;
  padding: 60px 0;
}

.contactBlock-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-top: 40px;
}

.contactBlock-wrap-item {
  width: calc(33.333% - 23px);
}

.contactBlock-wrap-item svg {
  min-width: 50px;
}

.contactBlock-wrap-item-descr {
  color: #999999;
  font-size: 15px;
  letter-spacing: -0.4px;
  line-height: 26px;
  margin-top: 20px;
}

.contactBlock-wrap-item-data {
  color: #FFFFFF;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: -0.6px;
  line-height: 26px;
  margin-top: 6px;
}

.contactBlock-wrap-item-data:hover {
  color: #6DD400;
}

.formPage-contactBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.formPage-contactBlock .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.formPage-contactBlock .descr-s {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: -0.4px;
  line-height: 26px;
  text-align: center;
  max-width: 860px;
}

.formPage-contactBlock .descr-s-g {
  margin-top: 19px;
  color: #6DD400;
}

.tabs {
  padding-bottom: 0;
}

.tabs ul {
  margin-top: 30px;
  display: flex;
  column-gap: 30px;
}

.tabs ul .nav-item .nav-link {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
  padding: 0 0 30px 0;
}

.tabs ul .nav-item .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  opacity: 0.2;
  background-color: #FFFFFF;
}

.tabs ul .nav-item .active {
  color: #6DD400;
  background: transparent;
}

.tabs ul .nav-item .active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #6DD400;
  opacity: 1;
}

@media (max-width: 800px) {
  .contactBlock-wrap {
    row-gap: 10px;
  }

  .contactBlock-wrap-item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 575px) {
  .tabs {
    padding-bottom: 0;
  }

  .tabs .container {
    padding: 0;
  }

  .tabs .container .title-l-w {
    padding: 0 40px;
  }

  .tabs ul {
    flex-direction: column;
    row-gap: 6px;
  }

  .tabs ul .nav-item .nav-link {
    padding: 12px 40px 8px 40px;
  }

  .tabs ul .nav-item .nav-link:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    opacity: 0.2;
    background-color: #FFFFFF;
  }

  .tabs ul .nav-item .active {
    color: #6DD400;
    background: transparent;
  }

  .tabs ul .nav-item .active:after {
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: #6DD400;
    opacity: 1;
  }

  .footer-menu .footer-banner {
    width: 100%;
    row-gap: 20px;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 475px) {
  .contactBlock-wrap {
    row-gap: 10px;
  }

  .contactBlock-wrap-item {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .contactBlock-wrap-item-descr {
    margin-top: 0;
  }

  .contactBlock-wrap-item-content {
    margin-left: 20px;
  }
}

.requisites {
  margin: 80px 0;
}

.requisites-content-item {
  background-color: #EEEFF1;
  padding: 24px 30px;
  margin-top: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.requisites-content-item:first-child {
  margin-top: 30px;
}

.requisites-content-item-data,
.requisites-content-item-descr {
  color: #61646B;
  font-size: 18px;
  letter-spacing: -0.4px;
  line-height: 26px;
  font-weight: 200;
}

.requisites-content-item-data {
  font-size: 21px;
  font-family: "beta", sans-serif;
  font-weight: 100;
}

@media (max-width: 575px) {
  .requisites-content-item {
    padding: 15px 20px;
    flex-direction: column-reverse;
  }

  .requisites-content-item-data,
  .requisites-content-item-descr {
    text-align: left;
    width: 100%;
  }

  .requisites-content-item-descr {
    font-size: 14px;
  }
}

.cookie {
  background-color: #0C0E12;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  padding: 60px 0;
}

.cookie .header-wrap-close {
  background-color: transparent;
  border: none;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 20px;
  height: 14px;
  width: 14px;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-content-data {
  display: flex;
  align-items: center;
  width: 61.3%;
}

.cookie-content-data svg {
  margin-right: 40px;
  min-width: 50px;
}

.cookie-content-data-wrap {
  display: flex;
  flex-direction: column;
}

.cookie-content-data-wrap-title {
  color: #FFFFFF;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.cookie-content-data-wrap-descr {
  color: #B6B7B8;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 22px;
  margin-top: 12px;
}

.cookie-content-data-wrap-descr a {
  color: #8CD9CC;
}

.cookie-content-data-wrap-checkboxes {
  margin-top: 25px;
  display: flex;
  column-gap: 20px;
}

.cookie-content-btns {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 23.8%;
}

.cookie-content-btns button {
  max-width: 310px;
  width: 100%;
}

.cookie-content-btns button:first-child {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-content-btns button:first-child:after {
  background: #FFFFFF;
}

@media (max-width: 700px) {
  .cookie-content {
    flex-direction: column;
  }

  .cookie-content-btns {
    width: 100%;
    flex-direction: row;
    margin-top: 20px;
    column-gap: 10px;
    justify-content: space-between;
  }

  .cookie-content-btns button {
    max-width: 50%;
    width: calc(50% - 5px);
  }
}

@media (max-width: 575px) {
  .cookie-content-data {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .cookie-content-data svg {
    margin-bottom: 20px;
  }
}

@media (max-width: 400px) {
  .cookie-content-data-wrap-checkboxes {
    flex-direction: column;
    row-gap: 10px;
  }

  .cookie-content-btns {
    flex-direction: column;
  }

  .cookie-content-btns button {
    max-width: 100%;
    width: 100%;
  }
}

.form-group {
  display: flex;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group input:checked+label:after {
  content: url("/images/html/ic-check.svg");
  position: absolute;
  top: 0;
  left: 0;
}

.form-group input:checked+label {
  color: #6DD400;
}

.form-group label {
  position: relative;
  cursor: pointer;
  color: #B6B7B8;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 22px;
}

.form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: #FFFFFF;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.form-wrap {
  padding: 50px;
  background-color: #EEF0F1;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.form-wrap-header-title {
  color: #0C0E12;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: -0.7px;
  line-height: 48px;
}

.form-wrap-header .descr-s {
  margin-top: 16px;
}

.form-wrap-section-title {
  color: #61646B;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 26px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-wrap-section-inputs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}

.form-wrap .btn {
  width: 100%;
  margin-top: 6px;
}

.input-wrap,
.input-wrap-half {
  width: 100%;
  position: relative;
  align-items: center;
}

.input-wrap input,
.input-wrap textarea,
.input-wrap-half input,
.input-wrap-half textarea {
  width: 100%;
  padding: 14px 26px;
  border: none;
  outline: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder,
.input-wrap select::placeholder,
.input-wrap-half input::placeholder,
.input-wrap-half textarea::placeholder,
.input-wrap-half select::placeholder {
  height: 26px;
  color: #61646B;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.input-wrap input:focus,
.input-wrap textarea:focus,
.input-wrap select:focus,
.input-wrap-half input:focus,
.input-wrap-half textarea:focus,
.input-wrap-half select:focus {
  box-shadow: 0 0 0 1px #6DD400;
}

.input-wrap input .invalid-feedback,
.input-wrap textarea .invalid-feedback,
.input-wrap select .invalid-feedback,
.input-wrap-half input .invalid-feedback,
.input-wrap-half textarea .invalid-feedback,
.input-wrap-half select .invalid-feedback {
  color: #E02020;
  font-size: 13px;
  letter-spacing: -0.4px;
  line-height: 18px;
  margin-top: 6px;
}

.input-wrap textarea,
.input-wrap-half textarea {
  resize: none;
}

.input-wrap span,
.input-wrap-half span {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}

.input-wrap-half {
  width: calc(50% - 5px);
}

.error-validated .form-control:invalid {
  background-image: unset;
  box-shadow: 0 0 0 1px #E02020;
}

.error-validated .form-control:valid {
  background-image: unset !important;
}

.error-validated .form-control:valid:focus {
  box-shadow: 0 0 0 1px #6DD400;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.required:after {
  position: absolute;
  content: "*";
  color: #FA6400;
  right: 6px;
  top: 6px;
  font-size: 20px;
}

textarea {
  resize: none;
}

@media (max-width: 600px) {
  .form-wrap {
    padding: 40px;
  }

  .input-wrap-half {
    width: 100%;
  }
}

.contactPage-wrap {
  margin-top: 53px;
}

.contactPage-wrap .container {
  display: flex;
  column-gap: 20px;
}

.contactPage-wrap-form {
  width: calc(50% - 10px);
}

.contactPage-wrap-form .input-wrap {
  padding-right: 0;
}

.contactPage-wrap-map {
  width: calc(50% - 10px);
}

.contactPage-wrap-map #map {
  width: 100%;
  min-height: 300px;
  height: 100%;
}

.contactPage-wrap-map .map {
  width: 100%;
  min-height: 300px;
  height: 100%;
}

.contactPage-wrap-map #map .gm-style-cc,
.contactPage-wrap-map #map .gm-fullscreen-control,
.contactPage-wrap-map #map .gm-style-mtc {
  display: none !important;
}

.contactPage-wrap-map #map .gmnoprint div:first-child {
  display: flex;
  flex-direction: column-reverse;
}

.contactPage-wrap-map #map .gm-control-active {
  height: 40px !important;
  width: 40px !important;
  background-color: #0F0F0F !important;
  position: relative;
}

.contactPage-wrap-map #map .gm-control-active img {
  display: none;
}

.contactPage-wrap-map #map .gm-control-active:first-child:after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #FFFFFF;
}

.contactPage-wrap-map #map .gm-control-active:last-child:after {
  content: "-";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .contactPage-wrap .container {
    flex-direction: column;
    row-gap: 20px;
  }

  .contactPage-wrap-form {
    width: 100%;
  }

  .contactPage-wrap-map {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contactPage-wrap .container {
    padding: 0;
  }

  .contactPage-wrap-map {
    padding: 0 40px;
  }
}

.formPage-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  top: -20px;
  position: relative;
  padding-bottom: 100px;
}

@media (max-width: 600px) {
  .formPage-form .container {
    padding: 0;
  }
}

.new {
  margin: 60px 0;
}

.new .title-xl {
  margin-bottom: 40px;
}

.new-content {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 80px;
}

.new-content-item {
  width: calc(25% - 23px);
}

.new-content-item-img {
  position: relative;
}

.new-content-item-img a {
  width: 100%;
  height: 100%;
}

.new-content-item-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 10%, 90% 0);
}

.new-content-item-img-date {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 70px;
  width: 70px;
  background-color: #0C0E12;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #8CD9CC;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -0.47px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
}

.new-content-item-img-date .num {
  font-size: 27px;
  line-height: 33px;
}

.new-content-item-descr {
  margin-top: 24px;
  color: #61646B;
  font-size: 21px;
  letter-spacing: -0.4px;
  line-height: 28px;
  display: inline-block;
}

.new-content-item-descr:hover {
  color: #6DD400;
}

.new-content-item .link {
  margin-top: 30px;
}

.new-content-item:hover .new-content-item-img-date {
  background-color: #6DD400;
  color: #0C0E12;
}

@media (max-width: 875px) {
  .new-content-item {
    width: calc(33.33333% - 20px);
  }
}

@media (max-width: 675px) {
  .new-content-item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 400px) {
  .new-content-item {
    width: 100%;
  }
}

.textPageBanner {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 30px 0 40px 0;
}

.textPageBanner .container {
  max-width: 940px;
  height: 100%;
  min-height: 410px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.textPageBanner .container .new-content-item-img-date {
  top: 0;
  background-color: #6DD400;
  color: #0C0E12;
}

.textPageBanner-content {
  width: 100%;
  height: 100%;
}

.textPageBanner-content-descr {
  margin-top: 30px;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: -0.7px;
  line-height: 48px;
  text-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.textPageBanner-content .link {
  color: #FFFFFF;
}

.textPageBanner-content .link svg {
  transition: all 0.3s;
  margin-left: 0;
  margin-right: 8px;
}

.textPageBanner-content .link:hover {
  color: #6DD400;
}

.textPageBanner-content .link:hover svg {
  margin-right: 18px;
}

.textPageWrap .container {
  max-width: 1080px;
}

.textPageWrap-section {
  margin-top: 66px;
}

.textPageWrap-section .title-xl {
  margin-bottom: 24px;
}

.textPageWrap-section img {
  max-width: 100%;
  margin-top: 9px;
}

.textPageWrap-section img:first-child {
  margin-top: 0;
}

.textPageWrap-section .descr-s-l {
  margin-top: 16px;
}

.textPageWrap-section .descr-s-l:first-child {
  margin-top: 0;
}

.textPageWrap-section .list {
  margin: 16px 0 24px 0;
}

.textPageWrap-section-wrap {
  margin: 24px 0 36px 0;
  background-color: #EEEFF1;
  padding: 34px 40px;
}

.textPageWrap-section-wrap-title {
  color: #0C0E12;
  font-size: 24px;
  letter-spacing: -0.56px;
  line-height: 26px;
}

.textPageWrap-section-wrap .descr-s-l {
  margin: 0;
}

.textPageWrap-section-wrap .btn {
  margin-top: 24px;
}

.textPageWrap-section .clip {
  position: relative;
}

.textPageWrap-section .clip:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 50px solid #6DD400;
  border-left: 50px solid transparent;
  bottom: 0;
  right: 0;
}

.textPageWrap .text {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.title-xl {
  color: #61646B;
  font-size: 28px;
  letter-spacing: -0.6px;
  line-height: 38px;
}

.descr-s-l {
  color: #0C0E12;
  font-size: 17px;
  letter-spacing: -0.2px;
  line-height: 26px;
}

.descr-s-l span {
  font-weight: bold;
}

.descr-s-l a {
  color: #52A300;
  text-decoration: underline;
}

.textPageBanner-view-two {
  position: relative;
}

.textPageBanner-view-two .container {
  min-height: 150px;
  max-width: 1330px;
}

.textPageBanner-view-two .container .textPageBanner-content {
  position: relative;
}

.textPageBanner-view-two .container .textPageBanner-content-descr {
  max-width: 600px;
  position: relative;
  z-index: 10;
  font-size: 24px;
  line-height: 30px;
}

.textPageBanner-view-two:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  opacity: 0.7;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.transportPage .tab-content {
  padding: 60px 0 50px 0;
}

.transportPage .tab-content .tab-pane-title {
  color: #0C0E12;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: -0.7px;
  line-height: 48px;
}

.transportPage .tab-content .tab-pane .descr-s {
  margin-top: 16px;
  max-width: 860px;
}

.transportPage .tab-content .tab-pane-content {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 60px;
}

.transportPage .tab-content .tab-pane-content-item {
  width: calc(50% - 10px);
}

.transportPage .tab-content .tab-pane-content-item-wrap {
  margin-bottom: 40px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 360px;
  width: 100%;
  background-color: #EEEFF1;
  display: flex;
  justify-content: flex-end;
  overflow-x: hidden;
  position: relative;
}

.transportPage .tab-content .tab-pane-content-item-wrap img {
  max-width: 100%;
  object-fit: cover;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #000000 transparent;
}

.transportPage .tab-content .tab-pane-content-item-wrap-data-container::-webkit-scrollbar {
  width: 5px;
}

.transportPage .tab-content .tab-pane-content-item-wrap-data-container::-webkit-scrollbar-thumb {
  background-color: #6DD400;
}

.transportPage .tab-content .tab-pane-content-item-wrap-data-container::-webkit-scrollbar-track {
  background-color: transparent;
}

.transportPage .tab-content .tab-pane-content-item-wrap-data-container {
  max-height: 100%;
  overflow-y: auto;
}

.transportPage .tab-content .tab-pane-content-item-wrap-data {
  background-color: rgba(12, 14, 18, 0.8);
  padding: 25px;
  width: 100%;
  max-width: 290px;
  top: 0;
  bottom: 0;
  position: absolute;
  min-width: 230px;
  right: -100%;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}


.transportPage .tab-content .tab-pane-content-item-wrap-data-container:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 25px solid #6DD400;
  border-left: 25px solid transparent;
  top: 0;
  right: 0;
}

.transportPage .tab-content .tab-pane-content-item-wrap-data-title {
  color: #FFFFFF;
  font-size: 18px;
  letter-spacing: -0.4px;
  line-height: 22px;
}

.transportPage .tab-content .tab-pane-content-item-wrap-data-content {
  margin-top: 20px;
  width: 100%;
}

.transportPage .tab-content .tab-pane-content-item-wrap-data-content-item {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.transportPage .tab-content .tab-pane-content-item-wrap-data-content-item:first-child {
  margin-top: 0;
}

.transportPage .tab-content .tab-pane-content-item-wrap-data-content-item-title {
  width: 70%;
  opacity: 0.7;
  color: #FFFFFF;
  font-size: 13px;
  letter-spacing: -0.4px;
  line-height: 18px;
  max-width: 50%;
}

.transportPage .tab-content .tab-pane-content-item-wrap-data-content-item-info {
  width: 30%;
  color: #6DD400;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 18px;
  max-width: 50%;
}

.transportPage .tab-content .tab-pane-content-item-title {
  color: #61646B;
  font-size: 28px;
  letter-spacing: -0.6px;
  line-height: 38px;
}

.transportPage .tab-content .tab-pane-content-item .descr-s {
  margin-top: 10px;
  max-width: 100%;
}

.transportPage .tab-content .tab-pane-content-item .link {
  margin-top: 10px;
}

.transportPage-smallBanner {
  margin-bottom: 120px;
}

@media (max-width: 920px) {
  .transportPage .tab-content .tab-pane-content-item {
    width: 100%;
  }
}

@media (min-width: 775px) {
  .transportPage .tab-content .tab-pane-content-item-wrap .wrap-toggler {
    display: none;
  }

  .transportPage .tab-content .tab-pane-content-item-wrap:hover .tab-pane-content-item-wrap-data {
    right: 0;
  }
}

@media (max-width: 775px) {
  .transportPage .container {
    padding: 0;
  }

  .transportPage .tab-content .tab-pane-content-item-wrap {
    height: unset;
  }

  .transportPage .tab-content .tab-pane-content-item-wrap-data {
    right: -270px;
  }

  .transportPage .tab-content .tab-pane-content-item-wrap .wrap-toggler {
    position: absolute;
    height: 40px;
    width: 40px;
    background-color: #0C0E12;
    left: -40px;
    bottom: 0;
    border: none;
    cursor: pointer;
  }

  .transportPage .tab-content .tab-pane-content-item-wrap .scroll:before {
    content: "";
    position: absolute;
    top: 80%;
    left: 45%;
    transform: rotate(45deg);
    width: 20px;
    height: 20px;
    border: solid #6DD400;
    border-width: 0 3px 3px 0;
    animation: arrow-animation 0.7s infinite;
  }

  .transportPage .tab-content .tab-pane-content-item .active .tab-pane-content-item-wrap-data {
    right: 0;
  }

  .transportPage .tab-content .tab-pane-content-item .active .wrap-toggler {
    background-color: #6DD400;
  }

  .transportPage .tab-content .tab-pane-content-item .active .wrap-toggler svg {
    transform: rotate(180deg);
  }

  .transportPage .tab-content .tab-pane-content-item .active .wrap-toggler svg #Transports-375px {
    fill: #0C0E12;
  }

  .transportPage .tab-content .tab-pane-content-item-title,
  .transportPage .tab-content .tab-pane-content-item .descr-s,
  .transportPage .tab-content .tab-pane-content-item .link {
    padding: 0 30px;
  }
}

@media (max-width: 475px) {
  .transportPage .tab-content .tab-pane-content-item-wrap-data {
    right: -190px;
    max-width: 190px;
    padding: 10px;
    min-width: unset;
  }
}

@keyframes arrow-animation {
  0% {
    top: 80%;
  }

  50% {
    top: 82%;
  }

  100% {
    top: 80%;
  }
}

.freight {
  padding: 60px 0 120px 0;
}

.freight .container {
  display: flex;
  justify-content: space-between;
}

.freight-content {
  width: 66.1%;
  display: flex;
  flex-direction: column;
  row-gap: 120px;
}

.freight-content-textWrap .btn {
  margin-top: 30px;
}

.freight-content-infoWrap img {
  max-width: 100%;
  margin-bottom: 40px;
}

.freight-content-infoWrap .check-list {
  margin-top: 30px;
}

.freight-content-infoWrap .descr-s {
  margin-top: 20px;
}

.freight-content-infoWrap .descr-s span {
  color: #FF0000;
}

.freight-content-infoWrap .btn {
  width: 100%;
  margin-top: 30px;
}

.freight-content-infoWrap-wrap {
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.freight-content-infoWrap-wrap-item {
  width: calc(50% - 10px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.freight-content-infoWrap-wrap-item .title {
  margin: 20px 0 10px 0;
  color: #0C0E12;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 28px;
}

.freight-content-infoWrap .small .freight-content-infoWrap-wrap-item {
  width: calc(33.33333% - 14px);
  text-align: center;
}

.freight-content-infoWrap .small .freight-content-infoWrap-wrap-item .title {
  margin: 14px 0 0 0;
}

.freight-content-sliderWrap .descr-s {
  margin: 20px 0 40px 0;
}

.freight-content-sliderWrap .slide-window {
  max-width: 100%;
}

.freight-content-sliderWrap .slide-window .mySwiper {
  min-height: unset;
  margin-top: 40px;
}

.freight-content-sliderWrap .slide-window .mySwiper .swiper-wrapper .swiper-slide {
  min-height: unset;
  padding: 50px 50px 45px 50px;
}

.freight-content-sliderWrap .slide-window .mySwiper .swiper-wrapper .swiper-slide-descr {
  flex-grow: unset;
  margin-bottom: 30px;
}

.freight-content-sliderWrap .slide-window .mySwiper .swiper-wrapper .swiper-slide-bottom .descr-s {
  margin: 0;
}

.freight-content-sliderWrap .slide-window:after {
  content: none;
}

.freight-content-readMoreWrap-content {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.freight-content-readMoreWrap-content-item {
  width: 100%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  display: flex;
}

.freight-content-readMoreWrap-content-item-img {
  width: 230px;
  min-width: 230px;
  background-color: #8CD9CC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.freight-content-readMoreWrap-content-item-wrap {
  padding: 24px 30px;
}

.freight-content-readMoreWrap-content-item-wrap .title {
  color: #0C0E12;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 28px;
}

.freight-content-readMoreWrap-content-item-wrap .descr {
  color: #61646B;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 22px;
  margin: 12px 0 20px 0;
}

.freight-content .questions {
  padding: 0;
}

.freight-banner {
  height: fit-content;
  padding: 30px;
  background: #0E0F14;
  width: 23.8%;
  position: sticky;
  top: 80px;
}

.freight-banner .title {
  color: #FFFFFF;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 28px;
  margin-top: 30px;
}

.freight-banner .title span {
  color: #6DD400;
}

.freight-banner .descr {
  margin-top: 12px;
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 22px;
}

.freight-banner .btn {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .freight .container {
    flex-direction: column-reverse;
    row-gap: 30px;
  }

  .freight-content {
    width: 100%;
  }

  .freight-banner {
    width: 100%;
    position: static;
  }
}

@media (max-width: 650px) {
  .freight-content {
    width: 100%;
  }

  .freight-content-infoWrap-wrap-item {
    width: 100%;
  }

  .freight-content-infoWrap .small .freight-content-infoWrap-wrap-item {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .freight .container {
    padding: 0;
  }

  .freight-content {
    width: 100%;
    padding: 0 40px;
  }

  .freight-content-readMoreWrap-content-item {
    display: flex;
    flex-direction: column;
  }

  .freight-content-readMoreWrap-content-item-img {
    width: 100%;
  }

  .freight-banner {
    padding: 40px;
  }
}

.banner-section .container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  padding-bottom: 120px;
}

.banner-section-item {
  width: calc(33.33333% - 14px);
  display: flex;
  flex-direction: column;
  padding: 30px;
  background-color: #0F0F0F;
}

.banner-section-item .title {
  margin-top: 20px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.banner-section-item .descr {
  margin-top: 8px;
  color: #999999;
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.banner-section-item:nth-child(4),
.banner-section-item:nth-child(5) {
  width: calc(50% - 10px);
}

@media (max-width: 775px) {
  .banner-section-item {
    width: calc(50% - 10px);
  }

  .banner-section-item:nth-child(5) {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .banner-section .container {
    padding: 0;
    row-gap: 0;
  }

  .banner-section-item {
    box-shadow: inset 0 -1px 0 0 #1F1F1F;
    width: 100%;
  }

  .banner-section-item:nth-child(4) {
    width: 100%;
  }
}

.contact {
  padding: 70px 0;
  background-color: #8CD9CC;
}

.contact .container {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
  row-gap: 50px;
}

.contact-left {
  width: 41.2%;
}

.contact-left .title {
  color: #0F0F0F;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -0.6px;
  line-height: 38px;
}

.contact-left .title span {
  display: block;
  position: relative;
}

.contact-left .title span:after {
  position: absolute;
  content: url("/images/html/creative-underline.svg");
  bottom: -10px;
  left: 0;
  right: 0;
}

.contact-left .descr {
  opacity: 0.8;
  color: #0F0F0F;
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 26px;
  margin-top: 14px;
  max-width: 510px;
}

.contact-left-group {
  margin-top: 40px;
  display: flex;
  column-gap: 10px;
}

.contact-left .contact-right {
  display: none;
}

.contact-right {
  width: 51.6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 25px;
}

.contact-right-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}

.contact-right-item .data {
  color: #0C0E12;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 30px;
  margin: 0 20px 0 10px;
}

.contact-right-item-link {
  border-radius: 20px;
  background-color: #0F0F0F;
  padding: 4px 20px 4px 4px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-right: 10px;
}

.contact-right-item-link:last-child {
  margin-right: 0;
}

.contact-right-item-link-wrap-descr {
  color: #808080;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 10px;
}

.contact-right-item-link-wrap-title {
  color: #EEEFF1;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 16px;
}

@media (max-width: 900px) {
  .contact .container {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .contact .container {
    flex-direction: column;
  }

  .contact-left .contact-right {
    margin-top: 30px;
    display: flex;
  }

  .contact-left .contact-right-item {
    flex-wrap: unset;
  }

  .contact-left .descr {
    margin-top: 20px;
  }

  .contact-right {
    display: none;
  }
}

@media (max-width: 500px) {
  .contact {
    padding-bottom: 50px;
  }

  .contact-left-group {
    flex-direction: column;
    row-gap: 10px;
  }
}

.acc {
  padding: 40px 10px;
  background-color: #EEEFF1;
}

.acc .title-m-light {
  margin-bottom: 20px;
  padding: 0 30px;
}

.acc .accordion {
  margin: 0;
}

.acc .accordion-item {
  border: none;
  margin-bottom: 20px;
}

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

.acc .accordion-item .accordion-button {
  box-shadow: none;
  color: #05051A;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 30px;
  padding: 0 0 0 60px;
}

.acc .accordion-item .accordion-button:hover {
  background-color: #EEEFF1;
}

.acc .accordion-item .accordion-button:after {
  position: absolute;
  left: 30px;
  content: url(/images/html/list-item-arrow-black.svg);
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc .accordion-item .accordion-button:not(.collapsed) {
  color: #6DD400;
}

.acc .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
  content: url(/images/html/list-item-arrow.svg);
}

.acc .accordion-item .accordion-collapse {
  background-color: #EEEFF1;
  padding-top: 20px;
}

.acc .accordion-item .accordion-collapse .collapse-content {
  background-color: #0F0F0F;
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.acc .accordion-item .accordion-collapse .collapse-content .title-m {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -0.8px;
  line-height: 34px;
}

.acc .accordion-item .accordion-collapse .collapse-content .title-m span {
  color: #6DD400;
}

.acc .accordion-item .accordion-collapse .collapse-content .descr {
  opacity: 0.7;
  color: #FFFFFF;
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.acc .accordion-item .accordion-collapse .collapse-content .btn {
  margin-top: 10px;
}

@media (min-width: 750px) {
  .mobile-tab {
    display: none;
  }
}

.large-links {
  padding: 60px 0 120px 0;
}

.large-links .container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}

.large-links-items {
  width: calc(50% - 10px);
}

.large-links-items img {
  max-width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.large-links-items-footer {
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
  padding: 24px 30px 64px 30px;
  background-color: #0C0E12;
}

.large-links-items-footer .title {
  width: 100%;
  color: #FFFFFF;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 28px;
}

@media (max-width: 733px) {
  .large-links {
    padding: 60px 0;
  }

  .large-links-items {
    width: 100%;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9);
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: 100;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.gallery {
  width: 100%;
  margin: 66px 0 120px 0;
}

.gallery .container {
  max-width: 1080px;
}

.gallery-lightbox {
  width: 100%;
  margin-top: 34px;
}

.gallery-lightbox-wrap {
  position: relative;
}

.gallery-lightbox-wrap-img {
  width: 100%;
  max-height: 563px;
  cursor: zoom-in;
}

.gallery-lightbox-thumb {
  display: flex;
  column-gap: 8px;
  row-gap: 8px;
  margin-top: 8px;
}

.gallery-lightbox-thumb .imgWrap {
  width: 100%;
  position: relative;
  max-height: 128px;
  max-width: 245px;
  cursor: pointer;
}

.gallery-lightbox-thumb .imgWrap img {
  width: 100%;
  height: 100%;
}

.gallery-lightbox-thumb .imgWrap:nth-child(n+7) {
  display: none;
}

.gallery-lightbox-thumb .imgWrap:nth-child(6) {
  position: relative;
}

.gallery-lightbox-thumb .imgWrap:nth-child(6):after {
  content: " " attr(data-swiper-length) "+";
  position: absolute;
  background-color: rgba(12, 14, 18, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.51px;
  line-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.gallery-modal {
  opacity: 0;
  width: 1px;
  height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-modal .swiper {
  width: 70%;
  background-color: transparent;
}

.gallery-modal .swiper-wrapper {
  width: 100%;
  max-width: 700px;
}

.gallery-modal .swiper-slide {
  width: 100%;
  max-height: 563px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-modal .swiper-slide img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery .modal-show {
  opacity: 1;
  width: 100%;
  height: 100%;
  animation-name: zoom;
  animation-duration: 0.3s;
}

.gallery .swiper-button-next,
.gallery .swiper-button-prev {
  color: #FFFFFF;
}

@keyframes zoom {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media only screen and (max-width: 700px) {
  .gallery-modal .swiper {
    width: 100%;
  }
}

@media only screen and (max-width: 475px) {
  .gallery-lightbox-thumb {
    flex-wrap: wrap;
  }

  .gallery-lightbox-thumb .imgWrap {
    width: calc(33.33333% - 6px);
  }

  .gallery .swiper-button-next:after,
  .gallery .swiper-button-prev:after {
    font-size: 15px;
  }
}

.modal-custom {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(15, 15, 15, 0.4);
  z-index: 1000;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}

.modal-custom-wrap {
  height: fit-content;
  width: 100%;
  position: fixed;
  bottom: -100%;
  transition: all 0.3s;
}

.modal-custom-wrap-container {
  background-color: #EEF0F1;
  box-shadow: 0 -10px 20px 0 rgba(18, 23, 33, 0.3);
}

.modal-custom-wrap-container .content {
  padding: 40px;
}

.modal-custom-wrap-container .content .title {
  color: #0F0F0F;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -0.8px;
  line-height: 34px;
}

.modal-custom-wrap-container .content .descr {
  margin-top: 10px;
  color: #61646B;
  font-size: 17px;
  letter-spacing: -0.4px;
  line-height: 26px;
}

.modal-custom-wrap-container .content-wrap {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.modal-custom-wrap-container .content-wrap-item {
  display: flex;
  align-items: center;
  position: relative;
  column-gap: 14px;
}

.modal-custom-wrap-container .content-wrap-item-title {
  color: #0C0E12;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 30px;
}

.modal-custom-wrap-container .content-wrap-item:after {
  content: url("/images/html/ic-arrow-menu.svg");
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.modal-custom-wrap-container .close-modal {
  position: absolute;
  right: 0;
  z-index: 10;
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
}

.show-modal {
  opacity: 1;
  pointer-events: unset;
}

.show-modal .modal-custom-wrap {
  bottom: 0;
}

.header {
  width: 100%;
  padding: 0 20px 0 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 0 rgba(46, 49, 56, 0.12), 0 4px 8px 0 rgba(46, 66, 107, 0.1);
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-logo {
  padding: 0 30px 0 0;
}

.header-content {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.header-content-menu {
  display: flex;
  flex-grow: 1;
}

.header-content .dropdown {
  margin-right: 40px;
  top: 0 !important;
}

.header-content .dropdown-active {
  color: #05051A;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  display: flex;
  align-items: center;
}

.header-content .dropdown-active svg {
  margin-right: 7px;
}

.header-content .dropdown-menu {
  padding: 30px;
  border-radius: unset;
  background-color: #EEF0F1;
  transform: translate(-35px, 35px) !important;
  position: relative;
}

.header-content .dropdown-menu li {
  margin-top: 14px;
}

.header-content .dropdown-menu li:first-child {
  margin-top: 0;
}

.header-content .dropdown-menu li a {
  display: flex;
  align-items: center;
  color: #05051A;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 20px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

.header-content .dropdown-menu li a svg {
  margin-right: 8px;
}

.header-content .dropdown-menu .dropdown-item-active {
  font-weight: 500;
}

.header-content .dropdown-menu:after {
  content: "";
  position: absolute;
  height: 12px;
  width: 2px;
  background-color: #6DD400;
  top: -6px;
  left: 43px;
}

@media (min-width: 1170px) {
  .header-content {
    border-left: 1px solid rgba(46, 49, 56, 0.12);
  }

  .header-content-menu {
    display: flex;
  }

  .header-content-menu .levelOne-li {
    position: relative;
    padding: 35px 0;
    transition: all 0.3s;
  }

  .header-content-menu .levelOne-li-btn {
    background-color: transparent;
    border: none;
    color: #0F0F0F;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 20px;
    position: relative;
    padding: 0 12px 0 30px;
  }

  .header-content-menu .levelOne-li .content-true:after {
    content: "";
    position: absolute;
    right: 0;
    top: 13px;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-top: 4px solid #000000;
    transition: all 0.3s;
  }

  .header-content-menu .levelOne-li .levelTwo {
    max-height: calc(100vh - 100px);
    position: absolute;
    display: none;
    flex-direction: column;
    row-gap: 10px;
    padding: 40px;
    top: calc(100% + 1px);
    background-color: #FFFFFF;
    width: 400px;
    box-shadow: 0 0 0 1px rgba(46, 49, 56, 0.12), 0 10px 20px 0 rgba(46, 66, 107, 0.1);
  }

  .header-content-menu .levelOne-li .levelTwo-li {
    padding-bottom: 14px;
  }

  .header-content-menu .levelOne-li .levelTwo-li-btn {
    border: none;
    background-color: transparent;
    color: #0F0F0F;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 20px;
    padding: 0;
  }

  .header-content-menu .levelOne-li .levelTwo-li .levelThree {
    display: none;
    flex-direction: column;
    row-gap: 10px;
    transition: all 0.3s;
  }

  .header-content-menu .levelOne-li .levelTwo-li .levelThree .levelThree-li {
    display: flex;
    position: relative;
  }

  .header-content-menu .levelOne-li .levelTwo-li .levelThree .levelThree-li a {
    color: #61646B;
    font-size: 14px;
    letter-spacing: -0.2px;
    line-height: 16px;
    padding-left: 16px;
    transition: all 0.3s;
  }

  .header-content-menu .levelOne-li .levelTwo-li .levelThree .levelThree-li a:hover {
    color: #6DD400;
  }

  .header-content-menu .levelOne-li .levelTwo-li .levelThree .levelThree-li:after {
    content: url("/images/html/arrow3.svg");
    position: absolute;
    top: -4px;
    left: 0;
  }

  .header-content-menu .levelOne-li .levelTwo-li:last-child {
    padding-bottom: 0;
  }

  .header-content-menu .levelOne-li .levelTwo .content-true-three .levelTwo-li-btn {
    position: relative;
    transition: all 0.3s;
  }

  .header-content-menu .levelOne-li .levelTwo .content-true-three .levelTwo-li-btn:after {
    position: absolute;
    content: url("/images/html/ic-footer-arrow (1).svg");
    right: -20px;
    top: -3px;
  }

  .header-content-menu .levelOne-li .levelTwo .levelTwo-li-btn:hover {
    color: #6DD400;
  }

  .header-content-menu .levelOne-li .levelTwo .show-level .levelThree {
    opacity: 1;
    display: flex;
    margin-top: 14px;
  }

  .header-content-menu .levelOne-li:hover .levelOne-li-btn {
    color: #6DD400;
  }

  .header-content-menu .levelOne-li:hover .levelOne-li-btn:after {
    transform: rotate(180deg);
    border-top-color: #6DD400;
    top: 4px;
  }

  .header-content-menu .levelOne-li:hover .levelOne-li .content-true:after {
    transform: rotate(180deg);
    border-top-color: #6DD400;
    top: 4px;
  }

  .header-content-menu .levelOne-li:hover .levelTwo {
    display: flex;
    overflow-y: auto;
  }

  .header-content .header-toggler {
    display: none;
  }

  .header-content .desktop-mobile {
    display: none;
  }

  .scroll .header-content-menu .levelOne-li {
    padding: 25px 0;
  }
}

@media (max-width: 1300px) {
  .header {
    padding: 0 20px 0 20px;
  }

  .header-logo {
    padding: 0 20px 0 0;
  }

  .header-content-menu .levelOne-li-btn {
    padding: 0 12px 0 20px;
  }

  .header-content .dropdown {
    margin-right: 20px;
  }

  .header-content .desktop-btn {
    padding: 17px 24px 17px 24px;
  }

  .header-content .desktop-btn:after {
    content: unset;
  }
}

@media (max-width: 1170px) {
  .header {
    padding: 0 10px 0 20px;
  }

  .header-logo {
    padding: 11px 0;
    display: flex;
  }

  .header-logo svg {
    max-width: 100%;
    height: 42px;
    width: 90px;
  }

  .header-content {
    justify-content: flex-end;
  }

  .header-content-menu {
    display: none;
    width: 100%;
    left: 0;
    background-color: #EEF0F1;
    padding: 40px;
    flex-direction: column;
    row-gap: 22px;
    top: 64px;
    position: fixed;
    z-index: 100;
    height: calc(100% - 64px);
  }

  .header-content-menu ul {
    display: flex;
    flex-direction: column;
    row-gap: 22px;
  }

  .header-content-menu .levelOne-li button,
  .header-content-menu .levelOne-li-btn {
    border: none;
    color: #0F0F0F;
    font-size: 19px;
    font-weight: bold;
    letter-spacing: -0.6px;
    line-height: 26px;
    padding: 0;
    text-align: start;
    background: transparent;
  }

  .header-content-menu .levelOne-li .levelTwo,
  .header-content-menu .levelOne-li .levelThree {
    right: -100%;
    width: 100%;
    z-index: 10;
    padding: 40px;
    background-color: #EEF0F1;
    transition: all 0.3s;
    flex-grow: 1;
    overflow-x: hidden;
    top: 64px;
    height: calc(100% - 64px);
    position: fixed;
  }

  .header-content .dropdown {
    margin-right: 20px;
  }

  .header-content .dropdown-menu {
    transform: translate(5px, 35px) !important;
  }

  .header-content .dropdown-menu:after {
    content: unset;
  }

  .header-content .desktop-btn {
    display: none;
  }

  .header-content .desktop-mobile {
    width: 100%;
    margin-top: 16px;
  }

  .header .header-toggler {
    height: 44px;
    width: 44px;
    background-color: #EEF0F1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .header .header-toggler svg {
    max-width: 16px;
    max-height: 16px;
  }

  .header .header-toggler .close-svg {
    display: none;
  }

  .back-menu {
    position: relative;
    padding-left: 30px;
    background: transparent;
  }

  .back-menu button {
    color: #61646B !important;
  }

  .back-menu:before {
    content: url("/images/html/ic-menu-back2.svg");
    position: absolute;
    top: 2px;
    left: 0;
  }

  .content-true {
    position: relative;
    width: 100%;
    text-align: start;
  }

  .content-true:after {
    content: url("/images/html/ic-arrow-menu.svg");
    position: absolute;
    top: 2px;
    right: 0;
  }

  .header-show .header-content-menu {
    display: flex;
    overflow-x: hidden;
  }

  .header-show .header-toggler .open-svg {
    display: none;
  }

  .header-show .header-toggler .close-svg {
    display: flex;
  }

  .active-menu {
    /* max-height: calc(100vh - 64px) !important; */
    max-height: 100% !important;
    overflow-y: auto !important;
  }
}

.type {
  background-color: #DADADA;
}

.type .wrapper-left {
  background-color: #0F0F0F;
}

.type .wrapper-left .about-info-title,
.type .wrapper-left .about-info-descr {
  color: #FFFFFF;
}

.type .wrapper-left .about-info a {
  color: #6DD400;
}

.type .wrapper-left .about-info a svg * {
  fill: #6DD400;
}

.type .wrapper-right-deep-wrap .wrapper-right-deep-wrap-video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.type .wrapper-right-deep-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 1200px) {
  .back-menu {
    display: none !important;
  }
}


/*# sourceMappingURL=main.css.map */