@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent !important;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  cursor: pointer;
}

img {
  max-width: 100%;
}

span, label {
  display: inline-block;
}

html {
  scroll-behavior: smooth;
}

input, textarea {
  outline: none;
  border: 0;
  background: transparent;
  font-weight: bold;
}

button, select {
  border: none;
  cursor: pointer;
  background: transparent;
  outline: 0;
  font-weight: bold;
}

address {
  font-style: normal;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  min-height: 100svh;
}

ul, ol, dl {
  list-style: none;
  padding: 0;
  margin: 0;
}

p, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  font-weight: bold;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

body {
  color: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-weight: bold;
  background: radial-gradient(129.33% 86.22% at 86.74% 99.6%, #161111 0%, #050000 12%, #1a1212 30%, #0e0e10 47%, #0b0707 63%, #07080c 78%, #030305 100%);
}

button, input, textarea, li, div {
  font-family: "Gilroy", sans-serif;
  font-weight: bold;
}

html {
  font-size: 1px;
}
@media (max-width: 1850px) {
  html {
    font-size: 0.95px;
  }
}
@media (max-width: 1780px) {
  html {
    font-size: 0.9px;
  }
}
@media (max-width: 1680px) {
  html {
    font-size: 0.85px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 0.8px;
  }
}
@media (max-width: 1480px) {
  html {
    font-size: 0.75px;
  }
}
@media (max-width: 1380px) {
  html {
    font-size: 0.7px;
  }
}
@media (max-width: 1330px) {
  html {
    font-size: 0.65px;
  }
}
@media (max-width: 1240px) {
  html {
    font-size: 0.6px;
  }
}
@media (max-width: 1140px) {
  html {
    font-size: 0.55px;
  }
}
@media (max-width: 1030px) {
  html {
    font-size: 0.5px;
  }
}
@media (max-width: 930px) {
  html {
    font-size: 0.45px;
  }
}
@media (max-width: 850px) {
  html {
    font-size: 1px;
  }
}

.container {
  max-width: 1680rem;
  width: calc(100% - 40rem);
  margin: 0 auto;
}

.form-inp {
  background: #FFF;
  border: 0.5rem solid #f4f4f4;
  border-radius: 5rem;
  padding: 0 8rem;
  width: 100%;
  height: 60rem;
  font-size: 20rem;
  color: #000;
  font-weight: 500;
}
@media screen and (max-width: 850px) {
  .form-inp {
    height: 40rem;
    font-size: 16rem;
    width: 100%;
  }
}
.form-inp::-moz-placeholder {
  color: #7c7c7c;
  font-weight: 250;
}
.form-inp::placeholder {
  color: #7c7c7c;
  font-weight: 250;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12rem;
}
.form-checkbox__icon {
  width: 32rem;
  height: 32rem;
  border-radius: 5rem;
  border: 1rem solid #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.form-checkbox__icon .icon {
  width: 20.62rem;
  display: none;
}
.form-checkbox__icon input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}
.form-checkbox__icon input:checked ~ .icon {
  display: block;
}
.form-checkbox__text {
  font-weight: 300;
  font-size: 14rem;
  color: #f4f4f4;
  max-width: 441rem;
  width: 100%;
}
.form-checkbox__text a {
  display: inline;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.main-btn {
  border-radius: 5rem;
  width: 100%;
  height: 60rem;
  background: linear-gradient(180deg, #f80 0%, #ffea00 100%);
  font-weight: 700;
  font-size: 18rem;
  line-height: 111%;
  text-align: center;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 850px) {
  .main-btn {
    height: 50rem;
  }
}

.sec-title {
  font-weight: 900;
  font-size: 60rem;
  line-height: 77rem;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 850px) {
  .sec-title {
    font-size: 29rem;
    line-height: 37rem;
    text-align: center;
  }
}
.sec-title span {
  font-weight: 900;
  background: linear-gradient(180deg, #f80 0%, #ffea00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header {
  position: absolute;
  top: 18rem;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 850px) {
  .header {
    top: 0;
  }
}
@media screen and (max-width: 850px) {
  .header.active {
    -webkit-backdrop-filter: blur(7rem);
            backdrop-filter: blur(7rem);
    box-shadow: 0 4rem 25rem 0 rgba(255, 136, 0, 0.75);
    background: linear-gradient(180deg, rgba(50, 36, 36, 0.8) 0%, #282525 100%);
  }
  .header.active .header-container::before {
    display: block;
  }
  .header.active .header-logo {
    font-size: 14rem;
    gap: 9rem;
  }
  .header.active .header-logo img {
    width: 43.9rem;
  }
  .header.active .header-navs {
    display: flex;
  }
  .header.active .bars img {
    display: none;
  }
  .header.active .bars img:nth-child(2) {
    display: flex;
  }
}
.header .bars {
  display: none;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 850px) {
  .header .bars {
    display: flex;
  }
}
.header .bars img:nth-child(2) {
  display: none;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 24rem 0;
}
@media screen and (max-width: 850px) {
  .header-container {
    flex-wrap: wrap;
    position: static;
    gap: 22rem;
  }
}
.header-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background: linear-gradient(to bottom, #FF8800, #FFEA00);
}
@media screen and (max-width: 850px) {
  .header-container::before {
    display: none;
  }
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 28rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 20rem;
  color: #fff;
  max-width: 300rem;
}
@media screen and (max-width: 850px) {
  .header-logo {
    font-size: 11rem;
    max-width: 213rem;
    gap: 16rem;
  }
}
.header-logo img {
  width: 56.6rem;
}
@media screen and (max-width: 850px) {
  .header-logo img {
    width: 33.46rem;
  }
}
.header-navs {
  display: flex;
  align-items: center;
  gap: 60rem;
}
@media screen and (max-width: 850px) {
  .header-navs {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24rem;
  }
}
.header-navs__link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20rem;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #909da2;
}
@media screen and (max-width: 850px) {
  .header-navs__link {
    color: #fff;
  }
}

.home-container {
  padding-top: 208rem;
  position: relative;
}
@media screen and (max-width: 850px) {
  .home-container {
    padding-top: 331rem;
  }
}
.home .bg-1 {
  width: 1034rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: screen;
}
@media screen and (max-width: 850px) {
  .home .bg-1 {
    display: none;
  }
}
.home .bg-2 {
  width: 938rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  mix-blend-mode: screen;
}
@media screen and (max-width: 850px) {
  .home .bg-2 {
    display: none;
  }
}
.home .card-1 {
  width: 1610rem;
  position: absolute;
  top: 135rem;
  right: -350rem;
  z-index: -1;
}
@media screen and (max-width: 850px) {
  .home .card-1 {
    display: none;
    width: 850rem;
    min-width: 850rem;
    top: 74rem;
    right: 200rem;
    right: 50%;
    transform: translateX(calc(50% - 18px));
  }
}
.home .card-1.sm {
  display: none;
}
@media screen and (max-width: 850px) {
  .home .card-1.sm {
    display: block;
  }
}
.home .card-2 {
  position: absolute;
  width: 618rem;
  bottom: -292rem;
  right: -120rem;
}
@media screen and (max-width: 850px) {
  .home .card-2 {
    display: none;
  }
}
.home h4 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 24rem;
  color: #fff;
  margin-bottom: 18rem;
  max-width: 491rem;
}
@media screen and (max-width: 850px) {
  .home h4 {
    text-align: center;
    font-size: 14rem;
    max-width: 100%;
    margin-bottom: 8rem;
  }
}
.home h4 br {
  display: none;
}
@media screen and (max-width: 850px) {
  .home h4 br {
    display: block;
  }
}
.home h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 66rem;
  line-height: 126%;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f80 0%, #ffea00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 38rem;
}
@media screen and (max-width: 850px) {
  .home h1 {
    font-family: "Gilroy", sans-serif;
    font-weight: 900;
    font-size: 32rem;
    line-height: inherit;
    text-align: center;
    margin-bottom: 8rem;
  }
}
.home .description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 26rem;
  color: #d7d7d7;
  margin-bottom: 83rem;
  max-width: 853rem;
}
@media screen and (max-width: 850px) {
  .home .description {
    font-size: 18rem;
    height: 122%;
    font-family: "Gilroy", sans-serif;
    text-align: center;
    max-width: 100%;
    margin-bottom: 28rem;
  }
}
.home .form-content {
  margin-left: -130rem;
}
@media screen and (max-width: 850px) {
  .home .form-content {
    margin: 0;
  }
}

.form-content {
  background: linear-gradient(180deg, rgba(50, 36, 36, 0.69) 0%, #282525 100%);
  position: relative;
  z-index: 1;
  padding: 60rem 32rem 60rem 130rem;
  border-radius: 26rem;
  max-width: 1223rem;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .form-content {
    width: calc(100% + 40rem);
    margin-left: -20rem !important;
    padding: 24rem 20rem;
    border-radius: 12rem;
  }
}
.form-content::before {
  border-radius: 24rem;
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 2rem solid transparent;
  background: linear-gradient(to bottom, #FF8800, #FFEA00) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media screen and (max-width: 850px) {
  .form-content::before {
    display: none;
  }
}
.form-content h2 {
  font-weight: 900;
  font-size: 52rem;
  line-height: 66rem;
  background: linear-gradient(180deg, #f80 0%, #ffea00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8rem;
}
@media screen and (max-width: 850px) {
  .form-content h2 {
    font-size: 29rem;
    line-height: inherit;
    text-align: center;
  }
}
.form-content h3 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 28rem;
  color: #f4f4f4;
  line-height: 34rem;
  margin-bottom: 48rem;
}
@media screen and (max-width: 850px) {
  .form-content h3 {
    font-family: "Gilroy", sans-serif;
    font-size: 22rem;
    line-height: inherit;
    text-align: center;
    margin-bottom: 32rem;
  }
}
.form-content h3 span {
  font-weight: 800;
  background: linear-gradient(180deg, #f80 0%, #ffea00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 850px) {
  .form-content h3 span {
    display: block;
  }
}
.form-content__group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 850px) {
  .form-content__group {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-bottom: 0;
  }
  .form-content__group .form-inp {
    margin-bottom: 12rem;
  }
  .form-content__group .main-btn {
    margin-top: 46rem;
  }
}
.form-content p {
  font-weight: 250;
  font-size: 16rem;
  color: #f4f4f4;
  margin-bottom: 32rem;
}
@media screen and (max-width: 850px) {
  .form-content p {
    margin: 0;
    font-size: 12rem;
    color: #FFF;
    position: absolute;
    left: 20rem;
    bottom: 106rem;
  }
}
@media screen and (max-width: 850px) {
  .form-content .form-checkbox {
    display: none;
  }
}

.investor {
  padding-top: 158rem;
}
@media screen and (max-width: 850px) {
  .investor {
    padding-top: 0;
  }
}
.investor-title {
  max-width: 957rem;
  width: 100%;
  margin-bottom: 554rem;
}
@media screen and (max-width: 850px) {
  .investor-title {
    margin-bottom: 16rem;
  }
}
.investor-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40rem;
}
@media screen and (max-width: 850px) {
  .investor-list {
    flex-direction: column;
  }
}
.investor-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 850px) {
  .investor-list__item {
    width: 100%;
    padding-top: 383rem;
  }
}
.investor-list__item:nth-child(2) .main-img {
  width: 956rem;
  min-width: 956rem;
  top: -546rem;
  left: -205rem;
}
.investor-list__item:nth-child(2) p {
  max-width: 531rem;
}
.investor-list__item:nth-child(3) .main-img {
  left: -406rem;
}
.investor-list__item:nth-child(3) p {
  max-width: 481rem;
}
.investor-list__item .main-img {
  position: absolute;
  width: 1316rem;
  min-width: 1316rem;
  top: -760rem;
  left: -422rem;
  z-index: -1;
  mix-blend-mode: screen;
}
@media screen and (max-width: 850px) {
  .investor-list__item .main-img {
    display: none;
    width: 375rem !important;
    min-width: 375rem !important;
    left: -20rem !important;
    top: 0 !important;
    mix-blend-mode: inherit;
  }
}
.investor-list__item .main-img.sm {
  display: none;
}
@media screen and (max-width: 850px) {
  .investor-list__item .main-img.sm {
    display: block;
  }
}
.investor-list__item h3 {
  font-weight: 800;
  font-size: 36rem;
  text-align: center;
  background: linear-gradient(180deg, #f80 0%, #ffea00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12rem;
}
@media screen and (max-width: 850px) {
  .investor-list__item h3 {
    width: 100%;
    text-align: left;
    margin-bottom: 8rem;
    font-size: 24rem;
  }
}
.investor-list__item p {
  font-weight: 500;
  font-size: 22rem;
  text-align: center;
  color: #f2fcff;
  max-width: 531rem;
  width: 100%;
  margin-bottom: 28rem;
}
@media screen and (max-width: 850px) {
  .investor-list__item p {
    max-width: 100% !important;
    text-align: left;
    font-size: 16px;
  }
}
.investor-list__item .text {
  background: linear-gradient(180deg, rgba(50, 36, 36, 0.69) 0%, #282525 100%);
  font-weight: 300;
  font-size: 18rem;
  text-align: center;
  color: #f2fcff;
  border-radius: 6rem;
  padding: 8rem;
  max-width: 437rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 850px) {
  .investor-list__item .text {
    font-size: 16rem;
    max-width: 100%;
    text-align: left;
    border-radius: 0;
  }
}
.investor-list__item .text::before {
  border-radius: 4rem;
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1rem solid transparent;
  background: linear-gradient(to bottom, #FF8800, #FFEA00) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media screen and (max-width: 850px) {
  .investor-list__item .text::before {
    border-radius: 0;
  }
}
.investor-list__item:first-child p {
  max-width: 419rem;
}

.lesson {
  padding-top: 140rem;
}
@media screen and (max-width: 850px) {
  .lesson {
    padding-top: 60rem;
  }
}
.lesson .subtitle {
  font-weight: 500;
  font-size: 20rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28rem;
}
@media screen and (max-width: 850px) {
  .lesson .subtitle {
    font-size: 14rem;
    line-height: 17rem;
    text-align: center;
    margin-bottom: 12rem;
  }
}
.lesson-container {
  position: relative;
}
.lesson-container::before {
  content: "";
  position: absolute;
  top: -505rem;
  left: -733rem;
  width: 1477rem;
  height: 1355rem;
  background: radial-gradient(69.01% 69.01% at 38.24% 50%, rgb(205, 89, 89) 0%, rgb(118, 57, 57) 7.0000000298%, rgb(112, 54, 54) 7.0100001991%, rgb(107, 52, 52) 8.1597007811%, rgb(87, 42, 42) 12.9999995232%, rgb(59, 29, 29) 18.9999997616%, rgb(37, 18, 18) 25.9999990463%, rgb(20, 10, 10) 34.999999404%, rgb(9, 4, 4) 44.9999988079%, rgb(2, 1, 2) 60.0000023842%, rgb(0, 0, 0) 100%);
  z-index: -1;
  border-radius: 50%;
  mix-blend-mode: screen;
}
@media screen and (max-width: 850px) {
  .lesson-container::before {
    top: -253rem;
    left: -652rem;
  }
}
.lesson-title {
  margin-bottom: 48rem;
  margin-bottom: 32rem;
}
.lesson-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48rem 120rem;
}
@media screen and (max-width: 850px) {
  .lesson-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20rem;
  }
}
@media screen and (max-width: 576px) {
  .lesson-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.lesson-card {
  border-radius: 5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.lesson-card::before {
  border-radius: 4rem;
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(to bottom, #FF8800, #FFEA00) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.lesson-card__head {
  margin: 1rem 0 0 1rem;
  width: calc(100% - 2rem);
  border-radius: 4rem 4rem 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.lesson-card__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}
.lesson-card__head .main-img {
  height: 192rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 850px) {
  .lesson-card__head .main-img {
    height: 155rem;
  }
}
.lesson-card__head button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36rem;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.lesson-card__head button img {
  width: 100%;
}
.lesson-card__body {
  padding: 4rem 12rem 20rem;
}
@media screen and (max-width: 850px) {
  .lesson-card__body {
    padding: 4px 4px 5px 8rem;
  }
}
.lesson-card__body h3 {
  font-weight: 700;
  font-size: 28rem;
  line-height: 35rem;
  background: linear-gradient(180deg, #f80 0%, #ffea00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 70rem;
  max-width: 412rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 850px) {
  .lesson-card__body h3 {
    font-size: 20rem;
    min-height: inherit;
    line-height: inherit;
    max-width: 100%;
  }
}
.lesson-card__body p {
  font-weight: 300;
  font-size: 18rem;
  color: #fff;
  margin-bottom: 12rem;
}
@media screen and (max-width: 850px) {
  .lesson-card__body p {
    font-size: 14rem;
  }
}
.lesson-card__body a {
  height: 36rem;
  border-radius: 5rem;
  font-weight: 700;
  font-size: 18rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 850px) {
  .lesson-card__body a {
    color: black;
  }
}

.invest-form {
  padding-top: 198rem;
}
@media screen and (max-width: 850px) {
  .invest-form {
    padding: 0;
  }
}
.invest-form__container {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media screen and (max-width: 850px) {
  .invest-form__container {
    padding-top: 201rem;
    display: block;
  }
}
.invest-form__container::before {
  content: "";
  width: 395rem;
  height: 395rem;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgb(220, 0, 70) 0%, rgb(190, 0, 60) 9.0000003576%, rgb(133, 0, 42) 27.0000010729%, rgb(85, 0, 27) 43.9999997616%, rgb(48, 0, 15) 61.0000014305%, rgb(22, 0, 7) 75.9999990463%, rgb(6, 0, 2) 88.9999985695%, rgb(0, 0, 0) 100%);
  position: absolute;
  left: 154rem;
  top: 64rem;
  z-index: -1;
  mix-blend-mode: screen;
  opacity: 0.65;
}
@media screen and (max-width: 850px) {
  .invest-form__container::before {
    left: 50%;
    top: 77.91rem;
    transform: translateX(calc(-50% + 80rem));
    width: 204rem;
    height: 204rem;
  }
}
.invest-form__bg {
  position: absolute;
  left: -156rem;
  top: -11rem;
  z-index: -1;
  width: 704rem;
  mix-blend-mode: screen;
}
@media screen and (max-width: 850px) {
  .invest-form__bg {
    width: 333rem;
    min-width: 333rem;
    left: 50%;
    transform: translateX(calc(-50% - 17rem));
    top: 39rem;
    display: none;
  }
}
.invest-form__bg.sm {
  display: none;
}
@media screen and (max-width: 850px) {
  .invest-form__bg.sm {
    display: block;
  }
}
.invest-form .form-content {
  margin-right: -120rem;
  max-width: 1241rem;
  border-radius: 26rem 0 0 26rem;
  padding: 60rem 120rem 60rem 60rem;
}
@media screen and (max-width: 850px) {
  .invest-form .form-content {
    max-width: inherit;
    width: 100%;
    width: calc(100% + 40rem);
    min-width: calc(100% + 40rem);
    margin: 0;
    border-radius: 12rem;
    padding: 24rem 20rem;
  }
  .invest-form .form-content::before {
    display: block;
    border-width: 1rem;
    border-radius: 11rem;
  }
}

.about {
  padding-top: 140rem;
}
@media screen and (max-width: 850px) {
  .about {
    padding-top: 60rem;
  }
}
.about-container {
  max-width: 1634rem;
  position: relative;
}
@media screen and (max-width: 850px) {
  .about-container {
    padding-bottom: 281rem;
  }
}
.about-title {
  margin-bottom: 48rem;
}
@media screen and (max-width: 850px) {
  .about-title {
    margin-bottom: 20rem;
  }
}
.about-list {
  max-width: 620rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28rem;
  margin-bottom: 28rem;
}
@media screen and (max-width: 850px) {
  .about-list {
    gap: 12rem;
    max-width: 100%;
  }
}
.about-list__item {
  display: flex;
  align-items: flex-start;
  gap: 24rem;
  position: relative;
  z-index: 1;
  border-radius: 13rem;
  padding: 8rem 20rem;
}
@media screen and (max-width: 850px) {
  .about-list__item {
    padding: 8rem 4rem;
    gap: 8rem;
  }
}
.about-list__item::before {
  border-radius: 12rem;
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1rem solid transparent;
  background: linear-gradient(to bottom, #FF8800, #FFEA00) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.about-list__item img {
  width: 48rem;
  flex-shrink: 0;
}
@media screen and (max-width: 850px) {
  .about-list__item img {
    width: 24rem;
  }
}
.about-list__item p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24rem;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #fff;
}
@media screen and (max-width: 850px) {
  .about-list__item p {
    font-size: 16rem;
  }
}
.about .text {
  max-width: 620rem;
  width: 100%;
  background: linear-gradient(180deg, #f80 0%, #ffea00 100%);
  border-radius: 13rem;
  padding: 8rem 20rem;
}
@media screen and (max-width: 850px) {
  .about .text {
    max-width: 100%;
    padding: 8rem 4rem;
  }
}
.about .text p {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18rem;
  line-height: 140%;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, rgba(50, 36, 36, 0.69) 0%, #282525 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 850px) {
  .about .text p {
    font-size: 16rem;
  }
}
.about-card {
  width: 732rem;
  position: absolute;
  bottom: 0;
  right: 30.5rem;
  z-index: -1;
}
@media screen and (max-width: 850px) {
  .about-card {
    width: 298.59rem;
    right: 50%;
    transform: translateX(50%);
  }
}

.learn {
  padding-top: 140rem;
}
@media screen and (max-width: 850px) {
  .learn {
    padding-top: 60rem;
  }
}
.learn-container {
  max-width: 1634rem;
}
.learn-title {
  text-align: center;
  margin-bottom: 50rem;
}
@media screen and (max-width: 850px) {
  .learn-title {
    margin-bottom: 32rem;
  }
}
.learn-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28rem;
  margin-bottom: 65rem;
}
@media screen and (max-width: 850px) {
  .learn-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 12rem;
    margin-bottom: 32rem;
  }
}
.learn-list__item {
  display: flex;
  align-items: center;
  gap: 24rem;
  position: relative;
  z-index: 1;
  border-radius: 13rem;
  padding: 12rem 20rem;
}
@media screen and (max-width: 850px) {
  .learn-list__item {
    border-radius: 8rem;
    padding: 8rem 6rem 8rem 12rem;
    gap: 10rem;
  }
}
.learn-list__item::before {
  border-radius: 12rem;
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1rem solid transparent;
  background: linear-gradient(to bottom, #FF8800, #FFEA00) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media screen and (max-width: 850px) {
  .learn-list__item::before {
    border-radius: 7rem;
  }
}
.learn-list__item img {
  width: 48rem;
  flex-shrink: 0;
}
@media screen and (max-width: 850px) {
  .learn-list__item img {
    width: 36rem;
  }
}
.learn-list__item p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20rem;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #fff;
}
@media screen and (max-width: 850px) {
  .learn-list__item p {
    font-size: 16rem;
  }
}
.learn .more-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.learn .more-link .main-btn {
  width: auto;
  padding: 0 56rem;
  font-size: 20rem;
}
@media screen and (max-width: 850px) {
  .learn .more-link .main-btn {
    height: 54rem;
    width: 100%;
    padding: 0;
    font-size: 18rem;
  }
}

.review {
  padding-top: 140rem;
}
@media screen and (max-width: 850px) {
  .review {
    padding-top: 60rem;
  }
}
.review-container {
  padding-bottom: 100rem;
  position: relative;
}
@media screen and (max-width: 850px) {
  .review-container {
    padding-bottom: 62rem;
  }
}
.review-title {
  text-align: center;
  margin-bottom: 48rem;
}
@media screen and (max-width: 850px) {
  .review-title {
    margin-bottom: 32rem;
  }
}
.review-title span {
  display: inline;
}
.review .swiper {
  overflow: visible;
}
.review-card {
  position: relative;
  z-index: 1;
  border-radius: 7rem;
  padding: 12rem 4rem 12rem 8rem;
  width: 344rem;
}
.review-card::before {
  border-radius: 6rem;
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1rem solid transparent;
  background: linear-gradient(to bottom, #FF8800, #FFEA00) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 12rem;
  margin-bottom: 12rem;
}
.review-card__head img {
  width: 52rem;
  height: 52rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.review-card__head h3 {
  font-weight: 700;
  font-size: 22rem;
  background: linear-gradient(180deg, #f80 0%, #ffea00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 850px) {
  .review-card__head h3 {
    font-size: 20rem;
  }
}
.review-card p {
  font-weight: 600;
  font-size: 18rem;
  color: #ebebeb;
}
@media screen and (max-width: 850px) {
  .review-card p {
    font-size: 16rem;
  }
}
.review-btns button {
  position: absolute;
  bottom: 0;
  width: 60rem;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 850px) {
  .review-btns button {
    width: 42rem;
  }
}
.review-btns button img {
  width: 100%;
}
.review-btns button.swiper-button-disabled {
  display: none;
}
.review .btn-prev {
  left: 0;
}
.review .btn-next {
  right: 0;
}

.contact {
  padding: 140rem 0;
}
@media screen and (max-width: 850px) {
  .contact {
    padding: 60rem 0;
  }
}
.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 850px) {
  .contact-container {
    width: 100%;
  }
}
.contact .form-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1321rem;
  padding: 60rem 130rem;
  margin: 0 !important;
}
@media screen and (max-width: 850px) {
  .contact .form-content {
    padding: 24rem 20rem;
  }
}
.contact .form-content__group {
  width: 100%;
}
.contact .form-content p {
  width: 100%;
  text-align: left;
}
.contact .form-content .form-checkbox__text {
  color: #f4f4f4;
}

.footer {
  padding: 60rem 0;
  position: relative;
}
@media screen and (max-width: 850px) {
  .footer {
    padding: 11rem 0 61rem;
  }
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2rem;
  width: 100%;
  background: linear-gradient(to bottom, #FF8800, #FFEA00);
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 58rem;
}
@media screen and (max-width: 850px) {
  .footer-container {
    gap: 24rem;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 37rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 26rem;
  color: #fff;
}
@media screen and (max-width: 850px) {
  .footer-logo {
    gap: 28rem;
    font-size: 20rem;
  }
}
.footer-logo img {
  width: 76.87rem;
  flex-shrink: 0;
}
@media screen and (max-width: 850px) {
  .footer-logo img {
    width: 58.6rem;
  }
}
.footer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 850px) {
  .footer-head {
    flex-direction: column;
    gap: 24rem;
  }
}
.footer-head__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32rem;
}
@media screen and (max-width: 850px) {
  .footer-head__right {
    gap: 17rem;
    align-items: center;
  }
}
.footer-head__right p {
  font-weight: 300;
  font-size: 22rem;
  text-align: right;
  color: #fff;
}
@media screen and (max-width: 850px) {
  .footer-head__right p {
    font-size: 14rem;
    text-align: center;
  }
}
.footer-head__right ul {
  display: flex;
  gap: 80rem;
}
@media screen and (max-width: 850px) {
  .footer-head__right ul {
    border-top: 1rem solid rgba(255, 255, 255, 0.1);
    padding-top: 8rem;
    gap: 33rem;
  }
}
.footer-head__right a {
  font-weight: 500;
  font-size: 22rem;
  color: #fff;
}
@media screen and (max-width: 850px) {
  .footer-head__right a {
    font-size: 13rem;
    text-align: center;
  }
}
.footer-text {
  font-weight: 300;
  font-size: 20rem;
  text-align: center;
  color: #f0f0f0;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .footer-text {
    font-size: 13rem;
    color: #3d3d3d;
  }
}

.policy {
  padding: 241rem 0 28rem;
  position: relative;
}
@media screen and (max-width: 850px) {
  .policy {
    padding: 140rem 0 0;
  }
}
.policy::before {
  content: "";
  width: 1477rem;
  height: 642rem;
  position: absolute;
  top: 1009rem;
  left: -613rem;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(69.01% 69.01% at 38.24% 50%, rgb(205, 89, 89) 0%, rgb(118, 57, 57) 7.0000000298%, rgb(112, 54, 54) 7.0100001991%, rgb(107, 52, 52) 8.1597007811%, rgb(87, 42, 42) 12.9999995232%, rgb(59, 29, 29) 18.9999997616%, rgb(37, 18, 18) 25.9999990463%, rgb(20, 10, 10) 34.999999404%, rgb(9, 4, 4) 44.9999988079%, rgb(2, 1, 2) 60.0000023842%, rgb(0, 0, 0) 100%);
  mix-blend-mode: screen;
}
@media screen and (max-width: 850px) {
  .policy::before {
    display: none;
  }
}
.policy .bg-1 {
  width: 1034rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: screen;
}
@media screen and (max-width: 850px) {
  .policy .bg-1 {
    display: none;
  }
}
.policy .bg-2 {
  width: 938rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  mix-blend-mode: screen;
}
@media screen and (max-width: 850px) {
  .policy .bg-2 {
    display: none;
  }
}
.policy-title {
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .policy-title {
    text-align: left;
  }
}
.policy-container {
  max-width: 1025rem;
}
.policy-head {
  margin-bottom: 48rem;
  display: flex;
  flex-direction: column;
  gap: 16rem;
  margin-bottom: 48rem;
}
.policy-head p {
  font-weight: 400;
  font-size: 26rem;
  color: #fff;
  max-width: 875rem;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .policy-head p {
    font-size: 18rem;
  }
}
.policy-content {
  display: flex;
  flex-direction: column;
  gap: 32rem;
}
.policy-content__item h3 {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 32rem;
  color: #fff;
  gap: 24rem;
  margin-bottom: 16rem;
}
@media screen and (max-width: 850px) {
  .policy-content__item h3 {
    font-size: 20rem;
    gap: 16rem;
  }
}
.policy-content__item h3 .number {
  border-radius: 131rem;
  width: 42rem;
  height: 42rem;
  background: linear-gradient(180deg, #f80 0%, #ffea00 100%);
  font-weight: 700;
  font-size: 28rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 850px) {
  .policy-content__item h3 .number {
    width: 36rem;
    height: 36rem;
    font-size: 22rem;
  }
}
.policy-content__item .text {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}
.policy-content__item p, .policy-content__item li {
  font-weight: 300;
  font-size: 22rem;
  color: #fff;
}
@media screen and (max-width: 850px) {
  .policy-content__item p, .policy-content__item li {
    font-size: 16rem;
  }
}/*# sourceMappingURL=style.css.map */