@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: #2662d9;
  --color-accent: #2eb85c;
  --color-gold: #f4c025;
  --color-btn: #26408B;
  --color-warning: #f15353;
  --gradient-gold: linear-gradient(135deg, hsl(45 90% 55%), hsl(45 85% 65%));
  --gradient-primary: linear-gradient(135deg, hsl(220 70% 50%), hsl(220 70% 60%));
}

*,
*::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);
}

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 3rem;
  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: #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 {
  background-color: var(--color-light);
  padding: 12px 0;
  position: relative;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  max-width: 60px;
  width: 100%;
  display: block;
}
.header__license {
  border: 1px solid #C4EAD1;
  padding: 0.125rem 0.625rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: #2eb85c;
  background: #EAF7EE;
}
.header__license svg {
  width: 1rem;
  height: 1rem;
  color: #2eb85c;
}

.hero {
  padding: 5rem 0;
  background-image: url(../img/hero-img.jfif);
  background-position: center;
  background-size: cover;
  color: #fff;
  z-index: 2;
  position: relative;
}
.hero::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(38, 98, 217, 0.8);
  z-index: -1;
}
@media screen and (max-width: 768.98px) {
  .hero {
    padding: 1.875rem 0;
  }
}
.hero__title {
  margin-bottom: 2rem;
  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;
    margin-bottom: 1rem;
  }
}
.hero__subtitle {
  margin-bottom: 2rem;
  text-align: center;
}
.hero__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  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;
}
@media screen and (max-width: 768.98px) {
  .hero__item {
    font-size: 0.75rem;
  }
}
.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;
  }
}
.hero__item img {
  width: 2rem;
  height: 2rem;
}

.offers {
  padding: 3rem 0;
  background: #F9F9FA;
}
@media screen and (max-width: 992.98px) {
  .offers {
    padding: 1.875rem 0;
  }
}
.offers__title {
  text-align: center;
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 3rem;
}

.offer {
  position: relative;
  max-width: 1000px;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 1.5rem;
  color: var(--color-dark);
  border: 2px solid #e0e5eb;
}
.offer--vip {
  box-shadow: 0 0 0 0px #fff, 0 0 0 2px hsl(45, 90%, 55%), 0 1px 2px 0 hsl(0, 0%, 100%);
}
.offer--vip .offer__btn {
  background: var(--gradient-gold);
  color: var(--color-dark);
}
@media screen and (max-width: 992.98px) {
  .offer {
    max-width: 480px;
    margin: 0 auto;
  }
}
.offer:not(:last-child) {
  margin-bottom: 1.5rem;
}
.offer__label {
  font-weight: 700;
  padding: 0.125rem 0.625rem;
  position: absolute;
  background: var(--gradient-gold);
  color: var(--color-dark);
  border-radius: 100px;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
}
@media screen and (max-width: 480.98px) {
  .offer__label {
    max-width: 80%;
    width: 100%;
    text-align: center;
  }
}
.offer__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
@media screen and (max-width: 992.98px) {
  .offer__inner {
    flex-direction: column;
  }
}
.offer__media img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.offer__rating {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer__rating svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #facc15;
}
.offer__rating-score {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
.offer__bonus-text {
  margin-bottom: 1rem;
}
.offer__bonus-text span {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-top: 0.25rem;
}
.offer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.offer__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.offer__item svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent);
}
.offer__pay-list {
  display: flex;
  gap: 0.5rem;
}
.offer__pay-item {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.125rem 0.625rem;
  font-weight: 700;
  background: #f0f2f4;
  border-radius: 100px;
}
.offer__btn {
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 0.75rem;
  border: 1px solid var(--color-light);
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
}
@media screen and (max-width: 992.98px) {
  .offer__btn {
    margin-left: 0;
  }
}

.how {
  padding: 3rem 0;
  background: #F0F2F4;
}
@media screen and (max-width: 992.98px) {
  .how {
    padding: 1.875rem 0;
  }
}
.how__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .how__list {
    grid-template-columns: 1fr;
  }
}
.how__item {
  padding: 1.5rem;
  border: 1px solid #e0e5eb;
  border-radius: 0.75rem;
  background-color: var(--color-light);
}
.how__item:nth-child(1) svg {
  color: var(--color-primary);
}
.how__item:nth-child(2) svg {
  color: var(--color-gold);
}
.how__item:nth-child(3) svg {
  color: var(--color-accent);
}
.how__item svg {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
}
.how__item-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.reviews {
  padding: 3rem 0;
  background: #F9F9FA;
}
@media screen and (max-width: 992.98px) {
  .reviews {
    padding: 1.875rem 0;
  }
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .reviews__list {
    grid-template-columns: 1fr;
  }
}
.reviews__item {
  padding: 1.5rem;
  border: 1px solid #e0e5eb;
  border-radius: 0.75rem;
  background-color: var(--color-light);
}
.reviews__stars {
  text-align: center;
}
@media screen and (max-width: 768.98px) {
  .reviews__stars {
    text-align: left;
  }
}
.reviews__stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-gold);
}
.reviews__author {
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768.98px) {
  .reviews__author {
    text-align: left;
  }
}
.reviews__text {
  font-style: italic;
  color: #627084;
}

.stats {
  padding: 3rem 0;
  background: var(--gradient-primary);
  color: var(--color-light);
}
.stats__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .stats__list {
    grid-template-columns: 1fr;
  }
}
.stats__item {
  text-align: center;
}
.stats__item svg {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}
.stats__num {
  text-align: center;
  display: block;
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer {
  padding: 3rem 0;
  background: #F0F2F4;
}
@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);
}
.footer a:hover {
  color: var(--color-accent);
}
.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__media {
  max-width: 180px;
  width: 100%;
  padding: 0.625rem;
  height: 100px;
}
.footer__media img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.footer__description {
  margin-bottom: 2rem;
}
.footer__description p + p {
  margin-top: 1.5rem;
}
.footer__description b {
  font-size: 18px;
}
.footer__info {
  padding-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid #e0e5eb;
}
.footer__info svg {
  width: 1.5rem;
  height: 1.5rem;
}
.footer__info img {
  width: 1.5rem;
  height: 1.5rem;
}
.footer__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__info-item span {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.footer__info-item:nth-child(2) svg {
  color: var(--color-primary);
}
.footer__info-item:nth-child(3) svg {
  color: #ee9d2b;
}
.footer__copy {
  text-align: center;
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.cookies-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--color-dark);
  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__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-dark);
  font-weight: 700;
  transition: transform 0.5s ease;
}

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

#reject-cookies {
  background-color: var(--color-warning);
  color: var(--color-dark);
  font-weight: 700;
  transition: transform 0.5s ease;
}

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

.service-page {
  padding: 5rem 0;
  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-bottom: 1rem;
  padding-left: 18px;
}
.service-page li {
  list-style-type: disc;
}
.service-page li + li {
  margin-top: 0.25rem;
}
.service-page a {
  color: var(--color-primary);
}
.service-page a:hover {
  color: var(--color-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: 1.25rem;
  background: #F0F2F4;
  border: 2px solid #e0e5eb;
  color: var(--color-dark);
}
.service-page__text {
  margin-bottom: 1rem;
}
.service-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

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