@media only screen and (max-width: 991px){
    .container{
        padding: 0 10px;
    }
    .checkbtn{
        display: block;
    }
    .menu ul{
        position: absolute;
        top: 90px;
        width: 300px;
        height: 300px;
        text-align: center;
        background-color: #C1D9FB;
        left: -100%;
        border-radius: 5px;
        transition: 0.5s;
    }
    .menu ul li{
        display: block;
        margin: 10px;
        padding: 10px;
    }
    #check:checked ~ ul{
        left: 0;
    }
    #check:checked ~ .checkbtn i::before{
       content: "\f00d";
    }
    .menu_bar{
        padding: 20px 0;
    }
    .display_title p{
        margin-bottom: 30px;
    }
    .left img{
        height: 350px;
        width: 350px;
    }
    .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .right{
        flex: 100%;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
    .card{
        margin-top: 30px;
        width: 300px;
    }
    .my_services {
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: 40px;
        padding: 0 0;
    }
}