.image-banner {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 450px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.image-banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2.1s ease;
}

.image-banner__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.image-banner__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-banner__dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    z-index: 3;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.image-banner__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(202, 192, 168, 0.6);
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.image-banner__dots button.is-active {
    background: #B85458;
    transform: scale(1.25);
}

@media (max-width: 700px) {
    .image-banner {
        height: 220px;
        border-radius: 6px;
    }

    .image-banner__button {
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
}



.footer_catalog {
  position: relative;
  width: 100%;
  background-image: url("/assets/images/new/footer.png");
  color: #efe3cf;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform: scaleY(1.1);
  transform-origin: center;
}

.footer_catalog::before {
  content: "";
  position: absolute;
  inset: 0;
}

.footer_catalog__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer_catalog__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
}

.footer_catalog__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer_catalog__address {
   flex: 0 0 270px;
   max-width: 270px;
}

.footer_catalog__phone {
  flex: 0 0 270px;
  max-width: 270px;
}



.footer_catalog__email {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  flex: 0 0 130px;
  max-width: 130px;
  text-decoration: none;
}

.footer_catalog__email-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer_catalog__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.footer_catalog__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer_catalog__social img {
  width: 22px;
  height: 20px;
  object-fit: contain;
  display: block;
 
}



.footer_catalog__email a {
  color: inherit;
  text-decoration: none;
}

.footer_catalog__logo {
   text-transform: uppercase;
   flex: 0 0 260px;
  max-width: 260px;
}

.footer_catalog__logo img {
  width: 48px;
  height: 45px;
  object-fit: contain;
  display: block;
 
}

.footer_catalog__email a:hover {
  text-decoration: underline;
}

.footer_catalog__copy {
  flex: 0 0 380px;
  max-width: 380px;
}

@media (max-width: 900px) {
  .footer_catalog__inner {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .footer_catalog__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer_catalog__item {
    justify-content: center;
  }

  .footer_catalog__copy {
    white-space: normal;
  }
}