@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
:root {
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-primary: #ffeb3b; /* Bright yellow */
  --color-accent: #ff9800; /* Vibrant orange */
  --color-success: #00e676; /* Bright green */
  --color-blue: #03a9f4; /* Vivid blue */
  --color-btn: #ff5722; /* Deep orange */
  --color-warning: #f44336; /* Bright red */
  --color-title: #f5f5f5;
  --color-text: #b0bec5;
  --gradient-primary: linear-gradient(135deg, hsl(60, 100%, 50%), hsl(39, 100%, 50%));
  /* --gradient-primary: linear-gradient(135deg, hsl(60, 100%, 50%) 0%, hsl(39, 100%, 50%) 50%, hsl(200, 80%, 50%) 100%); */
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol,
li {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-light);
  background: #111116;
}
body.lock {
  overflow: hidden;
}
a {
  color: var(--color-accent);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-primary);
}
.container {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.main__btn {
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  background: var(--color-btn);
  color: var(--color-light);
  border: var(--color-btn);
}
.main__btn::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 100px;
  background-color: rgba(255, 235, 59, 0.5); /* Adjusted to bright yellow */
  -webkit-transform: translateX(-200%) skewX(-45deg);
          transform: translateX(-200%) skewX(-45deg);
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}
.main__btn:hover::before {
  -webkit-transform: translateX(200%) skewX(-45deg);
          transform: translateX(200%) skewX(-45deg);
}
.section__title {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (max-width: 992.98px) {
  .section__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768.98px) {
  .section__title {
    font-size: 1.5rem;
  }
}
.section__subtitle {
  font-size: 20px;
  color: var(--color-text);
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  max-width: 48rem;
  width: 100%;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 768.98px) {
  .section__subtitle {
    font-size: 1.125rem;
  }
}
.section__label {
  max-width: 270px;
  width: 100%;
  margin: 0 auto 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 100px;
  background: rgba(255, 152, 0, 0.1019607843); /* Adjusted to vibrant orange */
}
.section__label svg {
  width: 1rem;
  height: 1rem;
}
/* COMPONENTS */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--color-dark);
  border: 0px;
}
.main__btn {
  padding: 12px 16px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-btn);
  font-weight: bold;
  color: var(--color-light);
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main__btn::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-filter: blur(24px);
          filter: blur(24px);
  z-index: -1;
  -webkit-transform: translateX(-350%) skewX(-45deg);
          transform: translateX(-350%) skewX(-45deg);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.main__btn:hover {
  color: var(--color-light);
}
.main__btn:hover::before {
  -webkit-transform: translateX(350%) skewX(-45deg);
          transform: translateX(350%) skewX(-45deg);
}
/* COMPONENTS */
/* STRUCTURE */
.header {
  display: none;
}
.intro {
  background: url(../img/intro.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3rem 0;
  color: #fff;
  z-index: 2;
  position: relative;
}
.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0, .65);
  z-index: -1;
}
@media screen and (max-width: 768.98px) {
  .intro {
    padding: 1.875rem 0;
  }
}
.intro__title {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 4rem;
  color: #fff;
}
@media screen and (max-width: 992.98px) {
  .intro__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768.98px) {
  .intro__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.intro__subtitle {
  text-align: center;
  font-size: 1.25rem;
  max-width: 48rem;
  width: 100%;
  margin: 0 auto 3rem;
  color: #fff;
}
@media screen and (max-width: 480.98px) {
  .intro__subtitle {
    display: none;
  }
}
.intro__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 auto;
  max-width: 64rem;
}
@media screen and (max-width: 768.98px) {
  .intro__list {
    display: none;
  }
}
.intro__item {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(22, 22, 29, 0.7019607843);
  backdrop-filter: blur(6px);
}
.intro__item h4 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.intro__item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.intro__item:nth-child(1) svg {
  color: var(--color-success);
}
.intro__item:nth-child(2) svg {
  color: var(--color-primary);
}
.intro__item:nth-child(3) svg {
  color: var(--color-accent);
}
.intro__item:nth-child(4) svg {
  color: var(--color-blue);
}
.intro__item-media {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  margin: 0 auto 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.intro__item-media svg {
  width: 2.5rem;
  height: 2.5rem;
}
.offers {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .offers {
    padding: 1.875rem 0;
  }
}
.offers__title {
  margin-bottom: 3rem;
}
@media screen and (max-width: 480.98px) {
  .offers__title {
    display: none;
  }
}
.offers__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .offers__list {
    grid-template-columns: 1fr;
  }
}
@-webkit-keyframes glow {
  0% {
    -webkit-box-shadow: 0 0 20px hsla(60, 100%, 50%, 0.5); /* Adjusted to bright yellow */
            box-shadow: 0 0 20px hsla(60, 100%, 50%, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 15px hsla(200, 80%, 50%, 0.6); /* Adjusted to vivid blue */
            box-shadow: 0 0 15px hsla(200, 80%, 50%, 0.6);
  }
}
@keyframes glow {
  0% {
    -webkit-box-shadow: 0 0 20px hsla(60, 100%, 50%, 0.5);
            box-shadow: 0 0 20px hsla(60, 100%, 50%, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 15px hsla(200, 80%, 50%, 0.6);
            box-shadow: 0 0 15px hsla(200, 80%, 50%, 0.6);
  }
}
.offer {
  position: relative;
  max-width: 1000px;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 1.5rem;
  color: var(--color-dark);
  background: #1d1617;
  border: 1px solid rgba(41, 41, 50, 0.5019607843);
}
.offer--vip {
  -webkit-animation: glow 2s ease-in-out infinite alternate;
          animation: glow 2s ease-in-out infinite alternate;
  border: 1px solid rgba(255, 152, 0, 0.4); /* Adjusted to vibrant orange */
}
@media screen and (max-width: 992.98px) {
  .offer {
    max-width: 480px;
    margin: 0 auto;
  }
}
.offer__label {
  font-weight: 500;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  position: absolute;
  background: var(--gradient-primary);
  color: var(--color-dark);
  width: 100%;
  top: -2px;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
.offer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}
@media screen and (max-width: 768.98px) {
  .offer__inner {
    padding: 1rem;
    gap: 1rem;
  }
}
.offer__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 768.98px) {
  .offer__media {
    height: 80px;
  }
}
.offer__media img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.25rem;
}
.offer__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.offer__rating svg {
  width: 1rem;
  height: 1rem;
  color: #ffeb3b; /* Adjusted to bright yellow */
}
.offer__rating-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #6b7c94;
  margin-left: 0.5rem;
}
.offer__rating-score {
  font-size: 1.125rem;
  font-weight: 700;
  margin-left: auto;
  display: inline-block;
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  background: var(--gradient-primary);
  color: var(--color-dark);
}
.offer__bonus {
  border-radius: 0.75rem;
  background: rgba(255, 152, 0, 0.1019607843); /* Adjusted to vibrant orange */
  text-align: center;
}
.offer__bonus-text {
  color: #f8fafc;
  padding: 1rem;
  font-size: 0.875rem;
}
.offer__bonus-text span {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-top: 0.25rem;
}
.offer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.offer__item {
  background: rgba(255, 152, 0, 0.1019607843); /* Adjusted to vibrant orange */
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-align: center;
}
.offer__item:nth-child(1) svg {
  color: var(--color-primary);
}
.offer__item:nth-child(1) p {
  color: var(--color-primary);
}
.offer__item:nth-child(2) p {
  color: var(--color-accent);
}
.offer__item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}
.offer__item-text {
  font-size: 1rem;
  font-weight: 600;
}
.offer__item-text span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.offer__pay-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.offer__pay-item {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.125rem 0.625rem;
  font-weight: 700;
  background: #f0f2f4;
  border-radius: 100px;
}
.offer__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--color-dark);
  max-width: 100%;
  width: 100%;
  text-align: center;
}
.why {
  padding: 3rem 0;
  background: #14141A;
}
@media screen and (max-width: 992.98px) {
  .why {
    padding: 1.875rem 0;
  }
}
.why__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 992.98px) {
  .why__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .why__list {
    grid-template-columns: 1fr;
  }
}
.why__item {
  background: #1d1617;
  border: 1px solid #322930;
  padding: 2rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 15px 40px -8px hsla(240, 15%, 3%, 0.5);
          box-shadow: 0 15px 40px -8px hsla(240, 15%, 3%, 0.5);
  text-align: center;
}
.why__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.5rem;
}
.why__media svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
}
.why__item-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.why__text {
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.625;
}
.why__label {
  padding: 0.25em 0.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--color-accent);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  gap: 0.5rem;
  background: rgba(255, 152, 0, 0.1); /* Adjusted to vibrant orange */
}
.why__label svg {
  width: 1rem;
  height: 1rem;
}
.why__label span {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 700;
}
.glossary {
  padding: 3rem 0;
  background: #0D0D12;
}
@media screen and (max-width: 992.98px) {
  .glossary {
    padding: 1.875rem 0;
  }
}
.glossary__label {
  color: var(--color-blue);
  max-width: 240px;
  background: rgba(3, 169, 244, 0.1019607843); /* Adjusted to vivid blue */
}
.glossary__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 992.98px) {
  .glossary__list {
    grid-template-columns: 1fr;
  }
}
.glossary__item {
  background: #1d1617;
  border-radius: 1rem;
  -webkit-box-shadow: 0 15px 40px -8px hsla(240, 15%, 3%, 0.5);
          box-shadow: 0 15px 40px -8px hsla(240, 15%, 3%, 0.5);
  padding: 2rem;
  border: 1px solid #322930;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.glossary__item:hover {
  -webkit-box-shadow: 0 5px 30px -15px rgba(3, 169, 244, 0.8); /* Adjusted to vivid blue */
}
.glossary__item:hover .glossary__item-title {
  color: var(--color-accent);
}
.glossary__item svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 480.98px) {
  .glossary__item svg {
    display: none;
  }
}
.glossary__item-title {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: var(--color-title);
}
@media screen and (max-width: 480.98px) {
  .glossary__item-title {
    font-size: 1rem;
  }
}
.glossary__item-title span {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 235, 59, 0.1); /* Adjusted to bright yellow */
  border-radius: 100px;
}
.glossary__item-title span.accent {
  color: var(--color-accent);
  background: rgba(255, 152, 0, 0.1); /* Adjusted to vibrant orange */
}
.glossary__item-title span.blue {
  color: var(--color-blue);
  background: rgba(3, 169, 244, 0.1); /* Adjusted to vivid blue */
}
.glossary__item-title span.success {
  color: var(--color-success);
  background: rgba(0, 230, 118, 0.1); /* Adjusted to bright green */
}
.glossary__item-text {
  color: var(--color-text);
  margin-bottom: 1rem;
}
.glossary__description {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(40, 40, 51, 0.5019607843);
}
.glossary__description-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
}
.glossary__description-title svg {
  color: #ff9800; /* Adjusted to vibrant orange */
  width: 1rem;
  height: 1rem;
}
.glossary__description-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-style: italic;
  color: var(--color-text);
}
.glossary__info {
  background: #0D0D12;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 42rem;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 152, 0, 0.2); /* Adjusted to vibrant orange */
  -webkit-box-shadow: 0 15px 80px -20px hsla(39, 100%, 50%, 0.4); /* Adjusted to vibrant orange */
          box-shadow: 0 15px 80px -20px hsla(39, 100%, 50%, 0.4);
}
.glossary__info svg {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: block;
  color: var(--color-primary);
}
.glossary__info-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--color-title);
  font-weight: 700;
}
.glossary__info-text {
  color: var(--color-text);
  text-align: center;
  line-height: 1.625;
}
.footer {
  background: #1d1617;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .footer {
    padding-top: 1.5rem;
  }
}
.footer__disclaimer {
  padding: 1.5rem 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(244, 67, 54, 0.1019607843); /* Adjusted to bright red */
  border-bottom: 1px solid rgba(244, 67, 54, 0.2);
  color: var(--color-warning);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__age {
  background: rgba(244, 67, 54, 0.2);
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--color-warning);
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__attention-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.footer__attention-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.footer__list {
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 992.98px) {
  .footer__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 768.98px) {
  .footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer a {
  color: var(--color-accent);
  position: relative;
}
.footer a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  background-color: var(--color-accent);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer a:hover::before {
  width: 100%;
}
.footer__help {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 992.98px) {
  .footer__help {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__help a::before {
  content: none;
}
.footer__media {
  max-width: 180px;
  width: 100%;
  padding: 0.625rem;
  height: 100px;
}
.footer__media img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.footer__media--invert {
  background-color: var(--color-light);
  border-radius: 0.75rem;
}
.footer__info {
  border-top: 1px solid #322930;
  background: #1E1E27;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.footer__info-inner {
  background: #1d1617;
  border: 1px solid #322930;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.footer__info-inner svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 1rem;
  display: block;
  color: var(--color-warning);
}
.footer__info-title {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.footer__info-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-text);
  text-align: center;
}
.footer__info-text + p {
  margin-top: 1rem;
}
.footer__copy {
  border-top: 1px solid #322930;
  padding: 1.5rem 0;
}
.footer__copy-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.footer__copy-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  color: var(--color-success);
}
@media screen and (max-width: 768.98px) {
  .footer__copy-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__copy-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.footer__copy-list svg {
  width: 1rem;
  height: 1rem;
}
.footer__copy-list p {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.footer__copy-text {
  text-align: center;
  color: var(--color-text);
}
.footer__copy-text span {
  display: block;
}
/* COMPONENTS */
.cookies-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 1.5rem 1rem;
  z-index: 1000;
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.cookies-banner__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 200px;
  width: 100%;
  gap: 1rem;
}
@media screen and (max-width: 768.98px) {
  .cookies-banner__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cookies-banner button {
  margin: 0 5px;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  max-width: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#accept-cookies {
  background-color: var(--color-success);
  color: var(--color-dark);
  font-weight: 700;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
#accept-cookies:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#reject-cookies {
  background-color: var(--color-warning);
  color: var(--color-dark);
  font-weight: 700;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
#reject-cookies:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.service-page {
  padding: 3rem 0;
  color: var(--color-light);
}
.service-page h2 {
  margin-bottom: 0.625rem;
}
.service-page p {
  margin-bottom: 1rem;
}
.service-page p.service-page__subtitle {
  margin-bottom: 2.5rem;
}
.service-page ul {
  margin-bottom: 1rem;
  padding-left: 18px;
}
.service-page li {
  list-style-type: disc;
}
.service-page li + li {
  margin-top: 0.25rem;
}
.service-page a {
  color: var(--color-primary);
}
.service-page a:hover {
  color: var(--color-accent);
}
.service-page__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1.625;
  text-align: center;
}
.service-page__subtitle {
  text-align: center;
}
.service-page__content {
  padding: 2rem;
  background: #1d1617;
  border-radius: 1.25rem;
  border: 2px solid #322930;
}
.service-page__text {
  margin-bottom: 1rem;
}
.service-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}