body {
  font-family: "Helios";
  font-size: 18px;
  line-height: 1.2;
  font-weight: normal;
  color: #fff;
  background-color: #081F2C;
  min-height: 100%;
  background-image: url(../img/back.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1440px) {
  body {
    background-position: top;
  }
}
@media screen and (max-width: 400px) {
  body {
    background-image: none;
  }
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background: linear-gradient(91.26deg, #092839 16.78%, #0B2A3C 72.43%);
  box-shadow: 0px 4px 10px rgba(4, 18, 27, 0.8);
  position: fixed;
  width: 100%;
  z-index: 2;
}

.header {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 730px) {
  .header {
    padding: 15px 0;
  }
}
.header__logo {
  max-width: 100%;
}
@media screen and (max-width: 1100px) {
  .header__logo {
    max-width: 200px;
  }
}
@media screen and (max-width: 730px) {
  .header__logo {
    max-width: 175px;
  }
}
.header__item {
  display: flex;
  align-items: center;
}
.header__item--mobile {
  display: none;
}
@media screen and (max-width: 730px) {
  .header__item--mobile {
    display: block;
  }
}
@media screen and (max-width: 730px) {
  .header__item--desktop {
    display: none;
  }
}
.header__humb-btn {
  padding: 5px;
}
.header__humb-btn.opened + .header__menu {
  transform: translateY(64px);
  opacity: 1;
}
.header__menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(91.26deg, #092839 16.78%, #0B2A3C 72.43%);
  transform: translateY(64px);
  box-shadow: 0px 4px 10px rgba(4, 18, 27, 0.8);
  transform: translateY(-110%);
  opacity: 0;
  transition: all 0.3s;
}
.header__menu ul {
  list-style-type: none;
  text-align: center;
}
.header__menu li {
  position: relative;
}
.header__menu li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: calc(100% - 40px);
  background: rgba(217, 217, 217, 0.3);
}
.header__menu a {
  display: block;
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 24px;
  padding: 15px;
  text-decoration: none;
}

.menu {
  display: flex;
  align-items: center;
  list-style-type: none;
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  .menu {
    gap: 5px;
  }
}
.menu__link {
  font-family: "Proxima Nova";
  text-decoration: none;
  color: #fff;
  padding: 5px 40px;
  border: 2px;
  border-radius: 30px;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .menu__link {
    padding: 5px 30px;
  }
}
.menu__link:hover {
  color: #1DBFD1;
}
.menu__link--special {
  position: relative;
  background-color: #0B2A3C;
  z-index: 1;
}
.menu__link--special:hover {
  background-color: transparent;
  color: #fff;
}
.menu__link--special:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 30px;
  background-size: 100%;
  background: linear-gradient(90.67deg, rgba(5, 114, 157, 0.6) 0.46%, rgba(29, 191, 209, 0.6) 99.42%);
}

main {
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 730px) {
  main {
    background: linear-gradient(180deg, #081F2C 20.62%, #053240 56.18%, #081F2C 100%);
    box-shadow: 0px 4px 20px rgba(3, 18, 41, 0.45);
  }
}

.btn {
  font-family: "Proxima Nova";
  font-size: 48px;
  display: block;
  padding: 12px;
  text-align: center;
  width: 100%;
  max-width: 430px;
  background: linear-gradient(90.67deg, #05729D 0.46%, #1DBFD1 99.42%);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  position: relative;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .btn {
    font-size: 35px;
    max-width: 300px;
  }
}
@media screen and (max-width: 730px) {
  .btn {
    font-size: 24px;
    max-width: 220px;
  }
}
.btn:hover {
  background: linear-gradient(90.67deg, #1498CC 0.46%, #24DDF1 99.42%);
}
.btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(90.67deg, #05729D 0.46%, #1DBFD1 99.42%);
  border-radius: 50px;
  filter: blur(15px);
}

.section-main {
  display: flex;
  position: relative;
  padding: 237px 0;
}
@media screen and (max-width: 800px) {
  .section-main {
    flex-direction: column;
    padding-top: 0;
  }
}
@media screen and (max-width: 730px) {
  .section-main {
    padding: 0 0 135px;
  }
}
.section-main__item {
  position: relative;
  width: 100%;
  z-index: 1;
}
.section-main__item:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 30px);
  height: 100%;
  top: -25%;
  left: -15px;
  background: linear-gradient(180deg, rgba(8, 31, 44, 0) 0%, #081F2C 52.08%, rgba(8, 31, 44, 0.1) 100%);
  display: none;
}
@media screen and (max-width: 800px) {
  .section-main__item:before {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .section-main__item {
    margin-top: -100px;
  }
}
.section-main__block {
  max-width: 560px;
}
@media screen and (max-width: 1100px) {
  .section-main__block {
    max-width: 400px;
  }
}
@media screen and (max-width: 800px) {
  .section-main__block {
    text-align: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .section-main__btn {
    margin: 0 auto;
  }
}
.section-main__title {
  font-size: 85px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 1100px) {
  .section-main__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 730px) {
  .section-main__title {
    font-size: 44px;
  }
}
.section-main__title span {
  color: #1DBFD1;
}
.section-main__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  margin: 45px 0;
}
@media screen and (max-width: 1100px) {
  .section-main__subtitle {
    font-size: 30px;
    margin: 30px 0;
  }
}
@media screen and (max-width: 730px) {
  .section-main__subtitle {
    font-size: 24px;
  }
}
.section-main__bg {
  position: absolute;
  top: 2%;
  right: -10%;
  width: 100%;
  max-width: 881px;
  pointer-events: none;
  min-width: 410px;
}
@media screen and (max-width: 1100px) {
  .section-main__bg {
    max-width: 600px;
    top: 10%;
    right: 0;
  }
}
@media screen and (max-width: 800px) {
  .section-main__bg {
    position: inherit;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 800px) and (max-width: 400px) {
  .section-main__bg {
    left: 45%;
  }
}

.section-for-affiliates__title {
  font-size: 80px;
}
@media screen and (max-width: 1100px) {
  .section-for-affiliates__title {
    font-size: 55px;
  }
}
@media screen and (max-width: 730px) {
  .section-for-affiliates__title {
    font-size: 30px;
    text-align: center;
  }
}
.section-for-affiliates__block {
  padding: 100px 0;
  display: grid;
  gap: 200px 150px;
  width: 100%;
  grid-template-areas: "a ." "a b" "c b" "c d" "e d" "e f" ". f";
}
@media screen and (max-width: 1100px) {
  .section-for-affiliates__block {
    gap: 200px 50px;
  }
}
@media screen and (max-width: 730px) {
  .section-for-affiliates__block {
    gap: 100px 50px;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 400px) {
  .section-for-affiliates__block {
    gap: 100px 0;
  }
}
.section-for-affiliates__item {
  position: relative;
}
.section-for-affiliates__item:nth-child(1) {
  grid-area: a;
}
.section-for-affiliates__item:nth-child(1) .section-for-affiliates__number:before {
  content: "1";
}
.section-for-affiliates__item:nth-child(2) {
  grid-area: b;
}
.section-for-affiliates__item:nth-child(2) .section-for-affiliates__number:before {
  content: "2";
}
.section-for-affiliates__item:nth-child(3) {
  grid-area: c;
}
.section-for-affiliates__item:nth-child(3) .section-for-affiliates__number:before {
  content: "3";
}
.section-for-affiliates__item:nth-child(4) {
  grid-area: d;
}
.section-for-affiliates__item:nth-child(4) .section-for-affiliates__number:before {
  content: "4";
}
.section-for-affiliates__item:nth-child(5) {
  grid-area: e;
}
.section-for-affiliates__item:nth-child(5) .section-for-affiliates__number:before {
  content: "5";
}
.section-for-affiliates__item:nth-child(6) {
  grid-area: f;
}
.section-for-affiliates__item:nth-child(6) .section-for-affiliates__number:before {
  content: "6";
}
.section-for-affiliates__number {
  font-size: 250px;
  line-height: 200px;
  color: #2EEAFF;
}
@media screen and (max-width: 1100px) {
  .section-for-affiliates__number {
    font-size: 200px;
    line-height: 150px;
  }
}
@media screen and (max-width: 730px) {
  .section-for-affiliates__number {
    font-size: 77px;
    line-height: 60px;
  }
}
@supports (-webkit-text-stroke: 4px #2EEAFF) {
  .section-for-affiliates__number {
    color: transparent;
    -webkit-text-stroke: 4px #2EEAFF;
  }
  @media screen and (max-width: 730px) {
    .section-for-affiliates__number {
      -webkit-text-stroke: 2px #2EEAFF;
    }
  }
}
.section-for-affiliates__number:before {
  content: "";
  position: absolute;
  color: #1DBFD1;
  filter: blur(10px);
  z-index: -1;
}
@media screen and (max-width: 730px) {
  @supports (-webkit-text-stroke: 2px #1DBFD1) {
    .section-for-affiliates__number:before {
      color: transparent;
      -webkit-text-stroke: 2px #1DBFD1;
    }
  }
}
@supports (-webkit-text-stroke: 4px #1DBFD1) {
  .section-for-affiliates__number:before {
    color: transparent;
    -webkit-text-stroke: 4px #1DBFD1;
  }
  @media screen and (max-width: 730px) {
    .section-for-affiliates__number:before {
      -webkit-text-stroke: 2px #1DBFD1;
    }
  }
}
.section-for-affiliates__text {
  font-size: 48px;
  max-width: 350px;
  position: absolute;
  top: 50%;
  left: 190px;
}
@media screen and (max-width: 1100px) {
  .section-for-affiliates__text {
    font-size: 35px;
    max-width: 250px;
    top: 40%;
    left: 150px;
  }
}
@media screen and (max-width: 730px) {
  .section-for-affiliates__text {
    font-size: 18px;
    max-width: 90px;
    left: 50px;
  }
}
.section-for-affiliates__text span {
  color: #1DBFD1;
}

.section-sign-up {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 730px) {
  .section-sign-up {
    background-image: url(../img/bg-main-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
  }
}
.section-sign-up__bg {
  position: absolute;
  top: 10%;
  left: 50%;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .section-sign-up__bg {
    display: none;
  }
}
.section-sign-up__block {
  max-width: 600px;
}
@media screen and (max-width: 1100px) {
  .section-sign-up__block {
    max-width: 550px;
  }
}
@media screen and (max-width: 730px) {
  .section-sign-up__block {
    max-width: 100%;
    margin: 0 auto;
  }
}
.section-sign-up__title {
  font-size: 80px;
  text-transform: uppercase;
  margin-bottom: 80px;
}
@media screen and (max-width: 1100px) {
  .section-sign-up__title {
    font-size: 55px;
  }
}
@media screen and (max-width: 730px) {
  .section-sign-up__title {
    font-size: 30px;
    text-align: center;
  }
}
.section-sign-up__field {
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}
.section-sign-up__field:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 2px solid #1DBFD1;
  filter: blur(4px);
  border-radius: 30px;
  z-index: -1;
}
@media screen and (max-width: 400px) {
  .section-sign-up__field:before {
    border: 1px solid #1DBFD1;
  }
}
.section-sign-up__input {
  font-family: "Inter", sans-serif;
  border: 2px solid #1DBFD1;
  border-radius: 30px;
  width: 100%;
  background-color: transparent;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  outline: none;
}
@media screen and (max-width: 400px) {
  .section-sign-up__input {
    font-size: 12px;
    border: 1px solid #1DBFD1;
  }
}
.section-sign-up__input::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #196C8F;
}
@media screen and (max-width: 400px) {
  .section-sign-up__input::placeholder {
    font-size: 12px;
  }
}
.section-sign-up__input:focus {
  border: 2px solid #88F3FF;
}
.section-sign-up__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin: 35px 0;
}
@media screen and (max-width: 400px) {
  .section-sign-up__text {
    font-size: 10px;
    margin: 30px 0;
  }
}
.section-sign-up__text a {
  color: #fff;
}
@media screen and (max-width: 730px) {
  .section-sign-up__btn {
    margin: 0 auto;
  }
}
.section-sign-up__checkbox {
  display: none;
}
.section-sign-up__checkbox:checked + .section-sign-up__checkbox-label:after {
  opacity: 1;
}
.section-sign-up__checkbox-label {
  position: relative;
  padding-left: 30px;
  display: block;
}
.section-sign-up__checkbox-label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #1DBFD1;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
.section-sign-up__checkbox-label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  left: 4px;
  background: #1DBFD1;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

footer {
  padding: 50px 0 30px;
}
@media screen and (max-width: 730px) {
  footer {
    background-color: #081F2C;
    padding: 50px 0 100px;
  }
}

.section-footer {
  position: relative;
  text-align: center;
}
.section-footer__text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
}
@media screen and (max-width: 400px) {
  .section-footer__text {
    font-size: 10px;
  }
}

.block-languages {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
@media screen and (max-width: 730px) {
  .block-languages {
    display: none;
  }
}
.block-languages__item + .block-languages__item {
  border-left: 1px solid #fff;
}
.block-languages__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
}

.block-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 730px) {
  .block-socials {
    margin-top: 20px;
  }
}
.block-socials a:hover svg {
  fill: #1DBFD1;
}
.block-socials svg {
  transition: all 0.3s;
  fill: #fff;
}

.singup__errors {
  margin-bottom: 20px;
  font-size: 14px;
  text-align: center;
}
.singup__errors_item {
  display: none;
}

.section-sign-up__text + .singup__errors .singup__errors_item {
  margin-top: -20px;
}

.section-sign-up__btn.btn--loading {
  color: transparent;
  position: relative;
}
.section-sign-up__btn.btn--loading:after {
  content: "";
  animation: spin 0.5s infinite linear;
  border-radius: 50%;
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 10px;
  font-weight: 300;
  color: #fff;
  border: 3px solid #fff;
  border-left-color: transparent;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  background-image: none;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

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