@media screen and (max-width:450px) {
    .navbar {
        z-index: 9999;
    }
    .menu-btn {
        display: block;
        padding: 8px 10px;
        background-color: #fff;
        border: none;
        width: 40px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1rem;
    }

    .navbar ul {
        display: none;
    }

    .navbar.active .hhh {
        display: block;
        position: fixed;
        top: 30px;
        left: -20px;
        height: 100vh;
        width: 50%;
        background-color: #fff;
        box-shadow:  12px 12px 10px rgba(0, 0, 0, .2);
        padding-top: 2rem;
        margin-top: 0;
        margin-left: 0px;
    }

    .logo {
    position: fixed;
    justify-self: right;
    right: 20px;
    }

    /* home */
    .box h1{
        font-size: 3rem;
        letter-spacing: 0px;
    }

    .box p {
        font-size: 1rem;
        word-spacing: 0px;
    }

    /* about */
    .bio {
        flex-direction: column;
    }

    .bio img {
        width: 300px;
        height: 300px;
    }

    .details {
        flex-direction: column;
    }

    /* services */
    .services {
        grid-template-columns: 1fr ;
    }

    .s-card {
        display: flex;
        flex-direction: column;
        height: fit-content;
    }

    .s-card img {
        width: 100%;
        height: 100%;
    }

    

    /* choose */

    .video {
        display: flex;
        /* width: 100%; */
        flex-direction: column;
        gap: 10px;
    }


    .video video {
        width: 100%;
        height: 100%;
    }

    .blocks p {
        width: 100%;
    }
    
    .il-card,.ir-card {
        margin-bottom: 50px;
    }

    .review {
        flex-direction: column;
    }

    .comment {
        width: 100%;
    }

    /* brands */
    .clients h3 {
        font-size: 1.6rem;
    }

    .brands {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* foot */
    .links {
        flex-direction: column;
        justify-content: left;
        align-items: start;
        gap: 10px;
    }
}

@media (min-width:451px) and (max-width:990px) {

    .video {
        display: flex;
        /* width: 100%; */
        flex-direction: column;
        gap: 10px;
    }


    .video video {
        width: 100%;
        height: 100%;
    }

    .clients h3 {
        font-size: 1.8rem;
    }
    
    .home h1 {
        font-size: 4rem;
        letter-spacing: 20px;
    }

    .box p {
        font-size: 1.5rem;
        word-spacing: 20px;
    }

    .bio {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .services {
        grid-template-columns: 1fr 1fr ;
    }
    .s-card {
        display: flex;
        flex-direction: column;
        height: fit-content;
    }

    .s-card img {
        width: 100%;
        height: 100%;
    }

}