@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Rubik", serif;
}

body {
    height: 100vh;
    background: url(imgs/exp2.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body.hidden {
    overflow: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    padding: 18px 0;
    background: #ffffff06;
    border-bottom: 1px solid #ffffff08;
    backdrop-filter: blur(20px);
    .header_content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 26px;
        max-width: 1200px;
        margin: 0 auto;
        .header_logo {
            color: #fff;
            font-size: 24px;
            font-weight: 600;
            letter-spacing: -1px;
        }
    }
}

.button-48 {
    background-color: #ffffff08;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1em;
    padding: 12px 24px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;
    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1), background-color 100ms cubic-bezier(.694, 0, 0.335, 1), color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
}

.button-48:before {
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background-color: #ebebeb21;
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    border-radius: 10px;
    transform: translateZ(0);
    transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
    width: 100%;
}

.button-48:hover:before {
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
    border-radius: 10px;
}

.button-48:after {
    background-color: #FFFFFF;
}

.button-48 span {
    z-index: 1;
    position: relative;
}

.hero {
    margin-top: 160px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    gap: 17px;
    text-align: center;
    .main_hero_title {
        color: #ffffff;
        font-size: 34px;
        font-weight: 500;
        line-height: 37px;
    }
    .desc_one {
        font-size: 18px;
        font-weight: 500;
        color: #fbff17;
    }
    .desc_two {
        color: #ffffff93;
        font-size: 16px;
        font-weight: 400;
    }
}

.cont_main {
    margin-top: 160px !important;
    max-width: 1200px;
    margin: 0 auto;
    gap: 17px;
    text-align: center;
    padding: 18px 24px;
    .on_comp {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        .title {
            color: #fff;
            font-size: 32px;
            font-weight: 500;
        }
        .desc {
            color: #ffffff93;
            font-size: 16px;
            font-weight: 400;
            .lnk {
                color: #fbff17;
            }
        }
    }
}

.instructions {
    margin-top: 160px !important;
    max-width: 1200px;
    margin: 0 auto;
    gap: 17px;
    padding: 18px 24px;
    .main_title {
        font-size: 34px;
        font-weight: 500;
        color: #fff;
        text-align: center;
        display: block;
    }
    .desc {
        margin-top: 17px;
        color: #ffffff93;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }
    .boxs {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 7px;
        .box {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 30px;
            background: #ffffff08;
            backdrop-filter: blur(20px);
            border-radius: 15px;
            .number {
                position: absolute;
                top: 0px;
                left: 0px;
                background: #ffffff20;
                backdrop-filter: blur(20px);
                padding: 10px 15px;
                border-top-left-radius: 15px;
                color: #ffffffa3;
            }
            .desc {
                color: #fff;
            }
        }
    }
}

.download_main {
    margin-top: 160px !important;
    max-width: 1200px;
    margin: 0 auto;
    gap: 17px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    .main_title {
        color: #fff;
        font-size: 34px;
        font-weight: 600;
    }
    .dw_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        padding: 14px 54px;
        color: #fff;
        border-radius: 14px;
        background: #0066ff;
    }
}

.faq_comp {
    margin-top: 80px !important;
    max-width: 900px;
    margin: 0 auto;
    padding: 18px 26px;
    .comp_hd {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        max-width: 700px;
        margin: 30px auto;
        .main_title {
            color: #fff;
            font-size: 34px;
            font-weight: 500;
        }
    }
    .question,
    .answer {
        width: 100%;
        list-style-type: none;
        color: #fff;
        cursor: pointer;
    }
    .question {
        padding: 1.5em;
        padding-right: 6em;
        font-weight: bold;
        position: relative;
        font-size: 14px;
    }
    ul:last-child {
        backdrop-filter: blur(5px);
        background: radial-gradient(67.8117% 100% at 50% 100%, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%);
        border-radius: 17px;
        box-shadow: rgba(0, 255, 166, 0) 0px -40px 60px -40px inset, rgba(255, 255, 255, 0.2) 0px 1px 1px 0px inset, rgba(255, 255, 255, 0.05) 0px -1px 2px 0px inset;
        opacity: 1;
    }
    .question:hover {
        cursor: pointer;
    }
    .answer {
        display: none;
        padding: 1.5em;
        font-size: 14px;
        color: #cecece;
    }
    .expand-bar {
        position: absolute;
        top: 50%;
        right: 1.5em;
        transition: all 0.5s ease;
    }
    .expand-bar,
    .expand-bar:after {
        width: 15px;
        height: 2px;
        background-color: rgb(255, 255, 255);
    }
    .expand-bar:after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        transform: rotate(90deg);
        transition: all 0.5s ease;
    }
    .open {
        border-bottom: none;
    }
    .open .expand-bar {
        transform: rotate(180deg);
    }
    .open .expand-bar:after {
        transform: rotate(180deg);
    }
    @media (max-width: 880px) {
        .txt_bx_hr {
            padding: 30px 14px;
        }
        .main_cont {
            margin-top: 50px;
        }
    }
}

.footer {
    padding: 34px 12px;
    .copyright {
        color: #ffffff93;
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width:780px) {
    body {
        height: 100vh;
        background: url(imgs/mobile.png) no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    .header {
        padding: 14px 4px;
        .header_content {
            padding: 0 12px;
            max-width: 1200px;
            margin: 0 auto;
            .header_logo {
                color: #fff;
                font-size: 24px;
                font-weight: 600;
                letter-spacing: -1px;
            }
        }
    }
    .button-48 {
        font-size: 14px;
        padding: 10px 14px;
        border-radius: 10px;
    }
    .hero {
        margin-top: 160px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        max-width: 600px;
        margin: 0 auto;
        gap: 17px;
        padding: 18px 10px;
        text-align: center;
        .main_hero_title {
            color: #ffffff;
            font-size: 30px;
            font-weight: 500;
            line-height: 37px;
        }
        .desc_one {
            font-size: 16px;
            font-weight: 500;
            color: #fbff17;
            line-height: 22px;
        }
        .desc_two {
            color: #ffffff93;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
        }
    }
    .cont_main {
        margin-top: 80px !important;
        max-width: 1200px;
        margin: 0 auto;
        gap: 17px;
        text-align: center;
        padding: 18px 10px;
        .on_comp {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
            .title {
                color: #fff;
                font-size: 32px;
                font-weight: 500;
                line-height: 34px;
            }
            .desc {
                color: #ffffff93;
                font-size: 14px;
                font-weight: 400;
                .lnk {
                    color: #fbff17;
                }
            }
        }
    }
    .instructions {
        margin-top: 100px !important;
        max-width: 1200px;
        margin: 0 auto;
        gap: 17px;
        padding: 18px 10px;
        .main_title {
            font-size: 30px;
            font-weight: 500;
            color: #fff;
            text-align: center;
            display: block;
        }
        .desc {
            margin-top: 12px;
            color: #ffffff93;
            font-size: 14px;
            font-weight: 400;
            text-align: center;
        }
        .boxs {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 7px;
            text-align: center;
            .box {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 20px;
                background: #ffffff08;
                backdrop-filter: blur(20px);
                border-radius: 10px;
                .number {
                    position: absolute;
                    top: 0px;
                    left: 0px;
                    background: #ffffff20;
                    backdrop-filter: blur(20px);
                    padding: 5px 10px;
                    border-top-left-radius: 10px;
                    color: #ffffffa3;
                }
                .desc {
                    color: #fff;
                    font-size: 14px;
                }
            }
        }
    }
    .download_main {
        margin-top: 100px !important;
        max-width: 1200px;
        margin: 0 auto;
        gap: 17px;
        padding: 18px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        .main_title {
            color: #fff;
            font-size: 30px;
            font-weight: 500;
        }
        .dw_btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 14px 64px;
            color: #fff;
            border-radius: 10px;
            background: #0066ff;
        }
    }
    .faq_comp {
        margin-top: 40px !important;
        max-width: 900px;
        margin: 0 auto;
        padding: 18px 10px;
        .comp_hd {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;
            max-width: 700px;
            margin: 20px auto;
            .main_title {
                color: #fff;
                font-size: 30px;
                font-weight: 500;
            }
        }
        .question,
        .answer {
            width: 100%;
            list-style-type: none;
            color: #fff;
            cursor: pointer;
        }
        .question {
            padding: 1.2em;
            padding-right: 6em;
            font-weight: bold;
            position: relative;
            font-size: 14px;
        }
        ul:last-child {
            backdrop-filter: blur(10px);
            background: radial-gradient(67.8117% 100% at 50% 100%, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%);
            border-radius: 17px;
            box-shadow: rgba(0, 255, 166, 0) 0px -40px 60px -40px inset, rgba(255, 255, 255, 0.2) 0px 1px 1px 0px inset, rgba(255, 255, 255, 0.05) 0px -1px 2px 0px inset;
            opacity: 1;
        }
        .question:hover {
            cursor: pointer;
        }
        .answer {
            display: none;
            padding: 1.2em;
            font-size: 13px;
            color: #cecece;
        }
        .expand-bar {
            position: absolute;
            top: 50%;
            right: 1.5em;
            transition: all 0.5s ease;
        }
        .expand-bar,
        .expand-bar:after {
            width: 15px;
            height: 2px;
            background-color: rgb(255, 255, 255);
        }
        .expand-bar:after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            transform: rotate(90deg);
            transition: all 0.5s ease;
        }
        .open {
            border-bottom: none;
        }
        .open .expand-bar {
            transform: rotate(180deg);
        }
        .open .expand-bar:after {
            transform: rotate(180deg);
        }
        @media (max-width: 880px) {
            .txt_bx_hr {
                padding: 30px 14px;
            }
            .main_cont {
                margin-top: 50px;
            }
        }
    }
}