@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
}
:root {
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-primary: #f7ce2d;
  --color-accent: #a65af2;
  --color-blue: #34a1ea;
  --color-green: #13ec92;
  --color-text: #9ca3af;
  --color-btn: #26408B;
  --color-warning: #f15353;
  --gradient: #13ec92, #a65af2;
}

*,
*::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: "Gilroy", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-dark);
}

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: 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;
  }
}
.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;
  }
}

/*  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 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  height: 70px;
}
.header__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;
}
.header__logo {
  max-width: 70px;
  width: 100%;
  display: block;
}
.header__location {
  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;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-light);
  font-weight: 500;
  background: #dc2626;
  border-radius: 100px;
}

.hero {
  padding: calc(5rem + 70px) 0 5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url(../img/bg.webp);
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}
@media screen and (max-width: 768.98px) {
  .hero {
    padding: calc(1.875rem + 70px) 0 1.875rem;
  }
}
.hero__title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 4.5rem;
  line-height: 1;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.hero__title span {
  display: block;
}
.hero__title span:nth-child(1) {
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--gradient)));
  background-image: linear-gradient(to right, var(--gradient));
}
.hero__title span:nth-child(2) {
  color: var(--color-green);
}
@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__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;
  margin: 0 auto 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.5rem;
}
.hero__item svg {
  color: var(--color-primary);
  width: 1.5rem;
  height: 1.5rem;
}
.hero__item p {
  font-size: 1.125rem;
}
@media screen and (max-width: 480.98px) {
  .hero__item p {
    font-size: 0.75rem;
  }
}
.hero__intro {
  padding: 2rem;
  background: #16161D;
  text-align: center;
  border-radius: 1rem;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  backdrop-filter: blur(4px);
}
@media screen and (max-width: 480.98px) {
  .hero__intro {
    padding: 1rem;
  }
}
.hero__intro-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  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;
}
@media screen and (max-width: 480.98px) {
  .hero__intro-title {
    font-size: 1.25rem;
  }
}
.hero__intro-title svg {
  width: 2rem;
  height: 2rem;
}
.hero__intro-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 480.98px) {
  .hero__intro-subtitle {
    font-size: 1rem;
  }
}
.hero__intro-text {
  color: var(--color-text);
}

.companies {
  padding: 3rem 0;
  background: #020817;
}
@media screen and (max-width: 992.98px) {
  .companies {
    padding: 1.875rem 0;
  }
}
.companies__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 1200.98px) {
  .companies__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .companies__inner {
    grid-template-columns: 1fr;
  }
}

.company {
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 1.5rem;
  background-color: #16161D;
  color: var(--color-light);
  padding: 1.5rem;
  position: relative;
  border: 1px solid #293132;
}
.company__label {
  position: absolute;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 0.875rem;
  top: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  background: -webkit-gradient(linear, left top, right top, from(var(--gradient)));
  background: linear-gradient(to right, var(--gradient));
}
.company__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 360px) {
  .company__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company__heading img {
  max-width: 120px;
}
@media screen and (max-width: 360px) {
  .company__heading img {
    max-width: 200px;
  }
}
@media screen and (max-width: 360px) {
  .company__heading-info {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.company__heading-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company__heading-rating svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-primary);
}
.company__heading-score {
  font-weight: 700;
  color: var(--color-green);
  margin-left: 0.75rem;
}
.company__heading-vote {
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.company__bonus {
  background-color: #332D46;
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(146, 52, 234, 0.2);
  margin-bottom: 0.75rem;
}
.company__bonus-title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-blue);
}
.company__bonus-text {
  font-weight: 700;
  color: var(--color-green);
}
.company__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  padding-left: 20px;
}
.company__item {
  list-style-type: disc;
  font-size: 0.875rem;
}
.company__item::marker {
  color: var(--color-primary);
}
.company__btn {
  display: block;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0.75rem;
  background: -webkit-gradient(linear, left top, right top, from(var(--gradient)));
  background: linear-gradient(to right, var(--gradient));
  padding: 0.75rem 1rem;
}
@media screen and (max-width: 768.98px) {
  .company__btn {
    max-width: 100%;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.trust {
  padding: 3rem 0;
  background: #0a172f;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .trust {
    padding: 1.875rem 0;
  }
}
.trust__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 992.98px) {
  .trust__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .trust__list {
    grid-template-columns: 1fr;
  }
}
.trust__item {
  background: #16161d;
  border: 1px solid #293132;
  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;
}
.trust__item:nth-child(1) svg {
  color: var(--color-accent);
}
.trust__item:nth-child(2) svg {
  color: var(--color-primary);
}
.trust__item:nth-child(3) svg {
  color: var(--color-blue);
}
.trust__item:nth-child(4) svg {
  color: var(--color-green);
}
.trust__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;
}
.trust__media svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
}
.trust__item-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.trust__text {
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.625;
}
.trust__label {
  padding: 0.25em 0.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--color-blue);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  gap: 0.5rem;
  background: rgba(22, 162, 73, 0.1);
}
.trust__label svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-blue) !important;
}
.trust__label span {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.reviews {
  padding: 3rem 0;
  background: #020817;
}
@media screen and (max-width: 992.98px) {
  .reviews {
    padding: 1.875rem 0;
  }
}
.reviews__title {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-accent);
}
.reviews__subtitle {
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-align: center;
  margin-bottom: 3rem;
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 992.98px) {
  .reviews__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .reviews__list {
    grid-template-columns: 1fr;
  }
}
.reviews__item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: #16161D;
  border: 1px solid #293132;
}
.reviews__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
.reviews__heading-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background: -webkit-gradient(linear, left top, right bottom, from(var(--gradient)));
  background: linear-gradient(to right bottom, var(--gradient));
  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;
  color: var(--color-light);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.reviews__author-name {
  color: var(--color-light);
  font-weight: 600;
  margin-bottom: 0.125rem;
}
.reviews__author-rating svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-primary);
}
.reviews__text {
  color: var(--color-text);
  font-style: italic;
  line-height: 1.625;
}

.advice {
  padding: 3rem 0;
  color: var(--color-light);
  background: #0a172f;
}
@media screen and (max-width: 992.98px) {
  .advice {
    padding: 1.875rem 0;
  }
}
.advice__inner {
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid #293132;
  background: #16161D;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768.98px) {
  .advice__inner {
    padding: 1.25rem;
  }
}
.advice__title {
  margin-bottom: 2rem;
  font-size: 1.875rem;
}
@media screen and (max-width: 768.98px) {
  .advice__title {
    font-size: 1.5rem;
  }
}
.advice__subtitle {
  font-size: 1.125rem;
  max-width: 100%;
}
.advice__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 992.98px) {
  .advice__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .advice__list {
    grid-template-columns: 1fr;
  }
}
.advice__item {
  border-radius: 0.75rem;
  text-align: center;
}
.advice__item:nth-child(1) h3 {
  color: var(--color-accent);
}
.advice__item:nth-child(2) h3 {
  color: var(--color-primary);
}
.advice__item:nth-child(3) h3 {
  color: var(--color-blue);
}
.advice__item:nth-child(4) h3 {
  color: var(--color-green);
}
.advice__item-num {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.advice__item-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}
.advice__item-text {
  color: var(--color-text);
  line-height: 1.625;
}
.advice__info {
  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;
  max-width: 650px;
  margin: 0 auto;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  color: var(--color-success);
  background: rgba(19, 236, 19, 0.1);
  font-weight: 700;
}
@media screen and (max-width: 768.98px) {
  .advice__info {
    font-size: 0.875rem;
  }
}
.advice__info svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer {
  background: #16161D;
  color: var(--color-text);
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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__item:last-child {
  margin-left: auto;
  font-weight: 700;
  color: var(--color-warning);
}
@media screen and (max-width: 992.98px) {
  .footer__item:last-child {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 768.98px) {
  .footer__item:last-child {
    text-align: center;
  }
}
.footer a {
  color: var(--color-green);
}
.footer a:hover {
  color: var(--color-blue);
}
.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;
}
@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: #020817;
  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);
}

.legal-page {
  padding: calc(70px + 3rem) 0 3rem;
  color: var(--color-text);
  background: #020817;
}
.legal-page h2 {
  margin-bottom: 0.625rem;
  color: var(--color-light);
}
.legal-page p {
  margin-bottom: 1rem;
}
.legal-page p.service-page__subtitle {
  margin-bottom: 2.5rem;
}
.legal-page ul {
  margin-bottom: 1rem;
  padding-left: 20px;
}
.legal-page li {
  list-style-type: disc;
}
.legal-page li::marker {
  color: var(--color-blue);
}
.legal-page a {
  color: var(--color-green);
}
.legal-page a:hover {
  color: var(--color-blue);
}
.legal-page__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1.625;
  text-align: center;
}
.legal-page__subtitle {
  text-align: center;
}
.legal-page__content {
  padding: 2rem;
  border-radius: 0.75rem;
  background: #16161D;
}
.legal-page__text {
  margin-bottom: 1rem;
}
.legal-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

/*  COMPONENTS  */