a{
    text-decoration: none;
    box-shadow: none;
    border: none;
    outline: none !important;
}

h1, h2, h3, h4, h5, h6, p{
    padding: 0;
    margin: 0;
}

.max-width{
    max-width: 1440px;
    padding-inline: 80px;
}

.margin-auto{
    display: flex;
    margin: auto;
    width: fit-content;
}

.nav-bar{
    background-color: #FFF;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; 
}

.nav-bar .max-width{
    display: flex;
    padding: 32px 40px;
    justify-content: space-between;
    align-items: center;
}

.max-width{
    max-width: 1440px;
}

.nav-bar .nav-logo{
    width: 138px;
    height: 40px;
}

.nav-bar .nav-links{
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.nav-bar .nav-links .nav-link{
    color: #1F1F1F;
    font-family: Oskari G2;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: none;
}

.nav-bar .buy-btn{
    border-radius: 8px;
    border: 1px solid var(--e-2, #E2E2E2);
    background: #FFF;
    box-shadow: 0px 3px 0px 0px #D2D2D2;

    display: flex;
    padding: 14px 20px 12px 20px;
    align-items: center;
    gap: 8px;

    color: #1F1F1F;
    font-family: Oskari G2;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
    transition-property: transform,box-shadow, background;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 1, 0.15, 1);
    will-change: transform;
    cursor: pointer;
}

.nav-bar .buy-btn:active {
    transform: translateY(4px);
    box-shadow: 0px 0px 0px 0px #D2D2D2;
    background: #FFF;
}

.nav-bar .download-btn{
    color: #FFF;
    font-family: Oskari G2;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    display: flex;
    padding: 14px 20px 12px 20px;
    align-items: center;
    gap: 8px;

    border-radius: 8px;
    background: #1F1F1F;
    box-shadow: 0px 3px 0px 0px #A4A4A4;
    
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
    transition-property: transform,box-shadow, background;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 1, 0.15, 1);
    will-change: transform;
    cursor: pointer;
}

.nav-bar .download-btn:active {
    transform: translateY(4px);
    box-shadow: 0px 0px 0px 0px #A4A4A4;
    background: #1F1F1F;
}

.nav-bar .btn-div{
    display: flex;
    align-items: center;
    gap: 12px;
}

.home, .we-create, .earn, .opportunities, .student, .footer{
    z-index: 1;
}

.nav-bar{
    z-index: 2;
}

.offcanvas-backdrop {
    z-index: 1;
}

.offcanvas-header {
    justify-content: center;
}

.btn-close {
    position: absolute;
    bottom: -40vh;
    left: 48%;
    background: #FFF !important;
    border-radius: 400px;
    display: flex;
    padding: 16px;
    align-items: center;
    gap: 8px;

    align-items: center;
    justify-content: center;

    --bs-btn-close-opacity: 1;
    --bs-btn-close-hover-opacity: 1;

    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.offcanvas-header .btn-close img{
    width: 24px;
    height: 24px;
}

.nav-bar .offcanvas-header {
    border-bottom: 1px solid rgba(65, 33, 16, 0.12);
}
.nav-bar .offcanvas-body {
    padding: 20px;
}

.nav-bar .menu-btn{
    cursor: pointer;
}

.modal-backdrop {
    --bs-backdrop-zindex: 2;
}

.qr-modal{
    display: flex;
    width: 300px;
    padding: 40px 20px 20px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;

    margin: auto;
    position: relative;
}

.qr-modal .qr-icon{
    border-radius: 400px;

    width: 48px;
    height: 48px;

    margin: auto;
    margin-top: -60px;
}

.qr-modal h5{
    color: var(--Light-Mode-Primary-Black, #1F1F1F);
    font-family: Oskari G2;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}
.qr-modal h6{
    color: var(--light-mode-primary-grey-808080, #808080);
    text-align: center;
    font-family: Oskari G2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */

    margin-top: 8px;
}

.qr-modal .close-btn{
    border-radius: 8px;
    border: 1px solid #F2F2F2;
    background: #FFF;
    box-shadow: 0px 3px 0px 0px #D2D2D2;

    display: flex;
    padding: 14px 16px 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;

    color: var(--light-mode-primary-grey-666666, #666);
    font-family: Oskari G2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;

    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
    transition-property: transform,box-shadow, background;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 1, 0.15, 1);
    will-change: transform;
    cursor: pointer;
}

.qr-modal .close-btn:active {
    transform: translateY(4px);
    box-shadow: 0px 3px 0px 0px #D2D2D2;
}

.qr-modal .qr-div{
    border-radius: 12px;
    border: 1px solid #F2F2F2;

    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;

    margin: auto;
}

.qr-modal .qr-img{
    width: 140px;
    height: 140px;
}


@media (max-width: 992px) {
    .nav-bar .max-width {
        display: flex;
        padding: 24px;
        justify-content: space-between;
        align-items: center;
    }

    .nav-bar .nav-logo{
        width: 138px;
        height: 40px;
    }

    .nav-bar .menu-btn img{
        width: 28px;
        height: 28px;
    }

    .offcanvas.offcanvas-top {
        height: fit-content;
        z-index: 999;
    }

    .nav-bar .nav-link {
        color: #1F1F1F;
        font-family: Oskari G2;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        opacity: 0.6;
        text-align: center;
    }

    .nav-bar .btn-div{
        flex-direction: column;
        margin-top: 32px;
    }

    .nav-bar .get-app{
        color: #FFF;
        font-family: Oskari G2;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        border-radius: 8px;
        border: 1px solid var(--66, #666);
        background: #282828;
        box-shadow: 0px 2px 0px 0px #666;

        display: flex;
        padding: 10px 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .nav-bar .menu-btn{
        border-radius: 8px;
        border: 1px solid #F2F2F2;

        display: flex;
        padding: 8px;
        align-items: center;
        gap: 8px;

        margin-left: 12px;
    }

    .nav-bar .menu-btn img{
        width: 28px;
        height: 28px;
    }

    .nav-bar .buy-btn {
        width: 100%;
        justify-content: center;

        border-radius: 8px;
        border: 1px solid var(--e-2, #E2E2E2);
        background: #FFF;
        box-shadow: 0px 3px 0px 0px #D2D2D2;

        display: flex;
        padding: 16px 20px 14px 20px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        align-self: stretch;

        color: #1F1F1F;
        font-family: Oskari G2;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .nav-bar .download-btn {
        width: 100%;
        justify-content: center;

        color: #FFF;
        font-family: Oskari G2;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        border-radius: 8px;
        background: #1F1F1F;
        box-shadow: 0px 3px 0px 0px #A4A4A4;

        display: flex;
        padding: 16px 20px 14px 20px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        align-self: stretch;
    }
} 

@media (max-width: 576px) { 
    .max-width {
        max-width: auto;
        padding-inline: 0px;
    }
    .nav-bar .max-width {
        display: flex;
        padding: 24px;
        justify-content: space-between;
        align-items: center;
    }

    .nav-bar .nav-logo{
        width: 138px;
        height: 40px;
    }

    .nav-bar .get-app{
        color: #FFF;
        font-family: Oskari G2;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        border-radius: 8px;
        border: 1px solid var(--66, #666);
        background: #282828;
        box-shadow: 0px 2px 0px 0px #666;

        display: flex;
        padding: 10px 16px 8px 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .nav-bar .menu-btn{
        border-radius: 8px;
        border: 1px solid #F2F2F2;

        display: flex;
        padding: 8px;
        align-items: center;
        gap: 8px;

        margin-left: 12px;
    }

    .nav-bar .menu-btn img{
        width: 24px;
        height: 24px;
    }

    .offcanvas.offcanvas-top {
        height: fit-content;
        z-index: 999;
    }

    .nav-bar .nav-link {
        color: #1F1F1F;
        font-family: Oskari G2;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        opacity: 0.6;
        text-align: center;
    }

    .nav-bar .btn-div{
        flex-direction: column;
        margin-top: 32px;
    }

    .nav-bar .buy-btn {
        width: 100%;
        justify-content: center;

        border-radius: 8px;
        border: 1px solid var(--e-2, #E2E2E2);
        background: #FFF;
        box-shadow: 0px 3px 0px 0px #D2D2D2;

        display: flex;
        padding: 16px 20px 14px 20px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        align-self: stretch;

        color: #1F1F1F;
        font-family: Oskari G2;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .nav-bar .download-btn {
        width: 100%;
        justify-content: center;

        color: #FFF;
        font-family: Oskari G2;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        border-radius: 8px;
        background: #1F1F1F;
        box-shadow: 0px 3px 0px 0px #A4A4A4;

        display: flex;
        padding: 16px 20px 14px 20px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        align-self: stretch;
    }
}