@media only screen and (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media only screen and (max-width: 640px) {
    .navbar-brand>img {
        width: 85px !important;
    }

    .carousel-control {
        display: none !important;
    }

    .navbar-toggle {
        margin-top: 18px;
        margin-bottom: 18px;
    }

    .left_top {
        font-size: 12px !important;
    }

    .top_social li {
        display: inline-block;
        padding: 0 2px;
        font-size: 14px;
        line-height: 0 !important;
    }

    .b_h {
        padding-right: 60px !important;
    }

    .process {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 50px;
    }

    .left-s {
        font-size: 20px !important;
    }

    .right-s {
        font-size: 15px !important;
    }
    .carousel-caption{
        padding-left: 45px !important;
        height: 105px !important;
    }
    .slider_btn {
        padding: 3px 14px !important;
        border: 1.4px solid #fff !important;
        font-size: 13px !important;
        font-weight: 500 !important;
    }
    #wrapper{
        padding: 0 15px;
    }
    #process{
        padding-top: 35px;
        padding-bottom: 35px;
    }
    #team{
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .main_heading::after {
        width: 35%;
    }
    #copyrights{
        font-size: 10px;
    }
    .navbar .navbar-nav > li > a {
        padding: 18px 20px !important;
    }

    #slider_image_r {
        transform: scale(1.3) !important;
        animation-name: img_slider_animation_r;
        animation-iteration-count: 1;
        animation-duration: 15s;
        transition: all 1s;
        position: relative;
        left: 80px;
    }
    
    @-webkit-keyframes img_slider_animation_r {
        0% {
            left: 0;
        }
    
        100% {
            left: 80px;
        }
    }
    #slider_image_l {
        transform: scale(1.3) !important;
        animation-name: img_slider_animation_l;
        animation-iteration-count: 1;
        animation-duration: 15s;
        transition: all 1s;
        left: 0px;
        position: relative;
    }
    
    @-webkit-keyframes img_slider_animation_l {
        0% {
            left: 50px;
        }
    
        100% {
            left: 0;
        }
    }
}