
footer,
section {
  display: block;
}




.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}


/* Пропускаємо шапку і перший екран, вони мають вантажитися миттєво */
section:not(#first) {
    content-visibility: auto;
}

/* Також застосовуємо до великих блоків, які йдуть нижче */
.section7, .section-40, .section-41, .section-12, .section-13, .section-15, .section-17, .section24 {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}
.w-icon-slider-right:before {
  content: "";
}
.w-icon-slider-left:before {
  content: "";
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}
.w-inline-block {
  max-width: 100%;
  display: inline-block;
}
.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}



.img-width-height-not-replay {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Основний стиль кнопки */
.v2-booking-btn-not-replay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 33px;
  margin-top: 25px;
  margin-bottom: 41px;
  background: linear-gradient(102deg, #b61016 0%, #910917 100%);
  border-radius: 16px;
  text-decoration: none;
  color: #f2f1f1;
  font-family: "Velasans", sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
  /* Плавний перехід для всіх властивостей */
  transition: all 500ms cubic-bezier(0.439, 0.1, 0.25, 1);
  border: none;
  cursor: pointer;
}

/* Ефект при наведенні (Hover) */
.v2-booking-btn-not-replay:hover {
  /* Змінюємо радіус та перевертаємо градієнт */
  border-radius: 28px;
  background: linear-gradient(102deg, #910917 0%, #b61016 100%);

  /* У вашому onmouseover відступи залишалися 16px, 
       але якщо хочете ефект "стискання/розширення", 
       можна трохи змінити padding тут */
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Активний стан при кліку */
.v2-booking-btn-not-replay:active {
  transform: scale(0.98);
}
/* Основний клас кнопки */
.v2-price-btn-not-replay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 33px;
  margin-top: 30px;
  margin-bottom: 35px;
  background: linear-gradient(180deg, #cfcfcf 0%, #f2f1f1 100%);
  border-radius: 16px;
  text-decoration: none;
  color: #070707;
  font-family: "Velasans", sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  /* Плавний перехід для всіх властивостей */
  transition: all 500ms cubic-bezier(0.439, 0.1, 0.25, 1);
}

/* Стан при наведенні (Hover) */
.v2-price-btn-not-replay:hover {
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 28px;
  /* Перевертаємо градієнт */
  background: linear-gradient(0deg, #cfcfcf 0%, #f2f1f1 100%);
}

/* Стан при натисканні (опціонально для кращого UX) */
.v2-price-btn-not-replay:active {
  transform: scale(0.98);
}

/* Основний стиль кнопки */
.btn-viva-silver-not-replay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 33px;
  margin-top: 30px;
  background: linear-gradient(180deg, #cfcfcf 0%, #f2f1f1 100%);
  border-radius: 16px;
  text-decoration: none;
  color: #070707;
  font-family: "Velasans", sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  /* Плавність анімації */
  transition: all 500ms cubic-bezier(0.439, 0.1, 0.25, 1);
}

/* Ефект при наведенні (замість onmouseover) */
.btn-viva-silver-not-replay:hover {
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 28px;
  /* Перевертаємо градієнт на 0 градусів */
  background: linear-gradient(0deg, #cfcfcf 0%, #f2f1f1 100%);
}

/* Стан при натисканні (для інтерактивності) */
.btn-viva-silver-not-replay:active {
  transform: scale(0.98);
}

.viva-full-width-btn-not-replay {
  /* Основна структура */
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
  padding: 22px 33px;
  margin-top: 30px;

  /* Декор та фон */
  background: linear-gradient(180deg, #cfcfcf 0%, #f2f1f1 100%);
  border-radius: 16px;
  border: none;

  /* Типографіка */
  text-decoration: none;
  color: #070707;
  font-family: "Velasans", sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;

  /* Анімація */
  cursor: pointer;
  transition: all 500ms cubic-bezier(0.439, 0.1, 0.25, 1);
}
/* 1. Створюємо саму анімацію обертання від 0 до 360 градусів */

/* 2. Застосовуємо її до нашого класу */
/* Ефект при наведенні (замінює onmouseover) */
.viva-full-width-btn-not-replay:hover {
  padding-top: 24px;
  padding-bottom: 24px;
  border-radius: 28px;
  /* Зміна напрямку градієнта */
  background: linear-gradient(0deg, #cfcfcf 0%, #f2f1f1 100%);
}

/* Стан при натисканні (UX бонус) */
.viva-full-width-btn-not-replay:active {
  transform: scale(0.99);
}
.img-not-replay-custom-style {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.custom-action-button-not-replay {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 33px;
  width: 100%;
  margin-top: 30px;
  background: linear-gradient(180deg, #cfcfcf 0%, #f2f1f1 100%);
  border-radius: 16px;
  text-decoration: none;
  color: #070707;
  font-family: "Velasans", sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
  /* Плавність переходу для всіх властивостей */
  transition: all 500ms cubic-bezier(0.439, 0.1, 0.25, 1);
  box-sizing: border-box; /* Щоб падінги не роздували кнопку понад 100% */
}

/* Ефект при наведенні (замість onmouseover) */
.custom-action-button-not-replay:hover {
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 28px;
  /* Зміна напрямку градієнта на 0deg (знизу вгору) */
  background: linear-gradient(0deg, #cfcfcf 0%, #f2f1f1 100%);
}

/* Опціонально: ефект при натисканні */
.custom-action-button-not-replay:active {
  transform: scale(0.98);
}

/* Червона акцентна кнопка */
.accent-action-button-not-replay {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  padding: 16px 33px;
  margin-top: 25px;
  background: linear-gradient(102deg, #b61016 0%, #910917 100%);
  border-radius: 16px;
  text-decoration: none;
  color: #f2f1f1;
  font-family: "Velasans", sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 500ms cubic-bezier(0.439, 0.1, 0.25, 1);
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}

/* Ефект при наведенні */
.accent-action-button-not-replay:hover {
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 28px;
  /* Інверсія градієнта для візуального відгуку */
  background: linear-gradient(102deg, #910917 0%, #b61016 100%);
}

/* Ефект при натисканні */
.accent-action-button-not-replay:active {
  transform: scale(0.97);
  transition: all 100ms;
}

/* Базовий стан кнопки */
.custom-membership-btn-not-replay {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 33px;
  width: 100%;
  margin-top: 37px;
  background: linear-gradient(180deg, #cfcfcf 0%, #f2f1f1 100%);
  border-radius: 16px;
  text-decoration: none;
  color: #070707;
  font-family: "Velasans", sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 500ms cubic-bezier(0.439, 0.1, 0.25, 1);
  box-sizing: border-box; /* Щоб padding не збільшував загальну ширину більше 100% */
}

/* Стан при наведенні миші (заміняє onmouseover та onmouseout) */
.custom-membership-btn-not-replay:hover {
  padding-top: 24px;
  padding-bottom: 24px;
  border-radius: 28px;
  background: linear-gradient(0deg, #cfcfcf 0%, #f2f1f1 100%);
}
.style-img-not-replay {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.style-img-not-replay-2 {
  width: 98%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.style-img-not-replay-4 {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: 0% 10%;
  display: block;
}
.style-img-not-replay-5 {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: 0% 50%;
  display: block;
}
/* Контейнер для тултипу */
.custom-tooltip-wrap {
    position: relative;
    cursor: pointer;
}

/* Сам текст підказки */
.custom-tooltip-wrap::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%; /* Відображення зверху (top) */
    left: 50%;
    transform: translateX(-50%) translateY(15px); /* Анімація shift-away */
    background-color: #ffffff; /* Світла тема */
    color: #1a1a1a;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    width: max-content;
    max-width: 280px; /* Захист від занадто широкого тексту */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    
    /* Приховано за замовчуванням */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    
    /* Анімація + затримка 0.5с (500ms) */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transition-delay: 0.5s; 
}

/* Стрілочка (хвостик) тултипу */
.custom-tooltip-wrap::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    border-width: 8px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 101;
    
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transition-delay: 0.5s;
}

/* Відображення при наведенні (ПК) або активному класі (Мобілки) */
.custom-tooltip-wrap:hover::after,
.custom-tooltip-wrap:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px); /* Тултип плавно піднімається */
    transition-delay: 0s; /* Скасовуємо затримку при зникненні */
}
h2,
h3 {
  margin-bottom: 10px;
  font-weight: 700;
}
h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}
h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}
p {
  margin-top: 0;
  margin-bottom: 10px;
}
.w-embed:before,
.w-embed:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.w-embed:after {
  clear: both;
}
.w-video {
  width: 100%;
  padding: 0;
  position: relative;
}
.w-video iframe {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.w-slider {
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: #000;
  background: #ddd;
  height: 300px;
  position: relative;
}
.w-slider-mask {
  z-index: 1;
  white-space: nowrap;
  height: 100%;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}
.w-slide {
  vertical-align: top;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}
.w-slider-nav {
  z-index: 2;
  text-align: center;
  -webkit-tap-highlight-color: #000;
  height: 40px;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  inset: auto 0 0;
}
.w-slider-arrow-left,
.w-slider-arrow-right {
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: #000;
  -webkit-user-select: none;
  user-select: none;
  width: 80px;
  margin: auto;
  font-size: 40px;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.w-slider-arrow-left [class^="w-icon-"],
.w-slider-arrow-right [class^="w-icon-"] {
  position: absolute;
}
.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
  outline: 0;
}
.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}
.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}
.w-icon-slider-left,
.w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  inset: 0;
}


:root {
  --color: rgba(7, 7, 7, 0);
  --text1: 500;
}
.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.paragraph {
  clear: both;
  color: #f2f1f1;
  text-align: center;
  object-fit: fill;
  min-width: auto;
  max-width: 400px;
  max-height: 100%;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: block;
  position: sticky;
  left: auto;
}
.section-6 {
  text-align: center;
  background-color: #070707;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}
.div-block-7 {
  text-align: center;
  background-image: linear-gradient(273deg, #1d1d1d, #0b0b0b);
  border-radius: 40px;
  max-width: 1200px;
  height: 100%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 50px 45px;
}
.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.heading-all {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #f2f1f1;
  text-align: center;
  text-transform: uppercase;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 0;
  padding-left: 0;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 35px;
  display: flex;
}
.bold-text-2 {
  font-weight: 400;
}
.text-span-5 {
  color: #b61016;
}
.text-block-4 {
  color: #f2f1f1;
  text-align: center;
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.text-span-6 {
  font-weight: 600;
  line-height: 25px;
}
.text-span-7 {
  color: #b61016;
}
.div2 {
  justify-content: center;
  align-items: center;
  height: 63%;
  margin-top: 30px;
  margin-bottom: 0;
  display: flex;
}
.text-span-8,
.text-span-9 {
  font-weight: 600;
}
.text-block-5 {
  color: #f2f1f1b3;
  padding-top: 14px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Velasans, Arial, sans-serif;
}
.text-span-10,
.text-span-11 {
  font-weight: 600;
}
.heading-5 {
  text-align: center;
  margin-top: 0;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-weight: 400;
}
.bold-text-3 {
  color: #f2f1f1b3;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 400;
}
.div3 {
  margin-left: 200px;
  margin-right: 200px;
  font-size: 16px;
}
.div-block-vid {
  opacity: 1;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-image: linear-gradient(273deg, #1d1d1d80, #080808b3);
  border-radius: 40px;
  max-width: 1200px;
  height: 100%;
  margin: 30px auto 20px;
  padding: 35px 50px 50px;
}
.grid-vid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}
.text-block-vid {
  color: #f2f1f1b3;
  text-align: center;
  padding-top: 0;
  font-family: Velasans, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.heading-vid {
  color: #f2f1f1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
}
.bold-text-4 {
  font-size: 28px;
  font-weight: 400;
}
.text-span-12 {
  color: #b61016;
}
.div2-copy {
  justify-content: center;
  align-items: center;
  height: 63%;
  margin-bottom: 0;
  display: flex;
}
.txt-vid {
  justify-content: center;
  display: flex;
}
.image-4-vid {
  max-width: 55px;
  margin-left: 30px;
  padding-bottom: 15px;
  padding-left: 0;
}
.heading-vid1 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #f2f1f1;
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 60px;
  font-weight: 400;
  display: flex;
}
.heading-vid1._1 {
  line-height: 60px;
}
.code-embed {
  width: 100%;
  height: 220px;
}
.text-span-13,
.text-span-14 {
  color: #b61016;
}
.div-block-10 {
  text-align: center;
}
.text-span-15 {
  font-weight: 600;
}
.heading-6 {
  color: #f2f1f1;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 45px;
  font-weight: 400;
}
.txt-sob {
  color: #f2f1f1b3;
  padding-top: 15px;
  font-family: Velasans, Arial, sans-serif;
  font-weight: 300;
}
.txt-sob-h {
  color: #f2f1f1;
  text-align: center;
  padding-top: 10px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 25px;
}
.txt-sob-h2 {
  color: #f2f1f1;
  text-align: center;
  padding-top: 25px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
}
.button-3 {
     display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    gap: 24px;
    padding: 16px 33px;
    margin-top: 30px;
    margin-bottom: 35px;
    background: linear-gradient(180deg, #cfcfcf 0%, #f2f1f1 100%);
    border-radius: 16px;
    text-decoration: none;
    color: #070707;
    font-family: "Velasans", sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 500ms cubic-bezier(0.439, 0.1, 0.25, 1);
}
.button-3:hover {
 
     padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 28px;
    background: linear-gradient(0deg, #cfcfcf 0%, #f2f1f1 100%);
}
/* .button-3 > img {
  transition: all 0.3s;
}
.button-3:hover > img {
  transform: scale(1.2);
  transition: all 0.3s;
} */
.section-9 {
  margin-top: 30px;
  margin-bottom: 70px;
}
.div-block-15 {
  text-align: center;
  background-image: linear-gradient(273deg, #1d1d1d, #080808);
  border-radius: 40px;
  max-width: 1200px;
  height: 100%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 35px 50px;
}
.text-block-4-copy {
  color: #f2f1f1;
  text-align: center;
  text-transform: uppercase;
  padding-top: 20px;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
}
.div-block-16 {
  border: 2px solid #2a2727;
  border-radius: 30px;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.bold-text-6 {
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  line-height: 25%;
}
.text-span-18,
.text-span-19 {
  color: #b61016;
}
.div-block-17 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: linear-gradient(#b61016, #8c0f1d);
  border-radius: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 30px;
  height: 30px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}
.text-block-6 {
  color: #fff;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-family: Velasans, Arial, sans-serif;
  font-size: 25px;
  font-weight: 300;
  display: block;
  position: static;
}
.text-span-20 {
  color: #b61016;
}
.text-span-21 {
  color: #ad1515;
}
.text-span-22,
.text-span-23 {
  color: #ad171f;
}
.heading-all-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #f2f1f180;
  text-align: center;
  text-transform: none;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-family: Velasans, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}
.div2-copy {
  justify-content: center;
  align-items: center;
  height: 63%;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
}
.div2-copy._1 {
  margin-bottom: 0;
}
.div-block-18 {
  text-align: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.text-span-24 {
  font-weight: 600;
}

.div-block-16-copy,
.div-block-16-copy-1,
.div-block-16-copy-2 {
  border: 2px solid #2a2727;
  border-radius: 30px;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.heading-5-copy-1 {
  color: #f2f1f1b3;
  text-align: center;
  text-transform: none;
  margin-top: 15px;
  margin-bottom: 40px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.heading-6-copy-01 {
  color: #0f0f0f;
  -webkit-text-stroke-color: #0f0f0f;
  text-transform: uppercase;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 45px;
  font-weight: 400;
}
.text-block-7-copy {
  margin-top: 17px;
  font-family: Velasans, Arial, sans-serif;
  font-weight: 300;
}
.text-block-7-copy-copy {
  color: #ad161e;
  margin-top: 17px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Velasans, Arial, sans-serif;
  font-weight: 300;
  line-height: 22px;
}
.slide {
  background-image: url(https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg);
  background-position: 0 0;
  background-size: auto;
}

.div-block-20-copy {
  margin: 20px 20px 20px 0;
}
.text-block-7-copy-copy-copy {
  color: #ad161e;
  margin-top: 17px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Velasans, Arial, sans-serif;
  font-weight: 300;
  line-height: 22px;
}
.heading-6-copy-01-copy {
  color: #0f0f0f;
  text-align: center;
  -webkit-text-stroke-color: #0f0f0f;
  text-transform: uppercase;
  margin-top: 40px;
  padding-top: 50px;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 45px;
  font-weight: 400;
}
.heading-all-copy01 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #f2f1f1;
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
  display: flex;
}
.div2-copy-copy01 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 63%;
  margin-top: 30px;
  margin-bottom: 50px;
  display: block;
}
.image-7 {
  text-align: center;
  max-width: 7%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 30px;
  display: block;
}
.text-span-30 {
  color: #b61016;
}
.div-block-15-copy {
  text-align: center;
  border-radius: 40px;
  max-width: 1200px;
  height: 100%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 35px 50px;
}
.grid-2-2opy {
  grid-template-rows: auto;
  grid-template-columns: 0.7fr 0.7fr 0.7fr;
  margin-left: 15%;
  margin-right: 15%;
}
.div-block-16-copy001,
.div-block-16-copy-copy,
.div-block-16-copy-1-copy {
  border: 2px solid #2a2727;
  border-radius: 30px;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.image-4-copy01 {
  max-width: 30px;
  margin-left: 30px;
  margin-right: 10px;
  padding-bottom: 0;
  padding-left: 0;
}
.txt-dress {
  justify-content: center;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 0;
  display: flex;
}
.heading-dress {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #f2f1f1;
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 60px;
  font-weight: 400;
  display: block;
}
.section-12 {
  margin-top: 90px;
}
.heading-5-copy-1-zap {
  color: #f2f1f1b3;
  text-align: center;
  text-transform: none;
  margin-top: 15px;
  margin-bottom: 40px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.heading-5-copy-1-zap._1 {
  margin-top: 20px;
  font-size: 18px;
}
.div-block-23 {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  text-align: center;
  background-image: linear-gradient(100deg, #0f0f0f, #0c0c0c);
  border-radius: 40px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-right: 50px;
  display: grid;
  position: relative;
}
.div-block-24 {
  text-align: center;
  background-image: linear-gradient(#aa0a1a, #370002);
  border-radius: 30px;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-height: 150px;
  margin: 0 auto;
  padding: 30px;
  display: flex;
}
.div-block-25 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  margin-left: -122px;
  margin-right: -201px;
  padding-top: 0;
  display: block;
  position: static;
}
.grid-9 {
  grid-column-gap: 27px;
  grid-row-gap: 27px;
  flex-flow: column;
  grid-template-rows: 40% repeat(auto-fit, 40%);
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}
.text-block-10 {
  color: #f2f1f1;
  text-align: center;
  font-family: Velasans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
}
.div-block-30 {
  overflow: visible;
}
.div-block-31 {
  text-align: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.text-span-32,
.text-span-33,
.text-span-34,
.text-span-35 {
  font-weight: 500;
}
.text-span-36,
.text-span-37 {
  color: #b61016;
}
.section-13 {
  background-image: linear-gradient(#070707, #121212 48%, #070707);
  margin-top: 0;
  padding-top: 30px;
}
.grid-12 {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}
.div-block-32 {
  background-image: linear-gradient(190deg, #1d1d1d, #080808);
  border-radius: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.div-block-32._2 {
  margin-top: 30px;
}
.code-embed-2 {
  max-width: 100%;
  height: 100%;
}
.div-block-33 {
  flex-flow: column;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 50px;
  display: flex;
}
.button-5-mer {
  background-image: linear-gradient(#b61016, #350104);
  border-radius: 15px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 20px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
}
.text-block-4-copy-mer {
  color: #f2f1f1;
  text-align: center;
  text-transform: uppercase;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
}
.text-span-38 {
  color: #ad171f;
}
.txt-mer {
  color: #f2f1f1b3;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 15px;
  font-family: Velasans, Arial, sans-serif;
  font-weight: 300;
  line-height: 22px;
}
.div-block-34 {
  margin: 40px 0 40px 40px;
}
.text-span-39 {
  color: #b61016;
}
.button-5-rasp {
  text-transform: uppercase;
  background-image: linear-gradient(#b61016, #3d0206);
  border-radius: 20px;
  margin: 20px 10px 0;
  padding: 15px 30px 15px 20px;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 25px;
  font-weight: 300;
}
.div-block-36-1 {
  background-image: linear-gradient(217deg, #121212, #090909);
  border-radius: 40px;
  margin: 40px;
  padding: 20px;
}
.div2-002 {
  justify-content: center;
  align-items: center;
  height: 63%;
  margin-top: 30px;
  margin-bottom: 0;
  display: flex;
}
.image-4-004 {
  max-width: 55px;
  margin-left: 30px;
  margin-right: 10px;
  padding-bottom: 12px;
  padding-left: 0;
}
.section-15 {
  margin-top: 60px;
}
.text-span-43,
.text-span-44 {
  color: #b61016;
}
.div-block-39 {
  max-width: 1200px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.grid-15 {
  grid-column-gap: 29px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: column;
  align-content: stretch;
}
.div-block-40 {
  background-image: linear-gradient(#1b1b1b, #0b0b0b);
  border-radius: 40px;
  padding-top: 5px;
}
.div-block-41 {
  background-image: linear-gradient(#eae8e8 49%, #171717);
  border-radius: 40px;
  flex-flow: column;
  min-width: 300px;
  height: 100%;
  padding: 25px;
  display: block;
}
.div-block-41._2 {
  background-image: linear-gradient(#121212, #2b2b2b);
}
.div-block-41._3 {
  background-image: linear-gradient(315deg, #121212, #2b2b2b);
}
.div-block-41._4 {
  background-image: linear-gradient(#161213, #b00b1c);
}
.div-block-41._5 {
  background-image: linear-gradient(#b00b1c, #161213);
}
.div-block-41._6 {
  background-image: linear-gradient(#eae8e8 49%, #bab6b6);
}
.text-block-bil {
  color: #070707;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
}
.text-block-bil._2 {
  color: #eae8e8;
  padding-top: 30px;
}
.txt-bil-2 {
  color: #070707;
  text-align: center;
  padding-top: 20px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 22px;
}
.txt-bil-2.prc {
  color: #eae8e880;
  padding-top: 0;
  padding-bottom: 10px;
  font-size: 13px;
}
.txt-bil-2._2 {
  color: #eae8e8;
}
.txt-bil-2._2._1 {
  color: #eae8e880;
  padding-top: 5px;
  font-size: 12px;
}
.txt-bil-2._2._1._3 {
  color: #07070799;
  -webkit-text-stroke-color: #07070770;
  padding-top: 40px;
  font-size: 15px;
}
.text-span-45 {
  color: #b61016;
}
.grid-16 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  align-items: flex-end;
  margin-top: -2px;
  display: flex;
}
.button-5-prc {
  text-align: center;
  text-transform: none;
  background-image: linear-gradient(#1b1b1b, #090909);
  border-radius: 20px;
  flex-flow: column;
  margin: 0 10px;
  padding: 15px 20px;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 25px;
  font-weight: 300;
  display: block;
}

.bottom-elemnt {
  flex-flow: column-reverse;
  display: block;
}
.bottom-elemnt.bottom-element {
  flex-flow: column;
  justify-content: flex-end;
  margin-top: 97px;
  display: block;
}
.bottom-elemnt.bottom-element._1 {
  margin-top: 40px;
  display: block;
}
.bottom-elemnt.bottom-element._2 {
  margin-top: 119px;
  display: block;
}
.bottom-elemnt.bottom-element._3,
.bottom-elemnt.bottom-element._3._1 {
  margin-top: 50px;
}
.bottom-elemnt.bottom-element._3._1._2 {
  margin-top: 50px;
  margin-bottom: 0;
}
.bottom-elemnt.bottom-element._3._2 {
  margin-top: 197px;
}
.bottom-elemnt.bottom-element._4 {
  margin-top: 214px;
}
.bottom-elemnt.bottom-element._5 {
  margin-top: 131px;
}
.section-16 {
  margin-bottom: 70px;
}
.section-17 {
  background-image: repeating-linear-gradient(#070707, #151515 53%, #070707);
  overflow: visible;
}
.slider-2 {
  border-radius: 40px;
  min-width: auto;
  height: 400px;
  min-height: 664px;
}

.image-12-1 {
  width: 22.4664%;
  max-width: 100%;
  height: 120%;
  min-height: 500px;
  position: absolute;
  inset: -17% auto 0% 0%;
}
.atrib {
  background-image: linear-gradient(281deg, #1c1c1c, #0e0e0e);
  border-radius: 40px;
  flex-flow: column;
  min-width: 300px;
  height: 100%;
  padding: 25px;
  display: block;
}
.atrib._2 {
  background-image: linear-gradient(#121212, #2b2b2b);
}
.atrib._3 {
  background-image: linear-gradient(315deg, #121212, #2b2b2b);
  min-width: auto;
}
.grid-23 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  place-content: space-between stretch;
  height: 100%;
}
.atrib-str {
  flex-flow: column;
  display: flex;
}
.txt-atr {
  color: #f1f0f0;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
.txt-atr-2 {
  color: #f1f0f0;
  text-align: center;
  padding-top: 20px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 22px;
}
.txt-atr-2._3 {
  padding-top: 30px;
  font-weight: 500;
}
.txt-atr-2._4 {
  padding-top: 10px;
}
.txt-atr-3 {
  color: #f1f0f0b3;
  text-align: center;
  padding-top: 30px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 22px;
}
.div-block-51 {
  flex-flow: column;
  display: flex;
}
.div-block-51._1 {
  border-radius: 40px;
  width: 100%;
  min-width: 300px;
  height: 300px;
  min-height: 100%;
  max-height: 300px;
  overflow: hidden;
}
.div-block-51._1._2 {
  max-height: 300px;
  overflow: hidden;
}
.div-block-52 {
  flex-flow: column;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.section-20 {
  background-image: linear-gradient(#070707, #232323 52%, #070707);
  margin-top: 150px;
  margin-left: 0;
  margin-right: 0;
}
.text-span-47 {
  color: #b61016;
}

.grid-24 {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}
.section-22 {
  background-image: linear-gradient(#070707, #4d080e);
  min-height: 300px;
  margin-top: 80px;
}
.div-block-57 {
  flex-flow: column;
  margin-left: auto;
  display: flex;
}
.text-span-49 {
  color: #b61016;
}
.div-block-58 {
  flex-flow: column;
  margin-top: 400px;
  display: flex;
}
.text-span-50 {
  font-weight: 600;
}
.grid-25 {
  grid-column-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}
.div-block-61 {
  border-radius: 40px;
  padding: 40px 0 0;
}
.video-2 {
  border-radius: 4px;
  position: relative;
}
.section-26 {
  flex-flow: column;
  margin-top: 40px;
  display: flex;
}
.section-27 {
  margin-top: 100px;
}

.div-block-64-copy {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.text-span-90 {
  color: #b61016;
}

.div-block-106 {
  z-index: 9999;
  aspect-ratio: auto;
  background-color: rgb(0, 0, 0,  0.7);
  flex-flow: column;
  place-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 30px;
  display: none;
  position: absolute;
  inset: 0;
}
.age-confirm-btn {
  color: #fff;
  background-color: #8b0000;
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Velasans, Arial, sans-serif;
}
.modal-box {
  background-color: #111010;
  border-radius: 12px;
  width: 0;
  min-width: 600px;
  padding: 30px 40px;
  box-shadow: 0 2px 5px #0003;
}
.text-block-12 {
  color: #fff;
  text-align: center;
  font-family: Velasans, Arial, sans-serif;
  font-size: 16px;
}
.grid-41 {
  grid-template-columns: 1fr;
}
.image-28 {
  z-index: auto;
  width: 65px;
  max-width: 98%;
  position: absolute;
  inset: 50% 0% 0% 50%;
  transform: translate(-50%, -50%);
}
.link-block-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}
.flex-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  max-height: 300px;
}
._123121 {
  color: #f1f0f0;
  text-align: center;
  padding-top: 20px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 2px;
  font-weight: 300;
  line-height: 0;
}
.image-30,
.image-31,
.image-32,
.image-33 {
  float: none;
  clear: none;
  margin-left: auto;
  margin-right: auto;
  transition: all 1s;
  display: inline-block;
  position: static;
}
.text-span-101 {
  font-weight: 500;
}
.image-34 {
  z-index: 1;
  position: sticky;
}
.text-span-102 {
  color: #b61016;
}
.image-4-copy-2 {
  max-width: 55px;
  margin-left: 30px;
  margin-right: 10px;
  padding-bottom: 0;
  padding-left: 0;
}
.div-block-108 {
  height: 280px;
}
.text-span-103 {
  font-weight: 500;
}
.div2-copy-2 {
  justify-content: center;
  align-items: center;
  height: 63%;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
}
.div-block-109 {
  z-index: 2;
  text-align: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.div-block-110 {
  text-align: center;
  background-image:
    url(https://cdn.prod.website-files.com/67fab9040098fc245f78aa27/67fab9040098fc245f78ab07_log%203.svg),
    linear-gradient(#0a0707, #b40013);
  background-position:
    50%,
    0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100%, auto;
  border-radius: 40px;
  max-width: 1200px;
  height: 370px;
  margin-left: auto;
  margin-right: auto;
}
.grid-42 {
  grid-template-rows: 289px;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
}
.heading-all-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #f2f1f1;
  text-align: center;
  text-transform: uppercase;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 0;
  padding-left: 0;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 35px;
  display: flex;
}
.div-block-111 {
  z-index: 3;
  position: relative;
}
.bold-text-10 {
  font-weight: 400;
}
.section-40 {
  background-image: linear-gradient(#070707 29%, #9d0d1d66 48%, #070707 74%);
  margin-top: 30px;
  margin-bottom: 50px;
}
.code-embed-8,
.code-embed-10,
.code-embed-11,
.code-embed-12 {
  text-align: center;
  height: 100%;
  margin-bottom: auto;
  overflow: visible;
}
.slide-19 {
  border-radius: 40px;
  overflow: hidden;
}
.slide-3-copy-2 {
  background-image: none;
  border-radius: 40px;
  overflow: hidden;
}
.div-block-112 {
  width: 100%;
  height: 100%;
  margin-right: 0;
  padding: 40px 20px;
}
.text-span-104 {
  font-weight: 500;
}
.slide-4-copy-2,
.slide-20 {
  border-radius: 40px;
  overflow: hidden;
}
.div-block-113 {
  margin: 20px;
}
.text-span-105 {
  font-weight: 500;
}
.bold-text-11 {
  font-weight: 400;
}
.div-block-114 {
  background-image:
    url(https://cdn.prod.website-files.com/67fab9040098fc245f78aa27/67fab9040098fc245f78aabb_tild6235-6463-4837-b437-363532373335__gg_mask___.svg),
    linear-gradient(#cdcccc, #bababa);
  background-position:
    50%,
    0 0;
  background-size: cover, auto;
  border-radius: 40px;
  max-width: 900px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.bold-text-12 {
  font-weight: 400;
}
.text-span-106 {
  color: #b61016;
  font-weight: 400;
}
.code-embed-13 {
  text-align: center;
  height: 100%;
  margin-bottom: auto;
  overflow: visible;
}
.grid-43 {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 100%;
}
.slide-21,
.slide-22 {
  border-radius: 40px;
  overflow: hidden;
}
.text-span-107 {
  font-weight: 500;
}
.div-block-115 {
  text-align: center;
  background-image: linear-gradient(#bababa, #cecdcd);
  border-radius: 40px;
  max-width: 1350px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.slider-3 {
  border: 3px solid #0f0f0f33;
  border-radius: 40px;
  height: 500px;
  margin-top: 0;
}
.text-block-13 {
  text-align: center;
  padding-bottom: 40px;
  padding-left: 20%;
  padding-right: 20%;
  font-family: Velasans, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}
.section-41 {
  background-image: linear-gradient(#070707, #d2d2d22e 52%, #070707);
  margin-top: 40px;
  margin-bottom: 50px;
}
.slide-23 {
  border-radius: 40px;
  overflow: hidden;
}
.text-span-108 {
  font-weight: 500;
}
.text-block-14 {
  padding-left: 20px;
  padding-right: 20px;
  font-family: Velasans, Arial, sans-serif;
  font-weight: 300;
  line-height: 22px;
}
.slide-24 {
  border-radius: 40px;
  overflow: hidden;
}
.button-6 {
  background-image: linear-gradient(#b61016, #350104);
  border-radius: 13px;
  margin-top: 33px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
}
.image-35 {
  text-align: center;
  max-width: 7%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 30px;
  display: block;
}
.code-embed-14 {
  text-align: center;
  height: 100%;
  margin-bottom: auto;
  overflow: visible;
}
.image-36 {
  max-width: 30%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  inset: auto 0% 0% -66%;
}
.image-4-copy-3 {
  max-width: 55px;
  margin-left: 30px;
  margin-right: 10px;
  padding-bottom: 0;
  padding-left: 0;
}
.code-embed-5-copy {
  width: 238px;
  margin-left: auto;
  margin-right: auto;
}
.image-37,
.image-38 {
  text-align: center;
  max-width: 7%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 30px;
  display: block;
}
.code-embed-15,
.code-embed-16,
.code-embed-17,
.code-embed-18,
.code-embed-19,
.code-embed-20 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.code-embed-6 {
  text-align: center;
}
.slide-25,
.slide-26,
.slide-27 {
  background-color: #000;
  border-radius: 40px;
  overflow: hidden;
}
.div-block-116 {
  background-image:
    linear-gradient(#070707a3, #070707a3),
    url(https://cdn.prod.website-files.com/67fab9040098fc245f78aa27/67fab9040098fc245f78aad1_tild6334-6261-4464-b433-633866373139__photo_15.webp);
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  position: relative;
}
.slide-29 {
  background-color: #000;
  border-radius: 40px;
  overflow: hidden;
}
.section-42 {
  margin-top: 120px;
  overflow: hidden;
}
.div-block-117 {
  background-color: #f000;
  background-image: linear-gradient(#b00a1b, #360002);
  border-radius: 40px;
  height: 750px;
  min-height: 400px;
  margin: 60px 35%;
  padding: 40px;
}
.slide-30 {
  background-color: #000;
  border-radius: 40px;
  overflow: hidden;
}
.code-embed-7 {
  text-align: center;
}
.section24_1 {
  margin-top: 100px;
  margin-bottom: 70px;
}
.paragraph-3 {
  clear: both;
  color: #f2f1f1;
  text-align: center;
  object-fit: fill;
  min-width: auto;
  max-width: 400px;
  max-height: 100%;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: block;
  position: sticky;
  left: auto;
}
.div-block-118 {
  flex-flow: column;
  margin-top: 400px;
  display: flex;
}
.code-embed-21 {
  text-align: center;
}
.text-span-109 {
  font-weight: 600;
}
.image-46 {
  text-align: center;
  max-width: 7%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 30px;
  display: block;
}
.image-47 {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.image-48 {
  flex: 0 auto;
  width: auto;
  max-width: 98%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.code-embed-22 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.image-49 {
  max-width: 20%;
  margin-left: auto;
  margin-right: auto;
}
.pravilacode2 {
  flex-flow: column;
  margin-top: 100px;
  margin-bottom: 70px;
  display: flex;
}
.code-embed-23 {
  text-align: center;
}
.div-block-119 {
  flex-flow: column;
  margin-top: 70px;
  display: flex;
}
.div-block-120 {
  flex-flow: column;
  display: flex;
}
.image-50 {
  text-align: center;
  max-width: 7%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 30px;
  display: block;
}
.link-block-4 {
  opacity: 1;
  flex-flow: column;
  display: flex;
}
.section-43 {
  margin-top: 200px;
}
.div-block-121 {
  margin-left: 40px;
  margin-right: 40px;
}
.code-embed-24 {
  text-align: center;
}
.div-block-123 {
  background-image: linear-gradient(90deg, #eae9e9, #bfbfbf);
  border-radius: 40px;
  flex-flow: column;
  max-width: 800px;
  min-height: 400px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  display: flex;
}
.text-span-110 {
  color: #b61016;
}
.heading-8 {
  color: #070707;
  text-align: center;
  text-transform: uppercase;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
}
.image-51 {
  max-width: 9%;
  margin-top: 187px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
}
.section24 {
  margin-top: 100px;
  margin-bottom: 70px;
}
.grid-44 {
  grid-template-columns: 1fr;
  padding: 40px 30px;
}
.grid-45 {
  grid-column-gap: 0px;
  opacity: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}
.text-block-4-copy-mer-3 {
  color: #f2f1f1;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  font-family:
    Elmessiri Variablefont Wght,
    Arial,
    sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
}
.div-block-125 {
  opacity: 1;
  background-image:
    url(https://cdn.prod.website-files.com/67fab9040098fc245f78aa27/67fab9040098fc245f78ab07_log%203.svg),
    linear-gradient(#af0b1b, #3d0104);
  background-position:
    50%,
    0 0;
  background-size: cover, auto;
  border-radius: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.text-span-111 {
  color: #a8151e;
}
.section14 {
  margin-top: 30px;
}
.txt-mer-3 {
  color: #f2f1f1b3;
  text-align: center;
  padding-top: 10px;
  font-family: Velasans, Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
}
.div-block-126 {
  background-image: linear-gradient(217deg, #121212, #090909);
  border-radius: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
  padding: 20px;
}
.div-block-127 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  place-items: center;
  margin-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  display: flex;
}
.pravilacode {
  margin-top: -22px;
}
.grid-16-copy {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  align-items: flex-end;
  margin-top: 0;
  display: flex;
}
@media screen and (max-width: 991px) {
  .section-6 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .div-block-7 {
    height: 100%;
    padding-bottom: 50px;
  }
  .grid-2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
  .heading-all {
    flex-flow: row;
  }
  .heading-all._1 {
    flex-flow: column;
  }
  .div-block-9 {
    margin-bottom: 20px;
  }
  .div3 {
    margin-left: 50px;
    margin-right: 50px;
  }
  .div-block-vid {
    height: 100%;
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 50px;
  }
  .grid-vid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: dense;
  }
  .image-4-vid {
    padding-bottom: 12px;
  }
  .section-9 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .div-block-15 {
    height: 100%;
    padding-bottom: 50px;
  }
  .div-block-9-copy {
    margin-bottom: 20px;
  }
  .div2-copy {
    flex-flow: column;
  }
  .heading-all-copy01._01 {
    flex-flow: column;
    line-height: 40px;
  }
  .div2-copy-copy01 {
    display: flex;
  }
  .image-7 {
    max-width: 13%;
  }
  .div-block-15-copy {
    height: 100%;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .grid-2-2opy {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
  }
  .image-4-copy01 {
    padding-bottom: 0;
  }
  .heading-dress {
    line-height: 60px;
  }
  .heading-5-copy-1-zap {
    padding-left: 30px;
    padding-right: 30px;
  }
  .div-block-23 {
    grid-column-gap: 15px;
    grid-template-columns: 2fr 1fr 1fr;
    margin-left: 20px;
    margin-right: 20px;
  }
  .div-block-24 {
    max-height: 200px;
    font-size: 12px;
  }
  .grid-9 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .text-block-10 {
    font-size: 15px;
  }
  .section-13 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .div-block-32 {
    padding-bottom: 30px;
  }
  .button-5-mer {
    border-radius: 15px;
    padding: 10px 20px;
  }
  .text-block-4-copy-mer {
    line-height: 35px;
  }
  .div-block-34 {
    margin-right: 0;
  }
  .button-5-rasp {
    border-radius: 15px;
    padding: 10px 20px;
  }
  .div-block-36-1 {
    margin-top: 0;
  }
  .image-4-004 {
    padding-bottom: 12px;
  }
  .div-block-39 {
    margin-left: 15px;
    margin-right: 15px;
    display: block;
  }
  .grid-15 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    margin-left: 0;
    margin-right: 0;
  }
  .text-block-bil {
    line-height: 35px;
  }
  .txt-bil-2 {
    padding-top: 10px;
  }
  .button-5-prc {
    border-radius: 15px;
    padding: 10px 20px;
  }
  .bottom-elemnt.bottom-element._2,
  .bottom-elemnt.bottom-element._3,
  .bottom-elemnt.bottom-element._4,
  .bottom-elemnt.bottom-element._5 {
    margin-top: 50px;
  }
  .txt-atr {
    line-height: 35px;
  }
  .txt-atr-2,
  .txt-atr-3 {
    padding-top: 10px;
  }
  .div-block-52 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .grid-24 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-25 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }
  .div-block-61 {
    padding-left: 0;
  }
  
  .div-block-64-copy {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  ._123121 {
    padding-top: 10px;
  }
  .image-34 {
    text-align: center;
    width: 50vh;
    position: sticky;
    inset: 0;
  }
  .image-4-copy-2 {
    margin-top: 20px;
    padding-bottom: 12px;
  }
  .div2-copy-2 {
    flex-flow: column;
  }
  .div-block-110 {
    height: 100%;
  }
  .grid-42 {
    grid-row-gap: 0px;
    grid-template-rows: 289px 500px auto;
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }
  .heading-all-2 {
    flex-flow: row;
  }
  .div-block-111 {
    margin-top: -179px;
  }
  .section-40 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .div-block-114 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .grid-43 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
  .section-41 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .image-35 {
    max-width: 13%;
  }
  .image-36 {
    max-width: 50%;
    left: -54%;
  }
  .image-4-copy-3 {
    margin-top: 20px;
    padding-bottom: 12px;
  }
  .image-37,
  .image-38 {
    max-width: 13%;
  }
  .div-block-117 {
    margin-left: 15%;
    margin-right: 15%;
  }
  .section24_1 {
    background-size: cover;
  }
  .image-46 {
    max-width: 13%;
  }
  .image-49 {
    max-width: 40%;
  }
  .pravilacode2 {
    background-size: auto;
  }
  .image-50 {
    max-width: 13%;
  }
  .section-43 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .div-block-122 {
    padding-right: 10px;
  }
  .div-block-124 {
    padding-left: 10px;
  }
  .image-51 {
    max-width: 15%;
  }
  .section24 {
    background-size: cover;
  }
  .grid-45 {
    grid-template-rows: auto auto;
    grid-template-columns: 1.5fr;
  }
  .text-block-4-copy-mer-3 {
    line-height: 35px;
  }
  .section14 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .txt-mer-3 {
    padding-top: 10px;
  }
  .div-block-126 {
    margin-bottom: 0;
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .div-block-7 {
    height: 100%;
    padding: 20px 30px 35px;
  }
  .grid-2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
  .heading-all {
    font-size: 40px;
    line-height: 25px;
  }
  .heading-all._1 {
    font-size: 50px;
  }
  .div-block-9 {
    margin-bottom: 30px;
  }
  .div-block-vid {
    height: 100%;
    padding-bottom: 35px;
  }
  .grid-vid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
  .image-4-vid {
    max-width: 40px;
    margin-left: 15px;
  }
  .heading-vid1 {
    font-size: 40px;
  }
  .heading-vid1._1 {
    font-size: 60px;
  }
  .div-block-15 {
    height: 100%;
    padding-bottom: 35px;
  }
  .heading-all-copy {
    font-size: 14px;
  }
  .div-block-9-copy {
    margin-bottom: 30px;
  }
  .heading-6-copy-01-copy {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .heading-all-copy01 {
    font-size: 40px;
  }
  .image-7 {
    max-width: 12%;
    padding-bottom: 20px;
  }
  .div-block-15-copy {
    height: 100%;
    padding-bottom: 35px;
  }
  .grid-2-2opy {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
  .image-4-copy01 {
    max-width: 25px;
    margin-left: 15px;
    padding-bottom: 0;
  }
  .txt-dress {
    padding-left: 30px;
    padding-right: 30px;
  }
  .heading-dress {
    font-size: 40px;
    line-height: 40px;
  }
  .heading-5-copy-1-zap {
    margin-left: 30px;
    margin-right: 30px;
  }
  .div-block-23 {
    grid-column-gap: 56px;
  }
  .grid-12 {
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }
  .code-embed-2 {
    width: auto;
    max-width: 90%;
    height: 100%;
    min-height: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .button-5-mer {
    text-align: center;
  }
  .div-block-34 {
    margin-bottom: 0;
    margin-left: 0;
  }
  .button-5-rasp {
    text-align: center;
    font-size: 20px;
  }
  .div-block-36-1 {
    margin-right: 40px;
  }
  .div2-002 {
    flex-flow: column;
  }
  .image-4-004 {
    max-width: 35px;
    margin-left: 15px;
    padding-top: 5px;
    padding-bottom: 10px;
  }
  .grid-15 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
  .text-block-bil {
    line-height: 45px;
  }
  .button-5-prc {
    text-align: center;
    font-size: 20px;
  }
  .bottom-elemnt.bottom-element._3._1,
  .bottom-elemnt.bottom-element._3._1._2 {
    margin-top: 50px;
  }
  .grid-23 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
  .txt-atr {
    line-height: 45px;
  }
  .txt-atr-3 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .div-block-52 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .image-34 {
    width: 80vw;
  }
  .image-4-copy-2 {
    max-width: 35px;
    margin-left: 15px;
    padding-bottom: 10px;
  }
  .div-block-110 {
    background-image: linear-gradient(310deg, #0a0707, #b40013);
  }
  .grid-42 {
    grid-template-rows: 248px 307px auto;
  }
  .heading-all-2 {
    font-size: 40px;
    line-height: 25px;
  }
  .div-block-112 {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  .div-block-114 {
    margin-top: 20px;
  }
  .grid-43 {
    grid-row-gap: 0px;
  }
  .div-block-115 {
    padding-bottom: 30px;
  }
  .slider-3 {
    width: 90%;
    height: 110%;
    margin-left: auto;
    margin-right: auto;
  }
  .text-block-13 {
    padding-left: 10%;
    padding-right: 10%;
  }
  .image-35 {
    max-width: 12%;
    padding-bottom: 20px;
  }
  .image-36 {
    left: -73%;
  }
  .image-4-copy-3 {
    max-width: 35px;
    margin-left: 15px;
    padding-bottom: 10px;
  }
  .image-37,
  .image-38 {
    max-width: 12%;
    padding-bottom: 20px;
  }
  .slide-25,
  .slide-27 {
    background-image: none;
  }
  .image-46,
  .image-50 {
    max-width: 12%;
    padding-bottom: 20px;
  }
  .div-block-121 {
    margin-left: 0;
    margin-right: 0;
  }
  .image-51 {
    margin-top: 106px;
  }
  .grid-44 {
    grid-row-gap: 0px;
    padding: 20px 15px;
  }
  .grid-45 {
    grid-template-rows: auto auto;
    grid-template-columns: 1.5fr;
  }
  .text-block-4-copy-mer-3 {
    line-height: 45px;
  }
  .div-block-126 {
    margin-right: 40px;
  }
}
@media screen and (max-width: 479px) {
  .paragraph {
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
  }
  .section-6 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .section-6._1 {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
  .div-block-7 {
    width: auto;
    max-width: none;
    height: auto;
    margin-bottom: 0;
    margin-left: 15px;
    margin-right: 15px;
    padding: 8px 20px 30px;
    display: block;
  }
  .grid-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 2.5fr;
    grid-auto-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: grid;
  }
  .heading-all {
    clear: none;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 9px;
    padding: 0;
    font-size: 40px;
    line-height: 30px;
    display: flex;
    overflow: visible;
  }
  .heading-all._1 {
    margin-bottom: 0;
    font-size: 38px;
    line-height: 38px;
  }
  .heading-all._2 {
    font-size: 50px;
    line-height: 35px;
  }
  .text-span-5 {
    line-height: 60px;
  }
  .text-block-4 {
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .div2 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 5px;
    padding-bottom: 2px;
    display: flex;
  }
  .div-block-9 {
    flex-flow: column;
    margin-bottom: 70px;
    padding-bottom: 0;
    display: block;
  }
  .div-block-9._1,
  .div-block-9._2 {
    margin-bottom: 10px;
    padding-bottom: 0;
  }
  .div-block-9._3 {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .div-block-9._4 {
    padding-bottom: 10px;
  }
  .div-block-9._4._04 {
    margin-bottom: 20px;
  }
  .div-block-9._01,
  .div-block-9._02,
  .div-block-9._03 {
    margin-bottom: 30px;
  }
  .div-block-9._04 {
    margin-bottom: 0;
  }
  .div-block-9._06,
  .div-block-9._07,
  .div-block-9._08 {
    margin-bottom: 10px;
  }
  .text-block-5 {
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }
  .bold-text-3 {
    font-size: 17px;
  }
  .div3 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .div-block-vid {
    opacity: 1;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background-image: linear-gradient(273deg, #1d1d1dbf, #080808d9);
    width: auto;
    height: 33%;
    margin-left: 15px;
    margin-right: 15px;
    padding: 8px 20px 30px;
  }
  .grid-vid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 2.5fr;
    grid-auto-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: grid;
  }
  .text-block-vid {
    margin-bottom: 30px;
    margin-right: 10px;
    padding-top: 10px;
    padding-left: 10px;
  }
  .heading-vid {
    margin-top: 40px;
    font-size: 30px;
    line-height: 26px;
  }
  .div2-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    padding-bottom: 2px;
    display: flex;
  }
  .txt-vid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }
  .image-4-vid {
    flex: 0 auto;
    max-width: 40px;
    margin-left: 9px;
    margin-right: 20px;
    padding: 0 0 8px;
  }
  .heading-vid1 {
    clear: none;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: row;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 0;
    margin-left: 20px;
    margin-right: 0;
    padding: 0;
    font-size: 40px;
    line-height: 40px;
    display: flex;
    position: static;
    overflow: visible;
  }
  .heading-vid1._1 {
    flex-flow: column;
    margin-left: 0;
    font-size: 50px;
    line-height: 45px;
  }
  .heading-vid1._01 {
    font-size: 60px;
  }
  .code-embed {
    height: 300px;
    margin-top: 20px;
  }
  .heading-6,
  .heading-6._1 {
    font-size: 40px;
  }
  .txt-sob {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .txt-sob-h {
    padding-top: 10px;
    font-size: 18px;
  }
  .txt-sob-h2 {
    padding-top: 30px;
  }
 
  .section-9 {
    margin-left: 0;
    margin-right: 0;
  }
  .div-block-15 {
    width: auto;
    height: 33%;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 8px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .text-block-4-copy {
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }
  .bold-text-6 {
    font-size: 22px;
    line-height: 25px;
  }
  .div-block-17 {
    background-image: linear-gradient(#b61016, #8c0f1d);
    margin-bottom: 50px;
  }
  .div-block-17._1 {
    margin-bottom: 40px;
  }
  .heading-all-copy {
    clear: none;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: row;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    margin-bottom: 9px;
    margin-left: 10px;
    padding: 0;
    font-size: 12px;
    line-height: 40px;
    display: flex;
    overflow: visible;
  }
  .div-block-9-copy {
    flex-flow: column;
    margin: 40px auto 10px;
    display: block;
  }
  .div-block-9-copy._01._1 {
    margin-bottom: 70px;
  }
  .div2-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-left: 5px;
    margin-right: 5px;
    padding-bottom: 2px;
    display: flex;
  }
  .div-block-18 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .heading-6-copy-01 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 40px;
    line-height: 40px;
  }
  .text-block-7-copy,
  .text-block-7-copy-copy {
    margin-left: 20px;
    margin-right: 20px;
  }
  .div-block-20-copy {
    margin-left: 0;
    margin-right: 0;
  }
  .text-block-7-copy-copy-copy {
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .heading-6-copy-01-copy {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
    font-size: 30px;
    line-height: 40px;
  }
  .heading-all-copy01 {
    clear: none;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 0;
    margin-left: 20px;
    margin-right: 20px;
    padding: 0;
    font-size: 50px;
    line-height: 45px;
    display: block;
    overflow: visible;
  }
  .heading-all-copy01._01 {
    line-height: 55px;
  }
  .heading-all-copy01._01._2 {
    line-height: 50px;
  }
  .div2-copy-copy01 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin: 40px 0 0;
    padding-bottom: 2px;
    display: flex;
  }
  .div2-copy-copy01._01 {
    margin-top: 0;
  }
  .image-7 {
    max-width: 27%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .div-block-15-copy {
    text-align: center;
    width: 91%;
    height: 33%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 8px;
    padding-left: 0;
    padding-right: 0;
  }
  .grid-2-2opy {
    grid-column-gap: 45px;
    grid-row-gap: 0px;
    text-align: center;
    grid-template-rows: auto auto auto;
    grid-template-columns: 2.5fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    display: grid;
  }
  .div-block-16-copy001 {
    background-position: 50% 30%;
    flex-flow: column;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .div-block-16-copy-copy {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  .div-block-16-copy-1-copy {
    background-position: 50% 0;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  .image-4-copy01 {
    flex: 0 auto;
    max-width: 25px;
    margin-bottom: 7px;
    margin-left: 20px;
    margin-right: 0;
    padding: 0;
    position: static;
  }
  .txt-dress {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 0;
    padding-left: 15px;
    padding-right: 15px;
    display: block;
  }
  .heading-dress {
    clear: none;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: row;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
    font-size: 35px;
    line-height: 40px;
    display: block;
    position: static;
    overflow: visible;
  }
  .heading-dress._1 {
    font-size: 45px;
  }
  .section-12 {
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
  }
  .heading-5-copy-1-zap {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .heading-5-copy-1-zap._1 {
    color: #f2f1f1b0;
  }
  .div-block-23 {
    grid-column-gap: 23px;
    grid-row-gap: 0px;
    background-image: linear-gradient(284deg, #1a1a1a, #080808);
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    place-items: center;
    max-width: 1000px;
    height: 900px;
    margin: 20px 15px 19px;
    padding-top: 30px;
    padding-right: 0;
    position: relative;
  }
  .div-block-24 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .div-block-25 {
    height: 400px;
    position: static;
  }
  .grid-9 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 0 15px 15px;
  }
  .div-block-30 {
    flex-flow: column;
    display: flex;
  }
  .div-block-31 {
    margin-top: 30px;
  }
  .section-13 {
    background-image: linear-gradient(#070707, #131313 48%, #070707);
    margin-left: 0;
    margin-right: 0;
  }
  .div-block-32 {
    background-image: linear-gradient(241deg, #1d1d1d, #080808);
    margin-left: 15px;
    margin-right: 15px;
  }
  .code-embed-2 {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .div-block-33 {
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .button-5-mer {
    margin-top: 20px;
    margin-bottom: 0;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
  }
  .text-block-4-copy-mer {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
    font-size: 37px;
    display: block;
  }
  .txt-mer {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  .button-5-rasp {
    margin: 5px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }
  .div-block-36-1 {
    margin: 0 10px 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .div2-002 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 5px;
    padding-bottom: 2px;
    display: flex;
  }
  .image-4-004 {
    flex: 0 auto;
    max-width: 40px;
    margin-bottom: 7px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    position: static;
  }
  .div-block-39 {
    margin-top: 20px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .grid-15 {
    grid-row-gap: 24px;
  }
  .div-block-40 {
    padding-top: 10px;
  }
  .div-block-40._1 {
    padding-top: 0;
  }
  .div-block-41 {
    margin-bottom: 0;
    padding: 15px 15px 30px;
  }
  .text-block-bil {
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0 15px;
    font-size: 32px;
    line-height: 35px;
    display: block;
  }
  .text-block-bil._2 {
    padding-bottom: 15px;
  }
  .txt-bil-2 {
    color: #070707;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px 15px;
  }
  .txt-bil-2.prc {
    padding-left: 0;
    padding-right: 0;
  }
  .txt-bil-2._2._1 {
    padding-top: 0;
  }
  .button-5-prc {
    margin: 0 5px 5px;
    padding: 10px 20px;
    font-size: 20px;
  }
  .bottom-elemnt.bottom-element._1,
  .bottom-elemnt.bottom-element._2,
  .bottom-elemnt.bottom-element._3,
  .bottom-elemnt.bottom-element._3._1,
  .bottom-elemnt.bottom-element._3._1._2,
  .bottom-elemnt.bottom-element._4,
  .bottom-elemnt.bottom-element._5 {
    margin-top: 50px;
  }
  .slider-2 {
    height: 250px;
    min-height: 400px;
  }
  .image-12-1 {
    width: auto;
    height: 95%;
    inset: 0% auto 0% 0%;
  }
  .atrib {
    margin-bottom: 0;
    padding: 15px 15px 30px;
  }
  .txt-atr {
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0 15px;
    font-size: 32px;
    line-height: 35px;
    display: block;
  }
  .txt-atr-2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px 15px;
  }
  .txt-atr-3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px 15px;
  }
  .div-block-52 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .section-20 {
    margin-top: 80px;
  }
  .grid-24 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
  .section-22 {
    margin-top: 0;
  }
  .div-block-57 {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .div-block-58 {
    margin-top: 280px;
  }
  .grid-25 {
    grid-row-gap: 31px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }
  .div-block-61 {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  .section-26 {
    margin-top: 0;
  }
  .section-27 {
    margin-top: 40px;
  }

  .div-block-64-copy {
    margin-top: 20px;
    margin-bottom: 0;
    margin-right: 0;
    padding-left: 20px;
  }
  
  .div-block-106 {
    inset: 0% 0% auto;
  }
  .modal-box {
    min-width: 90vw;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    overflow: hidden;
  }
  ._123121 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px 15px;
  }
  .image-30,
  .image-31,
  .image-32,
  .image-33 {
    float: none;
    clear: none;
    width: auto;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .image-34 {
    vertical-align: baseline;
    width: 80vw;
    margin-left: 15px;
    display: inline-block;
    position: static;
    left: auto;
  }
  .text-span-102 {
    line-height: 60px;
  }
  .image-4-copy-2 {
    max-width: 50px;
    margin: 0 0 7px;
    padding: 0;
  }
  .div-block-108 {
    margin-bottom: 20px;
  }
  .div2-copy-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-left: 5px;
    margin-right: 5px;
    padding-bottom: 2px;
    display: flex;
  }
  .div-block-109 {
    margin-top: 0;
  }
  .div-block-110 {
    background-image:
      url(https://cdn.prod.website-files.com/67fab9040098fc245f78aa27/67fab9040098fc245f78ab08_log%204.svg),
      linear-gradient(28deg, #0a0707, #b40013);
    background-position:
      50%,
      0 0;
    background-size: cover, auto;
    height: 100%;
    margin-top: 30px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .grid-42 {
    grid-template-rows: auto 215px auto;
    grid-template-columns: 1fr;
    padding: 35px 20px;
  }
  .heading-all-2 {
    clear: none;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 9px;
    padding: 0;
    font-size: 40px;
    line-height: 30px;
    display: flex;
    overflow: visible;
  }
  .heading-all-2._2 {
    font-size: 50px;
    line-height: 35px;
  }
  .div-block-111 {
    margin-bottom: 20px;
    padding-top: 195px;
  }
  .section-40 {
    background-image: linear-gradient(#070707, #9d0d1d66 51%, #070707);
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
  }
  .slide-19,
  .slide-3-copy-2 {
    background-position: 50% 0;
  }
  .div-block-112 {
    padding: 15px 0 0;
  }
  .slide-4-copy-2 {
    background-position: 50% 0;
  }
  .slide-20 {
    background-position: 50% 0;
    background-size: cover;
  }
  .div-block-113 {
    margin-top: 30px;
    margin-left: 0;
    margin-right: 10px;
    padding-left: 10px;
  }
  .bold-text-11._01 {
    font-size: 50px;
  }
  .div-block-114 {
    background-repeat: no-repeat, repeat;
    background-size: 180%, auto;
    margin-top: 20px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .bold-text-12 {
    font-weight: 400;
  }
  .grid-43 {
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    margin-left: 0;
  }
  .slide-21,
  .slide-22 {
    background-position: 50% 0;
  }
  .div-block-115 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .slider-3 {
    justify-content: flex-start;
    align-items: center;
    width: 90%;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
  }
  .text-block-13 {
    padding-bottom: 60px;
    padding-left: 7%;
    padding-right: 7%;
    font-size: 16px;
  }
  .text-block-13._1 {
    line-height: 23px;
  }
  .section-41 {
    background-image: repeating-radial-gradient(
      circle,
      #070707 5%,
      #d2d2d21a 52%,
      #070707
    );
    margin-left: 0;
    margin-right: 0;
  }
  .slide-23 {
    background-position: 50% 0;
  }
  .text-block-14 {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .slide-24 {
    background-position: 50% 0;
  }
  .image-35 {
    max-width: 27%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .image-36 {
    z-index: 1;
    object-fit: cover;
    width: auto;
    max-width: 330px;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    inset: auto 0% 0%;
    overflow: clip;
            top: -40px;
        max-height: 440px;
  }
  .image-4-copy-3 {
    max-width: 50px;
    margin: 0 0 7px;
    padding: 0;
  }
  .image-37,
  .image-38 {
    max-width: 27%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .image-43,
  .image-44 {
    padding-top: 0;
  }
  .section-42 {
    margin-top: 70px;
  }
  .div-block-117 {
    background-color: #f000;
    background-image: none;
    flex-flow: row;
    height: 600px;
    min-height: 300px;
    margin: 0 0 0 1px;
    padding-right: 40px;
    display: block;
  }
  .section24_1 {
    background-image: url(https://cdn.prod.website-files.com/67fab9040098fc245f78aa27/67fab9040098fc245f78aa48_pic_2.webp);
    background-position: 40%;
    background-size: auto 75%;
    margin-top: 80px;
    margin-bottom: 0;
  }
  .paragraph-3 {
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
  }
  .div-block-118 {
    margin-top: 280px;
  }
  .image-46 {
    max-width: 27%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .image-49 {
    max-width: 70%;
  }
  .pravilacode2 {
    background-size: auto 70%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .div-block-119 {
    margin-top: 40px;
  }
  .div-block-120 {
    margin-top: 50px;
  }
  .image-50 {
    max-width: 27%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-43 {
    margin-top: 70px;
  }
  .div-block-121 {
    margin-top: 20px;
  }
  .div-block-122 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: 400px;
    min-height: 0;
    padding-right: 0;
    display: block;
  }
  .div-block-123 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .heading-8 {
    font-size: 40px;
    line-height: 40px;
  }
  .div-block-124 {
    padding-left: 0;
  }
  .image-51 {
    max-width: 40%;
    margin-top: 214px;
    margin-bottom: 30px;
    padding-bottom: 0;
  }
  .image-51._3 {
    max-width: 40%;
    margin-bottom: 30px;
  }
  .section24 {
    background-size: auto 70%;
    margin-top: 80px;
    margin-bottom: 0;
  }
  .grid-44 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding: 0;
  }
  .grid-45 {
    grid-template-rows: auto auto;
    grid-template-columns: 1.5fr;
  }
  .text-block-4-copy-mer-3 {
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
    font-size: 32px;
    line-height: 35px;
    display: block;
  }
  .div-block-125 {
    background-image:
      url(https://cdn.prod.website-files.com/67fab9040098fc245f78aa27/67fab9040098fc245f78ab07_log%203.svg),
      linear-gradient(#af0b1b, #3d0104);
    background-repeat: no-repeat, repeat;
    background-size: 200%, auto;
    margin-top: 0;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 0;
  }
  .section14 {
    margin-left: 0;
    margin-right: 0;
  }
  .txt-mer-3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px 15px;
  }
  .div-block-126 {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .pravilacode {
    background-image:
      linear-gradient(150deg, #070707 9%, #430508 49%, #070707 92%),
      linear-gradient(#07070799, #07070799),
      url(https://cdn.prod.website-files.com/67fab9040098fc245f78aa27/67fab9040098fc245f78aa5e_tild3437-3964-4939-b934-643732316562__photo_13.webp);
    background-position:
      0 0,
      0 0,
      50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    margin-top: 0;
  }
  .section7 {
    background-image:
      linear-gradient(#070707, #b61016 51%, #070707),
      url(https://cdn.prod.website-files.com/67fab9040098fc245f78aa27/67fab9040098fc245f78aaba_tild6631-3932-4261-b765-393932336238__photo_14.webp);
    background-position:
      0 0,
      50%;
    background-repeat: repeat, repeat-y;
    background-size: auto, cover;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
}
#w-node-cf3596c8-fc4e-60c9-73a9-eca11bbcfe26-5f78aa20,
#w-node-cf3596c8-fc4e-60c9-73a9-eca11bbcfe38-5f78aa20 {
  place-self: start center;
}
#w-node-_77d81045-34ec-fc28-e375-afd6bbc140e3-5f78aa20,
#w-node-e6a2b0fa-42d4-3b87-db72-ec3183f988cb-5f78aa20,
#w-node-a6935ef4-099e-d1d1-c71b-ce783895f704-5f78aa20,
#w-node-_5b1d5289-61c5-df27-49aa-5819b41b6f20-5f78aa20,
#w-node-e2bf0425-df3f-6702-71f4-c3d170f741cd-5f78aa20 {
  place-self: center;
}
#w-node-e2bf0425-df3f-6702-71f4-c3d170f741e3-5f78aa20,
#w-node-e2bf0425-df3f-6702-71f4-c3d170f741f3-5f78aa20 {
  place-self: start stretch;
}
#w-node-e2bf0425-df3f-6702-71f4-c3d170f74203-5f78aa20,
#w-node-_3fba21aa-f689-927e-a945-9292b8e93fa4-5f78aa20 {
  place-self: center;
}
#w-node-ebb86eff-de4f-246a-39f0-df1b8d7ae39e-5f78aa20 {
  order: -9999;
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end center;
}
#w-node-f5813804-ab73-ea1d-0e0d-2a435bddf458-5f78aa20,
#w-node-f5813804-ab73-ea1d-0e0d-2a435bddf477-5f78aa20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto center;
}
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e45938c8-5f78aa20 {
  place-self: auto;
}
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e45938ca-5f78aa20,
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e45938d1-5f78aa20,
#w-node-_0306e836-b701-b918-32af-9729fa6233a9-5f78aa20 {
  place-self: center;
}
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e45938ff-5f78aa20 {
  place-self: auto;
}
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e4593901-5f78aa20,
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e4593908-5f78aa20 {
  place-self: end center;
}
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e4593931-5f78aa20,
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e4593938-5f78aa20 {
  place-self: center;
}
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e4593953-5f78aa20 {
  place-self: auto;
}
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e4593955-5f78aa20 {
  place-self: center;
}
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e459395e-5f78aa20,
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e459396e-5f78aa20 {
  place-self: auto;
}
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e4593970-5f78aa20 {
  place-self: center;
}
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e4593979-5f78aa20,
#w-node-d9cc6056-50e3-ef6a-e1dd-2721e4593994-5f78aa20 {
  place-self: auto;
}
#w-node-d32815d4-aa3e-acbb-daac-f8c7f90fba34-5f78aa20 {
  align-self: center;
}
#w-node-e9e8a4a6-3033-1f1f-b41e-9fff6ed260dc-5f78aa20 {
  justify-self: center;
}
#w-node-_839da1e0-b24f-597a-141b-47186c0a3b0f-5f78aa20 {
  place-self: auto center;
}
#w-node-e9e8a4a6-3033-1f1f-b41e-9fff6ed260fe-5f78aa20,
#w-node-e9e8a4a6-3033-1f1f-b41e-9fff6ed26106-5f78aa20 {
  place-self: center;
}
#w-node-e9e8a4a6-3033-1f1f-b41e-9fff6ed26108-5f78aa20 {
  place-self: auto center;
}
#w-node-e9e8a4a6-3033-1f1f-b41e-9fff6ed2612b-5f78aa20,
#w-node-e9e8a4a6-3033-1f1f-b41e-9fff6ed26159-5f78aa20 {
  place-self: center;
}
#w-node-e9e8a4a6-3033-1f1f-b41e-9fff6ed26175-5f78aa20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}
#w-node-e9e8a4a6-3033-1f1f-b41e-9fff6ed26177-5f78aa20 {
  place-self: center;
}
#w-node-b6c52695-c1f7-15cb-4791-d7b7c4c6a4bd-5f78aa20 {
  place-self: auto center;
}
#w-node-b6c52695-c1f7-15cb-4791-d7b7c4c6a4da-5f78aa20,
#confirm-age.w-node-_1ca649f0-802d-6234-3d41-d45f04c30991-5f78aa20 {
  place-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-cf3596c8-fc4e-60c9-73a9-eca11bbcfe37-5f78aa20 {
    justify-self: center;
  }
}



.pravilacode {
  position: relative;
  background-image: url("img/back5.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.pravilacode::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 7, 7, 0.6);
  /* #070707 с прозрачностью 60% */
  z-index: 1;
}

.pravilacode > * {
  position: relative;
  z-index: 2;
}

.section14 {
  position: relative;
  background-image: url("img/back6.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.section14::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    #070707 0%,
    rgba(7, 7, 7, 0) 23%,
    rgba(7, 7, 7, 0) 31%,
    #070707 77%
  );
  z-index: 1;
}

.section14 > * {
  position: relative;
  z-index: 2;
}

.section24 {
  position: relative;
  background-image: url("img/back7.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section24 > * {
  position: relative;
  z-index: 2;
}

/* Tablet и меньше — cover */
@media screen and (max-width: 991px) {
  .section24 {
    background-size: cover;
  }
}

/* Mobile (до 479px) — ширина auto, высота 70%, по центру */
@media screen and (max-width: 479px) {
  .section24 {
    background-size: auto 70%;
    background-position: center;
  }
}
.section24_1 {
  position: relative;
  background-image: url("img/back8.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.section24_1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    #070707 0%,
    rgba(7, 7, 7, 0) 23%,
    rgba(7, 7, 7, 0) 31%,
    #070707 77%
  );
  z-index: 1;
}

.section24_1 > * {
  position: relative;
  z-index: 2;
}
.image-49 {
  max-width: 25%;
  margin-left: auto;
  margin-right: auto;
}

.pravilacode2 {
  position: relative;
  background-image: url("img/back9.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.pravilacode2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 7, 7, 0.6);
  /* #070707 с прозрачностью 60% */
  z-index: 1;
}

.pravilacode2 > * {
  position: relative;
  z-index: 2;
}
.section7 {
  position: relative;
  background-image: url("img/back4.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.section7::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    #070707 0%,
    rgba(7, 7, 7, 0) 23%,
    rgba(7, 7, 7, 0) 31%,
    #070707 77%
  );
  z-index: 1;
}

.section7 > * {
  position: relative;
  z-index: 2;
}
.responsive-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media screen and (max-width: 479px) {
  .responsive-img {
    object-fit: contain;
  }
}
@media screen and (max-width: 767px) {
  .custom-grid-block{
    grid-template-columns: 1fr;
  }
}

#w-node-d32815d4-aa3e-acbb-daac-f8c7f90fba34-5f78aa20 {
    align-self: center;
    position: relative;
    z-index: 2;
}

