@font-face {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/RedHatDisplay/RedHatDisplay-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../webfonts/RedHatDisplay/RedHatDisplay-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../webfonts/RedHatDisplay/RedHatDisplay-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../webfonts/RedHatDisplay/RedHatDisplay-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../webfonts/RedHatDisplay/RedHatDisplay-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Bangers";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/Bangers/Bangers-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/Inter/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../webfonts/Inter/Inter-Bold.woff2") format("woff2");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  padding: 0 12px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1140px) {
  .container {
    max-width: 1140px;
  }
}

.container-type {
  container-type: inline-size;
}

.cta {
  font-family: "Shrikhand", sans-serif;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: -2%;
  cursor: pointer;
}
.cta--primary {
  background: #fde655;
  color: #271141;
  border: 1px solid #fde655;
  transition: 0.25s all;
}
.cta--primary:hover {
  background: #7538be;
  color: #fde655;
}
.cta--secondary {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #fff;
  backdrop-filter: blur(4px);
  color: #fff;
  transition: 0.25s all;
}
.cta--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background-color: #050C2D;
  background-image: url("../images/background-desktop.svg"), linear-gradient(180deg, #13245C 19.71%, #050C2D 100%);
  background-position: top center, center;
  background-size: 100% auto, cover;
  background-repeat: no-repeat, no-repeat;
  min-height: 100vh;
}
@media screen and (max-width: 900px) {
  body {
    background-image: url("../images/background-mobile.svg"), linear-gradient(180deg, #13245C 0, #050C2D 20%);
  }
}

.page-wrapper {
  container-type: inline-size;
  position: relative;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.site-main {
  overflow: hidden;
}

.site-header {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 24px);
  max-width: 1024px;
}

.site-header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(57, 58, 142, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 60px;
}
@container (max-width: $breakpoint) {
  .site-header__nav {
    padding: 8px 1px;
  }
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo img {
  display: block;
  width: 66px;
  height: auto;
}
@container (max-width: $breakpoint) {
  .site-header__logo img {
    width: 61px;
  }
}

.site-header__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  height: 48px;
  background: #e903a4;
  border-radius: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  transition: 0.25s all;
  box-sizing: border-box;
  cursor: pointer;
}
.site-header__cta:hover {
  background: #d00393;
}
.site-header__cta svg {
  flex-shrink: 0;
  display: block;
}
@container (max-width: $breakpoint) {
  .site-header__cta svg {
    display: none;
  }
}
@container (max-width: $breakpoint) {
  .site-header__cta {
    padding: 8px 16px;
    height: 32px;
  }
}

@media (max-width: 1050px) {
  .page-wrapper:has(.hero-section.--type-2) .site-header__nav {
    padding: 6px;
  }
}
@media (max-width: 1050px) {
  .page-wrapper:has(.hero-section.--type-2) .site-header__nav .site-header__cta {
    padding: 4px 16px;
    height: auto;
  }
}
@media (max-width: 1050px) {
  .page-wrapper:has(.hero-section.--type-2) .site-header__nav .site-header__logo img {
    max-height: 32px;
  }
}

#footer {
  margin: 48px 0;
}
#footer .site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
#footer .footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
#footer .footer__social__item {
  width: 180px;
  height: 76px;
  border-radius: 16px;
  background: rgba(169, 93, 253, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  text-decoration: none;
}
#footer .footer__social__item__image {
  max-width: 30px;
}
#footer .footer__social__item__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
#footer .footer__social__item__text span:first-child {
  color: #FFF;
  font-family: "Red Hat Display", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 16px;
}
#footer .footer__social__item__text span:last-child {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Red Hat Display", sans-serif;
  font-size: 13px;
  line-height: 16px;
}
#footer .footer-regulators .footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
#footer .footer-regulators a, #footer .footer-regulators span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#footer .footer-regulators a:hover, #footer .footer-regulators span:hover {
  text-decoration: none;
}
#footer .footer-regulators a img, #footer .footer-regulators span img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
#footer .footer-copyrights {
  color: #FFF;
  text-align: center;
  font-family: "Red Hat Display", sans-serif;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.5;
}

/*# sourceMappingURL=style.css.map */
