@media screen and (min-width: 320px) and (max-width: 767px) {
    /**************************************
        Common Section
    **************************************/
    .mobile-view {display: block;}
    .desktop-view {display: none;}

    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }

    /**************************************
        Header Section
    **************************************/
    .header {
        padding: 12px 0;
        position: relative;
    }

    .header .container-fluid {flex-wrap: wrap;}
    .header .logo img {max-width: 150px;}
    .tagline {width: 100%;}

    .tagline p {
        font-size: 14px;
        text-align: center;
    }

    #mobile-menu i {
        display: inline-block;
        font-size: 28px;
        line-height: 100%;
        border: 1px solid #f7f7f7;
        color: #f7f7f7;
        padding: 3px 10px;
        margin-top: 8px;
    }
    
    #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 {
        font-size: 14px;
        font-weight: 400;
        border-bottom: 1px solid #dadada;
        background-color: #f7f7f7;
        color: #707070;
        padding: 8px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #close-menu i {font-size: 20px;}

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

    #navbar {
        height: 48px;
        padding-left: 12px;
    }

    #navbar .menu {
        flex-direction: column;
        align-items: start;
        gap: 20px;
        padding: 20px;
    }

    #navbar .menu > .menu-item {
        width: 100%;
        margin-bottom: 20px;
    }

    #navbar .menu > .menu-item > a {
        font-size: 18px;
        font-weight: 400;
    }
    /* #navbar .menu-item-has-children a {width: 70%;} */

    #navbar .menu-item-has-children .sub-menu .menu-item a {
        width: 100%;
        white-space: wrap;
        font-size: 17px;
        color: #464646;
    }
    #navbar .menu-item-has-children .sub-menu .menu-item a:hover {color: #c22129;}

    #navbar .menu-item-has-children::after {
        content: "\f078";
        font-family: fontAwesome;
        font-size: 12px;
        color: #585858;
        border: 1px solid #585858;
        width: 22px;
        height: 22px;
        line-height: 22px;
        text-align: center;
        border-radius: 50%;
        position: absolute;
        top: 2px;
        right: 0;
        z-index: -1;
    }

    #navbar .menu-item-has-children:hover .sub-menu {transition: none;}

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

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

    /**************************************
        Banner Section
    **************************************/
    .banner-sec .banner-thumb {height: 350px;}

    .banner-sec .banner-thumb img {
        object-fit: cover;
        object-position: 38% 50%;
        height: 100%;
    }

    .banner-info {
        left: 12px;
        bottom: 20px;
        width: calc(100% - 24px);
    }

    .banner-info h1 {font-size: 24px;}

    .banner-info p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .banner-info p:first-of-type {margin-bottom: 15px;}

    .banner-info .join-btn a {
        font-size: 15px;
        padding: 12px 20px;
    }

    /*********************************************************
        Advertisement Section
    *********************************************************/
    .advt-area {padding: 60px 0;}

    .advt-brief {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .advt-brief .advt-txt,
    .advt-brief .advt-thumb {width: 100%;}

    .advt-area h1 {font-size: 23px;}
    .advt-brief .advt-txt h2 {font-size: 20px;}
    .advt-brief .advt-txt p {font-size: 16px;}
    .advt-brief .knowMore {text-align: center;}

    /*************************************************
        Page Content Section
    *************************************************/
    #page-content {padding-top: 30px;}

    #page-content .hd {
        font-size: 25px;
        font-weight: 400;
        margin-bottom: 15px;
    }

    .content-box h3 {font-size: 20px;}
    .team-profile {gap: 12px;}
    .single-team-profile {width: calc(50% - 6px);}
    .single-team-profile:hover {transform: translateY(0px);}

    .women-profile {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .women-profile h1 {font-size: 22px;}

    .single-women-profile {flex-direction: column;}
    .single-women-profile:hover {    transform: translateY(0px);}

    .women-avatar, .full-profile .women-avatar {
        width: 100%;
        display: flex;
    }
    .women-avatar img {width: calc(100% - 55px);}
    .full-profile .women-avatar img {width: 100%;}

    .women-social {
        flex-direction: column;
        background-color: #d5d5d5;
        padding: 10px;
        margin-top: 0;
    }
    .women-details, .full-profile .women-details {width: 100%;}

    .women-social a {
        font-size: 16px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .connect-us {
        flex-direction: column;
        gap: 40px;
        padding: 30px 15px;
        text-align: center;
    }

    .connect-us .connect-txt {width: 100%;}

    .connect-us .connectBtn {
        width: 100%;
        text-align: center;
    }

    .connect-us .connect-txt h2 {
        font-size: 22px;
        line-height: normal;
    }

    .connect-us .connect-txt p {font-size: 17px;}
    #about-page {padding-top: 70px;}

    .about-content {
        width: 95%;
        padding: 30px 20px;
        padding-bottom: 40px;
    }

    .about-content h1 {
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .about-content p, .about-content .pageList li a, .joinBtn a {font-size: 17px;}
    .about-content .pageList li {margin-bottom: 8px;}

    .joinBtn {
        text-align: center;
        margin-top: 40px;
    }

    /*************************************************
        Events Section
    *************************************************/
    .program-area {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .single-upcoming-event {
        flex-direction: column;
        gap: 20px;
        border-radius: 6px;
        padding: 20px 15px;
        padding-bottom: 40px;
    }

    .upcoming-event-banner, .upcoming-event-content {width: 100%;}

    .upcoming-event-content h2 {
        font-size: 22px;
        line-height: normal;
    }

    .registerBtn {
        text-align: center !important;
        margin-right: 0;
        margin-top: 30px;
    }

    .single-upcoming-event:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        transform: scale(1);
    }

    .past-events {margin-top: 40px;}
    .single-past-event {width: 100%;}
    .loadMoreEvents {margin-top: 0;}

    .single-past-event:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        transform: scale(1);
    }

    .loadMoreEvents a {
        height: 50px;
        padding: 11px 30px;
    }

    .gallery {flex-direction: column;}
    .gallery .gallery-item {width: 100%;}

    .gallery .gallery-item a img {
        object-fit: initial;
        object-position: top;
        width: 100%;
        height: auto;
    }

    /*************************************************
        Registration Form Section
    *************************************************/
    .registeration-form {
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .registeration-form .hd {font-size: 30px;}
    .registeration-form .newRegisteration {margin-top: 0;}
    .registeration-form .row {flex-direction: column-reverse;}

    .registeration-form form {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 0;
        border: none;
    }

    /*************************************************
        Immigration Form Section
    *************************************************/
    .immigration-form {padding: 60px 12px;}
    .immigration-form form.form-validate-jquery {padding: 15px !important;}

    .validation-invalid-label, .validation-valid-label {
        font-size: 13px;
        padding-left: 22px;
    }

    .validation-invalid-label:before, .validation-valid-label:before {font-size: 16px;}
    .wizard>.steps>ul {display: flex;}
    #immigration_form {padding-bottom: 30px;}

    .immigration-form .fieldset h2 {
        font-size: 17px;
        padding: 10px 15px;
    }
    
    .immigration-form .fieldset .row {
        padding: 15px;
        padding-top: 25px;
    }

    .immigration-form form.wizard-form .content {
        padding: 40px 10px;
        padding-top: 0;
    }

    /*************************************************
        Our Works Section
    *************************************************/
    .works-area {
        padding: 40px 0;
    }

    .works-area .hd {
        font-size: 25px;
        font-weight: 500;
    }
    .work-item {width: 100%;}

    .single-work {
        width: 100%;
        padding-bottom: 30px;
    }

    .workIcon {width: 90px;}
    .workInfo {width: calc(100% - 110px);}

    .workInfo h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    /*************************************************
        Directory Section
    *************************************************/
    #directory {
        flex-direction: column-reverse;
        padding: 50px 12px;
        padding-top: 0;
    }
    .directory-hd {padding: 40px 0;}

    .directory-hd h1 {
        font-size: 23px;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 15px;
    }
    .search-directory, .directory-profile {width: 100%;}

    .directory-profile-list {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .single-directory-profile {width: 100%;}
    .single-directory-profile .profile-img img {width: 100%;}
    .search-form form {padding: 20px 15px;}
    .directory-banner {height: 120px;}
    .backBtn {margin-top: 20px;}

    #directory-view {
        flex-direction: column;
        margin-top: 20px;
    }

    #directory-view .left-panel, #directory-view .right-panel {width: 100%;}
    .single-member-box, .single-member-info {margin-bottom: 20px;}
    .single-member-box h3, .member-brief, .member-contact,
    .single-member-info h4, .similar-member-list {padding: 15px;}

    /*************************************************
        News Section
    *************************************************/
    .news-area {padding-top: 50px;}

    .single-news {
        flex-direction: column;
        padding: 15px;
        margin-bottom: 40px;
    }
    .news-thumbnail, .news-brief-content {width: 100%;}

    .news-thumbnail img {
        max-width: 100%;
        min-height: 100%;
    }

    .news-brief-content p {
        max-height: 100px;
        overflow: hidden;
    }

    .single-news:hover {box-shadow: none;}
    .full-news {padding: 10px;}

    .news-banner .title {
        font-size: 23px;
        line-height: 34px;
        margin-bottom: 30px;
    }

    .news-content h1 {
        font-size: 21px;
        line-height: 32px;
    }
    
    .news-content h2 {
        font-size: 20px;
        line-height: 31px;
    }
    
    .news-content h3 {
        font-size: 19px;
        line-height: 26px;
    }

    .news-content h4 {font-size: 18px;}
    
    .news-content h5 {
        font-size: 17px;
        line-height: 28px;
    }
    
    .news-content h6 {
        font-size: 16px;
        line-height: 27px;
    }

    /**************************************
        Join Network Section
    **************************************/
    .join-network {flex-direction: column;}
    .join-left-col, .join-right-col {width: 100%;}
    .join-left-col {padding: 30px 12px;}
    .join-left-col h1 {font-size: 26px;}
    .join-left-col p {font-size: 16px;}
    .join-left-col .join-network-btn {display: block;}

    .join-left-col .join-network-btn a {
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .join-left-col h6 {margin-bottom: 0;}
    .join-left-col h6 a {font-size: 16px;}

    .single-brief {
        gap: 15px;
        padding: 25px 12px;
    }

    .single-brief .icons i {font-size: 40px;}
    .single-brief .brief-txt h1 {font-size: 20px;}

    /*************************************************
        Contact Us Section
    *************************************************/
    .contact-form-area {
        width: 100%;
        margin-left: 0;
        padding: 20px 10px;
        padding-bottom: 30px;
        margin-bottom: 45px;
    }

    /**************************************
        FAQs Section
    **************************************/
    .faqs-area {padding: 60px 0;}

    .faqs-banner .content-banner {
        background-size: cover;
        padding: 50px 10px;
        border-radius: 20px;
    }

    .faqs-banner .content-banner h1{
        font-size: 25px;
        line-height: normal;
        text-align: center;
    }
    .content-box h2 {font-size: 19px;}

    .faqs-box {
        flex-direction: column;
        margin-top: 30px;
    }

    .single-faqs {
        width: 100%;
        background-color: #f7f9fa;
        padding: 15px;
    }
    .single-faqs::before {font-size: 250px;}

    /**************************************
        Footer Section
    **************************************/
    .footer-content {
        flex-direction: column;
        align-items: start;
    }

    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 576px) {
    /*************************************************
        Page Content Section
    *************************************************/
    .single-team-profile {width: 100%;}
    .profile-avatar img {width: 100%;}
}