@media screen and (max-width:768px){
    /* start navigation  */
    .logo img{
        height: 40px;
    }
    nav{
       display: none;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        display: none;
        z-index: 999;
    }
    .sidebar {
        position: fixed;
        left: -310px;
        top: 0;
        bottom: 0;
        width: 290px;
        background: #f8f9fa;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: 0.3s ease-in-out;
        z-index: 1000;
        /* height: 100vh; */
        /* overflow-y: auto; */
        display: block !important;
        padding: 20px;
    }
    .activate{
        left: 0;
    }
    nav ul{
        display: block !important;
    }
    nav ul a{
        color: #000 !important;
        display: block;
        margin-bottom: 20px;
        font-weight: bold;
        position: relative;
        transition: 0.3s;
    }
    nav a:hover{
        color: lch(30.18% 64.67 36.75) !important;
    }
    /* start counter   */
    .count{
        font-size: 40px !important;
    }
    .ab-content{
        margin-top:15px  !important;
    }
}


@media screen and (min-width:769px){
    /* start navigation  */
    .overlay {
        display: none !important;
    }
    nav ul{
        display: flex;
    }
    nav ul a{
        font-weight: 600;
        position: relative;
    }
    nav ul a::after{
        content: '';
        height: 2px;
        background-color: #000;
        position: absolute;
        width: 0;
        bottom: -5px;
        left: 0;
        transition: 0.3s;
    }
    nav ul li:hover a::after{
        width: 100%;
    }
    .clintsbx{
        height: 520px;
    }
    .payment{
       background-color: white !important;
    }
}
@media screen and (min-width:992px){
    .slider img{
        height: 630px;
    }
}