*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: min(3.8647342995vw, 16px);
}
@media (min-width: 1440px) {
  html {
    font-size: min(24px, 1.1111111111vw);
  }
}
html {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  touch-action: manipulation;
}

body {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: currentcolor;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

summary {
  display: list-item;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  line-height: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: "Poppins", sans-serif;
}

input:focus {
  outline: none;
}

:root {
  --container-width: 1200px;
}

@media (max-width: 1123px) {
  :root {
    --container-width: 100%;
  }
}
.gold {
  color: #F0B749;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
body {
  overflow: hidden;
  overflow-y: scroll;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.layout {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  width: 100%;
  height: fit-content;
  background-color: #141414;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.layout__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
}
.layout__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/gradient-1.webp");
  background-repeat: no-repeat;
  background-position: left top;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1123px) {
  .layout__bg::before {
    display: none;
  }
}
.layout__bg::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/gradient-2.webp");
  background-repeat: no-repeat;
  background-position: right top;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1123px) {
  .layout__bg::after {
    display: none;
  }
}
.layout__bg-gradient {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/gradient-3.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1123px) {
  .layout__bg-gradient {
    display: none;
  }
}
@media (max-width: 1123px) {
  .layout__bg::before {
    display: block;
    background-image: url("../images/mobile-gradient-1.webp");
    background-position: left top;
    background-size: contain;
  }
  .layout__bg::after {
    display: block;
    background-image: url("../images/mobile-gradient-2.webp");
    background-position: right center;
    background-size: contain;
    top: auto;
    bottom: 0;
  }
}

main,
header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
@media (max-width: 1123px) {
  main,
  header {
    gap: 2.875rem;
  }
}

.lower-case {
  text-transform: lowercase !important;
}

a {
  text-decoration: none;
}

.desktop-only {
  display: block;
}
@media (max-width: 1123px) {
  .desktop-only {
    display: none;
  }
}

.mobile-only {
  display: none;
}
@media (max-width: 1123px) {
  .mobile-only {
    display: block;
  }
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.3125rem;
  padding: 9.375rem 0 3rem 0;
  min-height: 36.25rem;
  height: fit-content;
  width: 100%;
  align-items: flex-start;
  background-image: linear-gradient(13deg, rgba(57, 15, 174, 0) 8.1%, rgba(114, 41, 234, 0.3) 72.18%), url("../images/header-background.webp");
  background-repeat: no-repeat;
  background-position: 0 top, right 0 top;
  background-size: auto, auto 39.125rem;
}
@media (max-width: 1123px) {
  .header {
    background-image: none;
  }
}
.header__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.3125rem;
  width: 100%;
  max-width: 68.75rem;
  align-self: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1123px) {
  .header {
    padding: 12rem 2.34375rem 0 2.34375rem;
  }
}
.header__top {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  height: 4.0625rem;
  width: calc(100% - 4.9375rem);
  left: 0;
  top: 0;
  margin: 1.25rem 2.46875rem 0 2.46875rem;
  z-index: 1;
}
@media (max-width: 1123px) {
  .header__top {
    height: 3.8125rem;
    margin: 0;
    padding: 0.9375rem 1rem;
    width: 100%;
  }
}
.header__logo {
  display: block;
  width: 19.125rem;
  height: 2.4375rem;
  background-image: url("../icons/naughty-affiliates-logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1123px) {
  .header__logo {
    width: 13.75rem;
    height: 1.7525rem;
  }
}
.header__btn {
  display: block;
  opacity: 1;
  width: fit-content;
  padding: 0.75rem 2.40625rem;
  border-radius: 22.5rem;
  background: #3D5CF9;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s ease;
}
.header__btn:hover {
  opacity: 0.9;
}
@media (max-width: 1123px) {
  .header__btn {
    width: 100%;
    max-width: 7rem;
    padding: 0.46875rem 2.125rem;
    height: 1.9375rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 1123px) {
  .header {
    position: relative;
    background-image: linear-gradient(30.38deg, rgba(71, 8, 251, 0.3) -0.27%, rgba(114, 41, 234, 0.3) 103.06%), url("../images/header-background-mobile.webp");
    background-position: 0 top, right top;
    background-repeat: no-repeat;
  }
  .header::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/mobile-mask-group.webp");
    background-repeat: no-repeat;
    background-position: top top;
    background-size: 100%;
    pointer-events: none;
    z-index: 0;
  }
}

.home {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2.3125rem;
  align-items: flex-start;
  align-self: flex-start;
  position: relative;
}
.home__top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.375rem;
  align-items: flex-start;
}
.home__top .title__earn {
  font-family: Poppins;
  font-weight: 700;
  font-size: 5rem;
  letter-spacing: 0;
  line-height: 5rem;
  color: #fff;
}
.home__top .title__earn .gray {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1123px) {
  .home__top .title__earn {
    font-size: 3.45625rem;
    line-height: 3.4375rem;
  }
}
.home__top .title__pink {
  font-weight: 700;
  max-width: 35.625rem;
  font-size: 1.9rem;
  line-height: 115%;
  letter-spacing: 0;
  color: #E747B7;
  font-family: Poppins;
}
@media (max-width: 1123px) {
  .home__top .title__pink {
    font-size: 1.36rem;
  }
}
.home__top .title__pink span {
  font-size: 2.5rem;
}
@media (max-width: 1123px) {
  .home__top .title__pink span {
    font-size: 1.79rem;
  }
}
.home__bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 7.3125rem;
}
@media (max-width: 1123px) {
  .home__bottom {
    margin-bottom: 1.6875rem;
  }
  .home__bottom a {
    width: 100%;
  }
}
.home__bottom .title__sign-up {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25rem;
  letter-spacing: 0;
}
@media (max-width: 1123px) {
  .home__bottom .title__sign-up {
    font-size: 0.875rem;
  }
}
.home__buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 1123px) {
  .home__buttons {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .home__buttons a {
    width: 100%;
  }
}
.home__buttons .sign-up__btn {
  display: block;
  opacity: 1;
  width: fit-content;
  padding: 0.75rem 2.40625rem;
  border-radius: 22.5rem;
  background: #3D5CF9;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s ease;
}
.home__buttons .sign-up__btn:hover {
  opacity: 0.9;
}
@media (max-width: 1123px) {
  .home__buttons .sign-up__btn {
    width: 100%;
  }
}
.home__buttons .sign-up__btn--whitelabel {
  background: #D9D9D9;
  color: #3B3A3A;
}

.about__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
@media (max-width: 1123px) {
  .about__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}
.about__pps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.02rem;
  width: 22.875rem;
  height: 12.3125rem;
  background-image: linear-gradient(30.38deg, rgba(88, 8, 251, 0.15) -0.27%, rgba(153, 41, 234, 0.15) 103.06%), url("../images/program/pps.jpg");
  background-repeat: no-repeat;
  background-position: 0, center;
  background-size: contain;
  border-radius: 2.04rem 0 0 2.04rem;
  background-color: #000;
  padding: 1.44rem 1.92rem 1.44rem 1.919375rem;
}
.about__pps h3 {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.75rem;
  letter-spacing: 0;
  width: 100%;
}
.about__pps p {
  font-weight: 400;
  font-size: 0.84rem;
  line-height: 0.84rem;
  letter-spacing: 0;
}
@media (max-width: 1123px) {
  .about__pps {
    width: 100%;
    max-width: 19.4375rem;
    min-height: 11.34625rem;
    height: fit-content;
    border-radius: 1.7175rem 1.7175rem 0 0;
    padding: 1.2225rem 2.37375rem 2.183125rem 1.630625rem;
    background-size: cover;
    gap: 0.86625rem;
    box-shadow: 0 0.245625rem 1.938125rem 0 rgba(0, 0, 0, 0.5019607843);
  }
  .about__pps h3 {
    font-size: 1.48625rem;
    line-height: 1.48625rem;
  }
  .about__pps p {
    font-size: 0.713125rem;
    line-height: 0.713125rem;
  }
}
.about__lifetime-revshare {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.02rem;
  width: 24.875rem;
  height: 14.25rem;
  background-image: linear-gradient(30.38deg, rgba(88, 8, 251, 0.15) -0.27%, rgba(153, 41, 234, 0.15) 103.06%), url("../images/program/revshare.jpg");
  background-repeat: no-repeat;
  background-position: 0, center;
  background-size: contain;
  border-radius: 2.40875rem;
  box-shadow: 0 0.24rem 1.04375rem 0 rgba(0, 0, 0, 0.6);
  background-color: rgba(46, 14, 101, 0.4);
  padding: 2.116875rem 1.141875rem 2.179375rem 2.266875rem;
  margin: 0 -0.625rem;
  z-index: 1;
}
.about__lifetime-revshare h3 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.875rem;
  letter-spacing: 0;
  width: 100%;
}
.about__lifetime-revshare p {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 135%;
  letter-spacing: 0;
}
@media (max-width: 1123px) {
  .about__lifetime-revshare {
    width: 100%;
    max-width: 21.125rem;
    min-height: 12.101875rem;
    height: fit-content;
    border-radius: 2.045625rem;
    padding: 1.9725rem 1.406875rem 2.183125rem 1.925rem;
    background-size: cover;
    gap: 0.86625rem;
    margin: -0.9375rem 0 -1.25rem 0;
  }
  .about__lifetime-revshare h3 {
    max-width: 17.375rem;
    font-size: 1.48625rem;
    line-height: 1.48625rem;
  }
  .about__lifetime-revshare p {
    font-size: 0.8425rem;
    line-height: 0.8425rem;
  }
}
.about__creator-referral {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.02rem;
  width: 22.875rem;
  height: 12.3125rem;
  background-image: linear-gradient(30.38deg, rgba(88, 8, 251, 0.15) -0.27%, rgba(153, 41, 234, 0.15) 103.06%), url("../images/program/referral.jpg");
  background-repeat: no-repeat;
  background-position: 0, center;
  background-size: contain;
  border-radius: 0 2.04rem 2.04rem 0;
  background-color: #000;
  padding: 2.08375rem 1.505625rem 1.28375rem 2.579375rem;
}
.about__creator-referral h3 {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.75rem;
  letter-spacing: 0;
  width: 100%;
}
.about__creator-referral p {
  font-weight: 400;
  font-size: 0.84rem;
  line-height: 0.84rem;
  letter-spacing: 0;
}
@media (max-width: 1123px) {
  .about__creator-referral {
    width: 100%;
    max-width: 19.4375rem;
    min-height: 11.34625rem;
    height: fit-content;
    border-radius: 0 0 1.7175rem 1.7175rem;
    padding: 3.005rem 2.37375rem 2.183125rem 1.630625rem;
    background-size: cover;
    gap: 0.86625rem;
    box-shadow: 0 0.245625rem 1.938125rem 0 rgba(0, 0, 0, 0.5019607843);
  }
  .about__creator-referral h3 {
    font-size: 1.48625rem;
    line-height: 1.48625rem;
  }
  .about__creator-referral p {
    font-size: 0.713125rem;
    line-height: 0.713125rem;
  }
}

.access {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
.access__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 82.5rem;
  width: 100%;
}
@media (max-width: 1123px) {
  .access__container {
    gap: 2.875rem;
  }
}
.access__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
@media (max-width: 1123px) {
  .access__list {
    gap: 2.875rem;
    padding: 0 2rem;
  }
}
.access__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 14.375rem;
  width: 100%;
  max-width: 53.37125rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
@media (max-width: 1123px) {
  .access__item:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/access-item-after-gradient.webp");
    background-repeat: no-repeat;
    background-position: right 0.5rem;
    pointer-events: none;
    z-index: 0;
  }
}
.access__item h3 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 115%;
  letter-spacing: 0;
}
@media (max-width: 1123px) {
  .access__item h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 400px) {
  .access__item h3 {
    font-size: 1.25rem;
  }
}
.access__item p {
  color: #d9d9d9;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 135%;
  letter-spacing: 0;
}
@media (max-width: 1123px) {
  .access__item p {
    font-size: 0.75rem;
  }
}
@media (max-width: 400px) {
  .access__item p {
    font-size: 0.625rem;
  }
}
.access__item ul {
  margin-left: 1.5rem;
}
@media (max-width: 1123px) {
  .access__item ul {
    font-size: 0.75rem;
  }
}
@media (max-width: 400px) {
  .access__item ul {
    font-size: 0.625rem;
  }
}
.access__item--smart-links {
  height: 20.57125rem;
  justify-content: flex-end;
}
@media (max-width: 1123px) {
  .access__item--smart-links {
    height: 11.25rem;
  }
}
.access__item--postbacks {
  height: 15.995625rem;
  justify-content: flex-start;
}
@media (max-width: 1123px) {
  .access__item--postbacks {
    height: 9.9075rem;
  }
}
.access__item--live-data {
  height: 19.775rem;
  justify-content: flex-end;
}
@media (max-width: 1123px) {
  .access__item--live-data {
    height: 10.826875rem;
  }
}
.access__item--promo-tools {
  height: 17.113125rem;
  justify-content: flex-start;
}
@media (max-width: 1123px) {
  .access__item--promo-tools {
    height: 13.5rem;
  }
}
.access__item--vip-support {
  height: 20.554375rem;
  justify-content: flex-end;
}
@media (max-width: 1123px) {
  .access__item--vip-support {
    height: 11.25rem;
  }
}
.access__item--fast-payouts {
  height: 20.711875rem;
  justify-content: flex-start;
}
@media (max-width: 1123px) {
  .access__item--fast-payouts {
    height: 12.3875rem;
  }
}
.access__img {
  background-repeat: no-repeat;
  background-size: cover;
}
.access__img--smart-links {
  height: 20.55875rem;
  position: absolute;
  left: 0;
  width: 9.99875rem;
  background-image: url("../images/access/smart-links.png");
  box-shadow: 0 0.594375rem 1.664375rem 0 rgba(0, 0, 0, 0.6);
  background-color: #fafafa;
  border-radius: 1.541875rem;
}
@media (max-width: 1123px) {
  .access__img--smart-links {
    background-image: url("../images/access/smart-links-mobile.png");
    width: 5.625rem;
    height: 11.375rem;
    border-radius: 0.875rem;
  }
}
.access__img--postbacks {
  width: 16.99625rem;
  position: absolute;
  height: 18.495625rem;
  right: -1.5625rem;
  top: -0.875rem;
  background-image: url("../images/access/postbacks.png");
}
@media (max-width: 1123px) {
  .access__img--postbacks {
    background-image: url("../images/access/postbacks-mobile.png");
    width: 9.5rem;
    height: 11.75rem;
    right: -1rem;
    top: -0.625rem;
  }
}
.access__img--live-data {
  height: 22.8125rem;
  position: absolute;
  left: -1.5625rem;
  top: -1rem;
  width: 14.0625rem;
  background-image: url("../images/access/live-data.png");
  border-radius: 0.81625rem;
}
@media (max-width: 1123px) {
  .access__img--live-data {
    background-image: url("../images/access/live-data-mobile.png");
    width: 7.6875rem;
    height: 12.5rem;
    left: -1rem;
    top: -0.625rem;
  }
}
.access__img--promo-tools {
  width: 22.499375rem;
  position: absolute;
  height: 17.113125rem;
  right: 0;
  top: 0;
  background-image: url("../images/access/promo-tools.png");
}
@media (max-width: 1123px) {
  .access__img--promo-tools {
    background-image: url("../images/access/promo-tools-mobile.png");
    width: 8.75rem;
    height: 14rem;
  }
}
.access__img--vip-support {
  position: absolute;
  left: -1.5rem;
  top: -1rem;
  background-image: url("../images/access/vip-support.png");
  border-radius: 0.81625rem;
  width: 13.0625rem;
  height: 23.4375rem;
}
@media (max-width: 1123px) {
  .access__img--vip-support {
    background-image: url("../images/access/vip-support-mobile.png");
    width: 7.1875rem;
    height: 12.875rem;
    left: -1rem;
    top: -0.375rem;
  }
}
.access__img--fast-payouts {
  width: 15.125rem;
  position: absolute;
  height: 21.6875rem;
  right: -0.625rem;
  top: -0.3125rem;
  background-image: url("../images/access/fast-payouts.png");
}
@media (max-width: 1123px) {
  .access__img--fast-payouts {
    background-image: url("../images/access/fast-payouts-mobile.png");
    width: 8.6875rem;
    height: 13rem;
  }
}
.access__bg {
  background-repeat: no-repeat;
  background-size: cover;
}
.access__bg--smart-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-start;
  background-image: url("../images/access/smart-links-mask.png"), linear-gradient(37.3deg, rgba(36, 14, 231, 0.7) -7.99%, rgba(153, 41, 234, 0.7) 107.58%);
  background-position: right;
  height: 14.375rem;
  width: calc(100% - 9.0625rem);
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 0 1.9875rem 0 3.25rem;
}
@media (max-width: 1123px) {
  .access__bg--smart-links {
    min-height: 10rem;
    height: fit-content;
    width: calc(100% - 3.75rem);
    border-radius: 1.095rem;
  }
}
.access__bg--postbacks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-start;
  background-image: url("../images/access/postbacks-mask.png"), linear-gradient(37.3deg, rgba(36, 14, 231, 0.7) -7.99%, rgba(153, 41, 234, 0.7) 107.58%);
  background-position: left;
  height: 14.375rem;
  width: calc(100% - 12.75rem);
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  padding: 0 2.625rem;
}
@media (max-width: 1123px) {
  .access__bg--postbacks {
    gap: 0.5475rem;
    min-height: 8.6875rem;
    height: fit-content;
    width: calc(100% - 6.9375rem);
    padding: 0 1.436875rem 0 1.438125rem;
    border-radius: 1.095rem;
  }
}
.access__bg--live-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-start;
  background-image: url("../images/access/live-data-mask.png"), linear-gradient(37.3deg, rgba(36, 14, 231, 0.7) -7.99%, rgba(153, 41, 234, 0.7) 107.58%);
  background-position: right;
  height: 14.375rem;
  width: calc(100% - 9.8125rem);
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 0 1.9875rem 0 3.25rem;
}
@media (max-width: 1123px) {
  .access__bg--live-data {
    gap: 0.5475rem;
    min-height: 9.9375rem;
    height: fit-content;
    width: calc(100% - 3.75rem);
    padding: 0 1.311875rem 0 3.375625rem;
    border-radius: 1.095rem;
  }
}
.access__bg--promo-tools {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-start;
  background-image: url("../images/access/promo-tools-mask.png"), linear-gradient(37.3deg, rgba(36, 14, 231, 0.7) -7.99%, rgba(153, 41, 234, 0.7) 107.58%);
  background-position: left;
  height: 14.375rem;
  width: calc(100% - 20.75rem);
  border-radius: 2rem;
  padding: 0 2.625rem;
}
@media (max-width: 1123px) {
  .access__bg--promo-tools {
    gap: 0.5475rem;
    min-height: 10.25rem;
    height: fit-content;
    width: calc(100% - 7rem);
    padding: 0 1.561875rem 0 1.188125rem;
    border-radius: 1.095rem;
  }
}
.access__bg--vip-support {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-start;
  background-image: url("../images/access/vip-support-mask.png"), linear-gradient(37.3deg, rgba(36, 14, 231, 0.7) -7.99%, rgba(153, 41, 234, 0.7) 107.58%);
  background-position: right;
  height: 14.5rem;
  width: calc(100% - 9.015rem);
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 0 1.9875rem 0 3.25rem;
}
@media (max-width: 1123px) {
  .access__bg--vip-support {
    gap: 0.5475rem;
    min-height: 10rem;
    height: fit-content;
    width: calc(100% - 3.75rem);
    padding: 0 1.095rem 0 2.72rem;
    border-radius: 1.095rem;
  }
}
.access__bg--fast-payouts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-items: flex-start;
  background-image: url("../images/access/fast-payouts-mask.png"), linear-gradient(37.3deg, rgba(36, 14, 231, 0.7) -7.99%, rgba(153, 41, 234, 0.7) 107.58%);
  background-position: left;
  height: 17.75rem;
  width: calc(100% - 13rem);
  border-radius: 2rem;
  padding: 0 2.625rem;
}
@media (max-width: 1123px) {
  .access__bg--fast-payouts {
    border-radius: 1.095rem;
    gap: 0.5475rem;
    min-height: 11.4375rem;
    height: fit-content;
    width: calc(100% - 7.0625rem);
    padding: 0 1.095rem 0 1.47rem;
  }
}
.access h2 {
  font-weight: 700;
  font-size: 2.8125rem;
  line-height: 135%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1123px) {
  .access h2 {
    font-size: 1.875rem;
    line-height: 92%;
  }
}

.earn-money {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
}
.earn-money__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 82.5rem;
  width: 100%;
  position: relative;
  z-index: 0;
  padding: 3.15625rem 0;
}
@media (max-width: 1123px) {
  .earn-money__container {
    padding: 1.40625rem 0;
  }
}
.earn-money__row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1123px) {
  .earn-money__row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 0 2rem;
  }
}
.earn-money__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 1.625rem;
  width: 33.625rem;
  border-radius: 2rem;
  padding: 16rem 2rem 1.5rem 2rem;
  background-color: #141414;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: 2rem 1rem;
  backdrop-filter: blur(1.5625rem);
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  height: 37rem;
}
.earn-money__item::after {
  content: "";
  position: absolute;
  top: 4.21875rem;
  left: -0.03125rem;
  right: -0.03125rem;
  width: calc(100% + 0.0625rem);
  height: 33.4375rem;
  background-image: url("../images/mask-group.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1123px) {
  .earn-money__item::after {
    left: -1rem;
    right: -1rem;
    width: calc(100% + 2rem);
    bottom: -2.5rem;
    background-position: bottom !important;
  }
}
@media (max-width: 1123px) {
  .earn-money__item {
    max-width: 21.40625rem;
    width: 100%;
    height: fit-content;
    min-height: 20.59375rem;
    padding: 13rem 2rem 2.625rem 2rem;
  }
}
.earn-money__item h3 {
  font-weight: 700;
  font-size: 2.188rem;
  line-height: 98%;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1123px) {
  .earn-money__item h3 {
    font-size: 1.875rem;
    width: 100%;
  }
}
.earn-money__item__logo {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}
@media (max-width: 1123px) {
  .earn-money__item__logo {
    max-width: 100%;
  }
}
.earn-money__item p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 135%;
  letter-spacing: 0;
  color: #d9d9d9;
  position: relative;
  z-index: 1;
}
@media (max-width: 1123px) {
  .earn-money__item p {
    font-size: 0.875rem;
  }
}
.earn-money__item span {
  font-weight: 800;
  font-size: 1rem;
  line-height: 135%;
  letter-spacing: 0;
  color: #d652ae;
}
@media (max-width: 1123px) {
  .earn-money__item span {
    font-size: 0.875rem;
  }
}
.earn-money__item--whitelabel {
  width: 34.125rem;
}
@media (max-width: 1123px) {
  .earn-money__item--whitelabel {
    width: 21.4375rem;
    min-height: 29.6875rem;
    height: fit-content;
    background-position: bottom, top;
    padding: 14.5rem 2rem 2.625rem 2rem;
  }
}
.earn-money__item--whitelabel {
  background-image: url("../images/earn-money/earn-money-whitelable.webp");
  background-size: calc(100% - 4rem) auto !important;
  background-position: 2rem 1rem !important;
}
@media (max-width: 1123px) {
  .earn-money__item--whitelabel {
    background-image: url("../images/earn-money/earn-money-whitelable.webp");
  }
  .earn-money__item--whitelabel::after {
    top: unset !important;
  }
}
.earn-money__item--sinparty-live {
  background-image: url("../images/earn-money/earn-money-affiliate.webp");
  background-size: calc(100% - 4rem) auto !important;
  background-position: 2rem 1rem !important;
}
@media (max-width: 1123px) {
  .earn-money__item--sinparty-live::after {
    top: unset !important;
  }
}
.earn-money__item .sign-up__btn {
  display: block;
  width: fit-content;
  padding: 0.75rem 2.40625rem;
  border-radius: 22.5rem;
  background: #3D5CF9;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.earn-money__item .sign-up__btn:hover {
  opacity: 0.9;
}
@media (max-width: 1123px) {
  .earn-money__item .sign-up__btn {
    width: 100%;
  }
}
.earn-money__item .sign-up__btn--whitelabel {
  background: #D9D9D9;
  color: #3B3A3A;
}
.earn-money h2 {
  font-weight: 700;
  font-size: 2.8125rem;
  line-height: 135%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1123px) {
  .earn-money h2 {
    font-size: 1.875rem;
    line-height: 92%;
  }
}

.featured__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2.375rem;
  width: 100%;
  margin-top: -0.9375rem;
}
@media (max-width: 1123px) {
  .featured__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.0625rem;
  }
}
.featured__text {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 149%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}
.featured__logos {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2.125rem;
}
@media (max-width: 1123px) {
  .featured__logos {
    width: 100%;
    padding: 0 0 3rem 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.featured__logo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
.featured__logo--pillow-talk {
  background-image: url("../images/featured/pillow-talk.png");
  width: 2.841875rem;
  height: 1.679375rem;
}
@media (max-width: 1123px) {
  .featured__logo--pillow-talk {
    width: 2.2975rem;
    height: 1.3575rem;
    background-size: cover;
  }
}
.featured__logo--mirror {
  background-image: url("../images/featured/mirror.png");
  width: 4.86625rem;
  height: 1.679375rem;
}
@media (max-width: 1123px) {
  .featured__logo--mirror {
    width: 3.934375rem;
    height: 1.018125rem;
    background-size: cover;
  }
}
.featured__logo--daily-star {
  background-image: url("../images/featured/daily-star.png");
  width: 2.79875rem;
  height: 1.679375rem;
}
@media (max-width: 1123px) {
  .featured__logo--daily-star {
    width: 2.2625rem;
    height: 1.3575rem;
    background-size: cover;
  }
}
.featured__logo--unilad {
  background-image: url("../images/featured/unilad.png");
  width: 4.093125rem;
  height: 1.259375rem;
}
@media (max-width: 1123px) {
  .featured__logo--unilad {
    width: 3.309375rem;
    height: 1.018125rem;
    background-size: cover;
  }
}
.featured__logo--avn {
  background-image: url("../images/featured/avn.png");
  width: 2.209375rem;
  height: 1.679375rem;
}
@media (max-width: 1123px) {
  .featured__logo--avn {
    width: 1.78625rem;
    height: 1.3575rem;
    background-size: cover;
  }
}
.featured__logo--xbiz {
  background-image: url("../images/featured/xbiz.png");
  width: 3.09875rem;
  height: 1.259375rem;
}
@media (max-width: 1123px) {
  .featured__logo--xbiz {
    width: 2.50625rem;
    height: 1.018125rem;
    background-size: cover;
  }
}

.how-it-works {
  width: 100%;
  margin-top: -3rem;
}
.how-it-works__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  min-height: 12.75rem;
  width: 100%;
  background: #2d1a77;
  height: fit-content;
}
@media (max-width: 1123px) {
  .how-it-works__container {
    padding: 2.375rem 3.476875rem 2.63125rem 3.476875rem;
  }
}
.how-it-works__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4.77375rem;
  height: 7.19375rem;
  padding: 1.554375rem 0;
}
@media (max-width: 1123px) {
  .how-it-works__list {
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2.948125rem;
  }
}
.how-it-works__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 4.551875rem;
  width: 17.3rem;
  border-radius: 0.92875rem;
  background: linear-gradient(37.3deg, #240ee7 -7.99%, #9929ea 107.58%), linear-gradient(0deg, rgba(56, 0, 211, 0.4), rgba(56, 0, 211, 0.4));
  position: relative;
}
.how-it-works__item::before {
  position: absolute;
  left: -1.5rem;
  top: -1.125rem;
  width: 3.453125rem;
  height: 7.1875rem;
  font-weight: 700;
  font-size: 7.284375rem;
  line-height: 7.284375rem;
  color: rgba(255, 255, 255, 0.6);
}
.how-it-works__item--register::before {
  content: "1";
  left: -0.4375rem;
}
@media (max-width: 1123px) {
  .how-it-works__item--register::before {
    left: -0.9375rem;
  }
}
.how-it-works__item--advertise::before {
  content: "2";
}
.how-it-works__item--start-earning::before {
  content: "3";
  left: -1.4375rem;
}
.how-it-works__item h3 {
  font-weight: 700;
  font-size: 1.39375rem;
  line-height: 99%;
  letter-spacing: 0;
}
@media (max-width: 1123px) {
  .how-it-works__item h3 {
    margin-left: 1rem;
  }
}
.how-it-works h2 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 149%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #D648AF;
}

.winner {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.winner__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2.0625rem;
  background: #2D1A77;
  width: 100%;
  height: 9.1875rem;
}
@media (max-width: 1123px) {
  .winner__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8125rem;
    height: fit-content;
    min-height: 21.5rem;
    padding: 1.1875rem 1.4375rem 1.1875rem 1.4375rem;
  }
}
.winner__logo {
  background-image: url("../images/winner.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6.6875rem;
  height: 6.6875rem;
}
@media (max-width: 1123px) {
  .winner__logo {
    width: 7.75rem;
    height: 7.75rem;
  }
}
.winner__text {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 149%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #D648AF;
  max-width: 39rem;
}
@media (max-width: 1123px) {
  .winner__text {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.125rem;
  }
}
.winner__sign-up {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: fit-content;
  height: 2.8125rem;
  border-radius: 2rem;
  padding: 0.3125rem 1.5rem;
  background-color: #3D5CF9;
  font-weight: 600;
  font-size: 1rem;
  line-height: 135%;
  letter-spacing: 0;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  opacity: 1;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.winner__sign-up:hover {
  opacity: 0.9;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: #2d1a77;
  padding: 2.25rem 0;
  margin: 3rem 0 3.75rem 0;
}
@media (max-width: 1123px) {
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.53125rem 2.8125rem;
    height: fit-content;
    margin: 2.5rem 0 3.375rem 0;
  }
}
.footer__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 1123px) {
  .footer__buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
}
.footer__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  color: #fff;
  border-radius: 2rem;
  background: #3D5CF9;
  height: 2.8125rem;
  padding: 0.3125rem 1.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 135%;
  letter-spacing: 0;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  opacity: 1;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.footer__btn:hover {
  opacity: 0.9;
}
@media (max-width: 1123px) {
  .footer__btn {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
  }
}
.footer__btn--whitelabel {
  background: #D9D9D9;
  color: #3B3A3A;
}

.whitelabel-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.whitelabel-modal--open {
  opacity: 1;
  visibility: visible;
}
.whitelabel-modal--open .whitelabel-modal__overlay {
  opacity: 1;
}
.whitelabel-modal--open .whitelabel-modal__content {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.whitelabel-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(0.25rem);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.whitelabel-modal__content {
  position: relative;
  z-index: 1001;
  border-radius: 2rem;
  border: 0.0625rem solid transparent;
  background: linear-gradient(#222222, #222222) padding-box, linear-gradient(30.38deg, #5808fb -0.27%, #7029ea 103.06%) border-box;
  backdrop-filter: blur(1.5625rem);
  max-width: 37.5rem;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.9) translateY(-1.25rem);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 1123px) {
  .whitelabel-modal__content {
    width: 95%;
    padding: 1.5rem;
    max-height: 95vh;
    transform: scale(0.95) translateY(-0.625rem);
  }
}
.whitelabel-modal__header {
  margin-bottom: 2rem;
}
.whitelabel-modal__title {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 100%;
  letter-spacing: 0;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}
@media (max-width: 1123px) {
  .whitelabel-modal__title {
    font-size: 1.25rem;
  }
}
.whitelabel-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  padding: 0;
  width: auto;
  height: auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 1002;
}
.whitelabel-modal__close:hover {
  opacity: 0.7;
}
.whitelabel-modal__close-icon {
  display: block;
  width: 1rem;
  height: 1rem;
}
.whitelabel-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .whitelabel-modal__form {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.whitelabel-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .whitelabel-modal__field:nth-child(1), .whitelabel-modal__field:nth-child(2), .whitelabel-modal__field:nth-child(3), .whitelabel-modal__field:nth-child(4), .whitelabel-modal__field:nth-child(5), .whitelabel-modal__field:nth-child(6) {
    width: calc(50% - 0.75rem);
  }
}
.whitelabel-modal__field:nth-child(7), .whitelabel-modal__field:last-child {
  width: 100%;
}
.whitelabel-modal__label {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 100%;
  letter-spacing: 0;
  color: #fff;
}
.whitelabel-modal__input, .whitelabel-modal__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #222222;
  border: 0.0625rem solid #808080;
  border-radius: 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.3s ease;
}
.whitelabel-modal__input::placeholder, .whitelabel-modal__textarea::placeholder {
  color: #808080;
}
.whitelabel-modal__input:focus, .whitelabel-modal__textarea:focus {
  outline: none;
  border-color: #3D5CF9;
}
.whitelabel-modal__input--error, .whitelabel-modal__textarea--error {
  border-color: #FF3434;
}
@media (max-width: 1123px) {
  .whitelabel-modal__input, .whitelabel-modal__textarea {
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem;
  }
}
.whitelabel-modal__textarea {
  resize: vertical;
  min-height: 6.25rem;
  font-family: inherit;
}
.whitelabel-modal__error {
  display: none;
  color: #FF3434;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-top: 0.5rem;
  font-weight: 400;
}
.whitelabel-modal__submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #203285;
  border: none;
  border-radius: 3rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  margin-top: 0.5rem;
}
.whitelabel-modal__submit:hover:not(:disabled) {
  opacity: 0.9;
}
.whitelabel-modal__submit:active:not(:disabled) {
  opacity: 0.8;
}
.whitelabel-modal__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #4D4D4D;
}
@media (max-width: 1123px) {
  .whitelabel-modal__submit {
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
  }
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #222222;
  border: 0.0625rem solid #808080;
  border-radius: 0.5rem;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.3s ease;
}
input::placeholder,
textarea::placeholder {
  color: #808080;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #3D5CF9;
}
@media (max-width: 1123px) {
  input,
  textarea {
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem;
  }
}

textarea {
  resize: vertical;
  min-height: 6.25rem;
  font-family: inherit;
}

button {
  display: inline-block;
  opacity: 1;
  width: fit-content;
  padding: 0.75rem 2.40625rem;
  border-radius: 22.5rem;
  background: #3D5CF9;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s ease;
}
button:hover {
  opacity: 0.9;
}
button:active {
  opacity: 0.8;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 1123px) {
  button {
    width: 100%;
    font-size: 0.875rem;
  }
}

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