@charset "UTF-8";

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-ExtraBold.woff2") format("woff2"),
    url("../fonts/Rubik-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2"),
    url("../fonts/Rubik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2"),
    url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2"),
    url("../fonts/Rubik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-Bold.woff2") format("woff2"),
    url("Inter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("Inter-Regular.woff2") format("woff2"),
    url("Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

:root {
  --main-bg-color: #151516;
  --font-family: "Inter", sans-serif;
  --second-family: "Rubik", sans-serif;
  --dark-tan-50: #fff1f1;
  --dark-tan-100: #ffdfdf;
  --dark-tan-200: #ffc5c5;
  --dark-tan-300: #ff9d9d;
  --dark-tan-400: #ff6565;
  --dark-tan-500: #fe3535;
  --dark-tan-600: #ec1616;
  --dark-tan-700: #c70e0e;
  --dark-tan-800: #a41010;
  --dark-tan-900-base: #6c1010;
  --dark-tan-950: #4a0505;
  --golden-grass-50: #fbf8eb;
  --golden-grass-100: #f5f0cc;
  --golden-grass-200: #ede09b;
  --golden-grass-300: #e2c862;
  --golden-grass-400: #d8b137;
  --golden-grass-500-base: #d2a32c;
  --golden-grass-600: #ac7a22;
  --golden-grass-700: #8a5a1e;
  --golden-grass-800: #734920;
  --golden-grass-900: #633d20;
  --golden-grass-950: #391f0f;
  --accents-white: #fff;
  --accents-black: #0e0e0e;
  --shark-50: #f6f6f6;
  --shark-100: #e7e7e7;
  --shark-200: #d1d1d1;
  --shark-300: #b0b0b0;
  --shark-400: #888;
  --shark-500: #6d6d6d;
  --shark-600: #5d5d5d;
  --shark-700: #4f4f4f;
  --shark-800: #454545;
  --shark-900: #3d3d3d;
  --shark-950-base: #1e1e1e;
  --accents-gold: #eab308;
  --accents-red-warning: #b13;
  --accents-green: #2dac57;
  --accents-website-gold: #f1d46a;
  --accents-website-gold-idle: #f1d46a;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/*--------------------*/
/* ---------------- */
::selection {
  background: #f2d669;
  /* Цвет фона */
  color: #fff;
  /* Цвет текста */
}

body {
  color: #fff;

  font-family: "Rubik", sans-serif;
  overflow-x: hidden;
  background: #262626;
}

body::-webkit-scrollbar {
  width: 8px;
  /* ширина всей полосы прокрутки */
}

body::-webkit-scrollbar-track {
  background: №202020;
  /* цвет зоны отслеживания */
}

body::-webkit-scrollbar-thumb {
  background-color: #f2d669;
  /* цвет бегунка */
  border-radius: 20px;
  /* округлось бегунка */
  border: 3px solid #202020;
  /* отступ вокруг бегунка */
}

.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  background: rgba(30, 30, 30, 0);
}
.container {
  position: relative;
  margin: 0 auto;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
  padding: 16px 160px;
  margin: auto;
}
.header__logo {
  width: auto;
  max-height: 40px;
}

.header__btns {
  display: flex;
  gap: 19px;
  justify-content: center;
  align-items: center;
}

.btn-yellow {
  border-radius: 4px;
  border: 1px solid var(--button-border-main, #e1ae36);
  background: var(--accents-website-gold);
  color: var(--button-dark-text, #262626);
  font-family: var(--second-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 13px 16px;
  position: relative;
  transition: 0.3s all;
}

.btn-yellow:hover {
  background-color: #efc255;
  border-color: #efc255;
}

.btn-red {
  border-radius: 4px;
  border: 1px solid var(--button-border-accent, #751010);
  background: #d93731;
  color: #fff;
  font-family: var(--second-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 13px 16px;
  position: relative;
  transition: 0.3s all;
}

.btn-red:hover {
  background-color: #861717;
  border-color: #861717;
}

.btn-yellow-big {
  color: var(--button-dark-text, #262626);
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 8px;
  border: 1px solid var(--Accents-White, #fff);
  background: var(
    --LP-gradient-button,
    linear-gradient(90deg, #e2c862 0%, #e2c862 30%, #f5f0cc 65%, #e2c862 100%)
  );
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  margin: 40px auto;
  padding: 16px 24px;
}

.btn-yellow-big span {
  z-index: 4;
  position: relative;
}

.btn-yellow-big:after {
  content: "";
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  border-radius: 16px;
  background: rgba(210, 163, 44, 0.35);
  position: absolute;
  left: -9px;
  top: -9px;
  transition: 0.3s all;
}

.btn-yellow-big:hover:after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100vh;
  padding: 40px 80px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  background: url("../img/main-bg.png") center/cover no-repeat;
}

.hero__woman {
  position: absolute;
  bottom: 0;
  left: 100px;
  width: auto;
  height: 90vh;
  max-height: 950px;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.hero__card {
  position: relative;
  max-width: 520px;
  background: rgba(16, 16, 20, 0.7);
  border: 2px solid rgba(255, 191, 0, 0.8);
  border-radius: 24px;
  padding: 48px 32px;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  text-align: center;
  font-family: "Rubik";
}

.hero__title {
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero__code {
  color: #ffcc40;
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero__subtitle {
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.4;
}

.cta {
  display: inline-block;
  background: linear-gradient(180deg, #ffe089 0%, #e6b94a 55%, #cfa43c 100%);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.cta:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

.cta__hint {
  font-size: 13px;
  margin-top: 8px;
  opacity: 0.85;
  text-align: center;
}

.cta {
  animation: ctaBreath 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes ctaBreath {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(255, 190, 60, 0.25);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 10px 28px rgba(255, 200, 80, 0.55);
  }
}

.hero__woman {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero__card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out 0.1s;
}

.hero__woman.visible,
.hero__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pumpkin-glow {
  position: absolute;
  left: 135px; 
  bottom: 260px;
  width: 220px; 
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 168, 32, 0.55) 0%,
    rgba(255, 160, 20, 0.35) 35%,
    rgba(255, 132, 0, 0.2) 60%,
    rgba(255, 120, 0, 0.06) 76%,
    transparent 85%
  );
  filter: blur(14px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: pulseGlow 2.8s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .hero {
    justify-content: center;
    padding: 20px;
  }
  .hero__woman {
    left: 40%;
    transform: translateX(-50%);
    height: 70vh;
  }
  .hero__card {
    text-align: center;
    background: rgba(16, 16, 20, 0.8);
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 16px 0;
  }

  .pumpkin-glow {
    display: none;
  }

  .hero__card {
    order: 1;
    width: 100%;
    padding: 24px;
    border-radius: 18px;
    margin-bottom: 10px;
    background: rgba(16, 16, 20, 0.85);
  }

  .hero__woman {
    position: relative;
    order: 2;
    height: auto;
    width: 100%;
    max-width: none;
    margin-top: -40px;
  }

  .hero__woman img,
  .hero__woman {
    width: auto;
    height: 100%;
  }

  .hero__title {
    font-size: 22px;
  }
  .hero__code {
    font-size: 46px;
  }
  .hero__subtitle {
    font-size: 18px;
  }
  .cta {
    width: 100%;
    padding: 14px;
    font-size: 17px;
  }
}

.offers {
  background: #262626; 
  padding: 56px 20px 72px;
  color: #fff;
}
.offers__wrap {
  max-width: 1220px;
  margin: 0 auto;
}

.offers__title {
  margin: 0 0 10px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.2px;
  line-height: 1.2;
  font-size: clamp(26px, 3.6vw, 44px);
}

.offers__subtitle {
  margin: 0 auto 32px;
  text-align: center;
  opacity: 0.85;
  font-size: clamp(14px, 1.8vw, 18px);
  max-width: 820px;
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.offer {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: radial-gradient(
      120% 100% at 10% 0%,
      rgba(255, 204, 64, 0.08),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(3px);
}
.offer:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 204, 64, 0.35);
}

.offer__img {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  background: #222;
}

.offer__headline {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.25;
  color: #ffe089; 
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.offer__desc {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.85;
}

@media (max-width: 1080px) {
  .offers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .offers {
    padding: 40px 14px 56px;
  }
  .offers__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .offer {
    grid-template-columns: 76px 1fr;
    padding: 12px;
    border-radius: 12px;
  }
  .offer__img {
    width: 76px;
    height: 76px;
    border-radius: 8px;
  }
  .offer__headline {
    font-size: 18px;
  }
  .offer__desc {
    font-size: 13px;
  }
}

.calendar__box {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 28px 28px;
  border-radius: 20px;
  border-top: 1px solid rgba(255, 210, 90, 0.55);
  backdrop-filter: blur(4px);
  text-align: center;
}

.calendar__title {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.2px;
  font-size: clamp(26px, 3.4vw, 40px); 
}
.calendar__text {
  margin: 0 auto 20px;
  text-align: center;
  opacity: 0.9;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.45; 
  max-width: 820px; 
}

.calendar__badge {
  position: absolute;
  top: -30px;
  left: 30%;
}

.calendar__media {
  margin: 12px auto 0;
  max-width: 920px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.calendar__media {
  position: relative;
  overflow: hidden;
}

.calendar__media::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.7s ease;
  opacity: 0;
}

.calendar__media:hover::after {
  left: 130%;
  opacity: 1;
}

.calendar__media img {
  display: block;
  width: 100%;
  height: auto;
}

.calendar__btn {
  display: inline-block;
  margin: 10px auto 6px; 
  min-width: 220px;
  text-align: center;
  padding: 14px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35), 0 0 28px rgba(255, 215, 90, 0.2);
}

.calendar {
  background: #262626;
} 

@media (max-width: 768px) {
  .calendar {
    padding: 52px 12px 60px;
  }
  .calendar__box {
    padding: 40px 14px 18px;
    border-radius: 18px;
  }
  .calendar__badge {
    width: 240px;
    left: 20%;
    top: -22px;
  }
  .calendar__media {
    margin: 10px 0 16px;
    border-radius: 14px;
  }
  .calendar__btn {
    width: 100%;
    min-width: 0;
  }
}

.cal-countdown {
  margin: 0 auto 8px;
  max-width: 920px;
}
.cal-countdown__bar {
  position: relative;
  height: 28px;
  border-radius: 14px;
  background: #e5e5e5;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25) inset;
}
.cal-countdown__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: #33ff4d; 
  border-radius: 14px;
  box-shadow: 0 0 12px rgba(51, 255, 77, 0.35);
  transition: width 0.6s ease;
}
.cal-countdown__label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: #222;
  text-align: center;
}
@media (max-width: 768px) {
  .cal-countdown {
    margin: 12px 0 4px;
  }
  .cal-countdown__bar {
    height: 26px;
  }
  .cal-countdown__label {
    font-size: 12px;
  }
}

.calendar-cards {
  background: #262626;
  padding: 28px 20px 26px;
}
.calendar-cards__head {
  max-width: 1220px;
  margin: 0 auto 14px;
}
.cc-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
}
.cc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffe089;
  color: #1a1a1a;
  border-radius: 12px;
  padding: 6px 12px;
  font-size: clamp(14px, 1.4vw, 18px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cards-grid {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(7, 1fr);
}
.cc-card {
  position: relative;
  border: none;
  cursor: pointer;
  padding: 0 0 30px;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  background: url(../img/card-bg.png);
  background-size: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.cc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.cc-img {
  width: 110px;
  height: 90px;
  object-fit: cover;
  filter: saturate(0.95);
}

.cc-num {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.cc-badge {
  position: absolute;
  z-index: 1;
  left: 5px;
  top: 5px;
  border-radius: 5px;
  padding: 3px 7px;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

.cc-card.is-missed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;      
  filter: grayscale(1);     
  z-index: 0;               
  border-radius: inherit; 
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.55);
}
.cc-card.is-missed .cc-img {
  opacity: 0.55;
  filter: brightness(0.8) saturate(0.8);
}
.cc-card.is-missed .cc-badge {
  background: #ff3b30; 
  color: #fff;
}
.cc-card.is-missed .cc-badge::after {
  content: "Missed";
}

.cc-card.is-active {
  outline: 3px solid #4cd964;
  box-shadow: 0 0 0 4px rgba(76, 217, 100, 0.25),
    0 10px 24px rgba(0, 0, 0, 0.35);
}
.cc-card.is-active .cc-badge {
  background: #2d7ef7;
  color: #fff;
}
.cc-card.is-active .cc-badge::after {
  content: "Active";
}

.cc-card.is-locked .cc-img {
  filter: blur(3px) brightness(0.9);
  opacity: 0.8;
}
.cc-card.is-locked .cc-badge {
  background: rgba(150, 150, 150, 0.8);
  color: #fff;
}
.cc-card.is-locked .cc-badge::after {
  content: "Locked";
}

.cc-open {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 500;
  font-size: 18px;
  color: #1a1a1a;
  background: linear-gradient(180deg, #ffe089 0%, #e6b94a 55%, #cfa43c 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cc-card.is-active:hover .cc-open,
.cc-card.is-active:focus-within .cc-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover: none) {
  .cc-card.is-active .cc-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 980px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cc-card {
    height: 160px;
  }
}
@media (max-width: 720px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cc-card {
    height: 150px;
  }
}
@media (max-width: 520px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cc-card {
    height: 146px;
  }
}

.seo {
  background: #262626;
  color: #f7f7f7;
  padding: 80px 20px 100px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.seo h1 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.seo h2 {
  font-size: 26px;
  color: #ffcc66;
  margin-top: 56px;
  margin-bottom: 16px;
}

.seo h3 {
  font-size: 22px;
  color: #ffaa33;
  margin-top: 36px;
  margin-bottom: 12px;
}

.seo p {
  font-size: 18px;
  line-height: 1.7;
  color: #e5e5e5;
  margin-bottom: 18px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.seo ul {
  margin: 20px auto 30px;
  padding-left: 24px;
  max-width: 850px;
}

.seo li {
  margin-bottom: 10px;
}

.seo li::marker {
  color: #ffcc66;
}

@media (max-width: 768px) {
  .seo {
    padding: 60px 16px 80px;
  }

  .seo h1 {
    font-size: 30px;
  }

  .seo h2 {
    font-size: 22px;
  }

  .seo p {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .btn-red {
    font-size: 14px;
  }

  .btn-yellow {
    font-size: 14px;
  }

  .btn-yellow-big {
    font-size: 15px;
  }

  .header__logo img {
    width: 124px;
  }

  .header {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background: var(--main-bg-color);
  }

  .btn-yellow-big {
    font-size: 15px;
    margin: 0;
    /* padding: 19px 53px; */
    text-align: center;
    margin-left: 0;
    justify-content: center;
  }

  .header__btns {
    width: 100%;
  }

  .btn-red {
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .btn-yellow {
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .header {
    z-index: 4;
  }

  .header .container {
    padding: 14px 15px;
    gap: 10px;
    display: flex;
    flex-direction: column-reverse;
  }

  .header__logo img {
    width: 128px;
  }
}

.container_flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.footer-providers {
  padding: 1rem 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-providers {
    padding: 1.875rem 0.75rem 2.5rem;
  }
}

.footer-providers a {
  width: 5.625rem;
  height: 2.25rem;
  margin: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footer-providers a {
    margin: 0.625rem;
    height: 2rem;
    width: 5rem;
  }
}

.footer-providers a svg,
.footer-providers a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    padding: 0 0.75rem;
  }
}

.footer-bottom-license {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #bdbdbd;
  text-align: center;
  margin: 0 auto;
  max-width: 43.75rem;
}

.footer-bottom-license a {
  color: #bdbdbd;
}

.footer-bottom-row {
  padding: 1.875rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

@media screen and (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
  }

  .footer-bottom-row:first-child {
    padding: 1.875rem 0;
  }
}

.footer-bottom-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0.0625rem;
  background: #bdbdbd;
  max-width: 45.25rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .footer-bottom-row::after {
    left: 2.375rem;
    right: 2.375rem;
    width: initial;
    max-width: initial;
    text-align: center;
  }
}

.footer-bottom-col p {
  margin: 0;
  color: #e0e0e0;
  font-size: 0.75rem;
  line-height: 1rem;
}

@media screen and (max-width: 768px) {
  .footer-bottom-col p {
    text-align: center;
  }
}

.footer-bottom-col_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.footer-bottom-col_text {
  margin-bottom: 0.75rem;
}

footer,
.footer-menu {
  background: #262626;
}

@media screen and (min-width: 768px) {
  .footer-bottom-col_text {
    padding-right: 3rem;
    margin-bottom: 0;
  }
}

.footer-menu {
  padding: 24px 0;
}

.footer-menu.red {
  background: #440907;
}

.footer-menu__link {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1rem;
  text-decoration: underline;
  margin: 0 0.3125rem;
}

@media screen and (max-width: 768px) {
  .footer-menu__link {
    padding: 0.625rem 0.9375rem;
  }
}

.footer-menu__link:hover {
  color: #ffffff;
}

.footer-age {
  margin: 0 0.75rem;
}

@media screen and (max-width: 768px) {
  .footer-age {
    order: 0;
  }
}

.footer-age img {
  width: 2.25rem;
  height: 2.25rem;
}

.footer-license {
  text-align: center;
  margin: 0 0.75rem;
}

@media screen and (max-width: 768px) {
  .footer-license {
    order: 1;
  }
}

.joc-icon {
  width: 6.25rem;
  height: 2.5rem;
  display: block;
}

.joc-icon img {
  width: 100%;
  height: 100%;
}

.footer-license__icon {
  position: relative;
  width: 2.5rem;
  display: block;
  margin: 0 auto;
}
