.timer-wrapper {
    background: rgba(0, 0, 0, 0.5);
    padding: 3.2rem;
    text-align: center;
    max-width: 58rem;
    width: 100%;
    color: #fff;
    flex: 1 1 0;
    position: absolute;
    top: 18%;
    right: var(--container-gap);
    z-index: 2;
}

.timer-wrapper h3 {
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 3.8rem;
    color: #fff;
    text-align: center;
}

.timer-wrapper p {
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 2.6rem;
    text-align: center;
    color: #fff;
    max-width: 40rem;
    width: 100%;
    margin: 0 auto 3rem;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-weight: 700;
}

.time-box {
    color: #fff;
    padding: 1.2rem 1.2rem;
    width: 9rem;
    height: 8rem;
    background: #009fe3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time-box span {
    display: block;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 100%;
    text-align: center;
    color: #fff;
}

.time-label {
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 2.6rem;
    text-align: center;
    color: #fff;
}

.colon {
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1440px) {
    .timer-wrapper {
        padding: 2.4rem;
        max-width: 47rem;
    }
}

@media (max-width: 570px) {
    /* мобильная версия: таймер и баннеры в потоке один под другим */
    .timer-wrapper {
        position: static;
        right: auto;
        top: auto;
        // margin: 1.2rem var(--container-gap) 1.2rem;
        margin-top: 6.2rem;
        margin-bottom: 0.8rem;
        max-width: 100%;
        // width: auto;
        padding: 1.2rem 1.2rem;
    }

    .hero-banners {
        position: static;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        gap: 0.8rem;
        // margin: 0 var(--container-gap) 1.2rem;
    }

    .hero-banner { max-width: 100%; padding: 1.2rem 1rem; min-height: auto; }
    .hero-banner__title { font-size: 1.6rem; }
    .hero-banner__desc { font-size: 1.4rem; }
    .hero-banner__value { font-size: 2.8rem; }
    .hero-banner__subtitle { font-size: 1.4rem; }
    .hero-banner__media { width: 8rem; }
    .timer { gap: 0.4rem; }
    .time-box span { font-size: 1.6rem; }
    .time-label { font-size: 1.1rem; line-height: 1.6rem; font-weight: 400; }
    .time-box { padding: 0.8rem; width: 5.2rem; height: 5.6rem; border-radius: 0.6rem; }

    .timer-wrapper p {
        margin-bottom: 1.2rem;
        font-size: 1.6rem;
        line-height: 2.1rem;
    }

    .timer-wrapper h3 {
        font-size: 1.8rem;
        line-height: 3rem;
    }

    .timer-wrapper {
        padding: 2rem 1.2rem;
    }
}
@media (max-width: 400px) {
  /* мобильная версия: таймер и баннеры в потоке один под другим */
  .timer-wrapper {
    position: static;
    right: auto;
    top: auto;
    // margin: 1.2rem var(--container-gap) 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
    max-width: 100%;
    // width: auto;
    padding: 1.2rem 1.2rem;
  }
}

.hero-addons {
  display: flex;
  gap: 2.4rem;
  align-items: stretch;
  margin-top: 2.4rem;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 80rem;
}

/* контейнер для двух баннеров */
.hero .timer-wrapper .hero-banners {
  display: flex;
  flex-direction: column; /* вертикально внутри контейнера */
  gap: 1.6rem;
  position: absolute;
  right: 0;
  top: 26.6rem; /* под таймером */
  z-index: 2;
  width: 58rem; /* фиксированная ширина блока справа */
  max-width: 100%;
}

/* общий вид карточки */
.hero-banner {
  position: relative;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2rem 2.4rem;
  display: flex;
  align-items: center;
  min-height: 9.6rem;
  width: 100%;
  max-width: none;
}

/* верхний текстовый */
.hero .timer-wrapper .hero-banner--text {
  flex-direction: column;
  align-items: flex-start;
}
.hero .timer-wrapper .hero-banner__title {
  line-height: 100%;
  color: #fff;
  text-align: left;
}
.hero .timer-wrapper .hero-banner__desc {
  color: #fff;
  text-align: left;
}

/* нижний c цифрой и картинкой */
.hero .timer-wrapper .hero-banner.hero-banner--cta {
  justify-content: space-between;
  gap: 2rem;
  background: #141414;
}
.hero .timer-wrapper .hero-banner.hero-banner--cta .hero-banner__mediaText {
  display: flex;
  flex-direction: column;
}

.hero .timer-wrapper .hero-banner__value {
  text-align: left;
}
.hero-banner__subtitle {
  margin-top: 0.6rem;
  font-size: 1.6rem;
  opacity: 0.9;
}
.hero-banner__media {
  flex: 0 0 auto;
  width: 12rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner__media img {
  max-width: 100%;
  height: auto;
  display: block;
}

.verticalOffers {
  display: flex !important;
  justify-content: space-between;
}
.verticalOffers .slick-list {
  width: calc(100% - 24px);
}
.verticalOffers .slick-dots {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8px;
  list-style-type: none;
  gap: 8px;
}
.verticalOffers .slick-dots li {
  width: 8px;
  height: 8px;
  display: flex;
}
.verticalOffers .slick-dots li.slick-active {

}
.verticalOffers .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border: none;
  font-size: 0px;
  background: #FFFFFF80;
}
.verticalOffers .slick-dots li.slick-active button{
  background: #009fe3;
}
.verticalOffers .verticalOffersItem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.verticalOffers .verticalOffersItem .verticalOffersItemLink {
  font-size: 1.6rem;
  font-weight: 600;
  color: #009fe3;
}

.hero__ctaFilter {
  padding: 1.6rem;
  background: #141414;
  display: flex;
  max-width: 640px;
  width: 100%;
  gap:32px;
}
.hero__ctaFilter .hero__ctaFilterImage {
  width: 234px;
  height: 234px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__ctaFilter .hero__ctaFilterImage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hero__ctaFilter .hero__ctaFilterText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.hero__ctaFilter .hero__ctaFilterText .hero__ctaFilterTextTitle {
  font-family: Soyuz Grotesk;
  font-weight: 700;
  font-size: 5.6rem;
  line-height: 100%;
  color: #FFFFFF;

}
.hero__ctaFilter .hero__ctaFilterText .hero__ctaFilterTextLink {
  font-size: 1.6rem;
  font-weight: 600;
  color: #009fe3;
}

.hero.mainHero .hero__slide {
    height: 100%;
    background: #000;
}

.hero.mainHero .swiper-slide {
  height: auto;
}
.hero.mainHero .swiper-slide picture
.hero.mainHero .swiper-slide .hero__image{
  width: 100%;
  height: 100%;
}

/* адаптив: на планшете складываем в колонку, таймер сверху */
@media (max-width: 1024px) {
	

.mainHero .slick-slide
{ display:flex !important; justify-content: center;
height: 99px !important;
}
	
  .hero .timer-wrapper .hero-addons {
    flex-direction: column;
    max-width: 100%;
  }
  .hero .timer-wrapper .hero-banners {
    flex-direction: column;
    gap: 1.2rem;
    min-width: 0;
    width: 100%;
  }
  .hero .timer-wrapper .hero-banner {
    max-width: 100%;
  }
}
@media (max-width: 440px) {
  .hero.mainHero .timer-wrapper {

  }
  .hero .timer-wrapper .hero-banners{
    top: unset;
    left: unset;
    width: 100%;
    position: relative;
  }
  .hero__ctaFilter {
    gap:8px;
    padding: 0.8rem;
  }
  .hero__ctaFilter .hero__ctaFilterImage {
    width: 131px;
    height: 126px;
  }
  .hero__ctaFilter .hero__ctaFilterText {
    gap: 12px;
    width: calc(100% - 131px);
  }
  .hero__ctaFilter .hero__ctaFilterText .hero__ctaFilterTextTitle {
    font-size: 2.6rem;
  }
  .verticalOffers .slick-list {
      width: 100%;
  }
}