.landing{
    display: flex;
    flex-direction: column;
}

.landing_content{
    display: flex;
    height: 85%;
    align-items: flex-end;
    gap: 10px;
}

.landing_left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70%;
    width: 65%;
}

.landing_left> h1{
    font-size: 48px;
}

.landing_left> img{
    max-width: 70%;
}

.landing_hero{
    display: flex;
    width: 50%;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
}

.landing_hero> img{
    align-self: center;
}

.landing_hero> h1{
    font-size: 18px;
}


.landing_mobile{
    display: flex;
    min-height: 100%;
    max-width: 85%;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 40px;
    margin: auto;
    
}

.mb_landing_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mb_landing_text{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mb_landing_text>img{
    max-width: 95%;
}

.mb_landing_hero> img{
    max-width: 250px;
    align-self: center;
    justify-self: center;
    text-align: center;
}



@media screen and (max-width: 991px) {
    .landing{
        gap: 50px;
        justify-content: center !important;
        align-items: center;
        margin-top: 20px;
    }

    .landing_content{
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        width: 90%;
        gap: 80px;
    }
    
    .landing_left{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
        justify-content: center;
    }

    .landing_left> h1{
        font-size: 36px;
        text-align: center;
    }

    .vertical_separator{
        display: none;
    }

    .landing_hero{
        width: 100%;
    }

    .landing_hero>img{
        max-width: 60%;
    }

    .landing_products{
        max-width: 100% !important;
    }

    .landing_hero> h1{
        display: none;
    }


    
}