@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: #0e4da0;
  --color-accent: #fbbd23;
  --color-light-accent: #EAC566;
  --color-btn: #26408B;
  --color-text: #627084;
  --color-border: #d9dfe8;
  --color-warning: #f15353;
}

*,
*::before,
*::after {
  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);
  background: linear-gradient(to right, #ffeedd, #ffe6f0, #f5eaff);
}

body.lock {
  overflow: hidden;
}

a {
  color: var(--color-accent);
  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);
  transform: translateX(-200%) skewX(-45deg);
  transition: all 2s ease;
}
.main__btn:hover::before {
  transform: translateX(200%) skewX(-45deg);
}

.section__title {
  max-width: 600px;
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1200.98px) {
  .section__title {
    font-size: 2rem;
  }
}
.section__title span {
  color: var(--color-primary);
}

/*  COMPONENTS  */
.btn {
  display: flex;
  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;
  transition: all 0.3s ease;
}
.main__btn::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.3);
  filter: blur(24px);
  z-index: -1;
  transform: translateX(-350%) skewX(-45deg);
  transition: all 1s ease;
}
.main__btn:hover {
  color: var(--color-light);
}
.main__btn:hover::before {
  transform: translateX(350%) skewX(-45deg);
}

/*  COMPONENTS  */
/*  STRUCTURE  */
.header {
  position: absolute;
  width: 100%;
  height: 80px;
  z-index: 10;
}
.header__logo {
  max-width: 70px;
  width: 100%;
  display: block;
  text-align: center;
  margin: 10px auto;
}
.header__disclaimer {
  padding: 0.5rem 0;
  background-color: var(--color-primary);
  color: var(--color-light);
  text-align: center;
}

.hero {
  padding: calc(30px + 5rem) 0 5rem;
  background: url(../img/intro.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  position: relative;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768.98px) {
  .hero {
    padding: calc(60px + 1.875rem) 0 1.875rem;
  }
}
.hero__title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 3.75rem;
  line-height: 1;
}
.hero__title span {
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, var(--color-accent), var(--color-light-accent));
}
@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 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 480.98px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}
.hero__text {
  font-size: 1.5rem;
  line-height: 2rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}
@media screen and (max-width: 480.98px) {
  .hero__text {
    font-size: 1rem;
  }
}
.hero__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .hero__list {
    display: none;
  }
}
.hero__item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.hero__item svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}
.hero__item p {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.hero__item-title {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.operators {
  padding: 1.875rem 0;
}

.operator {
  position: relative;
  max-width: 42rem;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 1.5rem;
  color: var(--color-dark);
  background: var(--color-light);
  border: 1px solid var(--color-primary);
  transition: all 0.5s ease-in-out;
}
.operator:hover {
  box-shadow: 0 0 30px rgba(51, 187, 255, 0.5);
}
@media screen and (max-width: 992.98px) {
  .operator {
    max-width: 480px;
    margin: 0 auto;
  }
}
.operator__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
}
@media screen and (max-width: 768.98px) {
  .operator__inner {
    padding: 1rem;
    gap: 1rem;
  }
}
.operator__media {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.operator__media img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.25rem;
  filter: invert(1);
}
.operator__rating {
  display: flex;
  align-items: center;
}
.operator__rating svg {
  width: 1rem;
  height: 1rem;
  color: #facc15;
}
.operator__rating-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-text);
  margin-left: 0.5rem;
}
.operator__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(--color-accent);
  color: var(--color-dark);
}
.operator__bonus {
  border-radius: 0.75rem;
  background: rgba(51, 187, 255, 0.2);
  text-align: center;
  border: 1px solid var(--color-primary);
}
.operator__bonus-text {
  color: var(--color-dark);
  padding: 1rem;
  font-size: 0.875rem;
}
.operator__bonus-text span {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-top: 0.25rem;
}
.operator__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.operator__item {
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid rgba(51, 187, 255, 0.2);
  background: rgba(3, 19, 40, 0.0705882353);
}
.operator__item:nth-child(1) svg {
  color: var(--color-primary);
}
.operator__item:nth-child(1) p {
  color: var(--color-primary);
}
.operator__item:nth-child(2) {
  border-color: rgba(251, 208, 81, 0.2);
}
.operator__item:nth-child(2) p {
  color: var(--color-accent);
}
.operator__item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}
.operator__item-text {
  font-size: 1rem;
  font-weight: 600;
}
.operator__item-text span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.operator__pay-list {
  display: flex;
  gap: 0.5rem;
}
.operator__pay-item {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.125rem 0.625rem;
  font-weight: 700;
  background: #f0f2f4;
  border-radius: 100px;
}
.operator__btn {
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--color-light);
  background: var(--color-primary);
  max-width: 100%;
  width: 100%;
  text-align: center;
}
.operator__btn:hover {
  color: var(--color-accent);
}
.operator__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768.98px) {
  .operator__info {
    display: none;
  }
}
.operator__info-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.operator__info-item svg {
  width: 1rem;
  height: 1rem;
}

.choose {
  padding: 5rem 0;
}
@media screen and (max-width: 992.98px) {
  .choose {
    padding: 1.875rem 0;
  }
}
.choose__title {
  margin-bottom: 3rem;
}
.choose__inner {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 768.98px) {
  .choose__inner {
    grid-template-columns: 1fr;
  }
}
.choose__card {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  background: var(--color-light);
  display: flex;
  gap: 1rem;
}
.choose__media {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(14, 77, 160, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose__media svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary);
}
.choose__card-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.choose__card-text {
  color: var(--color-text);
}

.criteria {
  padding: 5rem 0;
}
@media screen and (max-width: 992.98px) {
  .criteria {
    padding: 1.875rem 0;
  }
}
.criteria__title {
  margin-bottom: 1rem;
}
.criteria__subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text);
}
.criteria__inner {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 768.98px) {
  .criteria__inner {
    grid-template-columns: 1fr;
  }
}
.criteria__item {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  background: var(--color-light);
  display: flex;
  gap: 1rem;
}
.criteria__media {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(14, 77, 160, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
}
.criteria__media svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary);
}
.criteria__item-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.criteria__item-text {
  color: var(--color-text);
}

.faq {
  padding: 5rem 0;
}
@media screen and (max-width: 992.98px) {
  .faq {
    padding: 1.875rem 0;
  }
}
.faq__subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text);
}
.faq__inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__title {
  text-align: center;
  margin-bottom: 2rem;
}
.faq__item {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  box-shadow: 0 4px 12px hsla(215, 25%, 15%, 0.08);
}
.faq__item.active .faq__question::after {
  transform: rotate(45deg);
}
.faq__question {
  color: var(--color-dark);
  background: var(--color-light);
  width: 100%;
  text-align: left;
  padding: 1rem;
  border: none;
  outline: none;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768.98px) {
  .faq__question {
    font-size: 1.125rem;
    padding-right: 1.5rem;
  }
}
.faq__question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 1rem;
  transition: transform 0.3s ease;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  background: var(--color-light);
  transition: max-height 0.35s ease;
}
.faq__answer p {
  padding: 0 1rem 1rem;
  margin: 0;
  color: var(--color-text);
}
@media screen and (max-width: 768.98px) {
  .faq__answer p {
    font-size: 0.75rem;
  }
}

.glossary {
  padding: 5rem 0;
}
@media screen and (max-width: 992.98px) {
  .glossary {
    padding: 1.875rem 0;
  }
}
.glossary__title {
  margin-bottom: 1rem;
}
.glossary__subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text);
}
.glossary__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 56rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 992.98px) {
  .glossary__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .glossary__list {
    grid-template-columns: 1fr;
  }
}
.glossary__item {
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  background: var(--color-light);
  display: flex;
  gap: 1rem;
}
.glossary__media svg {
  color: var(--color-primary);
  width: 1.25rem;
  height: 1.25rem;
}
.glossary__item-title {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.glossary__item-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-text);
}

.responsible {
  padding: 5rem 0;
}
@media screen and (max-width: 992.98px) {
  .responsible {
    padding: 1.875rem 0;
  }
}
.responsible__title {
  margin-bottom: 1rem;
}
.responsible__subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text);
}
.responsible__inner {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 768.98px) {
  .responsible__inner {
    grid-template-columns: 1fr;
  }
}
.responsible__item {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  background: var(--color-light);
  display: flex;
  gap: 1rem;
}
.responsible__media {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(14, 77, 160, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
}
.responsible__media svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary);
}
.responsible__item-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
}
.responsible__item-text {
  color: var(--color-text);
}

.footer {
  background: linear-gradient(to right, #ffeedd, #ffe6f0, #f5eaff);
  padding: 3rem 0 0;
}
@media screen and (max-width: 992.98px) {
  .footer {
    padding-top: 1.5rem;
  }
}
.footer__list {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 992.98px) {
  .footer__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768.98px) {
  .footer__list {
    flex-direction: column;
  }
}
.footer a {
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
}
.footer a::before {
  content: "";
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  position: absolute;
  height: 1px;
  background-color: var(--color-primary);
  transition: all 0.3s ease-in-out;
}
.footer a:hover::before {
  width: 100%;
}
.footer__help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 992.98px) {
  .footer__help {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer__help a::before {
  content: none;
}
.footer__media {
  max-width: 150px;
  width: 100%;
  padding: 0.625rem;
}
.footer__media svg {
  margin: 0 auto;
  display: block;
}
.footer__description {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 992.98px) {
  .footer__description {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .footer__description {
    grid-template-columns: 1fr;
  }
}
.footer__text {
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-text);
  padding: 1rem;
  background: var(--color-light);
  border: 1px solid #d9dfe8;
  border-radius: 0.75rem;
}
.footer__text span {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.footer__copy {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #acacac;
  color: var(--color-text);
}
@media screen and (max-width: 768.98px) {
  .footer__copy {
    padding: 1rem 0;
  }
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.cookies-banner {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 28rem;
  width: 100%;
  border-radius: 0.75rem;
  background: var(--color-light);
  color: var(--color-dark);
  padding: 1.5rem 1rem;
  z-index: 1000;
  display: none;
  justify-content: space-between;
  gap: 1rem;
  border: 2px solid rgba(14, 77, 160, 0.2);
}
.cookies-banner svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--color-accent);
}
.cookies-banner__title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
}
.cookies-banner__text {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #627084;
  margin-bottom: 0.75rem;
}
.cookies-banner__btns {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
}
@media screen and (max-width: 480.98px) {
  .cookies-banner__btns {
    flex-wrap: wrap;
  }
}
.cookies-banner__btns a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  position: relative;
}
.cookies-banner__btns a::before {
  content: "";
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  position: absolute;
  height: 1px;
  background-color: var(--color-primary);
  transition: all 0.3s ease-in-out;
}
.cookies-banner__btns a:hover::before {
  width: 100%;
}
.cookies-banner button {
  padding: 0.5rem 0.75rem;
  border: none;
  cursor: pointer;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  display: inline-block;
}

#accept-cookies {
  background-color: var(--color-primary);
  color: var(--color-light);
  font-weight: 700;
  transition: transform 0.5s ease;
}

#accept-cookies:hover {
  transform: scale(1.1);
}

#reject-cookies {
  background-color: var(--color-light);
  color: var(--color-dark);
  font-weight: 700;
  transition: transform 0.5s ease;
  border: 1px solid #d9dfe8;
}
#reject-cookies:hover {
  background: var(--color-accent);
}

#reject-cookies:hover {
  transform: scale(1.1);
}

.service-page {
  padding: 5rem 0;
}
.service-page h1 {
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, var(--color-accent), var(--color-light-accent));
}
.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 a {
  color: var(--color-primary);
  font-weight: 500;
}
.service-page a:hover {
  color: var(--color-light-accent);
}
.service-page__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1.625;
  text-align: center;
  color: var(--color-dark);
}
.service-page__subtitle {
  text-align: center;
}
.service-page__content {
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  background: var(--color-light);
}
.service-page__text {
  margin-bottom: 1rem;
}
.service-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

/*  COMPONENTS  *//*# sourceMappingURL=main.css.map */