@media screen and (min-width: 320px) and (max-width: 767px) {

    /********************************************
        Common CSS Here
    ********************************************/
    .body-wrap {
        width: 100%;
        padding: 0 12px;
        margin: 0;
    }

    .mob-view {display: block;}
    .desk-view {display: none;}

    /********************************************
        Header Begin Here
    ********************************************/
    #header {height: 89px;}
    #header .container {gap: 20px;}
    #header .logo {max-width: 260px;}

    .header-right {
        width: calc(100% - 280px);
        gap: 0;
    }
    .header-right .upcoming-btn {display: none;}

    .language {
        position: absolute;
        top: 95px;
        right: 12px;
        gap: 5px;
    }

    .language a {
        border: 1px solid #f99e62;
        color: #ffdec8;
        padding: 6px 10px;
    }

    .language a:hover {
        border-color: #86c6e4;
        color: #86c6e4;
    }

    .language a.hindi {
        font-size: 15px;
        line-height: 23px;
    }

    .language a.urdu {
        font-size: 17px;
        line-height: 18px;
        padding-top: 5px;
        padding-bottom: 9px;    
    }

    /********************************************
        Navbar Begin Here
    ********************************************/
    #navbar {height: 48px;}

    #navbar .container {
        gap: 20px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #mobile-menu {
        font-size: 23px;
        line-height: 100%;
        /* border: 1px solid #f1f1f1; */
        background-color: #a34000;
        color: #f1f1f1;
        padding: 6px 14px;
        border-radius: 3px;
    }

    #overlay-bg {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9998;
        background-color: rgba(0, 0, 0, 0.5);
        min-width: 100%;
        min-height: 100%;
        height: 100vh;
        opacity: 0;
    }    

    #close-menu {
        color: #707070;
        font-size: 14px;
        font-weight: 400;
        border-bottom: 1px solid #dadada;
        background-color: var(--light-gray-color);
        padding: 8px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 38px;
        position: fixed;
        z-index: 9;
        width: 95%;
        background-color: #fff;
    }

    #close-menu span {
        font-size: 18px;
        line-height: 21px;
        width: 21px;
        text-align: center;
        cursor: pointer;
    }

    #navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 9999;
        width: 95%;
        min-height: 100%;
        height: 95vh;
        background-color: #fff;
        transition: all 0.3s;
        overflow-y: auto;
    }
    #navbar-menu.active {left: 0;}

    .menu {
        flex-direction: column;
        align-items: start;
        gap: 8px;
        padding: 20px;
        margin-top: 38px;
    }

    .menu > .menu-item {width: 100%;}

    .menu > .menu-item > a {
        align-items: start;
        color: #2c2e35;
        border-bottom: 1px solid #f7f7f7;
        padding: 6px 0;
    }

    .menu .menu-item a {
        font-size: 15px;
        font-weight: 400;
    }

    .sub-menu .menu-item a:hover {
        color: #2c2e35;
        background-color: transparent;
    }

    .menu-item-has-children > a::before {
        content: "";
        border: 1px solid #585858;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        position: absolute;
        top: 7px;
        right: 0;
    }

    .menu-item-has-children > a::after {
        content: '';
        border: 1px solid;
        border-color: var(--dark-black);
        border-top: none;
        border-left: none;
        width: 8px;
        height: 8px;
        position: absolute;
        top: 13px;
        right: 7px;
        transform: rotate(-45deg);
        transition: all 0.1s linear;
    }

    .menu-item-has-children.active > a::after {
        top: 11px;
        right: 6px;
        transform: rotate(45deg);
        transition: all 0.1s linear;
    }

    .menu-item-has-children:hover > a::after, .menu-item-has-children:hover > a::before {background-color: transparent;}
    .menu-item-has-children:hover > a::before {transform: scale(1);}
    .menu-item-has-children:hover .sub-menu {transition: none;}

    .sub-menu {
        background-color: #f7f7f7;
        position: static;
        max-width: 100%;
        min-width: 100%;
        border-radius: 0;
        border-top: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .sub-menu::before, .sub-menu::after {display: none;}
    .sub-menu .menu-item a {color: #2c2e35;}

    .directory-btn a {
        font-size: 11px;
        padding: 4px 8px;
    }

    .directory-btn .btn-icon img {width: 24px;}
    .directory-btn a .btn-txt .hindi {font-size: 15px;}
    
    #navbar-menu .upcoming-btn {
        padding: 20px;
        padding-top: 0;
    }

    /********************************************
        Slider Banner Begin Here
    ********************************************/
    .slider-banner .slider-img img.desk-view {display: none;}
    .slider-banner .slider-img img.mob-view {display: block;}
    
    /********************************************
        Tag Line Begin Here
    ********************************************/
    .tagLine {padding: 30px 0;}
    .tagLine h1 {font-size: 22px;}
    .tagLine h4 {font-size: 18px;}

    /********************************************
        About Brief Begin Here
    ********************************************/
    .about-brief {
        padding-top: 10px;
        padding-bottom: 50px;
    }

    .about-brief .container {
        flex-direction: column;
        gap: 20px;
    }

    .brief-thumb, .brief-content {width: 100%;}
    .brief-content h2 {font-size: 23px;}
    .brief-content h3 {font-size: 20px;}

    .brief-content p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    /********************************************
        Page Content Section
    ********************************************/
    .page-txt h3 {font-size: 19px;}

    .page-txt p {font-size: 15px;}
    .page-txt ul li, .page-txt ol li {font-size: 15px;}

    /********************************************
        Our Team Section
    ********************************************/
    .page-content {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .main-hd {font-size: 22px;}
    .sub-hd {font-size: 19px;}

    .team-tab {
        justify-content: start;
        overflow-x: auto;
        margin: 25px 0;
    }
    .team-tab a {white-space: nowrap;}

    .team-profile {
        justify-content: start;
        gap: 8px;
    }

    .single-team-profile {
        width: calc(50% - 4px);
        margin-bottom: 10px;
    }

    .single-team-profile:hover {transform: translateY(0px);}
    .profile-designation {text-align: left;}

    .profile-designation h3 {
        font-size: 14px;
        font-weight: bold;
    }
    .profile-designation p {font-size: 13px;}

    /********************************************
        Footer Begin Here
    ********************************************/
    .footer-block {
        border-radius: 15px;
        padding: 30px 15px;
        flex-direction: column;
        gap: 60px;
    }

    .left-col {
        max-width: 100%;
        width: 100%;
        border-right: none;
        padding-right: 0;
    }

    .middle-col {width: 100%;}
    .middle-col ul {column-gap: 20px;}
    .middle-col ul li {width: calc(50% - 10px);}
    .right-col {width: 100%;}
    .copyright {padding: 20px 0;}
    .copyright p {font-size: 12px;}

}