*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;

    /* font-family: "Space Grotesk", sans-serif; */
}

body {
    background-color: #060E1E;    
}

.herosection__svg{
    position: absolute;
    opacity: 0.5;
    top: -100px;
    left: 150px;
    z-index: -2;
}

.container{
    max-width: 1230px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.header__logo{
    font-size: 18px;
    font-style: italic;
    color: white;
    position: relative;
    z-index: 20;
}

.header__logo img {
    width: 150px;
}

.color{
    color: #BAFA97;
    font-family: "Space Grotesk", sans-serif; 
}

.nav__list{
    width: 550px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__link{
    color: white;
}

.herosection__container{
    position: relative;
}

.herosection__title{
    font-size: clamp(43px, 6vw, 80px);
    font-family: "Space Grotesk", sans-serif; 
    margin: auto;
    text-align: center;
    line-height: 110%;
    max-width: 970px;
    color: white;
    margin-top: 128px;
    font-weight: 500;
    margin-bottom: 16px;
}

.fade-up {
    opacity: 0;
    transform: translateY(90px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
    will-change: opacity, transform;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.herosection__subtitle{
    font-size: 22px;
    color: white;
    letter-spacing: -3.6%;
    max-width: 800px;
    margin: auto;
    text-align: center;
    margin-bottom: 32px;
}

.herosection__links{
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: center;
}

.herosection__link{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-size: 16px;
    height: 49px;
}

.herosection__link--primary{
    background-color: #BAFA97;
    color: black;
    width: 226px;
}

.herosection__link--secondary{
    background-color: transparent;
    color: white;
    border: 1px solid white;
    width: 129px;
}

.herosection__coin--left{
    position: absolute;
    bottom: -120px;
    z-index: -1;
}

.herosection__coin--right{
    position: absolute;
    right: 0;
    bottom: -70px;
}

.about__container{
    margin-top: 260px;
}

.about__cards{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about__title{
    margin: auto;
    text-align: center;
    color: #BCFC97;
    font-size: clamp(43px, 6vw, 80px);
}
.about__subtitle{
    font-weight: 500;
    font-size: 22px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 2.73%, #FFFFFF 50.42%, rgba(255, 255, 255, 0.5) 97.39%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    max-width: 850px;
    text-align: center;
    margin: auto;
    margin-top: 16px;
    margin-bottom: 48px;

}

.about__card{
    width: 384px;
    height: 480px;
    background: linear-gradient(180deg, rgba(12, 12, 24, 0) 50.1%, rgba(12, 12, 24, 0.5) 75.05%, #0C0C18 100%);
    border-radius: 20px;
    border: 1px solid #252728;
    border: 1px solid #252728;
}

.card__content{
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card__description{
    font-size: 16px;
    color: white;
    font-weight: 200;
    width: 320px;
}
.card__image{
    width: inherit;
}
.card__title{
    font-size: 24px;
    color: white;

}

.card__trusted{
    width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 20px;
    background: linear-gradient(147.27deg, rgba(17, 12, 51, 0.1) 0%, rgba(11, 12, 19, 0.1) 100%);
    backdrop-filter: blur(7.5px);
    border: 1px solid #252728;
    margin-top: 32px;
    position: relative;
}

.trusted__title{
    font-family: "Space Grotesk", sans-serif; 
    font-size: 70px;
    color: #BCFC97;
    margin: auto;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}
.trusted__content{
    width: 650px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}
.trusted__content--subcard{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    color: white;
}

.trusted__name{
    font-family: "Space Grotesk", sans-serif; 
    font-size: 70px;
}

.trusted__img--left{
    position: absolute;
    bottom: 0;
    left: 0;
}

.trusted__img--right{
    position: absolute;
    bottom: 0;
    right: 0;
}

.trusted__img--bottom{
    display: none;
    position: absolute;
    bottom: 0;
}

.trusted__img--top{
    display: none;
    position: absolute;
    top: 0;
}

.about__img--right, .about__img--left{
    display: none;
}
.info__title{
    font-size: clamp(48px, 6vw, 80px);
    color: #BCFC97;
    font-family: "Space Grotesk", sans-serif; 
    margin: auto;
    text-align: center;
    margin-top: 128px;
    margin-bottom: 64px;
}
.about__container{
    background-image: url(../assets/images/importance-bg.svg);
    background-size: cover;
}

.info__block{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info__block--content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info__block--title{
    font-size: 32px;
    color: white;
}

.info__block--subtitle{
    font-size: 20px;
    color: white;
    font-weight: 300;
}

.info__block--link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 236px;
    height: 49px;
    background: linear-gradient(92.62deg, #C2FF9F 0%, #AAEB85 94.53%);
    border-radius: 30px;
    color: #081226;
}

.info__block--img{
    width: 125px;
    height: 112px;
}
.info__block--container{
    display: flex;
    flex-direction: column;
    gap: 130px;
}
.info__content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url(../assets/images/lines-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100% -70px;
}
.info__block{
    width: 566px;
}
.info__block--secondary{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.info__block--one{
    width: 384px;
}
.info__block--link--secondary{
    margin-top: 16px;
}

.card{
    width: 384px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(8, 18, 38, 0) 0%, rgba(8, 18, 38, 0.5) 50%, #081226 100%);
    border-radius: 10px;
    border: 1px solid #252728;
    height: fit-content;

}
.card__title{
    font-size: 16px;
    margin-bottom: 12px;
    color: white;
}
.card__price{
    font-size: 54px;
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.card__link{
        display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 39px;
    background: linear-gradient(92.62deg, #C2FF9F 0%, #AAEB85 94.53%);
    border-radius: 30px;
    color: #081226;
    margin-bottom: 64px;
}
.card__benefits__container{
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: white;
}
.card__benefits{
    display: flex;
    align-items: center;
    gap: 12px;
}
.card__title__container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card__badge{
    width: 127px;
    height: 30px;
    color: #BAFA97;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #BAFA97;
    border-radius: 10px;
    font-weight: 300;
}

.price__container{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.price__title{
    font-size: clamp(48px, 6vw, 80px);
    color: #BCFC97;
    font-family: "Space Grotesk", sans-serif; 
    margin: auto;
    text-align: center;
    margin-top: 128px;
    margin-bottom: 32px;
}
.price{
    position: relative;
    background-image: url(../assets/images/price-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}
.price__icon{
    position: absolute;
    top: -100px;
    left: 0;
}

.markets__table{
    border-radius: 12px;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 96px;
    background: linear-gradient(180deg, rgba(12, 12, 24, 0) 0%, rgba(8, 18, 38, 0.5) 50%, #081226 100%);
    border: 1px solid #323436;
    background-image: url(../assets/images/trade-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.markets__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: white;
    font-weight: 400;
    height: 62px;
    padding: 24px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.markets__col-title{
    width: 180px;
}
.hr{
    height: 1px;
    width: 100%;
    background-color: #323436;
    opacity: 0.6;
}
.markets__row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;

}
.markets__col-value{
    width: 180px;
    color: white;
    font-weight: 400;
}
.markets__asset{
    display: flex;
    align-items: center;
    gap: 8px;
}
.markets__col-value--positive{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #2DBD85;
    color: #2DBD85;
    border-radius: 8px;
    width: 120px;
}

.markets__col-value--negative{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #D33536;
    color: #D33536;
    border-radius: 8px;
    width: 120px;
}
.markets__col-title--change{
    width: 120px;
}
.markets__row-bg{
        display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}
.markets__row--border{
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.markets__mobile{
        background: linear-gradient(180deg, rgba(12, 12, 24, 0) 0%, rgba(8, 18, 38, 0.5) 50%, #081226 100%);
    border: 1px solid #323436;
    background-image: url(../assets/images/trade-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px;
}

.markets__mobile-table-bg{
    width: 327px;
    color: white;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

.markets__mobile-table{
    width: 327px;
    color: white;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}
.markets__mobile-row{
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}
.markets__mobile-label{
    width: 90px;
    color: #B7B7B7;
}
.markets__mobile-asset{
    display: flex;
    align-items: center;
    gap: 8px;
}
.markets__mobile-value--positive{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #2DBD85;
    color: #2DBD85;
    border-radius: 8px;
    width: 110px;
}

.markets__mobile-value--negative{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #D33536;
    color: #D33536;
    border-radius: 8px;
    width: 110px;
}
.markets__mobile{
    display: none;
}

.form__title{
    font-size: clamp(48px, 6vw, 80px);
    color: #BCFC97;
    font-family: "Space Grotesk", sans-serif; 
    margin: auto;
    text-align: center;

    margin-bottom: 32px;
}

.form__subtitle{
    font-size: 22px;
    color: white;
    margin: auto;
    text-align: center;
    max-width: 590px;
    font-weight: 300;
    margin-bottom: 64px;
}

.form__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-bottom: 130px;
}

.form__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 390px;
    color: #fff;
    padding-left: 20px;
}

.form__info a {
    color: #BCFC97;
    margin-top: 12px;
}
.markets__title{
    font-size: clamp(52px, 5.5vw, 72px);
    color: #BCFC97;
    margin: auto;
    text-align: center;
    margin-top: 96px;
    margin-bottom: 48px;
    line-height: 100%;
}

.form-container {
      width: 383px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-family: sans-serif;
      margin: auto;
    //  margin-bottom: 130px;
    }

    .form-input {
      padding: 9px 12px;
      width: 100%;
      height: 42px;
      background: rgba(155, 155, 155, 0.1);
      border-radius: 30px;
      border: none;
      box-sizing: border-box;
      font-size: 16px;
      color: white;
    }

.form-input option {
    background: #0D0D0D;
}


    .form-button {
      width: 100%;
      height: 49px;
      background: linear-gradient(92.62deg, #C2FF9F 0%, #AAEB85 94.53%);
      border-radius: 30px;
      border: none;
      font-size: 16px;
      cursor: pointer;
      color: black !important;
    }
.hr{
    width: 100%;
    background-color: #fff;
    display: block;
    height: 1px;
    opacity: 0.2;
}
.footer{
    padding-top: 32px;
    padding-bottom: 32px;
    margin: auto;
    text-align: center;
    font-size: 14;
    color: white;
}

.burger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    color: #fff;
    z-index: 3;
    text-align: center;
    background-color: #060E1E;   
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    pointer-events: none;
}

.burger-menu.show {
    transform: translateX(0);
    pointer-events: auto;
}

.burger-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 70px;
}

.burger-menu ul li {
    margin: 35px 0;
}

.burger-menu ul li a {
    color: black;
    font: 300 32px 'Montserrat';
}

.burger-icon {
    width: 69px;
    height: 40px;
    cursor: pointer;
    color: #fff;
    position: absolute;
    top: -5px;
    right: 10px;
    z-index: 3;
    border-radius: 20px;
    background: #BCFC97;
    border: 1px solid #464646;
    display: none;
}

.burger-stick {
    width: 33px;
    height: 2px;
    margin: 2.5px auto 0;
    position: absolute;
    left: 0;
    right: 0;
    background-color: #060E1E;   
    transition: 0.3s ease-in-out;
}

.burger-stick:nth-child(1) {
    top: 10px;
}

.burger-stick:nth-child(2) {
    top: 22px;
}

.burger-stick:nth-child(3) {
    top: 24px;
}

.burger-icon.active .burger-stick:nth-child(1) {
    transform: rotate(45deg);
    top: 16px;
}

.burger-icon.active .burger-stick:nth-child(2) {
    transform: rotate(-45deg);
    top: 16px;
}

.burger-icon.active .burger-stick:nth-child(3) {
    opacity: 0;
}

.no-scroll {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@media (max-width: 1140px){
    body{
        overflow-x: hidden;
    }
    .herosection__coin--left, .herosection__coin--right{
        display: none;
    }
    .about__cards{
        flex-direction: column;
        gap: 20px;
    }
        .info__content{
        flex-direction: column;
        background-image: none;
    }
    .info__block{
        width: 356px;
        flex-direction: column;
        margin-bottom: 32px;
    }
    .info__block--container{
        gap: 0px;
    }
    .price__container{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .price{
        background-size: contain;
        background-position: center;
    }
    .card{
        width: 356px;
        padding: 17px;
    }
    .price__icon{
        width: 90px;
        height: 90px;
        right: 0;
    }
}

@media (max-width: 800px){
    .container{
        position: relative;
    }
    .form__wrapper {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .form-container {
        margin-bottom: 20px;
    }
    .form__info {
        max-width: 100%;
        padding-left: 0;
        align-items: center;
    }

    .form__info p {
        text-align: center;
    }
    .nav__list{
        display: none;
    }
    .herosection__title{
        margin-top: 64px;
    }
    .herosection__svg{
        width: 650px;
        top: 0;
    }
    .about__container{
        margin-top: 64px;
    }
    .trusted__img--left, .trusted__img--right{
        display: none;
    }
    .trusted__content{
        width: unset;
        flex-direction: column;
    }
    .markets__table{
        display: none;
    }
    .markets__mobile{
        display: block;
    }
        .burger-icon{
        display: block;
    }
    .burger-menu ul {
  list-style: none;

  margin-top: 120px;
  text-align: left;
  text-decoration: none;
}
.burger-menu ul li a{
      color: white;
    font-family: "Inter Tight", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
}
.burger-hr{
    height: 1px;
    width: 100%;
    background-color: #fff;
    opacity: 0.2;
}
.info__title{
    margin-top: 96px;
}


@media (max-width: 500px){
    .container{
        max-width: 356px;
        margin: auto;
        padding: 0;
    }
    .herosection__title{
        max-width: 356px;
    }
    .herosection__svg{
        display: none;
    }
    .herosection__links{
        gap: 20px;
    }
        .about__title{
        position: relative;
    }
    .about__img--right, .about__img--left{
        display: block;
        position: absolute;
    }
    .about__img--right{
        right: 0;
        bottom: 40px;
    }
    .about__img--left{
        left: 0;
        bottom: 40px;
    }
    .trusted__content{
        flex-direction: column;
        gap: 32px;
    }
    .trusted__title{
        font-size: 40px;
    }
    .about__card{
        width: 324px;
    }
    .about__container{
        margin-top: 140px;
    }
    .card__trusted{
        width: 324px;
        margin: auto;
        margin-top: 20px;
        padding-top: 175px;
        padding-bottom: 210px;
    }
    .form-container{
        width: 356px;
    }
    .form__title{
        margin-top: 96px;
    }
    .trusted__img--top, .trusted__img--bottom{
    display: block;
}
}}