@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: #1d9300;
  --color-accent: #40ff5d;
  --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;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-light);
  background-image: url(../img/1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 2;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.85);
}

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 {
  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: #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);
}

.custom-btn {
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease-in-out;
  color: var(--color-light);
  font-weight: 700;
  background-color: #0d0421;
  border-top-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  z-index: 2;
}
.custom-btn:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.custom-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.custom-btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  padding-block: 50%;
  border-radius: 50%;
  background-color: var(--color-dark);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  transition: 0.5s ease;
}

/*  COMPONENTS  */
/*  STRUCTURE  */
.header {
  background-color: var(--color-dark);
  padding: 12px 0;
  position: relative;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.25);
}
.header__logo {
  max-width: 50px;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
}

.hero {
  background: #0d0421;
  padding: 3rem 0;
}
@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__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;
}
.hero__item img {
  max-width: 24px;
  width: 100%;
}

.cards-offers {
  padding: 1.875rem 0;
}

.card-offer {
  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: #0e1217;
  color: var(--color-light);
  padding: 1rem;
  position: relative;
}
.card-offer::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(270deg, #0e91fd -4.98%, #6027fd 48.42%, #fe274b 96.9%);
  z-index: -1;
  border-radius: 1.5rem;
}
@media screen and (max-width: 768.98px) {
  .card-offer {
    flex-direction: column;
    max-width: 350px;
    width: 100%;
  }
}
@media screen and (max-width: 768.98px) {
  .card-offer {
    padding: 1rem;
  }
}
.card-offer:not(:last-child) {
  margin-bottom: 1.5rem;
}
.card-offer__media {
  max-width: 180px;
  padding: 1rem;
  border: 2px solid #4407c8;
  border-radius: 0.75rem;
  background: linear-gradient(81.27deg, #101318 -0.03%, #171d2c 52.97%, #08090c 99.97%);
  border: 1px solid #2b2e2e;
}
.card-offer__bonus-text {
  max-width: 270px;
  text-align: center;
}
.card-offer__bonus-text span {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
}
.card-offer__list {
  flex-shrink: 0;
}
.card-offer__item span {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.card-offer__item p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.card-offer__item svg {
  width: 1rem;
  height: 1rem;
  color: yellow;
}
.card-offer__btn {
  flex-shrink: 0;
  border: 1px solid var(--color-light);
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 768.98px) {
  .card-offer__btn {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.details {
  padding: 5rem 0;
  color: var(--color-light);
}
.details__inner {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background-color: #0d0421;
}
.details__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 992.98px) {
  .details__title {
    font-size: 1.375rem;
  }
}
.details__text {
  margin-bottom: 1.5rem;
}
.details__list {
  margin-bottom: 1.5rem;
}
.details__list--bold {
  font-weight: 500;
}
.details__item:not(:last-child) {
  margin-bottom: 0.75rem;
}
.details__suplist {
  margin-bottom: 0.5rem;
}

.responsible {
  padding: 5rem 0;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .responsible {
    padding: 1.875rem 0;
  }
}
.responsible__inner {
  border-radius: 1.5rem;
  background-color: #171d35;
  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-color: #0d0421;
  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: 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__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;
}

.disclaimer {
  position: relative;
  z-index: 2;
  padding: 10px;
  margin-bottom: 1.25rem;
}
.disclaimer::before {
  inset: 0;
  content: "";
  position: absolute;
  background: #0e1217;
  z-index: -1;
  border-radius: 8px;
}
.disclaimer::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 8px;
  background: linear-gradient(260.52deg, #1c99fe -4.98%, #7644ff 48.42%, #fd4766 96.9%);
  z-index: -2;
}
.disclaimer__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media screen and (max-width: 992.98px) {
  .disclaimer__title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768.98px) {
  .disclaimer__title {
    font-size: 1rem;
  }
}
.disclaimer__text:not(:last-child) {
  margin-bottom: 0.5rem;
}

/*  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__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: 8px 16px;
  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);
}

.policy-page {
  padding: 3rem 0;
  color: var(--color-light);
}
.policy-page h2 {
  margin-bottom: 0.625rem;
}
.policy-page p {
  margin-bottom: 1rem;
}
.policy-page p.service-page__subtitle {
  margin-bottom: 2.5rem;
}
.policy-page ul {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  padding-left: 20px;
}
.policy-page ul li {
  list-style-type: disc;
}
.policy-page a:hover {
  color: var(--color-primary);
}
.policy-page__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1.625;
  text-align: center;
}
.policy-page__subtitle {
  text-align: center;
}
.policy-page__content {
  padding: 2rem;
  border-radius: 1.25rem;
  background: #0d0421;
}
.policy-page__text {
  margin-bottom: 1rem;
}
.policy-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

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