* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-size: 14px;
    justify-content: center;
    align-items: center;
}

:root {
    --pink: rgb(255, 91, 134);
    --gradient-bgd: linear-gradient(108deg, rgba(232, 55, 102, 1) 0%, rgba(249, 117, 26, 1) 100%);
    --orange: #FFC301;
    --blue: #2BB8EA;
    --bgd: #022936;
    --bgd-100: #013049;

    --col-100: #ffffff;
    --col-200: #eef9ff;
    --col-300: #dcf3ff;
    --col-400: #5f5f5f;
    
}


/* -====container width====== */
.container {
    width: 90%;
    margin-inline: auto;
}

@media(width > 1200px) {
    .container {
        width: 1200px;
    }
}

/* -====container width====== */


/* ====nav===== */
nav {
    background: var(--bgd);
    position: relative;
    z-index: 1;

    .nav-container {
        .fa-bars{
            padding: 1rem;
            color: var(--col-100);
            display: none;
        }
        display: flex;
        justify-content: space-between;
        align-items: center;

        .nav-left {
            display: flex;
            gap: 1rem;
            align-items: center;
            padding: 1rem;

            .logo {
                font-size: 24px;
                text-decoration: none;
                padding: 0 2rem 0 0;
                font-weight: 800;
                color: var(--pink);
            }



            ul {
                display: flex;
                gap: 1rem;

                li {
                    list-style: none;

                    a {
                        padding: 0 2rem;
                        text-decoration: none;
                        font-size: 14px;
                        text-transform: capitalize;
                        font-weight: 500;
                        color: var(--col-200);
                        cursor: pointer;
                        transition: all 500ms ease;

                        &:hover {
                            color: var(--orange);

                        }
                    }
                }
            }
        }

        .nav-right {
            display: flex;
            gap: 1rem;
            align-items: center;

            .logs {
                display: flex;
                gap: 2rem;
                padding: 0 1rem;
                border-right: 1px solid var(--col-300);

                a {
                    display: flex;
                    gap: .5rem;
                    text-decoration: none;
                    color: var(--col-300);
                    font-weight: 700;
                    transition: all 500ms ease;
                    cursor: pointer;

                    &:hover {
                        color: var(--orange);

                    }
                }


                .register {
                    color: var(--pink);
                }
            }

            .remaining-menus {
                display: flex;
                gap: 1rem;
                color: var(--col-200);

                span {
                    padding: 1rem;
                    background: var(--bgd-100);
                    border-radius: 50%;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    transition: all 500ms ease;

                    &:hover {
                        color: var(--orange);

                    }
                }
            }
        }
    }
}

/* ====nav===== */

/* =========== bottom menu======== */
.bottom-menu{
    display: none;
    position: fixed;
    background: var(--col-100);
    z-index: 20;
    width: 100%;
    bottom: 0;
    left: 0;
    box-shadow: 1px -1px 10px rgba(255, 132, 152, 0.377);

    .menu-container{
        display: flex;
        justify-content: space-between;

        li{
            list-style: none;
            width: 100%;
            border-top: 3px solid var(--col-100);
            transition: all 500ms ease;
            a{
                padding: 1rem 0;
                width: 100%;
                
                display: flex;
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                text-decoration: none;
                color: var(--bgd);
            }

            &:hover{
                border-top: 3px solid var(--pink);
                
                a{
                    color: var(--pink);
                }
            }
        }
        .active{
            border-top: 3px solid var(--pink);
            a{
                color: var(--pink);
            }
        }
    }
}
/* =========== bottom menu======== */


.line{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    position: fixed;
    width: 100%;height: 100%;
    left: 0;top: 0;
    background: transparent;
    justify-content: space-between;
    
    .left-line{
        
        height: 100%;
        border-right: 2px dashed#adadad2c;
        position: relative;
        background: transparent;
        
        &::before{
            content: " ";
            position: absolute;
            right: -2px;
            width: 2px;
            height: 15px;
            background:rgba(136, 136, 136, 0.342);
            z-index: 20; 
            opacity: 1;
            animation: moveDown 25s ease-in-out infinite;
        }
    }
    .right-line{
        height: 100%;
        border-left: 2px dashed #adadad2c;
        background: transparent;
        position: relative;
        
        &::before{
            opacity: 1;
            content: " ";
            position: absolute;
            left: -2px;
            width: 2px;
            height: 15px;
            background: rgba(136, 136, 136, 0.247);
            z-index: 20; 
            animation: moveDown 25s ease-in-out infinite;
        }
    }

}

.sidenav{
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    z-index: 10;
    background: var(--bgd-100);
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;

    .side-container{
        display: flex;
        flex-direction: column;
        gap: 4rem;
        width: 90%;

        
        ul {
            display: flex;
            flex-direction: column;
            gap: 2rem;

            li {
                padding: 1rem;
                list-style: none;

                a {
                    text-decoration: none;
                    font-size: 14px;
                    text-transform: capitalize;
                    font-weight: 500;
                    color: var(--col-200);
                    cursor: pointer;
                    transition: all 500ms ease;

                    &:hover {
                        color: var(--orange);

                    }
                }
            }
        }
        .logs {

            a {
                display: flex;
                text-decoration: none;
                color: var(--col-300);
                font-weight: 700;
                transition: all 500ms ease;
                cursor: pointer;
                background: var(--gradient-bgd);
                border-radius: 4ch;
                padding: 1rem 2rem;
                width: max-content;

                &:hover {
                    color: var(--orange);

                }
            }

        }
    }
}

.show{
    left: 0;
}

/* ====Hero===== */
.hero {
    position: relative;
    height: 70vh;
    z-index: 1;
    overflow-x: hidden;


    &::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--bgd-100);
        opacity: 0.7;
    }

    #bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }


    .hero-container {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        height: 100%;

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            height: 100%;
            justify-content: center;

            h3 {
                font-size: 56px;
                color: var(--col-100);

                span {
                    color: var(--orange);
                }
            }

            p {
                color: var(--col-300);
                font-size: 16px;
            }

            a {
                margin-top: 1rem;
                padding: 1.5rem 4rem;
                background: var(--gradient-bgd);
                width: max-content;
                text-decoration: none;
                font-size: 14px;
                color: var(--col-300);
                font-weight: 600;
                letter-spacing: 1px;
                transition: background 900ms ease;
                border-radius: 4ch;

                &:hover {
                    background: linear-gradient(108deg, rgba(232, 55, 102, 1) 0%, rgba(232, 55, 102, 1) 100%);
                }
            }
        }
    }
}

/* ====Hero===== */


/* ====Bonus===== */
.bonus {
    padding: 10rem 0 5rem;
    position: relative;
    z-index: 1;

    .bonus-container {

        .bonus-box {
            display: grid;
            grid-template-columns: repeat(3, 1fr);

            .bonus-content {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                justify-content: center;

                span {
                    font-size: 34px;
                    font-weight: 700;
                    color: var(--pink);
                }

                h4 {
                    font-size: 26px;
                    color: var(--bgd-100);
                }

                p {
                    font-size: 14px;
                    line-height: 20px;
                }

                a {
                    padding: 1rem 3rem;
                    background: var(--gradient-bgd);
                    width: max-content;
                    text-decoration: none;
                    color: var(--col-300);
                    letter-spacing: 1px;
                    transition: all 900ms ease;
                    border-radius: 4ch;

                    &:hover {
                        background: linear-gradient(108deg, rgba(232, 55, 102, 1) 0%, rgba(232, 55, 102, 1) 100%);
                    }
                }
            }
        }

        .bonus-image {
            height: 40rem;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

    }
}

/* ====Bonus===== */



/* ====about===== */
.about {
    background: var(--bgd-100);
    padding: 5rem 0 0;
    position: relative;
    z-index: 1;

    .about-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;

            h4 {
                color: var(--col-100);
                font-size: 42px;
                line-height: 56px;
            }

            p {
                font-size: 18px;
                font-weight: 300;
                color: var(--col-200);
                line-height: 25px;
            }

            .about-info {
                display: flex;
                justify-content: space-between;
                padding: 2rem 0;

                h6 {
                    font-size: 24px;
                    display: flex;
                    color: var(--pink);
                    flex-direction: column;
                    text-align: center;

                    span {
                        font-size: 14px;
                        color: var(--col-200);
                    }
                }
            }

            a {
                display: flex;
                padding: 1rem 3rem;
                text-decoration: none;
                font-size: 14px;
                color: var(--col-200);
                font-weight: 600;
                width: max-content;
                background: var(--gradient-bgd);
                border-radius: 4ch;
            }
        }

        .about-image {
            position: relative;


            .float {
                position: absolute;
            }

            .float-left {
                top: 30%;
                left: 1rem;
                z-index: 2;
            }

            .float-right {
                top: 2rem;
                right: 1rem;
            }

            .float-center {
                position: relative;
                z-index: 1;
            }
        }
    }
}

/* ====about===== */



/* ====benefit===== */
.benefit {
    padding: 5rem 0 5rem;

    .benefit-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        .benefit-contents {
            display: flex;
            flex-direction: column;
            gap: 3rem;

            h3 {
                font-size: 36px;
                font-weight: 700;
                color: #013049;
            }

            .benefit-box-container {
                display: flex;
                flex-direction: column;
                gap: 2rem;

                .benefit-box {
                    display: flex;
                    gap: 1rem;
                    align-items: center;

                    h5{
                        font-size: 14px;
                        font-weight: 500;
                        color: var(--col-400);
                        letter-spacing: 1px;
                    }

                    i{
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        padding: 1rem;
                        width: 40px;
                        height: 40px;
                        background: #ffc40144;
                        font-size: 14px;
                        color: var(--bgd-100);
                        border-radius: 50%;
                        position: relative;

                        &::after{
                            position: absolute;
                            content: "";
                            width: 2px;
                            height: 2rem;
                            background: var(--bgd-100);
                            bottom: -60%;
                        }

                        
                    }
                    &:last-child{
                     i{
                        &::after{
                            display: none;
                        }
                     }
                    }
                }
            }
        }
    }
}

/* ====benefit===== */



/* ===========the trading view============= */
.trade-view{
    padding: 5rem 0 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;

    trade-container{
        .tradingview-widget-container{
            height: 100%;
            background: red;
            
            .tradingview-widget-container__widget{
                height: 100%;
            }
        }
    }
}
/* ===========the trading view============= */


/* =========awards======== */
.award{
    padding: 10rem 0 5rem;
    background: var(--bgd);
    position: relative;
    z-index: 1;

    .award-container{
        display: flex;
        flex-direction: column;
        gap: 5rem;

        .award-header{
            align-items: center;
            display: flex;
            flex-direction: column;
            gap: 1rem;

            h3{
                font-size: 36px;
                font-weight: 700;
                color: var(--pink);

                span{
                    color: var(--col-100);
                }
            }
            p{
                width: 70%;
                text-align: center;
                font-size: 14px;
                font-weight: 500;
                color: var(--col-200);
                line-height: 25px
            }
        }

        .award-contents{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;

            .award-box{
                display: flex;
                flex-direction: column;
                gap: 2rem;
                align-items: center;
                padding: 1rem;
                justify-content: space-between;
                height: 15rem;
                img{
                    width: 100px;
                }

                p{
                    font-size: 16px;
                    font-weight: 700;
                    color: var(--col-200);
                    text-align: center;
                }
            }

        }
    }
}
/* =========awards======== */


/* =========Download======== */
.download{
    padding: 5rem 0 5rem;
    min-height: 80vh;
  
    .download-container{
        display: grid;
        position: relative;
        grid-template-columns: repeat(2, 1fr);

        &::after{
            content: "";
            border-radius: 10px;
            position: absolute;
            background: var(--col-300);
            top: 5%;
            left: 0;
            width: 100%;
            height: 95%;
        }
       
        .download-content{
            position: relative;
            z-index: 1;
            padding: 0 0 0 3rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            
            h4{
                font-size: 46px;
                font-weight: 700;
                color: #013049;
            }
            p{
                font-size: 14px;
                font-weight: 500;
                color: var(--col-400);
                line-height: 25px;
            }

            .download-btn{
                display: flex;
                gap: 2rem;
                
                a{
                    display: flex;
                    gap: 1rem;
                    align-items: center;
                    flex-wrap: nowrap;
                    padding: 1.5rem 2rem;
                    text-decoration: none;
                    background: var(--bgd-100);
                    color: var(--col-300);
                    border-radius: 5px;

                    i{
                        font-size: 20px;
                        color: var(--orange);
                    }
                    span{
                        display: flex;
                        flex-direction: column;
                    }

                }
            }

        }
        .download-image{
            position: relative;
            z-index: 1;
            width: 100%;
            display: flex;
            align-items: end;
            justify-content: end;

            img{
                width: 60%;
                height: 50rem;
                object-fit: contain;
            }
            .mobile1{
                position: relative;
                z-index: 1;
                scale: 1;
            }
            .mobile{
                width: 20rem;
                transform: translateX(10rem);
            }
        }
    }
}
/* =========Download======== */


/* =========trading========= */
.trading{
    padding: 5rem 0 5rem;
    background: var(--bgd);
    
    .trading-container{
        display: flex;
        flex-direction: column;
        gap: 5rem;
        padding: 5rem 2rem 5rem;
        border-radius: 20px;
        background: var(--col-100);

        .trading-header{
            padding: 2rem 0;
            
            h3{
                text-align: center;
                font-size: 34px;
                font-weight: 700;
                color: var(--bgd-100);
            }
        }

        .trading-content{
            display: grid;
            grid-template-columns: repeat(3, 1fr);

            .right{
                .trading-box{
                    align-items: start;

                    span{
                        padding: 1rem;
                        box-shadow: 1px 1px 5px #0002;
                        border-radius: 50%;
                        width: 60px;
                        height: 60px;
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        i{
                            padding: 1rem;
                            font-size: 12px;
                            color: var(--orange);
                            box-shadow: 1px 2px 5px #0003;
                            border-radius: 50%;
                        }
                    }
                    h6{
                        color: var(--bgd-100);
                        font-size: 18px;
                        text-transform: capitalize;
                    }
                    p{
                        text-align: start;
                        font-size: 12px;
                        line-height: 20px;
                        color: var(--bgd-100);
                    }
                }
            }
            .left{
                .trading-box{
                    align-items: end;

                    span{
                        padding: 1rem;
                        box-shadow: 1px 1px 5px #0002;
                        border-radius: 50%;
                        width: 60px;
                        height: 60px;
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        i{
                            padding: 1rem;
                            font-size: 12px;
                            color: var(--orange);
                            box-shadow: 1px 2px 5px #0003;
                            border-radius: 50%;
                        }
                    }
                    h6{
                        color: var(--bgd-100);
                        font-size: 18px;
                        text-transform: capitalize;
                    }
                    p{
                        text-align: end;
                        font-size: 12px;
                        line-height: 20px;
                        color: var(--bgd-100);
                    }
                }
            }

            .right,
            .left{
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                gap: 1rem;

                .trading-box{
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                }
            }

            .center{
                display: flex;
                justify-content: center;


                img{
                    height: 40rem;
                    object-fit: contain;
                }
            }

        }
    }
}
/* =========trading========= */

/* ===========testimonial========== */
.client{
    padding: 15rem 0 10rem 0;
    .client-container{
        display: flex;
        flex-direction: column;
        gap: 5rem;
        .client-header{
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            h1{
                position: absolute;
                top: -2rem;
                color: var(--bgd);
                font-size: 40px;
                text-transform: uppercase;
                font-weight: 800;
            }
            a{  
                display: flex;
                align-items: center;
                gap: 1rem;
                font-size: 14px;
                font-weight: 600;
                text-transform: capitalize;
                color: var(--primary-color);
            }
        }

        .client-content{
            display: flex;
            gap: 3rem;
           
            .client-box{
                cursor: grab;
                border-radius: 10px;
                background: var(--col-100);
                display: flex;
                width: 30%;
                align-items: center;
                flex-direction: column;

                .top-section{
                    width: 100%;
                    border-radius: 10px;
                    background: var(--col-100);
                    padding: 1rem 1rem 1rem 1rem;
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                    align-items: center;
                    position: relative;

                    .client-img{
                        top: -30%;
                        left: 40%;
                        width: 100px;
                        height: 100px;
                        overflow: hidden;
                        border-radius: 50%;
                        border: 5px solid var(--bgd);

                        img{
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                    .stars{
                        display: flex;
                        gap: 1rem;

                        .fa-star{
                            color: var(--orange);
                            fill: #88734a;
                        }
                    }
                    .client-name{
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        text-align: center;

                        h1{
                            font-size: 18px;
                            text-transform: capitalize;
                            font-weight: 900;
                            color: var(--bgd-100);
                        }
                        h3{
                            font-size: 12px;
                            letter-spacing: 1px;
                            text-transform: capitalize;
                            font-weight: 600;
                            color: var(--bgd-100);
                        }
                    }
                }
                .bottom{
                    border-radius: 10px;
                    position: relative;
                    background: var(--bgd-100);
                    padding: 3rem 1rem 3rem 1rem;
                    p{
                        text-align: center;
                        font-size: 12px;
                        line-height: 20px;
                        font-weight: 500;
                        color: var(--col-300);
                        text-transform: capitalize
                    }
                    .fa-solid{
                        position: absolute;
                        color: var(--blue);
                    }
                    .bottom-qoute{
                        bottom: 1rem;
                        right: 1rem;
                        transform: rotateY(180deg);
                    }
                    .top-qoute{
                        top: 1rem;
                        left: 1rem;
                    }
                }
            }

        }
    }
  }
/* ===========testimonial========== */

/* ========== FAQ========== */
.FAQ{
    position: relative;
    z-index: 1;
    padding: 5rem 0;

    .FAQ-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;

        h3{
            font-size: 34px;
            color: var(--bgd-100);
            text-transform: uppercase;
            font-weight: 800;
        }

        p{
            font-size: 14px;
            color: #5f5f5f;
        }

        .accordion{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            
            width: 60%;
            
            .accordion-item{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                border-radius: 10px;
                cursor: pointer;

                button{
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    background: #67747a;
                    color: var(--col-100);
                    padding: 1rem;
                    border: none;
                    outline: none;

                    span{
                        font-size: 14px;
                        text-transform: capitalize;
                    }
                    i{
                        color: var(--col-300);
                        font-size: 18px;
                    }
                }
                .accordion-content{
                    overflow-y: hidden;
                    height: 0;
                }
            }
        }
    }

}
/* ========== FAQ========== */

/* ========= footer========== */
.footer{
    padding: 5rem 0;
    background: var(--bgd);

    .footer-container{
        display:grid;
        grid-template-columns: repeat(4,1fr);
        gap: 1rem;

        .footer-col{
            display: flex;
            flex-direction: column;
            gap: 1rem;

            .logo{
                font-size: 24px;
                color: var(--pink);
                text-transform: uppercase;
                font-weight: 800;
            }
            > a{
                text-decoration: none;
                color: var(--col-100);
                padding: 1rem 0;
            }

            .media{
                display: flex;
                gap: 1rem;

                i{
                    padding: 1rem;
                    width: 40px;
                    height: 40px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--orange);
                    border-radius: 50%;
                    border: 1px solid var(--orange);
                }
            }

            h6{
                font-size: 16px;
                font-weight: 900;
                color: var(--col-100);
                text-transform: capitalize;
            }

            ul{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                li{
                    padding: 1rem;
                    list-style: none;

                    a{
                        font-size: 14px;
                        font-weight: 500;
                        text-transform: capitalize;
                        text-decoration: none;
                        color: var(--col-300);
                    }
                }

                > a{
                    display: flex;
                    gap: 1rem;
                    text-decoration: none;
                    align-items: center;
                    padding: 1rem 2rem;
                    background: rgb(31, 89, 128);
                    color: var(--col-300);
                    width: fit-content;

                    span{
                        display: flex;
                        flex-direction: column;

                        b{
                            font-size: 16px;
                        }
                    }

                    i{
                        font-size: 26px;
                        color: var(--pink);
                    }
                }
            }
            
    }
    }
}
footer{
    border-top: 1px solid var(--col-400);
    padding: 1rem;
    background: var(--bgd);

    .foot-container{
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        color: var(--col-300);
    }
}
/* ========= footer========== */



@keyframes moveDown{
    50%{
        transform: translateY(100vh);
    }
    100%{
        transform: translateY(-100vh);
    }
}



@media(width < 1070px){
    .container{
        width: 80%;
    }

    nav{
        .nav-container{
            .fa-bars{
                display: flex;
            }
            .nav-left{
                ul{
                    display: none;
                }
            }
            .nav-right{
                .logs{
                    display: none;
                }
            }
        }
    }

    .hero{
        .hero-container{
            grid-template-columns: repeat(1,1fr);
            text-align: center;

            a{
                text-align: center;
                display: flex;
                align-self: center;
            }
        }
    }

    .bonus{
        .bonus-container{
            .bonus-box{
                grid-template-columns: repeat(1, 1fr);
                gap: 2rem;

                .bonus-content{
                    text-align: center;

                    a{
                        align-self: center;
                    }
                }
            }

            .bonus-image{
                display: none;
            }
        }
    }
    .about{
        .about-container{
            grid-template-columns: repeat(1,1fr);

            .about-content{
                text-align: center;

               a{
                align-self: center;
               } 
            }
        }
    }

    .benefit{

        .benefit-container{
            grid-template-columns: repeat(1,1fr);

            .benefit-contents{
                h3{
                    text-align: center;
                    padding-bottom: 2rem;
                }
                .benefit-box{
                    flex-direction: column;

                    i{
                        &::after{
                            display: none;
                        }
                    }
                }
            }

            .benefit-image{
                display: none;
            }
        }
    }

    .award{
        .award-container{
            .award-contents{
                grid-template-columns: repeat(2,1fr);
            }
        }
    }
    .download{
        min-height: 40vh;
        .download-container{
            padding: 4rem 2rem 2rem;
            height: 100%;
            grid-template-columns: repeat(1,1fr);
            text-align: center;

            .download-image{
                display: none;
            }
            .download-content{
                padding: 0;

                .download-btn{
                    justify-content: center;
                    width: 100%;
                }
            }
            &::after{
              width: 100%;
              height: 100%;
            }

        }
    }

    .trading{
        .trading-container{
            .trading-content{
                grid-template-columns: repeat(1,1fr);
                gap: 1rem;

                .center{
                    display: none;
                }

                .right,
                .left{
                    
                    gap: 2rem;
                    .trading-box{
                        align-items: center;

                        p{
                            text-align: center;
                        }
                    }
                }
            }
        }
    }
    .FAQ{
        .FAQ-container{
            .accordion{
                width: 100%;
            }
        }
    }
    .footer{
        .footer-container{
            grid-template-columns: repeat(2,1fr);
        }
    }
}


@media(width < 700px){
    .container{
        width: 90%;
    }

    nav{
        .nav-container{
            .nav-right{
                display: inline;
            }
            .fa-bars{
                display: none;
            }
            .nav-left{
                ul{
                    display: none;
                }
            }
        }
    }

    .hero{
        .hero-container{
            grid-template-columns: repeat(1,1fr);
            text-align: center;

            a{
                text-align: center;
                display: flex;
                align-self: center;
            }
        }
    }

    .bottom-menu{
        display: initial;
        .menu-container{

            li{
                a{
                    span{
                        font-size: 12px;
                    }
                }
            }
        }
    }

    .bonus{
        .bonus-container{
            .bonus-box{
                grid-template-columns: repeat(1, 1fr);
                gap: 2rem;

                .bonus-content{
                    text-align: center;

                    a{
                        align-self: center;
                    }
                }
            }

            .bonus-image{
                display: none;
            }
        }
    }
    .about{
        .about-container{
            grid-template-columns: repeat(1,1fr);

            .about-content{
                text-align: center;

               a{
                align-self: center;
               } 
            }

            .about-image{
                width: 100%;

                .float-center{
                    width: 100%;
                    object-fit: contain;
                    img{
                        width: 100%;
                        object-fit: contain;
                    }
                }
            }
        }
    }

    .benefit{

        .benefit-container{
            grid-template-columns: repeat(1,1fr);

            .benefit-contents{
                .benefit-box{
                    flex-direction: column;

                    i{
                        &::after{
                            display: none;
                        }
                    }
                }
            }

            .benefit-image{
                display: none;
            }
        }
    }

    .award{
        .award-container{
            .award-contents{
                grid-template-columns: repeat(2,1fr);
            }
        }
    }
    .download{
        min-height: 40vh;
        .download-container{
            padding: 4rem 2rem 2rem;
            height: 100%;
            grid-template-columns: repeat(1,1fr);
            text-align: center;

            .download-image{
                display: none;
            }
            .download-content{
                padding: 0;

                .download-btn{
                    justify-content: center;
                    width: 100%;
                }
            }
            &::after{
              width: 100%;
              height: 100%;
            }

        }
    }

    .trading{
        .trading-container{
            .trading-content{
                grid-template-columns: repeat(1,1fr);
                gap: 1rem;

                .center{
                    display: none;
                }

                .right,
                .left{
                    
                    gap: 2rem;
                    .trading-box{
                        align-items: center;

                        p{
                            text-align: center;
                        }
                    }
                }
            }
        }
    }
    .FAQ{
        .FAQ-container{
            .accordion{
                width: 100%;
            }
        }
    }
    .footer{
        .footer-container{
            grid-template-columns: repeat(2,1fr);
        }
    }
    footer{
        margin-bottom: 5rem;
        
        .foot-container{
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
    }
}


@media(width < 550px){
    .container{
        width: 90%;
    }

    .hero{
        .hero-container{
            .hero-content{
                h3{
                    font-size: 46px;
                }
                p{
                    padding: 1rem;
                    line-height: 26px;
                    width: 80%;
                    margin-inline: auto;
                }
            }
        }
    }

    .bonus{
        .bonus-container{
            .bonus-box{
                .bonus-content{
                    text-align: center;

                    h4{
                        font-size: 22px;
                        font-weight: 700;
                    }
                    p{
                        font-size: 13px;
                    }
                    a{
                        padding: 1rem 2rem;
                    }
                }
            }

            .bonus-image{
                display: none;
            }
        }
    }
    .about{
        .about-container{
            grid-template-columns: repeat(1,1fr);

            .about-content{
                text-align: center;

                h4{
                    font-size: 22px;
                    font-weight: 700;
                    line-height: 28px;
                }
                p{
                    font-size: 13px;
                }
                .about-info{
                    h6{
                        font-size: 18px;

                        span{
                            font-size: 13px;
                        }
                    }
                }
                a{
                    padding: 1rem 2rem;
                }
            }

            .about-image{
                .float-left,
                .float-right{
                    width: 200px;
                    img{
                        width: 100%;
                        object-fit: contain;
                    }
                }
            }
        }
    }

    .benefit{

        .benefit-container{

            .benefit-contents{
                h3{
                    font-size: 22px;
                    font-weight: 700;
                }
                p{
                    font-size: 13px;
                }
                a{
                    padding: 1rem 2rem;
                }
            }

            .benefit-image{
                display: none;
            }
        }
    }

    .award{
        .award-container{
            .award-header{
                h3{
                    text-align: center;
                    font-size: 22px;
                    font-weight: 700;
                    display: flex;
                    flex-direction: column;

                }
                p{
                    font-size: 13px;
                    width: 100%;
                }
                
            }
            .award-contents{
                grid-template-columns: repeat(1,1fr);

                .award-box{
                    p{
                        font-size: 13px;
                    }
                }
            }
        }
    }
    .download{
        min-height: 40vh;
        .download-container{
            padding: 4rem 2rem 2rem;
            height: 100%;
            grid-template-columns: repeat(1,1fr);
            text-align: center;

            .download-image{
                display: none;
            }
            .download-content{
                padding: 0;

                h4{
                    font-size: 26px;
                }

                .download-btn{
                    justify-content: center;
                    width: 100%;
                    flex-direction: column;
                    align-items: center;
                    
                    a{
                        width: max-content;
                    }
                }
            }
            &::after{
              width: 100%;
              height: 100%;
            }

        }
    }

    .trading{
        .trading-container{
            .trading-header{
                h3{
                    font-size: 26px;
                }
            }
            .trading-content{
                grid-template-columns: repeat(1,1fr);
                gap: 1rem;

            }
        }
    }

    .client{
        .client-container{
            .client-header{
                h1{
                    font-size: 26px;
                }
            }
        }
    }

    .FAQ{
        .FAQ-container{
            .accordion{
                width: 100%;
            }
        }
    }
    .footer{
        .footer-container{
            grid-template-columns: repeat(2,1fr);
        }
    }
}


@media(width < 400px){
    .container{
        width: 95%;
    }

    .footer{
        .footer-container{
            grid-template-columns: repeat(1,1fr);
        }
    }
}

