*{padding: 0;margin: 0;border: 0;}
*,*:before,*:after{-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:18px;}
input,button,textarea{font-family:inherit;}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: inherit;}

body{
    font-family: "Urbanist", sans-serif;
    font-style: normal;
    background-color: #2B2F54;
}
.wrapper{
    
}
.header{
    position: relative;
    z-index: 2;
    padding-top: 74px;
    display: flex;
    justify-content: space-between;
    max-width: 1465px;
    margin: 0 auto;
}
.btn__started{
    display: flex;
    align-items: center;
    background: linear-gradient(91.09deg, #F925FE 0.49%, #FFB611 51.04%, #0075FF 101.36%);
    border-radius: 30px;
    color:#fff;
    font-weight: 800;
    font-size: 20px;
    height: 56px;
    padding: 0px 55.5px;
}
.btn__started:hover{
    transition: ease-in-out 0.3s;
    filter: invert(2);
    
}
.main{
    position: relative;
    border-radius: 0px 0px 50px 50px;
    background-color: #000;
    padding: 0px 228px;
    margin-bottom: 13px;
}
.main__content{
    position: relative;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    top: -130px;
}
.main__content > h1 {
    font-weight: 700;
    font-size: 96px;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    text-shadow: 0px 10px 15px #000000;
    max-width: 1035px;
    width: 100%;
    text-align: center;
    line-height: 100%;
    top: 200px;
    line-height: 110px;
    text-transform: uppercase;

}
.top{
    position: relative;
    top: -140px;
}

/* FORM */
.form-container {
    display: flex;
    align-items: center;
    background-color: #0D79F5;
    padding:28px 21.5px 28px 49.5px;
    border-radius: 22px;
    max-width: 1143px;
    margin: 0 auto;
    align-items: end;
    gap: 10px;
}
.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}
.error-text {
    position: absolute;
    bottom: -14px;
    color: red;
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.form-input.error {
    border: 2px solid red;
}
label{
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    padding-bottom: 8px;
    padding-left: 10px;
}
input {
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    max-width: 179px;
    font-size: 18px;
    height: 50px;
    width: 100%;
}
input:focus{
    border: 1px solid #000000b9;
}
.phoneInput{
    max-width: 242px !important;
    width: 100% !important;
}
.emailInput{
    max-width: 222px !important;
    width: 100% !important;
}
.btn__reg{
    height: 50px !important;
    padding: 0px 31px !important;
    background: linear-gradient(91.29deg, #F925FE 0.58%, #FFB611 56.58%, #0900FF 99.55%) !important;

}
.arrow__botttom{
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translate(-50%, 0);
}
.arrow__botttom > div > img:first-child{
    position: relative;
    animation: rotate 9s linear infinite;
}
.arrow__botttom > div > img:last-child{
    position: absolute;
    left: 50%;
    top: 45px;
    transform: translate(-50%, 0);
}

/* SECTION */
.section{
    padding: 0px 228px;
    padding-bottom: 146px;
    padding-top: 177px;
    background-color: #000;
    border-radius: 50px;
}
section > h2{
    color: #fff;
    font-weight: 500;
    font-size: 60px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 51px;
    position: relative;
    z-index: 2;
}
section > h2 > span{
    background: linear-gradient(90deg, #F928FA 45.13%, #F9B417 60.55%, #1079F0 72.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}
section > h3{
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}
.core {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
.core > h2{
    max-width: 734px;
    
}
.core > h3{
    max-width: 1010px;
}
.core__list{
    max-width: 1465px;
    display: flex;
    gap: 26px;
    margin-top: 46px;
    margin-bottom: 27px;
}
.core__item{
    padding: 36px;
    border: 1px solid #0077C3; 
    border-radius: 31px;
}
.core__item:hover{
    background-color: #0D79F5;
    transition: ease-in-out 0.3s;
}
.core__item:hover > img{
    filter:invert(3) brightness(3);
}
.core__item > h3{
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 26px;
}
.core__item > h4{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}
.core__item > img{
    cursor: pointer;
}
.core__item > img:hover{
    transition: ease-in-out 0.3s;
    transform: translateX(10px);
}
.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    padding: 26px 0px;
    height: 107px;
    overflow-x: hidden;
  }
  
  .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 32s linear infinite;
  }
  
  
.marquee-item{
    display: flex;
    gap: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 60px;
}
.invest{
    width: 400px !important;
    color: #2B2F54;
    text-shadow: 
    -1px -1px 0 rgb(255, 255, 255),  
     1px -1px 0 rgb(255, 254, 254),
    -1px  1px 0 rgb(255, 255, 255),
     1px  1px 0 rgb(255, 255, 255);
}

.benefit{
    border-radius: 50px 50px 0px 0px ;
    padding-bottom: 0px;
}

.benefit__content{
    display: flex;
    align-items:center;
    justify-content: space-between;
    max-width: 1362px;
    margin:  0 auto;
    margin-bottom: 133px;
}
.benefit__content > img {
    animation: rotate 9s linear infinite;
}
.benefit__content > ul {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.benefit__content > ul > li{
    max-width: 330px;
    height: 90px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 20px;
    gap: 10px;
    line-height: 28px;
    background-color: #121212;
}
.benefit__content > ul > li > h3{
    font-size: 20px;
    color: #fff;
}

.power{
    padding-top: 220px;
    padding-bottom: 0px;
    border-radius: 0px;
    text-align: center;
}
.power > h2{
    margin: 0 auto;
    margin-bottom: 75px;
    max-width: 924px;
}
.power > h3{
    max-width: 1212px;
    margin: 0 auto;
    margin-bottom: 34px;
}
.power__content{
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}
.power__numbers{
    height: 295px;
    max-width: 662px;
    width: 100%;
    background-color: #191919;
    display: flex;
    justify-content: space-between;
    padding: 61px 32px;
    border-radius: 38px;
    color: #fff;
}
.power__it{
    height: 295px;
    border-radius: 38px;
}
.power__star{
    height: 295px;
    padding: 34px 27px;
    background-color: #fff;
    border-radius: 38px;
}
.power__numbers > div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.power__numbers h3{
    font-size: 48px;
}
.power__numbers h4{
    font-size: 20px;
}
.power__images{
    display: flex;
    gap: 35px;
}
.test{
    padding-top: 220px;
    border-radius:0;
    padding-bottom: 0;
}

.test__list{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    max-width: 1465px;
    margin: 0 auto;
}
.test__item{
    max-width: 468px;
    width: 100%; 
    padding: 50px 20px;
    padding-bottom: 40px;
}
.test__item > h3{
    font-style: italic;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}
.test__item > img {
    margin-bottom: 20px;
}
.test__human{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}
.animated-border {
    color: white;
    position: relative;
    border-radius: 20px;
    background-color: black;
    z-index: 1;
  }
  
  .animated-border::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(90deg, #F928FA, #F9B417, #1079F0);
    border-radius: 20px;
    z-index: -1;
  }
  
  .animated-border::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #191919; 
    border-radius: 20px;
    z-index: -1;
  }

.discla{
    border-radius: 0;
    padding-top: 210px;
    padding-bottom: 35px;
    
}
.discla > h3{
    margin: 0 auto;
    max-width: 1520px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 20px;
}
.line2{
    display: none;
}
.join{
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translate(-50%, 0);
    font-size: 30px;
    text-align: center;
    display: none;
    font-weight: 600;
    background: linear-gradient(90deg, #F928FA 45.13%, #F9B417 60.55%, #1079F0 72.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer{
    background-color: #000;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
    padding-top: 35px;
    padding-bottom: 169px;
    border-top: 1px solid #616161;
}
  @keyframes borderAnimation {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
  }
  
  .animated-border::before {
    animation: borderAnimation 3s linear infinite;
  }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
@keyframes blink {
    50% { border-color: transparent; }
}

@keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

@media screen and (max-width:1600px) {
    .main{
        padding: 0px 100px;
    }
    .section{
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media screen and (max-width:1150px) {
    .main{
        padding: 0px 35px;
    }
    .section{
        padding-left: 35px;
        padding-right: 35px;
    }
    .benefit__content > img {
        width: 400px;
    }
    .power__content{
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media screen and (max-width:1000px) {
    .benefit__content > img {
        width: 200px;
    }
}
@media screen and (max-width:800px) {
    .error-text {
        position: unset;
        padding-left: 10px;
        padding-top: 3px;
    }
    .join{
        display: inline-block;
    }
    .header{
        padding-top: 59px;
        justify-content: center;
    }
    .header > img{
        width: 116px;
    }
    .header > .btn__started{
        display: none;
    }
    .core__list {
        flex-direction: column;
        margin-top: 43px;
    }
    .core__item{
        padding: 31px 21px;
    }
    .core__item > h4 {
        margin-bottom: 20px;
    }
    .main{
        padding-bottom: 107px;
        margin-bottom: 10px;
    }
    .main__content{
        overflow: hidden;
        top: 0;
    }
    .main__content > img{
        width: 150%;
    }
    .main__content > h1{
        font-size: 45px;
        line-height: 55px;
        max-width: 319px;
        margin-top: -85px;
    }
    .form-container {
        padding: 38px 23.5px;
        flex-direction: column;
    }
    input {
        max-width: 100%;
    }
    .form-group {
        width: 100%;
    }
    .emailInput {
        max-width: 100% !important;
    }
    .phoneInput{
        max-width: 100% !important;
    }
    .btn__reg{
        width: 100%;
    }
    .top{
        top: 0;
    }
    .arrow__botttom > div > img:first-child {
        width: 99px;
    }
    .arrow__botttom > div > img:last-child {
        top: 25px;
    }
    .arrow__botttom {
        bottom: -60px;
    }
    .core{
        padding-top: 110px;
        padding-bottom: 74px;
    }
    .section > h2{
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 34px;
    }
    .section > h3{
        color: #C2C2C2;
        font-size: 16px;
        line-height: 20px;
    }
    .benefit{
        padding-top: 101px;
    }
    .benefit__content{
        overflow: hidden;
        flex-direction: column;
        margin-bottom: 105px;
    }
    .benefit__content > img {
        width: 100%;
        max-width: 100%;
        padding: 32px 0px;
    }
    .benefit > h2{
        max-width: 319px;
        margin: 0 auto;
        margin-bottom: 42px;
    }
    .benefit__content > ul > li {
        max-width: 100%;
    }
    .power{
        padding-top: 140px;
    }
    .power > h2{
        max-width: 321px;
        margin-bottom: 70px;
    }
    .power > h3 {
        margin-bottom: 50px;
    }
    .power__numbers {
        flex-direction: column;
        height: auto;
        padding: 40px 23px;
    }
    .line1{
        display: none;
    }
    .line2{
        display: flex;
        padding: 35px 0px;
    }
    
    .power__numbers h4 {
        font-size: 18px;
        margin-top: 10px;
    }
    .power__star{
        height: auto;
    }
    .power__images {
        gap: 16px;
    }
    .test {
        padding-top: 120px;
    }
    .test > h2 {
        margin-bottom: 70px;
    }
    .test__list{
        flex-direction: column;
        gap: 21px;
    }
    .test__item {
        max-width: 100%;
        padding: 32.5px 20px;
    }
    .test__item > h3 {
        line-height: 160%;
        font-size: 16px;
    }
    .discla{
        padding-top: 120px;
    }
    footer {
        padding-bottom: 87px;
    }
}
@media screen and (max-width:670px) {
    .btn__started{
        width: 100%;
    }
    .power__star > img {
        width: 100%;
    }
    .power__content{
        gap: 16px;
    }
    .power__it{
        height: auto;
        overflow: hidden;
    }
    .power__it > img{
        width: 102%;
    }
    .power__images {
        width: 100%;
        gap: 16px;
        flex-direction: column;
    }
}