@charset "UTF-8";
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(0, 0, 0);
  position: relative;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

hr {
  height: 80px;
  margin: 0;
  border: none;
}

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

.container__md {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.lock {
  overflow: hidden;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 4.27vw;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 2.08vw 4.17vw;
  }
}
.header__inner .header__logo {
  display: none;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .header__inner .header__logo {
    display: block;
  }
}
.header__inner .header__logo .logo-img {
  max-width: 100px;
  max-height: 24px;
}
.header__inner .header__nav.header__nav--mobile {
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .header__inner .header__nav.header__nav--mobile {
    display: none;
  }
}
.header__inner .header__nav.header__nav--mobile .burger-menu-open-btn {
  cursor: pointer;
  border: none;
  background: transparent;
}
.header__inner .header__nav.header__nav--desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__inner .header__nav.header__nav--desktop {
    display: block;
  }
}
.header__inner .header__nav.header__nav--desktop a {
  size: 16px;
  text-decoration: none;
  color: rgb(17, 17, 17);
  cursor: pointer;
}
.header__inner .header__nav.header__nav--desktop > a:nth-child(-n+3) {
  margin-right: 2.22vw;
}
.header__inner .header__cart-icon {
  cursor: pointer;
  line-height: 0;
}

.product-cards__title {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .product-cards__title {
    font-size: 30px;
    margin-bottom: 45px;
  }
}

.swiper.swiper-featured {
  margin-left: 16px;
}
@media screen and (min-width: 768px) {
  .swiper.swiper-featured {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1281px) {
  .swiper.swiper-featured {
    margin-left: 0px;
  }
}
.swiper.swiper-featured .product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.swiper.swiper-featured .product-card .product-card__img {
  line-height: 0;
  border-radius: 8px;
  margin-bottom: 20px;
}
.swiper.swiper-featured .product-card .product-card__img img {
  width: 100%;
  height: 100%;
}
.swiper.swiper-featured .product-card h3 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 11px;
}
.swiper.swiper-featured .product-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #4d4c4c;
  margin: 0;
}

.swiper-button-prev.featured-nav,
.swiper-button-next.featured-nav {
  display: none;
  top: 52%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  background-color: white;
}
@media screen and (min-width: 1351px) {
  .swiper-button-prev.featured-nav,
  .swiper-button-next.featured-nav {
    display: flex;
  }
}
.swiper-button-prev.featured-nav:after,
.swiper-button-next.featured-nav:after {
  display: none;
}
.swiper-button-prev.featured-nav.hidden,
.swiper-button-next.featured-nav.hidden {
  display: none;
}
.swiper-button-prev.featured-nav svg,
.swiper-button-next.featured-nav svg {
  width: 16px;
  height: 16px;
}

.swiper-button-prev.featured-nav {
  left: -1.7%;
  transform: rotate(180deg);
}

.swiper-button-next.featured-nav {
  right: -1.7%;
}

.faq-wrap {
  padding: 60px 16px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .faq-wrap {
    padding: 5.56vw 19.72vw;
  }
}
.faq-wrap h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .faq-wrap h2 {
    font-size: 30px;
  }
}
.faq-wrap p {
  text-align: center;
  font-size: 16px;
  color: #777;
  margin-bottom: 32px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .faq-wrap p {
    margin-bottom: 48px;
  }
}
.faq-wrap .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .faq-wrap .faq-list {
    gap: 16px;
  }
}
.faq-wrap .faq-list .faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #e6e6e6;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-wrap .faq-list .faq-item:not(.active) {
  background-color: #f0f0f0;
}
.faq-wrap .faq-list .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  font-weight: 500;
  cursor: pointer;
  background-color: white;
  font-size: 16px;
}
.faq-wrap .faq-list .faq-item .faq-question:hover {
  background-color: #f0f0f0;
}
.faq-wrap .faq-list .faq-item .faq-question .faq-toggle {
  font-size: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.1px;
}
.faq-wrap .faq-list .faq-item .faq-answer {
  max-height: 0;
  padding: 0 24px 24px 24px;
  font-size: 16px;
  color: #555;
  background-color: #fff;
}
.faq-wrap .faq-list .faq-item.active .faq-answer {
  max-height: 500px;
}

.product__wrap {
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .product__wrap {
    padding: 70px 67px;
    display: flex;
    gap: 60px;
  }
}
.product__wrap .product__badge {
  position: absolute;
  top: 3.47vw;
  left: 13vw;
  background-color: #ffffff;
  padding: 8px;
  border-radius: 3px;
  z-index: 5;
  display: flex;
}
@media screen and (min-width: 478px) {
  .product__wrap .product__badge {
    top: 3.47vw;
    left: 11vw;
  }
}
@media screen and (min-width: 768px) {
  .product__wrap .product__badge {
    top: 10.83vw;
    left: 23.71vw;
    padding: 0;
  }
}
@media screen and (min-width: 820px) {
  .product__wrap .product__badge {
    top: 9.83vw;
    left: 19.71vw;
  }
}
@media screen and (min-width: 1023px) {
  .product__wrap .product__badge {
    top: 7.83vw;
    left: 17.71vw;
    padding: 8px;
  }
}
@media screen and (min-width: 1136px) {
  .product__wrap .product__badge {
    top: 6.83vw;
    left: 15.71vw;
  }
}
@media screen and (min-width: 1279px) {
  .product__wrap .product__badge {
    top: 6.83vw;
    left: 14.71vw;
  }
}
@media screen and (min-width: 1400px) {
  .product__wrap .product__badge {
    top: 6.5vw;
    left: 13vw;
  }
}
.product__wrap .product__badge svg {
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__badge svg {
    margin-right: 3px;
  }
}
.product__wrap .product__badge span {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__gallery {
    display: flex;
    flex-direction: row-reverse;
    max-height: 536px;
    max-width: 50%;
  }
}
.product__wrap .product__gallery .swiper {
  display: none;
}
.product__wrap .product__gallery .swiper.active {
  display: block;
}
.product__wrap .product__gallery .swiper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.product__wrap .product__gallery .swiper.red-sneakers, .product__wrap .product__gallery .swiper.dark-sneakers, .product__wrap .product__gallery .swiper.white-sneakers {
  margin-top: 16px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__gallery .swiper.red-sneakers, .product__wrap .product__gallery .swiper.dark-sneakers, .product__wrap .product__gallery .swiper.white-sneakers {
    min-width: 100px;
  }
}
@media screen and (min-width: 768px) {
  .product__wrap .product__gallery .swiper.red-sneakers .swiper-wrapper, .product__wrap .product__gallery .swiper.dark-sneakers .swiper-wrapper, .product__wrap .product__gallery .swiper.white-sneakers .swiper-wrapper {
    width: 88px;
  }
}
.product__wrap .product__gallery .swiper.red-sneakers .swiper-wrapper .swiper-slide, .product__wrap .product__gallery .swiper.dark-sneakers .swiper-wrapper .swiper-slide, .product__wrap .product__gallery .swiper.white-sneakers .swiper-wrapper .swiper-slide {
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.product__wrap .product__gallery .swiper.red-sneakers .swiper-wrapper .swiper-slide::before, .product__wrap .product__gallery .swiper.dark-sneakers .swiper-wrapper .swiper-slide::before, .product__wrap .product__gallery .swiper.white-sneakers .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.product__wrap .product__gallery .swiper.red-sneakers .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::before, .product__wrap .product__gallery .swiper.dark-sneakers .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::before, .product__wrap .product__gallery .swiper.white-sneakers .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::before {
  opacity: 1;
}
.product__wrap .product__gallery .swiper.red-sneakers .swiper-wrapper .swiper-slide img, .product__wrap .product__gallery .swiper.dark-sneakers .swiper-wrapper .swiper-slide img, .product__wrap .product__gallery .swiper.white-sneakers .swiper-wrapper .swiper-slide img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__details {
    max-height: 536px;
    max-width: 50%;
  }
}
.product__wrap .product__details h1 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__details h1 {
    font-size: 30px;
  }
}
.product__wrap .product__details #price {
  font-size: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__details #price {
    margin: 0 0 32px 0;
  }
}
.product__wrap .product__details .color-options {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__details .color-options {
    margin-bottom: 32px;
  }
}
.product__wrap .product__details .color-options img {
  width: 88px;
  height: 88px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
}
.product__wrap .product__details .color-options img.active {
  border-color: black;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__details .size-wrap {
    margin-bottom: 32px;
  }
}
.product__wrap .product__details .size-wrap h2 {
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}
.product__wrap .product__details .size-wrap .size-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__details .size-wrap .size-options {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product__wrap .product__details .size-wrap .size-options .size {
  font-family: "Poppins", sans-serif;
  padding: 8px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__details .size-wrap .size-options .size {
    padding: 16px;
    border-radius: 8px;
  }
}
.product__wrap .product__details .size-wrap .size-options .size.active {
  border-color: black;
  font-weight: 500;
}
.product__wrap .product__details .add-to-bag {
  width: 100%;
  padding: 16px;
  background: black;
  color: white;
  border: none;
  border-radius: 4px;
  margin-bottom: 16px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__details .add-to-bag {
    margin-bottom: 0;
  }
}
.product__wrap .product__details .desc {
  font-size: 14px;
  color: #666;
}
@media screen and (min-width: 768px) {
  .product__wrap .product__details .desc {
    margin: 32px 0 0 0;
  }
}

.help-form {
  padding: 60px 16px;
  background: #f4f4f4;
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .help-form {
    padding: 80px 284px;
  }
}
.help-form .help-form__title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 32px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .help-form .help-form__title {
    font-size: 30px;
    margin-bottom: 48px;
  }
}
.help-form .help-form__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.help-form .help-form__form .help-form__row {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .help-form .help-form__form .help-form__row {
    flex-direction: row;
  }
}
.help-form .help-form__form .help-form__input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.help-form .help-form__form .help-form__input-group .help-form__label {
  font-size: 16px;
  margin-bottom: 8px;
}
.help-form .help-form__form .help-form__input-group .help-form__input,
.help-form .help-form__form .help-form__input-group .help-form__textarea {
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
}
.help-form .help-form__form .help-form__input-group .help-form__textarea {
  resize: vertical;
  min-height: 100px;
}
.help-form .help-form__form .help-form__submit {
  font-family: "Poppins", sans-serif;
  margin: 32px auto 0;
  padding: 16px 32px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.banner-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  /* Слайдер */
}
@media screen and (min-width: 768px) {
  .banner-wrapper {
    height: 750px;
  }
}
.banner-wrapper .banner-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 91.3%;
  width: 100%;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .banner-wrapper .banner-content {
    top: 27%;
    left: 5.5%;
    transform: none;
    text-align: left;
    max-width: 655px;
    padding: 0;
  }
}
.banner-wrapper .banner-content h1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.4;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .banner-wrapper .banner-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
.banner-wrapper .banner-content p {
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.4;
  color: #e0e0e0;
}
@media screen and (min-width: 768px) {
  .banner-wrapper .banner-content p {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
.banner-wrapper .banner-content button {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding: 16px 32px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .banner-wrapper .banner-content button {
    font-size: 16px;
    padding: 16px 32px;
  }
}
.banner-wrapper .banner-content button:hover {
  background-color: #c3c0c0;
}
.banner-wrapper .swiper {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.banner-wrapper .swiper .slide-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.banner-wrapper .swiper .swiper-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.banner-wrapper .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  border-radius: 3px;
  background-color: #8d8d8d;
  opacity: 1;
  transition: all 0.3s ease;
}
.banner-wrapper .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffffff;
}

.footer {
  padding: 60px 16px 24px 16px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 60px 60px 24px 60px;
  }
}
.footer .footer__top {
  margin-bottom: 3.33vw;
}
@media screen and (min-width: 768px) {
  .footer .footer__top {
    display: flex;
    justify-content: space-between;
    gap: 2.78vw;
  }
}
.footer .footer__top .footer__section {
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .footer .footer__top .footer__section {
    flex: 1;
    border: none;
  }
}
.footer .footer__top .footer__section:first-of-type {
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .footer .footer__top .footer__section:first-of-type {
    border: none;
  }
}
.footer .footer__top .footer__section .footer__accordion {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  width: 100%;
  padding: 16px 0;
  background-color: #ffffff;
  border: none;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .footer .footer__top .footer__section .footer__accordion {
    background: none;
    padding: 0;
    cursor: default;
    pointer-events: none;
    margin-bottom: 16px;
  }
}
.footer .footer__top .footer__section .footer__accordion:hover {
  background-color: #eaeaea;
}
@media screen and (min-width: 768px) {
  .footer .footer__top .footer__section .footer__accordion:hover {
    background: none;
  }
}
.footer .footer__top .footer__section .footer__accordion .accordion__icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #333;
  border-bottom: 1.5px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .footer .footer__top .footer__section .footer__accordion .accordion__icon {
    display: none;
  }
}
.footer .footer__top .footer__section .footer__accordion[aria-expanded=true] .accordion__icon {
  transform: rotate(-135deg);
}
.footer .footer__top .footer__section .footer__list {
  list-style: none;
  padding: 0 16px;
  margin: 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .footer .footer__top .footer__section .footer__list {
    display: block;
    padding: 0;
    margin-top: 10px;
  }
}
.footer .footer__top .footer__section .footer__list.open {
  display: block;
}
.footer .footer__top .footer__section .footer__list li {
  margin-bottom: 12px;
}
.footer .footer__top .footer__section .footer__list a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
  font-size: 14px;
}
.footer .footer__top .footer__section .footer__list a:hover {
  text-decoration: underline;
}
.footer .footer__bottom {
  font-size: 14px;
  color: #888;
  margin: 0;
}
.footer .footer__bottom .footer__bottom-links {
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .footer .footer__bottom .footer__bottom-links {
    display: flex;
    align-items: center;
  }
}
.footer .footer__bottom .footer__bottom-links li {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .footer .footer__bottom .footer__bottom-links li {
    margin: 0 2.22vw 0 0;
  }
}
.footer .footer__bottom .footer__bottom-links a {
  color: #888;
  text-decoration: none;
  cursor: pointer;
}
.footer .footer__bottom .footer__bottom-links a:hover {
  text-decoration: underline;
}

.header__burger-menu {
  display: none;
  background-color: transparent;
  position: fixed;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(227, 227, 227, 0.5019607843);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 15;
}
.header__burger-menu.active {
  display: flex;
}
.header__burger-menu .burger-menu__nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0 auto;
  gap: 15px;
  position: relative;
}
.header__burger-menu .burger-menu__nav-wrap .burger-menu-close-btn {
  position: absolute;
  right: -20px;
  top: -35px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.header__burger-menu .burger-menu__nav-wrap a {
  text-decoration: none;
  color: rgb(17, 17, 17);
  cursor: pointer;
  font-weight: 600;
}

.banner-pop-up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 20px;
}
.banner-pop-up.active {
  display: flex;
}
.banner-pop-up .banner-pop-up__container {
  max-width: 90%;
  display: flex;
  background-color: rgb(255, 255, 255);
  border-radius: 16px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .banner-pop-up .banner-pop-up__container {
    max-width: 872px;
  }
}
.banner-pop-up .banner-pop-up__container .baner-pop-up__close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 0.83vw;
  display: flex;
  border-radius: 50%;
  border: 0.1px solid rgb(235, 232, 232);
  cursor: pointer;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .banner-pop-up .banner-pop-up__container .baner-pop-up__close-btn {
    background-color: rgb(255, 255, 255);
  }
}
@media screen and (min-width: 768px) {
  .banner-pop-up .banner-pop-up__container .baner-pop-up__close-btn svg {
    background-color: transparent;
  }
}
.banner-pop-up .banner-pop-up__container .banner-pop-up__content {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .banner-pop-up .banner-pop-up__container .banner-pop-up__content {
    padding: 60px;
    margin-bottom: 24px;
  }
}
.banner-pop-up .banner-pop-up__container .banner-pop-up__content h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .banner-pop-up .banner-pop-up__container .banner-pop-up__content h1 {
    font-size: 48px;
    line-height: 1.2;
  }
}
.banner-pop-up .banner-pop-up__container .banner-pop-up__content p {
  font-size: 16px;
  color: #333;
  margin: 0 0 48px;
}
.banner-pop-up .banner-pop-up__container .banner-pop-up__content .banner-pop-up__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.banner-pop-up .banner-pop-up__container .banner-pop-up__content .banner-pop-up__form .banner-pop-up__label {
  font-size: 14px;
  color: #222;
}
.banner-pop-up .banner-pop-up__container .banner-pop-up__content .banner-pop-up__form .banner-pop-up__input {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.banner-pop-up .banner-pop-up__container .banner-pop-up__content .banner-pop-up__form .banner-pop-up__submit-btn {
  padding: 12px 16px;
  font-size: 16px;
  background-color: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.banner-pop-up .banner-pop-up__container .banner-pop-up__content .banner-pop-up__form .banner-pop-up__submit-btn:hover {
  background-color: #333;
}
.banner-pop-up .banner-pop-up__container .banner-pop-up__media {
  display: none;
}
@media screen and (min-width: 768px) {
  .banner-pop-up .banner-pop-up__container .banner-pop-up__media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.banner-pop-up .banner-pop-up__container .banner-pop-up__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}