/* laptop / M-L screens */

@media screen and (min-width: 951px) and (max-width: 1300px) {
    .container {
        flex-direction: column;
        justify-content: space-evenly;
    }
    .innerBoxL {
        margin-bottom: 5rem;
    }
    .glass2 {
        width: 100%;
    }
    .chevronGroup {
        transform: rotate(90deg);
        right:0;
    }
}














/********  tablet / notebook */
@media screen and (min-width: 541px) and (max-width: 950px) {
    .container {
        flex-direction: column;
        justify-content: space-evenly;
    }
    .innerBoxL {
        margin-bottom: 5rem;
    }
    .glass2 {
        width: 100%;
    }
    .headerTxt h1{
        font-size: 3rem !important;
    }
    .chevronGroup {
        transform: rotate(90deg);
        right:0;
    }
    
}

















/* phones */
@media screen and (min-width: 350px) and (max-width: 540px) {
    .container {
        flex-direction: column;
        justify-content: space-evenly;
    }
    .innerBoxL {
        margin-bottom: 5rem;
    }
    .glass2 {
        width: 100%;
    }
    .headerTxt h1{
            font-size: 2.4rem !important;
    }
    .chevronGroup {
        transform: rotate(90deg);
        right:0;
    }
    
}