@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: #50AC6B;
  --color-accent: #BA68C8;
  --color-btn: #26408B;
  --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;
}

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

/*  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: var(--color-accent);
  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;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  background: transparent;
  padding: 12px 0;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.25);
}
.header__logo {
  max-width: 70px;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
}
.header__logo img {
  border-radius: 100%;
}

.hero {
  padding: calc(5rem + 60px) 0 5rem;
  background: url(../img/hero.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  z-index: 2;
}
.hero:before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width: 768.98px) {
  .hero {
    padding: 1.875rem 0;
  }
}
.hero__title {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 4rem;
}
@media screen and (max-width: 992.98px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768.98px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__subtitle {
  text-align: center;
  margin-bottom: 1rem;
}
.hero__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .hero__list {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.hero__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__item svg {
  color: var(--color-light);
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 768.98px) {
  .hero__item svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.operators {
  padding: 1.875rem 0;
}

.operator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 1.5rem;
  background-color: #2B2D42;
  color: var(--color-light);
  padding: 1.5rem;
}
@media screen and (max-width: 768.98px) {
  .operator {
    flex-direction: column;
    max-width: 460px;
    width: 100%;
  }
}
@media screen and (max-width: 768.98px) {
  .operator {
    padding: 1rem;
  }
}
.operator:not(:last-child) {
  margin-bottom: 1.5rem;
}
.operator__media {
  max-width: 180px;
}
.operator__bonus-text {
  max-width: 270px;
  text-align: center;
}
.operator__bonus-text span {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
}
.operator__list {
  flex-shrink: 0;
}
.operator__item p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.operator__item svg {
  width: 1rem;
  height: 1rem;
  color: yellow;
}
.operator__score {
  text-transform: uppercase;
  text-align: center;
}
.operator__score span {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.operator__btn {
  flex-shrink: 0;
  border-radius: 9999px;
  border: 1px solid var(--color-light);
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 768.98px) {
  .operator__btn {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.reviews {
  padding: 5rem 0;
}
@media screen and (max-width: 992.98px) {
  .reviews {
    padding: 3rem 0;
  }
}
.reviews__title {
  margin-bottom: 1rem;
  max-width: 100%;
}
.reviews__disclaimer {
  margin-bottom: 2rem;
}
.reviews__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 992.98px) {
  .reviews__list {
    gap: 1rem;
  }
}
@media screen and (max-width: 768.98px) {
  .reviews__list {
    flex-direction: column;
  }
}
.reviews__item {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--color-primary);
  color: var(--color-light);
  background-color: #171d35;
}
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.reviews__rating svg {
  width: 1.625rem;
  height: 1.625rem;
  color: #facc15;
}
.reviews__text {
  margin-bottom: 1.5rem;
  font-style: italic;
}
.reviews__author {
  font-weight: 700;
  font-size: 1.5rem;
}

.info {
  padding: 5rem 0;
  color: var(--color-light);
  background: #2B2D42;
}
.info__inner {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #2B2D42;
  box-shadow: 10px 10px 20px #202232, -10px -10px 20px #363853;
}
.info__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 992.98px) {
  .info__title {
    font-size: 1.375rem;
  }
}
.info__text {
  margin-bottom: 1.5rem;
}
.info__list {
  margin-bottom: 1.5rem;
}
.info__list--bold {
  font-weight: 500;
}
.info__item:not(:last-child) {
  margin-bottom: 0.75rem;
}
.info__suplist {
  margin-bottom: 0.5rem;
}

.responsible {
  padding: 3rem 0;
  background: #2B2D42;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .responsible {
    padding: 1.875rem 0;
  }
}
.responsible__inner {
  border-radius: 1.5rem;
  background: #2B2D42;
  background: #2B2D42;
  box-shadow: 10px 10px 20px #202232, -10px -10px 20px #363853;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.responsible__text {
  text-align: center;
  margin-bottom: 0.5rem;
}
.responsible__help {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992.98px) {
  .responsible__help {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.responsible__media {
  max-width: 180px;
  width: 100%;
  padding: 0.625rem;
}
.responsible__media svg {
  margin: 0 auto;
  display: block;
}

.footer {
  background: linear-gradient(to right, #ffeedd, #ffe6f0, #f5eaff);
  padding: 3rem 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: flex-start;
  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__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__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: #171d35;
  color: var(--color-light);
  padding: 1.5rem 1rem;
  text-align: center;
  z-index: 1000;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cookies-banner a:hover {
  color: #009fdf;
}
.cookies-banner__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 100%;
  gap: 1rem;
}
@media screen and (max-width: 768.98px) {
  .cookies-banner__btns {
    flex-direction: column;
    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: flex;
  align-items: center;
  justify-content: center;
}

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

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

#reject-cookies {
  background-color: var(--color-warning);
  color: var(--color-primary-light);
  transition: transform 0.5s ease;
}

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

.service-page {
  padding: calc(5rem + 60px) 0 5rem;
  color: var(--color-light);
}
.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;
  color: var(--color-dark);
}
.service-page__subtitle {
  text-align: center;
}
.service-page__content {
  padding: 2rem;
  border-radius: 50px;
  background: #2B2D42;
}
.service-page__text {
  margin-bottom: 1rem;
}
.service-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

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