@use "../../../../styles/abstracts/variables";
@use "../../../../styles/abstracts/mixins";

.onboarding{
    // background-color: #F8FAFC;
    background: linear-gradient(to bottom, rgba(22,24,26, 0.8), rgba(22,24,26, .9)), url("../../../../images/waves.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 2rem 2rem;
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: variables.$font;
    border-radius: 10px;
    &__logo__section{
        padding-bottom: 2rem;
        span{
            font-weight: bolder;
            color: #FFF;
            font-family: variables.$font-bold;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .secondary__span{
            color: variables.$col-secondary;
        }
    }

    &__content{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        height: 87%;
        &__text{
            color: #FFF;
            opacity: 1 !important;
            padding-top: 2rem;
            h1{
                font-weight: 800;
                padding-bottom: .7rem;
                font-size: 1.7rem;
                line-height: 1.3;
                text-transform: capitalize;
                width: 90%;
            }
            p{
                opacity: .8;
                color: #FFF;
                font-size: .85rem;
                line-height: 1.8;
                font-weight: 600;
                width: 90%;
            }
        }
        &__helper{
            background: #23252C;
            padding: 1.5rem;
            border-radius: 6px;
            color: #FFF;
            p{
                font-size: .9rem;
                line-height: 1.8;
            }
            h4{
                padding-top: 1rem;
            }
        }
    }
}

.onboarding::-webkit-scrollbar{
    display: none !important;
}

//Media Queries for small phones
@media only screen and (max-width: 1000px){
    .onboarding{
        display: none;
    }
}

