@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: #2ecc95;
  --color-accent: #839bf2;
  --color-btn: #26408b;
  --color-warning: #f87171;
}

*,
*::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-light);
  background: 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;
}
@media screen and (max-width: 480.98px) {
  .container {
    padding: 0 10px;
  }
}

.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-wrapper {
  background-image: url(../images/hero.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  position: relative;
  z-index: 2;
}
.section-wrapper:before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

/*  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: 8px 16px;
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  color: var(--color-light);
  border: var(--color-primary);
  z-index: 2;
}
.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(-250%) skewX(-45deg);
  transform: translateX(-250%) 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(250%) skewX(-45deg);
  transform: translateX(250%) skewX(-45deg);
}

/*  COMPONENTS  */
/*  STRUCTURE  */
.header {
  padding: 12px 0;
  position: absolute;
  left: 0;
  right: 0;
}
@media screen and (max-width: 480.98px) {
  .header {
    padding: 6px 0;
  }
}
.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;
  gap: 20px;
}
.header__logo {
  max-width: 50px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.header__disclaimer {
  background-color: #facc15;
  padding: 0.25rem 0;
  color: var(--color-dark);
}
.header__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: 1.25rem;
}
@media screen and (max-width: 768.98px) {
  .header__info {
    font-size: 0.625rem;
    gap: 0.5rem;
  }
  .header__info svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
  }
}

.hero {
  padding: calc(40px + 1.5rem) 0 1.5rem;
}
@media screen and (max-width: 480.98px) {
  .hero {
    padding: calc(52px + 0.5rem) 0 1rem;
  }
}
.hero__title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 3.5rem;
}
@media screen and (max-width: 992.98px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768.98px) {
  .hero__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 480.98px) {
  .hero__title {
    font-size: 1.5rem;
  }
}
.hero__text {
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 992.98px) {
  .hero__text {
    display: none;
  }
}
.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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
  }
}
.hero__item {
  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;
}
s .hero__item:first-child img {
  width: 20px;
  height: auto;
}
.hero__item img {
  width: auto;
  height: 20px;
}
@media screen and (max-width: 992.98px) {
  .hero__item span {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768.98px) {
  .hero__item span {
    font-size: 0.75rem;
  }
}

.companies {
  padding: 2rem 0 4rem;
  position: relative;
  z-index: 2;
}
.companies:after {
  position: absolute;
  content: "";
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgb(0, 0, 0))
  );
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: -1;
}
@media screen and (max-width: 768.98px) {
  .companies {
    padding: 1.5rem 0;
  }
}
@media screen and (max-width: 480.98px) {
  .companies {
    padding: 0;
  }
}

.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;
  border: 1px solid var(--color-accent);
  border-radius: 1.25rem;
  padding: 1rem;
  margin-bottom: 2rem;
  gap: 1rem;
  backdrop-filter: blur(12px);
}
@media screen and (max-width: 992.98px) {
  .company {
    max-width: 560px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto 1rem;
  }
}
@media screen and (max-width: 480.98px) {
  .company {
    gap: 0.5rem;
  }
}
.company__media {
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 992.98px) {
  .company__media {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
  }
}
@media screen and (max-width: 480.98px) {
  .company__media {
    max-width: 120px;
  }
}
.company__bonus {
  text-align: center;
  max-width: 340px;
  width: 100%;
}
.company__bonus span {
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.company__bonus p {
  font-size: 1.25rem;
}
@media screen and (max-width: 480.98px) {
  .company__bonus p {
    font-size: 1rem;
  }
}
.company__payment {
  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: 1.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 992.98px) {
  .company__payment {
    max-width: 300px;
    gap: 0.5rem;
  }
}
.company__payment img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 3rem);
  flex: 0 1 calc(50% - 3rem);
}
@media screen and (max-width: 992.98px) {
  .company__payment img {
    -ms-flex-preferred-size: calc(33% - 3rem);
    flex-basis: calc(33% - 3rem);
  }
}
.company__score {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 992.98px) {
  .company__score {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
.company__score span {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 480.98px) {
  .company__score span {
    font-size: 1.25rem;
  }
}
.company__score svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #facc15;
}
@media screen and (max-width: 480.98px) {
  .company__score svg {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 768px) {
  .company {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .company > * {
    flex: 0 1 calc(50% - 1rem);
  }
  @media screen and (max-width: 480.98px) {
    .company__payment {
      flex-basis: 100%;
      max-width: 100%;
    }
    .company__bonus {
      flex-basis: 100%;
      max-width: 100%;
    }
    .company__btn {
      font-size: 14px;
    }
  }
  .company__score {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .company__score p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
}
.company__score-rate {
  margin-top: 6px;
}
.company__list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 992.98px) {
  .company__list {
    flex-direction: row;
  }
}
.company__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}
.company__list span {
  font-size: 18px;
  font-weight: 700;
}
.company__btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid var(--color-accent);
  padding: 0.5rem 1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  justify-content: center;
  max-width: 180px;
  width: 100%;
}
.company__btn:hover {
  border-color: var(--color-primary);
}

.reviews {
  padding: 5rem;
}
@media screen and (max-width: 992.98px) {
  .reviews {
    padding: 2.5rem 0;
  }
}
.reviews__title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}
@media screen and (max-width: 992.98px) {
  .reviews__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768.98px) {
  .reviews__title {
    font-size: 1.5rem;
  }
}
.reviews__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;
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .reviews__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.reviews__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;
  gap: 0.25rem;
  margin: 0 auto 1rem;
}
.reviews__media img {
  width: 1rem;
  height: 1rem;
  color: var(--color-warning);
}
.reviews__text {
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
}
.reviews__author {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.faq {
  padding: 5rem 0;
}
@media screen and (max-width: 992.98px) {
  .faq {
    padding: 2.5rem 0;
  }
}
.faq__title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}
@media screen and (max-width: 992.98px) {
  .faq__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768.98px) {
  .faq__title {
    font-size: 1.5rem;
  }
}
.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  background: white;
  color: var(--color-dark);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq__item.active .faq__question::after {
  content: "-";
}
.faq__question {
  padding: 1rem 2rem 1rem 1rem;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}
.faq__question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.faq__answer {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  padding: 0 1rem;
}
.faq__answer-content {
  padding: 0 0 1rem 0;
}

.info {
  padding: 5rem 0;
}
@media screen and (max-width: 992.98px) {
  .info {
    padding: 2.5rem 0;
  }
}
.info__title {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768.98px) {
  .info__title {
    text-align: center;
  }
}
.info__text {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768.98px) {
  .info__text {
    text-align: center;
  }
}

.footer {
  padding: 3rem 0 1rem;
  background: #202020;
}
.footer__responsible {
  margin-bottom: 2rem;
}
@media screen and (max-width: 992.98px) {
  .footer__responsible {
    text-align: center;
  }
}
.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;
}
.footer__list {
  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;
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .footer__list {
    text-align: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer__copy {
  padding-top: 1rem;
  margin-top: 1rem;
  text-align: center;
  border-top: 1px solid #d9d9d9;
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.cookies-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #101423;
  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: 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: #facc15;
  color: var(--color-dark);
  -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;
  font-weight: 700;
}

#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-color: var(--color-dark);
  background-image: url(../images/hero.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.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-top: -0.5rem;
  margin-bottom: 1rem;
  padding-left: 18px;
}
.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: 50px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}
.service-page__text {
  margin-bottom: 1rem;
}
.service-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

/*  COMPONENTS  */
