/* TRUST START */
.trust__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 32px;
}

.trust-item {
  background-color: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  padding: 24px 24px 210px;
  position: relative;
  width: 100%;
}
.trust-item.--item-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.trust-item.--item-bg .trust-item__text, .trust-item.--item-bg .trust-item__num {
  color: var(--text-white);
}
.trust-item__num {
  font-size: 82px;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-item__text {
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.trust-item img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1220px) {
  .trust__grid {
    gap: 16px;
  }
  .trust-item {
    padding: 16px;
    padding-bottom: 179px;
  }
  .trust-item img {
    height: 179px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1024px) {
  .trust__container {
    padding: 0;
  }
  .trust__grid {
    overflow: hidden;
    overflow-x: auto;
    padding: 0 var(--padding);
  }
  .trust-item {
    width: 270px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .trust-item__num {
    font-size: 60px;
    margin-bottom: 12px;
  }
}
/* TRUST END */
/* BUSINESS START */
.business-slick {
  overflow: hidden;
}
.business-marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}
.business-marquee__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.business-marquee .business-card {
  margin-left: 32px;
}

.business-card {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 418px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.business-card:hover {
  width: 580px;
}
.business-card:hover .business-card__logo {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.business-card:hover .business-card__link, .business-card:hover .business-card__text {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.business-card__wrap {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 24px 20px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.business-card__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), -webkit-gradient(linear, left top, left bottom, color-stop(51.14%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(180deg, rgba(0, 0, 0, 0) 51.14%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.business-card__logo {
  max-width: 290px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.business-card__link {
  margin: auto;
  position: relative;
  z-index: 2;
  color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  visibility: hidden;
}
.business-card__text {
  color: var(--text-white);
  font-size: 18px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  width: 540px;
}
.business-card__bottom {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.business-card__arrow {
  display: none;
  background-color: var(--primary-main);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--text-white);
  border-radius: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 1024px) {
  .business-card__arrow:hover {
    background-color: var(--primary-hover);
  }
}

@media (max-width: 1024px) {
  .business-slick__container {
    padding-right: 0;
    padding-left: 0;
  }
  .business-slick__title {
    padding: 0 var(--padding);
  }
  .business-marquee__wrap {
    overflow-x: auto;
    padding: 0 var(--padding);
  }
  .business-card__link {
    display: none;
  }
  .business-card__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 600px) {
  .business-card {
    width: 270px;
  }
  .business-card:hover {
    width: 380px;
  }
  .business-card__wrap {
    height: 194px;
  }
  .business-card__logo {
    max-width: 170px;
  }
  .business-card__text {
    font-size: 16px;
    line-height: 1.2;
    width: 340px;
  }
}
/* BUSINESS END */
/*  HISTORY START */
.s-history {
  position: relative;
  overflow: hidden;
  padding-right: 0;
  background-size: cover;
  background-position: center;
}
.s-history::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.s-history__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  z-index: -1;
}
.s-history__top {
  padding-top: 60px;
  position: absolute;
  top: 0;
  z-index: 3;
}
.s-history__title {
  padding-left: 24px;
  color: var(--text-white);
}
.s-history__wrap {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  min-height: 770px;
}
.s-history__item {
  width: 100%;
  color: var(--text-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.5019607843);
  padding: 32px;
  position: relative;
}
@media (min-width: 1024px) {
  .s-history__item:hover::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    z-index: -1;
  }
  .s-history__item:not(:last-child):hover .s-history__item-text {
    opacity: 1;
    -webkit-transition: 0.3s 0s;
    transition: 0.3s 0s;
    grid-template-rows: 1fr;
  }
  .s-history__item:not(:last-child):hover .s-history__item-btn {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .s-history__item:not(:last-child):hover .s-history__item-btn::after {
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .s-history__item:last-child .s-history__item-content {
    opacity: 0.5;
  }
  .s-history__item:last-child:hover .s-history__item-content {
    opacity: 1;
  }
}
.s-history__item:last-child .s-history__item-btn::before, .s-history__item:last-child .s-history__item-btn::after {
  display: none;
}
.s-history__item-btn {
  width: 60px;
  height: 60px;
  position: relative;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  margin-bottom: 40px;
  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;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.s-history__item-btn svg {
  width: 30px;
  height: 30px;
  color: var(--text-white);
  opacity: 0.5;
}
.s-history__item-btn::before, .s-history__item-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 20px;
  background-color: var(--text-white);
}
.s-history__item-btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
      -ms-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}
.s-history__item-btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.s-history a.s-history__item-btn:hover {
  border-color: var(--primary-hover);
}
.s-history a.s-history__item-btn:hover svg {
  color: var(--primary-hover);
}
.s-history__item-num {
  font-size: 82px;
  margin-bottom: 8px;
}
.s-history__item-content {
  margin-top: auto;
  min-height: 400px;
}
.s-history__item-title {
  margin-bottom: 16px;
}
.s-history__item-text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: 0.3s 0s;
  transition: 0.3s 0s;
  overflow: hidden;
  opacity: 0;
}
.s-history__item-hidden {
  min-height: 0px;
}

@media (max-width: 1460px) {
  .s-history__item-num {
    font-size: 60px;
  }
}
@media (max-width: 1360px) {
  .s-history {
    padding: 0;
  }
  .s-history__item {
    padding: 16px;
  }
}
@media (max-width: 1024px) {
  .s-history__wrap {
    overflow: hidden;
    overflow-x: auto;
    height: auto;
    min-height: 0;
  }
  .s-history__item-content {
    margin-top: 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .s-history__item {
    padding: 16px;
    width: 300px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .s-history__item-btn {
    display: none;
  }
  .s-history__item-title {
    min-height: 0;
  }
  .s-history__item-text {
    max-height: 100%;
    visibility: visible;
    overflow: visible;
    grid-template-rows: 1fr;
    opacity: 1;
  }
}
@media (max-width: 600px) {
  .s-history__top {
    padding-top: 24px;
  }
  .s-history__item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    z-index: -1;
  }
  .s-history__title {
    padding-left: var(--padding);
  }
  .s-history__item-num {
    font-size: 60px;
    margin-bottom: 24px;
  }
  .s-history__item:last-child .s-history__item-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
/*  HISTORY END */
/* PROGRESS START */
.progress-slider {
  position: relative;
}
.progress-slider .swiper-next,
.progress-slider .swiper-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
}
.progress-slider .swiper-next {
  right: -88px;
}
.progress-slider .swiper-prev {
  left: -88px;
}

.progressSwiper .swiper-slide {
  height: auto;
}

.progress-item {
  display: block;
  border-radius: 16px;
  height: 100%;
  background-color: var(--bg-light);
  border: 2px solid var(--bg-light);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .progress-item:hover .progress-item__link, .progress-item:hover .progress-item__text {
    color: var(--primary-hover);
  }
  .progress-item:hover .progress-item__img img {
    -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
            transform: scale(1.3);
  }
}
.progress-item__img {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  height: 306px;
}
.progress-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.progress-item__body {
  padding: 12px 20px 16px;
}
.progress-item__row {
  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;
  gap: 12px;
  margin-bottom: 9px;
}
.progress-item__year {
  background-color: var(--primary-main);
  color: var(--text-white);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  padding: 1px 10px;
  border-radius: 100px;
}
.progress-item__link {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
}
.progress-item__text {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1530px) {
  .progress-slider .swiper-prev {
    left: -40px;
  }
  .progress-slider .swiper-next {
    right: -40px;
  }
}
@media (max-width: 1360px) {
  .progress-slider .swiper-prev {
    left: 0px;
  }
  .progress-slider .swiper-next {
    right: 0px;
  }
}
@media (max-width: 1024px) {
  .progress__container {
    padding: 0;
  }
  .progress-slider {
    padding-left: var(--padding);
  }
  .progressSwiper .swiper-wrapper {
    padding-right: var(--padding);
  }
  .progress-slider .swiper-prev,
  .progress-slider .swiper-next {
    display: none;
  }
}
@media (max-width: 768px) {
  .progress-item__body {
    padding: 12px 16px 16px;
  }
  .progress-item__img {
    height: 270px;
  }
  .progress-item__text {
    line-height: 1.4;
  }
}
/* PROGRESS END */
/* NEWS START */
.news .section-head {
  margin-bottom: 32px;
}
.news__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
  gap: 32px;
}
.news__column {
  background-color: var(--bg-light);
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 24px;
}
.news__column .news-el {
  border-bottom: 1px solid rgba(23, 36, 25, 0.2);
  padding-bottom: 24px;
}
.news__column .news-el:last-child {
  border: none;
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .news__wrap {
    gap: 16px;
  }
  .news__column {
    padding: 16px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .news__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .news .section-head {
    display: contents;
  }
  .news__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .news__btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 auto;
  }
}
/* NEWS END */

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