@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: #ffc105;
  --color-accent: #8b5cf6;
  --color-blue: #3730a3;
  --color-green: #15dc47;
  --color-pink: #fe68c4;
  --color-red: #ef4343;
  --color-title: #f5f5f5;
  --color-text: #a6a6a6;
  --color-btn: #26408B;
  --color-warning: #ec4b4b;
  --color-border: rgba(146, 52, 234, 0.2);
  --gradient: linear-gradient(135deg, var(--color-warning), var(--color-primary));
  --gradient-accent: linear-gradient(135deg, #f59f0a 0%, #f7b23b 100%);
  --gradint-primary: linear-gradient(135deg, #0d3387 0%, #0f3ea3 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%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-light);
  background: #020202;
}

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 {
  font-size: 3rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--color-title);
}
@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 {
  display: none;
}

.hero {
  background: url(../img/wrapper.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
  color: #fff;
  position: relative;
  z-index: 2;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#020202));
  background: linear-gradient(to bottom, transparent, #020202);
}
@media screen and (max-width: 768.98px) {
  .hero {
    padding: 1.875rem 0;
  }
}
.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: var(--gradient);
}
.hero__title span:nth-child(2) {
  color: var(--color-accent);
}
@media screen and (max-width: 992.98px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768.98px) {
  .hero__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}
.hero__text {
  color: var(--color-text);
  text-align: center;
}
.hero__text:not(:last-child) {
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 480.98px) {
  .hero__text {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}

.companies {
  padding: 3rem 0;
  background: #020202;
}
@media screen and (max-width: 992.98px) {
  .companies {
    padding: 1.875rem 0;
  }
}
.companies__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;
}

.company {
  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;
  border-radius: 1.5rem;
  background: #0f0f0f;
  color: var(--color-light);
  padding: 1.5rem;
  position: relative;
  border: 3px solid #8b5cf6;
  -webkit-box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5019607843);
          box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5019607843);
}
@media screen and (max-width: 992.98px) {
  .company {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 480px;
    margin: 0 auto;
    padding: 1rem;
  }
}
.company__label {
  position: absolute;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 0.875rem;
  top: -13px;
  left: 20px;
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  background: var(--gradient);
}
@media screen and (max-width: 992.98px) {
  .company__heading {
    margin: 0 auto;
  }
}
.company__heading img {
  max-width: 250px;
  width: 100%;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #0a0a0a;
  border-radius: 10px;
  padding: 8px;
  border: 1px solid #334155;
}
.company__heading-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;
  gap: 1rem;
}
@media screen and (max-width: 480.98px) {
  .company__heading-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
.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: #0a0a0a;
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #334155;
  margin-bottom: 1rem;
  text-align: center;
}
.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__payment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
}
.company__payment img {
  max-width: 100px;
  width: 100%;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: saturate(0.8) contrast(1.1);
          filter: saturate(0.8) contrast(1.1);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 1px;
  border: 1px solid #334155;
  margin: 0 auto;
}
.company__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--color-blue), var(--color-accent));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  padding: 0.75rem 1rem;
}
@media screen and (max-width: 992.98px) {
  .company__btn {
    max-width: 100%;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.help {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .help {
    padding: 1.875rem 0;
  }
}
.help__title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 992.98px) {
  .help__title {
    font-size: 1.5rem;
    line-height: 2.125rem;
  }
}
.help__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 992.98px) {
  .help__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .help__list {
    grid-template-columns: 1fr;
  }
}
.help__item {
  background: #191d24;
  border-radius: 0.75rem;
  border: 1px solid #303541;
  padding: 1.5rem;
}
.help__item:nth-child(1), .help__item:nth-child(2), .help__item:nth-child(3) {
  grid-column: span 2;
}
@media screen and (max-width: 992.98px) {
  .help__item:nth-child(1), .help__item:nth-child(2), .help__item:nth-child(3) {
    grid-column: unset;
  }
}
.help__item:nth-child(4), .help__item:nth-child(5) {
  grid-column: span 3;
}
@media screen and (max-width: 992.98px) {
  .help__item:nth-child(4), .help__item:nth-child(5) {
    grid-column: unset;
  }
}
@media screen and (max-width: 992.98px) {
  .help__item:nth-child(5) {
    grid-column: span 2;
  }
}
@media screen and (max-width: 768.98px) {
  .help__item:nth-child(5) {
    grid-column: 1;
  }
}
.help__media {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.help__item-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
}
.help__text {
  color: var(--color-text);
}

.criteria {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .criteria {
    padding: 1.875rem 0;
  }
}
.criteria__title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 992.98px) {
  .criteria__title {
    font-size: 1.5rem;
    line-height: 2.125rem;
  }
}
.criteria__text {
  color: var(--color-text);
  margin-bottom: 2rem;
}
.criteria__list {
  padding-left: 20px;
}
.criteria__item {
  list-style-type: disc;
  margin-bottom: 1rem;
  color: var(--color-text);
}
.criteria__item::marker {
  color: var(--color-accent);
}
.criteria__item strong {
  font-weight: 700;
  color: var(--color-light);
}

.how {
  padding: 3rem 0;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .how {
    padding: 1.875rem 0;
  }
}
.how__title {
  margin-bottom: 1rem;
  font-size: 1.875rem;
}
@media screen and (max-width: 768.98px) {
  .how__title {
    font-size: 1.5rem;
  }
}
.how__text {
  color: var(--color-text);
  margin-bottom: 3rem;
  text-align: center;
}
.how__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 992.98px) {
  .how__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .how__list {
    grid-template-columns: 1fr;
  }
}
.how__item {
  background: #191d24;
  border-radius: 0.75rem;
  border: 1px solid #303541;
  padding: 1.5rem;
}
.how__item:nth-child(1), .how__item:nth-child(2), .how__item:nth-child(3) {
  grid-column: span 2;
}
@media screen and (max-width: 992.98px) {
  .how__item:nth-child(1), .how__item:nth-child(2), .how__item:nth-child(3) {
    grid-column: unset;
  }
}
.how__item:nth-child(4), .how__item:nth-child(5) {
  grid-column: span 3;
}
@media screen and (max-width: 992.98px) {
  .how__item:nth-child(4), .how__item:nth-child(5) {
    grid-column: unset;
  }
}
@media screen and (max-width: 992.98px) {
  .how__item:nth-child(5) {
    grid-column: span 2;
  }
}
@media screen and (max-width: 768.98px) {
  .how__item:nth-child(5) {
    grid-column: 1;
  }
}
.how__item h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
}
.how__item p {
  color: var(--color-text);
}

.bonus {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .bonus {
    padding: 1.875rem 0;
  }
}
.bonus__title {
  margin-bottom: 2rem;
  font-size: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 768.98px) {
  .bonus__title {
    font-size: 1.5rem;
  }
}
.bonus__list {
  display: grid;
  gap: 1.5rem;
}
.bonus__item {
  background: #191d24;
  border-radius: 0.75rem;
  border: 1px solid #303541;
  padding: 1.5rem;
}
.bonus__item h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
}
.bonus__item p {
  color: var(--color-text);
}

.info {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .info {
    padding: 1.875rem 0;
  }
}
.info__title {
  margin-bottom: 2rem;
  font-size: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 768.98px) {
  .info__title {
    font-size: 1.5rem;
  }
}
.info__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 768.98px) {
  .info__inner {
    grid-template-columns: 1fr;
  }
}
.info__list--plus :first-child {
  color: var(--color-primary);
}
.info__list--minus :first-child {
  color: var(--color-red);
}
.info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.info__item:not(:last-child) {
  margin-bottom: 0.75rem;
}
.info__item:first-child {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}
.info__item span {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.conclusion {
  padding: 3rem 0;
  text-align: center;
}
@media screen and (max-width: 992.98px) {
  .conclusion {
    padding: 1.875rem 0;
  }
}
.conclusion__title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 992.98px) {
  .conclusion__title {
    font-size: 1.5rem;
    line-height: 2.125rem;
  }
}
.conclusion__text {
  margin-bottom: 2rem;
  color: var(--color-text);
  text-align: center;
}
.conclusion__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: #101318;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  border-radius: 0.75rem;
}
.conclusion__btn:hover {
  color: var(--color-blue);
}

.footer {
  background: #16161D;
  color: var(--color-text);
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .footer {
    padding: 1.5rem 0;
  }
}
.footer__title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 992.98px) {
  .footer__title {
    text-align: center;
  }
}
.footer__text {
  margin-bottom: 1rem;
}
@media screen and (max-width: 992.98px) {
  .footer__text {
    text-align: center;
  }
}
.footer__text--white {
  color: var(--color-light);
  font-weight: 700;
}
.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-accent);
}
.footer a:hover {
  color: var(--color-primary);
}
.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;
  }
}
.footer__help-link {
  padding: 0.625rem;
  max-width: 150px;
}
.footer__help-img {
  max-height: 50px;
  width: 100%;
}
.footer__description {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__description p {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media screen and (max-width: 1200.98px) {
  .footer__description {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.footer__copy {
  margin-top: 1rem;
  padding-top: 2rem;
  text-align: center;
  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 h1 {
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  background-image: var(--gradient);
}
.legal-page h3 {
  color: var(--color-light);
  margin-bottom: 1rem;
}
.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-accent);
}
.legal-page li + li {
  margin-top: 0.5rem;
}
.legal-page a {
  color: var(--color-primary);
}
.legal-page a:hover {
  color: var(--color-accent);
}
.legal-page__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1.625;
  text-align: center;
  color: var(--color-title);
}
.legal-page__subtitle {
  text-align: center;
}
.legal-page__content {
  background: #191d24;
  border-radius: 0.75rem;
  border: 1px solid #303541;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.legal-page__text {
  margin-bottom: 1rem;
}
.legal-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

/*  COMPONENTS  */