@media only screen and (min-width: 991px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo img {
        width: 215px;
    }
    .login-left {
        height: 390px;
    }
    .training-section img {
        display: none;
    }

}

@media only screen and (max-width: 767px) {
    .training-section img {
        display: none;
    }
}


@media only screen and (min-width: 576px) and (max-width: 767px) {}


@media only screen and (max-width:575px) {
    /* Defaul Css Here */
        .banner-text h2 {
            font-size: 24px;
            line-height: 28px;
        }
    
        .custom-btn a {
            font-weight: 400;
            font-size: 14px;
            padding: 8px 15px;
        }
    
        h4 {
            font-size: 22px;
            line-height: 18px;
        }
    
        h3 {
            font-size: 22px;
            line-height: 28px;
        }
    
        /* header part css */
        .logo img {
            max-width: 160px;
        }

}

@media only screen and (max-width: 400px) {
    /* Defaul Css Here */
    .banner-text h2 {
        font-size: 24px;
        line-height: 28px;
    }
    .custom-btn a {
        font-weight: 400;
        font-size: 14px;
        padding: 8px 15px;
    }
    h4 {
        font-size: 22px;
        line-height: 18px;
    }
    h3 {
        font-size: 22px;
        line-height: 28px;
    }

    /* header part css */
    .logo img {
        max-width: 160px;
    }




}










