body {
  font-family: "Favorit Pro", sans-serif;
  background-color: #050506;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #FAFAFA;
  width: 100vw;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}
.background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 2200px;
  height: 1980px;
  background: radial-gradient(ellipse at center, #0066FF, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.background::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(150, 150, 150, 0.6), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .background::after {
    width: 400px;
    height: 400px;
  }
}

.wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 40px 32px;
}
.wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg-main.svg) no-repeat;
  background-size: contain;
  width: 100vw;
  height: 1000px;
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 640px) {
  .wrapper::before {
    width: 140vw;
    margin-left: -20%;
  }
}
.wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../img/noise.webp);
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .wrapper {
    padding: 20px 16px;
  }
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.corner-icon {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  filter: invert(57%) sepia(1%) saturate(0%) hue-rotate(171deg) brightness(94%) contrast(89%);
  z-index: 1;
}
.corner-icon__tl {
  top: 20px;
  left: 20px;
}
.corner-icon__t {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.corner-icon__tr {
  top: 20px;
  right: 20px;
}
.corner-icon__r {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.corner-icon__br {
  right: 20px;
  bottom: 20px;
}
.corner-icon__b {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.corner-icon__bl {
  bottom: 20px;
  left: 20px;
}
.corner-icon__l {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .corner-icon {
    width: 16px;
  }
}
@media screen and (max-width: 640px) {
  .corner-icon {
    width: 10px;
  }
}

.signup-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 0 20px;
  width: 100%;
  height: 100px;
  color: #000000;
  background-color: #AAFA23;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
}
.signup-button:hover {
  background-color: #D0FF7A;
}
.signup-button::after {
  content: "";
  left: 0;
  position: absolute;
  width: 120%;
  height: 220px;
  margin-left: -10%;
  background: radial-gradient(ellipse at center, rgba(170, 250, 35, 0.5), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}
.signup-button > img {
  width: 25px;
  height: 25px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
}
@media screen and (max-width: 1024px) {
  .signup-button {
    height: 80px;
    font-size: 21px;
  }
  .signup-button > img {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 640px) {
  .signup-button {
    height: 60px;
    font-size: 16px;
  }
  .signup-button > img {
    width: 12px;
    height: 12px;
  }
}

.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  width: 110px;
  gap: 8px;
  line-height: 0;
  padding: 8px 12px;
  cursor: pointer;
}
.lang-switch--opened > .lang-switch__list {
  display: block;
}
.lang-switch--opened > .lang-switch__arrow {
  transform: rotate(180deg);
}
.lang-switch__list {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 110px;
  background-color: rgba(13, 13, 13, 0.56);
  border-radius: 10px;
  list-style: none;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .lang-switch__list {
    width: 90px;
    top: calc(100% + 8px);
  }
}
@media screen and (max-width: 400px) {
  .lang-switch__list {
    left: -30px;
  }
}
.lang-switch__link {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FAFAFA;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
}
.lang-switch__link:hover {
  background-color: rgba(0, 102, 255, 0.39);
}
.lang-switch__link.active {
  background-color: #0066FF;
}
@media screen and (max-width: 640px) {
  .lang-switch__link {
    gap: 8px;
  }
}
@media screen and (max-width: 640px) {
  .lang-switch__icon {
    width: 25px;
  }
}
@media screen and (max-width: 640px) {
  .lang-switch {
    width: 70px;
    padding: 8px 4px;
    gap: 4px;
  }
}

.header-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 70px;
  border-radius: 10px;
  color: #FAFAFA;
  opacity: 0.7;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
}
.header-button:hover {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .header-button {
    height: 50px;
  }
}
@media screen and (max-width: 640px) {
  .header-button {
    height: 35px;
    font-size: 12px;
  }
}
@media screen and (max-width: 400px) {
  .header-button {
    height: 30px;
    font-size: 10px;
  }
}
.header-button__icon {
  width: 9px;
}
@media screen and (max-width: 640px) {
  .header-button__icon {
    width: 6px;
  }
}
.header-button__login {
  width: 107px;
  border: 1px solid #FAFAFA;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .header-button__login {
    width: 99px;
  }
}
@media screen and (max-width: 640px) {
  .header-button__login {
    width: 55px;
  }
}
@media screen and (max-width: 400px) {
  .header-button__login {
    width: 48px;
  }
}
.header-button__signup {
  width: 300px;
  background-color: #000000;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .header-button__signup {
    width: 160px;
  }
}
@media screen and (max-width: 640px) {
  .header-button__signup {
    width: 105px;
  }
}
@media screen and (max-width: 400px) {
  .header-button__signup {
    width: 90px;
  }
}

.numbered-row {
  display: flex;
  align-items: center;
  background-color: #FA4823;
  border-radius: 20px;
  height: 89px;
  padding-left: 20px;
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
}
.numbered-row__label {
  flex: auto;
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 20px;
  margin-right: -1px;
  padding: 0 20px;
  border-radius: 20px;
  background-color: #101116;
  font-size: 26px;
  line-height: 100%;
  font-style: normal;
}
@media screen and (max-width: 1260px) {
  .numbered-row__label {
    font-size: 21px;
  }
}
@media screen and (max-width: 1024px) {
  .numbered-row__label {
    margin-left: 10px;
    font-size: 16px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .numbered-row {
    font-size: 14px;
    padding-left: 10px;
    height: 58px;
    border-radius: 10px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.header__logo {
  width: 248px;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 150px;
  }
}
@media screen and (max-width: 640px) {
  .header__logo {
    width: 124px;
  }
}
@media screen and (max-width: 400px) {
  .header__logo {
    width: 100px;
  }
}
.header__action-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 12px;
}
@media screen and (max-width: 640px) {
  .header__action-wrapper {
    gap: 8px;
  }
}

.first-section__title {
  position: relative;
  padding: 72px 0 16px;
  font-size: 71px;
  letter-spacing: 0;
  line-height: 110%;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}
.first-section__title > mark {
  font-style: italic;
  color: #AAFA23;
  background-color: transparent;
}
.first-section__title > span {
  display: block;
}
.first-section__title > span:last-child {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .first-section__title > span:last-child {
    display: inline;
  }
}
@media screen and (max-width: 1024px) {
  .first-section__title {
    padding: 24px 0 16px;
    font-size: 55px;
  }
}
@media screen and (max-width: 640px) {
  .first-section__title {
    padding: 40px 0 16px;
    font-size: 33px;
  }
}
.first-section__info-block-wrapper {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .first-section__info-block-wrapper {
    gap: 12px;
  }
}
@media screen and (max-width: 640px) {
  .first-section__info-block-wrapper {
    flex-direction: column;
  }
}
.first-section__info-block {
  position: relative;
  flex: 1;
  height: 350px;
  padding: 24px;
  background-color: #050505;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .first-section__info-block {
    height: 280px;
    padding: 16px;
  }
}
@media screen and (max-width: 640px) {
  .first-section__info-block {
    flex: auto;
    height: 170px;
    padding: 12px;
  }
}
.first-section__info-block--red::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(250, 72, 35, 0.6) 0%, rgba(250, 72, 35, 0) 70%);
  transform: translateY(-50%) translateX(50%);
  filter: blur(20px);
}
@media screen and (max-width: 1024px) {
  .first-section__info-block--red::before {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 640px) {
  .first-section__info-block--red::before {
    width: 200px;
    height: 200px;
  }
}
.first-section__info-block--blue::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.6) 0%, rgba(0, 102, 255, 0) 70%);
  transform: translateY(-50%) translateX(50%);
  filter: blur(20px);
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .first-section__info-block--blue::before {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 640px) {
  .first-section__info-block--blue::before {
    width: 200px;
    height: 200px;
  }
}
.first-section__info-block-title {
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
  line-height: 130%;
}
@media screen and (max-width: 1024px) {
  .first-section__info-block-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 640px) {
  .first-section__info-block-title {
    font-size: 21px;
  }
}
.first-section__info-block-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(250, 250, 250, 0.4);
}
.first-section__label-colored {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 60px;
  right: 60px;
  padding: 20px 20px;
  border-radius: 30px 0 30px 0;
  color: #000000;
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
  line-height: 100%;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.25);
}
.first-section__label-colored > mark {
  display: block;
  color: #FAFAFA;
  text-align: right;
  width: 100%;
  background-color: transparent;
}
.first-section__label-colored--red {
  background-color: #FA4823;
}
.first-section__label-colored--blue {
  background-color: #0066FF;
}
@media screen and (max-width: 1260px) {
  .first-section__label-colored {
    top: 80px;
    right: 50px;
    font-size: 32px;
    padding: 16px 16px;
  }
}
@media screen and (max-width: 1024px) {
  .first-section__label-colored {
    top: 80px;
    right: 40px;
    font-size: 25px;
    border-radius: 16px 0 16px 0;
    padding: 12px 12px;
  }
}
@media screen and (max-width: 760px) {
  .first-section__label-colored {
    top: 80px;
    right: 30px;
    font-size: 21px;
    border-radius: 12px 0 12px 0;
    padding: 10px 12px;
  }
}
@media screen and (max-width: 640px) {
  .first-section__label-colored {
    top: 40px;
    right: 30px;
    font-size: 21px;
    padding: 8px 12px;
  }
}
.first-section__label-shadowed {
  position: absolute;
  top: 170px;
  right: 136px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  border-radius: 26px 0 26px 0;
  color: #000000;
  background-color: #FAFAFA;
  font-size: 42px;
  font-weight: 700;
  transform: rotate(10.7deg);
}
.first-section__label-shadowed--red {
  box-shadow: 6px 6px 0 #FA4823;
}
.first-section__label-shadowed--red > mark {
  color: #FA4823;
  background-color: transparent;
}
.first-section__label-shadowed--blue {
  box-shadow: 6px 6px 0 #0066FF;
}
.first-section__label-shadowed--blue > mark {
  color: #0066FF;
  background-color: transparent;
}
@media screen and (max-width: 1260px) {
  .first-section__label-shadowed {
    gap: 12px;
    top: 160px;
    right: 110px;
    font-size: 32px;
    padding: 16px 16px;
  }
}
@media screen and (max-width: 1024px) {
  .first-section__label-shadowed {
    gap: 8px;
    top: 140px;
    right: 90px;
    font-size: 25px;
    border-radius: 14px 0 14px 0;
    padding: 12px 12px;
  }
}
@media screen and (max-width: 760px) {
  .first-section__label-shadowed {
    top: 130px;
    right: 70px;
    font-size: 21px;
    padding: 10px 12px;
  }
}
@media screen and (max-width: 640px) {
  .first-section__label-shadowed {
    top: 85px;
    padding: 8px 12px;
  }
}

.second-section {
  margin-top: 140px;
}
.second-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 46px;
  font-size: 42px;
  font-weight: 700;
  line-height: 120%;
  font-style: italic;
  text-transform: uppercase;
  color: #0066FF;
}
.second-section__title > mark {
  font-style: initial;
  color: #FAFAFA;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .second-section__title {
    font-size: 30px;
    margin-bottom: 30px;
    display: block;
    text-align: center;
  }
}
.second-section__info-block-wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.second-section__info-block-double {
  position: relative;
  flex-basis: calc(50% - 12px);
  height: 420px;
  padding: 20px;
  background: #101116;
  border-radius: 20px;
  font-size: 26px;
  font-weight: 400;
  line-height: 120%;
  overflow: hidden;
}
.second-section__info-block-double--blue {
  background-color: #0066FF;
}
@media screen and (max-width: 1024px) {
  .second-section__info-block-double {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 21px;
    height: 310px;
  }
  .second-section__info-block-double > img {
    position: static;
    top: unset;
    right: unset;
    max-height: 200px;
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  .second-section__info-block-double {
    flex-basis: auto;
    flex-grow: 1;
  }
}
.second-section__info-block-double-image {
  position: absolute;
  top: 36px;
  right: 0;
  width: 470px;
}
.second-section__info-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-basis: calc(25% - 24px);
  height: 420px;
  padding: 20px;
  background: #101116;
  border-radius: 20px;
  font-size: 26px;
  font-weight: 400;
  line-height: 120%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .second-section__info-block {
    flex-basis: calc(50% - 12px);
    font-size: 21px;
    height: 310px;
  }
}
@media screen and (max-width: 640px) {
  .second-section__info-block {
    flex-basis: auto;
    flex-grow: 1;
  }
}
.second-section__info-block-title {
  width: 100%;
}
.second-section__info-block-image {
  width: auto;
  max-height: 240px;
}
@media screen and (max-width: 1024px) {
  .second-section__info-block-image {
    max-height: 200px;
  }
}
.second-section > .container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-50%) translateY(50%);
  width: 1170px;
  height: 1170px;
  background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.4), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .second-section {
    margin-top: 100px;
  }
}

.third-section {
  margin-top: 150px;
}
.third-section__title {
  font-size: 42px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
}
.third-section__title mark {
  color: #FA4823;
  background-color: transparent;
  font-style: italic;
}
.third-section__title span {
  display: block;
  text-align: right;
  margin-right: 190px;
}
@media screen and (max-width: 1024px) {
  .third-section__title span {
    margin-right: unset;
    display: inline;
  }
}
@media screen and (max-width: 1024px) {
  .third-section__title {
    font-size: 30px;
    font-weight: 700;
  }
}
.third-section__subtitle {
  position: absolute;
  top: 6px;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.5;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .third-section__subtitle {
    top: -30px;
  }
}
.third-section__info-block-wrapper {
  display: flex;
  gap: 24px;
  margin-top: 45px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .third-section__info-block-wrapper {
    gap: 12px;
  }
}
@media screen and (max-width: 640px) {
  .third-section__info-block-wrapper {
    margin-bottom: 36px;
    flex-direction: column-reverse;
    gap: 36px;
  }
}
.third-section__info-block-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.third-section__info-block-right {
  flex: 1;
  background-color: #101116;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.third-section__info-block-right::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  background: radial-gradient(circle at bottom right, #FA4823, transparent 100%);
  pointer-events: none;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .third-section__info-block-right {
    flex: auto;
    height: 260px;
  }
}
.third-section__info-block-right-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  padding: 10px;
}
.third-section__rounded-label {
  position: absolute;
  padding: 20px;
  color: #000000;
  background-color: #FAFAFA;
  font-size: 35px;
  font-weight: 700;
  z-index: 1;
  border-radius: 20px 0 20px 0;
  line-height: 110%;
}
.third-section__rounded-label > mark {
  color: #FA4823;
  background-color: transparent;
}
.third-section__rounded-label--top {
  top: 60px;
  right: 50px;
}
@media screen and (max-width: 1024px) {
  .third-section__rounded-label--top {
    top: 40px;
    right: 40px;
  }
}
.third-section__rounded-label--bottom {
  bottom: 60px;
  left: 50px;
}
.third-section__rounded-label--bottom > mark {
  display: block;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .third-section__rounded-label--bottom {
    bottom: 45px;
    left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .third-section__rounded-label {
    padding: 10px;
    font-size: 16px;
    border-radius: 10px 0 10px 0;
  }
}

.fourth-section {
  margin-top: 140px;
}
.fourth-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.fourth-section__title > mark {
  color: #0066FF;
  font-style: italic;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .fourth-section__title {
    font-size: 30px;
  }
}
.fourth-section__bg-text {
  position: absolute;
  bottom: 0;
  font-size: 19vw;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 640px) {
  .fourth-section__bg-text {
    font-size: 18vw;
  }
}
.fourth-section__info-block-wrapper {
  position: relative;
  height: 500px;
  display: flex;
  gap: 24px;
  justify-content: center;
}
.fourth-section__info-block-wrapper::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  width: 100vw;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.8), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .fourth-section__info-block-wrapper {
    height: 270px;
    gap: 12px;
  }
}
@media screen and (max-width: 640px) {
  .fourth-section__info-block-wrapper {
    flex-wrap: wrap;
    align-items: flex-start;
    height: 330px;
    padding-bottom: 70px;
  }
}
.fourth-section__info-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 250px;
  background-color: #0066FF;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 80px 80px rgba(0, 40, 80, 0.95);
}
.fourth-section__info-block > .corner-icon {
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .fourth-section__info-block > .corner-icon {
    width: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .fourth-section__info-block {
    height: 126px;
    box-shadow: 0 40px 40px rgba(0, 40, 80, 0.95);
  }
}
@media screen and (max-width: 640px) {
  .fourth-section__info-block {
    flex-basis: calc(50% - 12px);
    box-shadow: 0 20px 20px rgba(0, 40, 80, 0.95);
  }
}
.fourth-section__info-block-link {
  color: #FAFAFA;
  font-size: 26px;
  font-weight: 400;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .fourth-section__info-block-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .fourth-section {
    margin-top: 100px;
  }
}
