@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Merriweather-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Merriweather-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Merriweather-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
}
:root {
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-primary: #6f8bff;
  --color-accent: #b366ff;
  --color-green: #2fb84d;
  --color-yellow: #ffbb33;
  --color-pink: #ff75c9;
  --color-red: #e63c3c;
  --color-btn: #2d4ba3;
  --color-title: #f7f2f9;
  --color-text: #a89fb9;
  --color-warning: #ec4b4b;
  --gradient-hero: linear-gradient(135deg, hsl(240, 15%, 10%), hsl(280, 28%, 18%));
  --gradient-primary: linear-gradient(135deg, var(--color-warning), var(--color-yellow));
  --gradient-accent: linear-gradient(135deg, #0e2d62, #3a206f);
}

*,
*::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: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  color: var(--color-text);
}

body.lock {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "MerriWeather", serif;
  line-height: 1;
  color: var(--color-title);
}

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: 1280px;
  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(181, 181, 250, 0.5);
  -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 {
  max-width: 600px;
  font-size: 3rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
@media screen and (max-width: 1200.98px) {
  .section__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768.98px) {
  .section__title {
    font-size: 1.5rem;
  }
}

@-webkit-keyframes glow-pulse {
  0%, 100% {
    -webkit-box-shadow: rgba(236, 75, 75, 0.3019607843) 0px 0px 20px;
            box-shadow: rgba(236, 75, 75, 0.3019607843) 0px 0px 20px;
  }
  50% {
    -webkit-box-shadow: rgba(236, 75, 75, 0.6) 0px 0px 40px;
            box-shadow: rgba(236, 75, 75, 0.6) 0px 0px 40px;
  }
}

@keyframes glow-pulse {
  0%, 100% {
    -webkit-box-shadow: rgba(236, 75, 75, 0.3019607843) 0px 0px 20px;
            box-shadow: rgba(236, 75, 75, 0.3019607843) 0px 0px 20px;
  }
  50% {
    -webkit-box-shadow: rgba(236, 75, 75, 0.6) 0px 0px 40px;
            box-shadow: rgba(236, 75, 75, 0.6) 0px 0px 40px;
  }
}
/*  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: #29335C;
  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 {
  background-color: var(--color-light);
  padding: 12px 0;
  position: relative;
  display: none;
}
.header__logo {
  max-width: 150px;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
}

.hero {
  padding: 5rem 0;
  background: url(../img/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-text);
  z-index: 2;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
@media screen and (max-width: 768.98px) {
  .hero {
    padding: 1.875rem 0;
  }
}
.hero__title {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-pink);
}
.hero__title span {
  display: block;
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  background-image: var(--gradient-primary);
}
@media screen and (max-width: 992.98px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768.98px) {
  .hero__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.hero__subtitle {
  color: rgba(245, 240, 245, 0.8);
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 768.98px) {
  .hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.hero__list {
  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) {
  .hero__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
.hero__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.hero__item:last-child span {
  color: var(--color-yellow);
}
.hero__item span {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--color-green);
}

.platforms {
  padding: 1.875rem 0;
  background: #121217;
}

.platform {
  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;
  gap: 1rem;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(240, 15%, 12%), hsl(260, 20%, 16%));
  padding: 2rem;
  border: 1px solid rgba(204, 102, 255, 0.2);
}
@media screen and (max-width: 768.98px) {
  .platform {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 460px;
    width: 100%;
  }
}
@media screen and (max-width: 768.98px) {
  .platform {
    padding: 1rem;
  }
}
.platform:not(:last-child) {
  margin-bottom: 1.5rem;
}
.platform__img {
  margin-bottom: 1rem;
}
.platform__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.platform__rating-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.platform__rating-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-yellow);
}
.platform__rating-score {
  color: var(--color-light);
}
.platform__media {
  text-align: center;
}
.platform__cta p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.75rem;
  text-align: center;
}
.platform__bonus {
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(204, 102, 255, 0.2);
  background: #121217;
  text-align: center;
}
.platform__bonus-title {
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  color: var(--color-title);
}
.platform__bonus-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-yellow);
}
.platform__list li + li {
  margin-top: 0.25rem;
}
.platform__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.platform__list svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-yellow);
}
.platform__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0.75rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1a1a23;
  background: var(--gradient-primary);
  font-size: 1rem;
  line-height: 1.75rem;
  text-align: center;
  -webkit-animation: 2s ease-in-out 0s infinite normal none running glow-pulse;
          animation: 2s ease-in-out 0s infinite normal none running glow-pulse;
}
@media screen and (max-width: 768.98px) {
  .platform__btn {
    max-width: 100%;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 768.98px) {
  .platform__btn {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480.98px) {
  .platform__btn {
    font-size: 0.875rem;
  }
}

.why {
  padding: 3rem 0;
  background-color: #17171D;
}
.why__title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
.why__title span {
  color: var(--color-pink);
}
.why__subtitle {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.why__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@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 {
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #1a1a23, #262131);
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(41, 41, 61, 0.2);
}
.why__num {
  display: inline-block;
  text-align: center;
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--color-accent);
}
.why__item-title {
  color: var(--color-title);
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.why__percent {
  color: var(--color-green);
  font-size: 0.75rem;
}
.why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 992.98px) {
  .why__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .why__cards {
    grid-template-columns: 1fr;
  }
}
.why__card {
  padding: 1.5rem;
  background: linear-gradient(135deg, #1a1a23, #262131);
  border-radius: 0.75rem;
  border: 1px solid rgba(41, 41, 61, 0.2);
}
.why__card:nth-child(1) svg {
  color: var(--color-yellow);
}
.why__card:nth-child(2) svg {
  color: var(--color-accent);
}
.why__card:nth-child(3) svg {
  color: var(--color-green);
}
.why__card:nth-child(4) svg {
  color: var(--color-pink);
}
.why__card:nth-child(5) svg {
  color: var(--color-green);
}
.why__card:nth-child(6) svg {
  color: var(--color-primary);
}
.why__card-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 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;
}
.why__card-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.why__disclaimer {
  border: 1px solid #29293d;
  padding: 2rem;
  border-radius: 0.75rem;
  background: var(--gradient-accent);
  max-width: 56rem;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .why__disclaimer {
    padding: 1rem;
  }
}
.why__disclaimer-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
}
.why__disclaimer-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .why__disclaimer-content {
    grid-template-columns: 1fr;
  }
}
.why__disclaimer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.why__disclaimer-item:not(:last-child) {
  margin-bottom: 0.5rem;
}
.why__disclaimer-item--purple {
  color: var(--color-yellow);
}
.why__disclaimer-item--pink {
  color: var(--color-green);
}
.why__disclaimer-item:nth-child(1) {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}
.why__disclaimer-item svg {
  color: var(--color-yellow);
  width: 1rem;
  height: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.why__disclaimer-item span {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.stats {
  padding: 3rem 0;
  background: url(../img/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-text);
  z-index: 2;
  position: relative;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}
.stats__title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
.stats__title span {
  color: var(--color-pink);
}
.stats__subtitle {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 992.98px) {
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .stats__inner {
    grid-template-columns: 1fr;
  }
}
.stats__item {
  padding: 1.5rem;
  border: 1px solid #29293d;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #1a1a23, #262131);
  text-align: center;
}
.stats__item:nth-child(1) .stats__item-icon svg,
.stats__item:nth-child(1) .stats__num {
  color: var(--color-accent);
}
.stats__item:nth-child(2) .stats__item-icon svg,
.stats__item:nth-child(2) .stats__num {
  color: var(--color-green);
}
.stats__item:nth-child(3) .stats__item-icon svg,
.stats__item:nth-child(3) .stats__num {
  color: var(--color-pink);
}
.stats__item:nth-child(4) .stats__item-icon svg,
.stats__item:nth-child(4) .stats__num {
  color: var(--color-yellow);
}
.stats__item-icon {
  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;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
}
.stats__num {
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: block;
}
.stats__item-title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: var(--color-title);
}
.stats__item-text {
  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.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-green);
}
.stats__item-text svg {
  width: 0.75rem;
  height: 0.75rem;
}

.license {
  padding: 3rem 0;
  background: #17171D;
}
.license__title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
.license__title span {
  color: var(--color-pink);
}
.license__subtitle {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.license__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  color: #e9e2e9;
}
@media screen and (max-width: 992.98px) {
  .license__list {
    grid-template-columns: 1fr;
  }
}
.license__item {
  border: 1px solid rgba(51, 204, 51, 0.2);
  background: linear-gradient(135deg, #1a1a23, #262131);
  border-radius: 0.75rem;
  padding: 1.5rem;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.0509803922);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.0509803922);
}
.license__item:nth-child(2) {
  border-color: rgba(64, 123, 255, 0.2);
}
.license__item:nth-child(2) .license__item-icon {
  background-color: rgba(64, 123, 255, 0.2);
}
.license__item:nth-child(2) svg {
  color: var(--color-accent);
}
.license__item:nth-child(3) {
  border-color: rgba(255, 204, 51, 0.2);
}
.license__item:nth-child(3) .license__item-icon {
  background-color: rgba(255, 204, 51, 0.2);
}
.license__item:nth-child(3) svg {
  color: var(--color-yellow);
}
.license__item-icon {
  border-radius: 0.75rem;
  width: 3rem;
  height: 3rem;
  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;
  background-color: rgba(51, 204, 51, 0.2);
  margin-bottom: 1.5rem;
}
.license__item-icon svg {
  color: var(--color-green);
}
.license__item-title {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.license__item-text {
  color: var(--color-text);
}
.license__disclaimer {
  padding: 2rem;
  border-radius: 0.75rem;
  background: var(--gradient-accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
  border: 1px solid #29293d;
}
@media screen and (max-width: 768.98px) {
  .license__disclaimer {
    padding: 1rem;
  }
}
.license__disclaimer-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  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;
  background: rgba(240, 66, 66, 0.2);
}
@media screen and (max-width: 768.98px) {
  .license__disclaimer-icon {
    display: none;
  }
}
.license__disclaimer-icon svg {
  color: var(--color-red);
}
.license__disclaimer-title {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}
.license__disclaimer-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.license__disclaimer-list span {
  font-family: "Merriweather";
  color: var(--color-red);
}
.license__disclaimer-text {
  margin-bottom: 1rem;
}

.footer {
  background: var(--gradient-hero);
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .footer {
    padding-top: 1.5rem;
  }
}
.footer__list {
  margin-bottom: 1.5rem;
  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-yellow);
}
.footer a:hover {
  color: var(--color-warning);
}
.footer__help {
  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;
  margin-bottom: 1.5rem;
}
@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__media {
  max-width: 180px;
  width: 100%;
  padding: 0.625rem;
}
.footer__media svg {
  margin: 0 auto;
  display: block;
}
.footer__description p + p {
  margin-top: 1.5rem;
}
.footer__description b {
  font-size: 18px;
}
.footer__copy {
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  border-top: 1px solid #acacac;
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.cookies-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #121217;
  color: var(--color-light);
  padding: 1.5rem 1rem;
  text-align: center;
  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: 1rem;
}
.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: 0.5rem 1rem;
  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: #1dd494;
  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: 5rem 0;
  color: var(--color-light);
  background: url(../img/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-text);
  z-index: 2;
  position: relative;
}
.service-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}
.service-page h3 {
  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: 20px;
}
.service-page ul li {
  list-style-type: disc;
}
.service-page ul li + li {
  margin-top: 0.25rem;
}
.service-page a {
  color: var(--color-yellow);
}
.service-page a:hover {
  color: var(--color-pink);
}
.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;
  border-radius: 1rem;
  background: var(--gradient-hero);
  border: 2px solid rgba(204, 102, 255, 0.2);
}
.service-page__text {
  margin-bottom: 1rem;
}
.service-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

/*  COMPONENTS  */