@media screen and (min-width: 1500px) {

    #header {
        width: calc(100% + 5%) !important;
        margin-left: -2.5% !important;
    }

    .container {
        width: 90% !important;
        max-width: 90% !important;
    }

    .single-team-profile {width: calc(20% - 24px);}
    .single-gallery-thumb {width: calc(20% - 16px);}
    .gallery-content .gallery-item {width: calc(20% - 16px) !important;}
}

@media screen and (max-width: 1400px) {
    .single-gallery-thumb {width: calc(25% - 15px);}
    .gallery-content .gallery-item {width: calc(25% - 15px) !important;}
}

@media screen and (max-width: 992px) {
    .single-gallery-thumb {width: calc(33.33% - 14px);}
    .gallery-content .gallery-item {width: calc(33.33% - 14px) !important;}
}

@media screen and (min-width: 1400px) {
    .initiative-list {gap: 40px;}
    .single-initiative {width: calc(25% - 30px);}
    .full-profile-info {max-width: 60%;}
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    
    
    .banner-details .banner-desc {
        width: calc(80% - 20px);
        padding: 20px;
        left: 20px;
        bottom: 20px;
    }

    .banner-details .banner-desc h2 {
        font-size: 18px;
    }

    .banner-details .banner-desc p {
        font-size: 16px;
    }

    .banner-desc .link-btn {
        margin-top: 20px;
    }

}



@media screen and (min-width: 200px) and (max-width: 767px) {  
    
    #header {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
    }
   
    .mob-view {display: block;}
    .desk-view {display: none;}
    .contained {padding: 0 13px;}

    /*********************************************************
        Header Section Start
    *********************************************************/
    #header {
        flex-direction: row;
        padding: 10px 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        /* box-shadow: 0 2px 6px rgba(66, 65, 65, 0.2); */
        height: 58px;
        /* position: fixed;
        top: 0;
        left: 0;
        z-index: 99; */
    }

    #mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 8px 10px;
        border-radius: 3px;
        border: 1px solid #b3b3b3;
    }

    #mobile-menu span {
        width: 21px;
        height: 2px;
        border-radius: 10px;
        background-color: #474952;
    }
    .logo {width: 140px;}

    #close-menu {
        position: absolute;
        top: -58px;
        right: 0;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 58px;
        width: 70px;
    }

    #close-menu i {
        font-size: 23px;
        font-weight: 300;
        line-height: 100%;
        border: 1px solid #b3b3b3;
        color: #a3a3a3;
        padding: 4px 10px;
        border-radius: 3px;
    }

    #navbar-menu {
        position: fixed;
        top: 58px;
        left: -100%;
        z-index: 9999;
        width: 100%;
        min-height: 100%;
        height: calc(100vh - 58px);
        background-color: #fff;
        transition: all 0.3s;
    }
    #navbar-menu.active {left: 0;}

	.menu-header-menu-container {
		height: 80vh;
    	overflow-y: auto;
	}

    .menu-header-menu-container .menu {
        flex-direction: column;
        align-items: start;
        gap: 0;
        padding: 20px;
    }
    .menu-header-menu-container .menu > .menu-item {width: 100%;}

    .menu-header-menu-container .menu > .menu-item > a {
        font-size: 14px;
        color: #2c2e35;
		border-bottom: 1px solid var(--light-gray-color);
        padding: 12px 0;
    }

	.menu-item-has-children .toggle-btn {
		width: 40px;
		height: 45px;
		display: inline-block;
		position: absolute;
		top: 0px;
		right: 0;
		z-index: 9;
	}

    .menu-item-has-children .toggle-btn i {
        font-size: 20px;
        color: #585858;
        border: 1px solid #585858;
        width: 22px;
        height: 22px;
        line-height: 20px;
        text-align: center;
        border-radius: 50%;
        position: absolute;
        top: 12px;
        right: 0;
		z-index: 9;
		transition: all 0.5s;
    }
	
	.menu-item-has-children .toggle-btn.rotate i {transform: rotate(90deg);}

    .menu-item-has-children:hover .sub-menu {transition: none;}
	
	.menu-header-menu-container .menu > .menu-item-has-children:hover > a ~ .sub-menu,
	.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu > .menu-item-has-children:hover .sub-menu {
		opacity: inherit;
		top: inherit;
		visibility: inherit;
		transition: inherit;
	}

    .menu-header-menu-container .menu > .menu-item-has-children > .sub-menu,
	.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu > .menu-item-has-children .sub-menu {
        position: static;
        max-width: 100%;
        min-width: 100%;
		background-color: transparent;
        border-radius: 0;
        border: none;
        box-shadow: none;
		padding-left:20px;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .menu-header-menu-container .menu > .menu-item-has-children > .sub-menu {padding-right: 10px;}
    .sub-menu::before {display: none;}

    .menu-header-menu-container .menu > .menu-item-has-children > .sub-menu .menu-item a,
	.menu-header-menu-container .menu > .menu-item-has-children > .sub-menu > .menu-item-has-children .sub-menu a {
        color: #2c2e35;
        border-bottom: 1px solid var(--light-gray-color);
		padding: 10px 0 !important;
    }
    .sub-menu .menu-item:last-child a {border: none;}

    /*********************************************************
        Main Banner Start
    *********************************************************/
    .banner-details {
        position: static;
        display: block;
        margin-bottom: 25px;
    }

    .banner-area {flex-direction: column-reverse;}
    .banner-area .main-banner {width: 100%;}
	.banner-area .main-banner::before {display:none;}
    .banner-area .main-slider {width: 100%;}
    
    .banner-details .banner-desc {
        width: 100%;
        padding: 0;
        position: static;
        box-shadow: none;
        background-color: #fff;
        border-radius: 0;
        backdrop-filter: blur(0);
    }

    .banner-details .banner-desc img {
        object-fit: cover;
        object-position: 90% center;
        width: 100%;
        min-height: 230px;
    }

    .banner-details .banner-desc h2 {
        font-size: 18px;
        color: var(--dark-black-color);
        margin-bottom: 15px;
    }

    .banner-details .banner-desc p {
        font-size: 16px;
        color: var(--dark-black-color);
        margin-top: 15px;
    }
    .banner-desc .link-btn {margin-top: 20px;}

    /*********************************************************
        Welcome Section Start
    *********************************************************/
    .welcome-area {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .welcome-area img {max-width: 60%;}
    .welcome-area h2 {font-size: 1.5rem;}


    /*********************************************************
        Secure Compliant Start
    *********************************************************/
    #multi-tabs-details .single-multi-tabs-details {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .multi-tabs-area {
        margin-top: 40px;
        margin-bottom: 10px;
    }

    .secure-compliant-area h2.common-sub-hd {padding: 0;}
    #multi-tabs-details .multi-tabs-thumbs,
    #multi-tabs-details .multi-tabs-desc {width: 100%;}

    .secure-compliant-area h1 {font-size: 22px;}
    .secure-compliant-area h2 {font-size: 18px;}

    .multi-tabs-area #tab-list {
        gap: 10px;
        overflow-x: auto;
    }

    .multi-tabs-area #tab-list::-webkit-scrollbar {width: 0px;}
    .multi-tabs-area #tab-list::-webkit-scrollbar-thumb {background-color: transparent;}

    .multi-tabs-area #tab-list li {
        width: max-content;
        white-space: nowrap;
        padding: 8px 13px;
    }
    .multi-tabs-area #tab-list li[data-scroll="out"] {transform: scale(1);}

    /*********************************************************
        Vision & Mission Start
    *********************************************************/
    .brief-area {
        flex-direction: column;
        margin-top: 0;
        margin-bottom: 40px;
    }

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

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

    .brief-area h2 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    /*********************************************************
        Delivering business Start
    *********************************************************/
    .delivery-business-area .delivery-bg img {
        min-height: 630px;
        object-fit: cover;
        object-position: top right;
    }
    .delivery-business-details h2 {font-size: 18px;}

    .delivery-business-details .counter-list {
        flex-wrap: wrap;
        gap: 14px;
    }
  
    .delivery-business-details .counter-list li {
        width: 100%;
        padding: 10px;
    }

    .delivery-business-details .counter-list .value {font-size: 18px;}
    .delivery-business-details .counter-list .title {font-size: 14px;}

    /*********************************************************
        Key Initiatives Start
    *********************************************************/
    .initiative-area {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .single-initiative {width: 100%;}

    /*********************************************************
        Partners Start
    *********************************************************/
    .partners-area {
        padding-top: 40px;
        padding-bottom: 50px;
        padding-left: 12px;
        padding-right: 12px;
        width: 100%;
        margin: 0;
    }
    .partners-area .container {padding: 0;}

    .partners-area h1 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .partners-list {
        flex-wrap: wrap;
        gap: 10px;
    }

    .partner-logo {
        width: calc(50% - 10px);
        border: 1px solid #f1f1f1;
    }

    .partners-carousel .carousel-cell {width: 50%;}
    .partners-carousel .flickity-page-dots {margin-top: 20px;}

    /*********************************************************
        Connect with Us Section Start
    *********************************************************/

    .connect-area .connect-bg img {
        object-fit: cover;
        object-position: left center;
        min-height: 155px;
    }

    .connect-area-details .container {
        flex-direction: column;
        gap: 14px;
        padding: 0 13px;
    }

    .connect-area-details h2 {
        text-align: center;
        font-size: 16px;
    }

	/*********************************************************
		Faqs Section Start
	*********************************************************/
    .faqs-area {padding: 30px 0;}
    .faqs-area .experience-more {margin-top: 40px;}

	#faqs-sec {
		flex-direction: column;
		gap: 20px;
		width: 100%;
		margin-left: 0;
	}

    .faqs-area h1 {
        font-size: 25px;
        margin-bottom: 30px;
    }
	
	#faqs-sec #left-col,
	#faqs-sec #right-col {width: 100%;}
	
	#faqs-list .single-faqs .faqs-title h3 {
		font-size:14px;
		font-weight: 600;
        line-height: 20px;
	}

    .faqs-title, .faqs-content {padding: 15px;}
	.single-faqs .faqs-title:hover h3 {transform: inherit;}
    .faqs-content p {font-size: 15px;}

    /**************************************
        Our Team Section
    **************************************/
    .team-profile {
        gap: 25px;
        padding: 0 25px;
    }

    .single-team-profile {width: 100%;}
    .single-team-profile:hover {transform: translateY(0px);}
    
    .profile-designation h3 {
        font-size: 14px;
        line-height: 20px;
    }

    .full-profile-info {
        width: 95%;
        max-height: 95%;
        padding: 1rem;
    }
    
    .full-profile-info h3 {font-size: 18px;}
    .full-profile-info p {font-size: 15px;}

    /********************************************
        News Block Home Page Start
    ********************************************/
    .news-section {padding-bottom: 10px;}
    .featured-news {margin-bottom: 27px;}

    .featured-news a {
        border-radius: 8px;
        text-decoration: none;
    }
    .featured-news a:hover h2 {color: #1358b8;}

    .featured-news a .feature-thumb {
        border-radius: 8px;
        overflow: hidden;
        min-height: 180px;
        height: max-content;
    }

    .featured-news a h1 {
        font-size: 19px;
        font-weight: 600;
        color: #3d3d3d;
        margin-top: 8px;
        padding: 0;
        position: static;
    }

    .featured-news a h1::before {display: none;}
    .news-list {flex-direction: column;}
    .news-list .single-news {width: 100%;}

    .news-list .single-news:nth-last-child(-n+2) {
        padding-bottom: 8px;
        margin-bottom: 8px;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
    }

    .news-list .single-news:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border: none;
    }

    .news-list .single-news:nth-child(5) {margin-bottom: 35px;}
    .news-list .single-news a {gap: 7px;}

    .news-list .single-news a .news-thumb {
        width: 105px;
        height: 74px;
    }
    .news-list .single-news a h4 {width: calc(100% - 112px);}

    .cat-news-section {
        border-top-width: 4px;
        border-bottom-width: 4px;
        border-left: none;
        border-right: none;
        padding: 9px 0;
        margin-top: 20px;
        max-height: 525px;
        overflow-y: auto;
    }

    .cat-news-header {
        margin-bottom: 0;
        padding-right: 5px;
    }

    .cat-featured-news {
        width: 100%;
        margin-bottom: 15px;
    }
    .cat-news-list {width: 100%;}

    .cat-featured-news a .cat-feature-thumb {
        border-radius: 8px;
        overflow: hidden;
        min-height: 180px;
        height: max-content;
    }

    .cat-featured-news a h2 {
        font-size: 16px;
        font-weight: 600;
        color: #3d3d3d;
        margin-top: 8px;
        padding: 0;
        position: static;
    }
    .cat-news-list .cat-single-news {width: 100%;}

    .cat-news-list .cat-single-news:nth-last-child(2) {
        border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
        padding-bottom: 8px;
        margin-bottom: 8px;
    }

    .cat-news-list .cat-single-news a .cat-news-thumb {
        width: 105px;
        height: 74px;
    }
    .cat-news-list .cat-single-news a h4 {width: calc(100% - 112px);}

    /********************************************
        News Section Start
    ********************************************/
    #news {
        flex-direction: column;
        gap: 50px;
        margin-top: 35px;
        margin-bottom: 50px;
    }

    #news .left-col, #news .right-col {width: 100%;}
    #news h1, .latest-news h1 {font-size: 17px;}

    .news-block {
        flex-direction: column;
        row-gap: 0;
    }

    .single-news-block:not(:first-child) {
        display: flex;
        gap: 10px;
        width: 100%;
        border-radius: 6px;
        border: 1px solid #d4d4d4;
        border-left: none;
        margin-bottom: 15px;
    }

    .single-news-block:first-of-type {
        display: block;
        width: 100%;
        margin-bottom: 25px;
    }

    .single-news-block:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        transform: translateY(0);
    }

    .single-news-block:not(:first-child) .news-thumb {
        width: 120px;
        height: 98px;
    }

    .single-news-block:not(:first-child) .news-thumb img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .single-news-block:not(:first-child) .news-block-content {
        width: calc(100% - 130px);
        padding: 5px;
        padding-left: 0;
    }

    .single-news-block:not(:first-child) .news-block-content .time {
        font-size: 12px;
        line-height: 12px;
        margin-bottom: 10px;
    }
    .single-news-block:not(:first-child) .news-block-content .time i {font-size: 11px;}

    .single-news-block:not(:first-child) .news-block-content h2 {
        max-height: 37px;
        font-size: 15px !important;
        margin-bottom: 6px !important;
    }

    .single-news-block:not(:first-child) .news-block-content p {display: none;}
    .news-block-content .readMoreBtn, .news-block-content .readMoreBtn i {font-weight: 400;}

    .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;}

    /********************************************
        News Full Page Section Start
    ********************************************/
    .full-news-area {
        margin-top: 35px;
        margin-bottom: 50px;
    }

    .full-news-area > .container {
        flex-direction: column;
        gap: 50px;
    }
    .full-news-details, .right-panel {width: 100%;}

    .full-news-details h1 {
        font-size: 21px;
        padding: 10px 10px 0 10px;
    }

    .author-social, .full-news-details .news-content {padding: 0 10px;}
    .author-social .author-box p, .author-social .social-media p {font-size: 14px;}
    .full-news-details .news-content h3 {font-size: 19px;}
    .full-news-details .news-content ul, .full-news-details .news-content ol {padding-left: 24px;}
    .full-news-details .news-content p,
    .full-news-details .news-content ul li,
    .full-news-details .news-content ol li {font-size: 15px;}

    /********************************************
        Gallery Begin Here
    ********************************************/
    .gallery {
        flex-direction: column;
        gap: 15px;
        margin-top: 35px;
        margin-bottom: 50px;
    }

    .gallery .gallery-item {width: 100%;}
    .gallery-thumb {gap: 10px;}

    .gallery-content .gallery {
        flex-direction: row;
        gap: 10px;
    }
    .single-gallery-thumb, .gallery-content .gallery-item {width: calc(50% - 5px) !important;}

    .single-gallery-thumb h2 {
        font-size: 13px;
        padding: 10px;
    }

    /*********************************************************
        Member Form Section Start
    *********************************************************/
    .member-form {padding: 35px 8px 50px 8px;}
    .member-list {padding: 20px 8px 25px 8px !important;}

    #filter-form {
        flex-direction: column;
        gap: 20px;
    }

    .member-list > h1 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .member-list table th, .member-list table td {
        font-size: 14px;
        padding: 10px;
    }

    .member-form form {
        padding: 12px !important;
        padding-top: 0 !important;
    }

    .member-form .form-group {margin-bottom: 15px;}
    .member-form .labels {font-size: 13px;}

    #paginations {
        max-width: 320px;
        overflow-x: auto;
        justify-content: start;
    }

    /*********************************************************
        Thank You Form Section Start
    *********************************************************/
    #success-bdy {
        width: 100%;
        margin: 40px auto;
    }

    #success-bdy .success-head i {font-size: 40px;}
    #success-bdy .success-head h2 {font-size: 25px;}
    #success-bdy .success-info p {font-size: 17px;}

    /*********************************************************
        Member Details Section Start
    *********************************************************/
    .members-info > .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .member-details {padding: 12px;}
    .members-header {padding-bottom: 25px;}

    .member-btn a {
        font-size: 14px;
        padding: 6px 25px;
    }

    .members-header .company-name {font-size: 20px;}
    .nationality img {max-height: 15px;}
    .nationality h3 {font-size: 16px;}
    .members-body h3 {font-size: 16px;}
    .members-body p {font-size: 15px;}

    .members-body .member-btn {
        margin-top: 30px;
        margin-bottom: 10px;
        text-align: center;
    }

    /*********************************************************
        Contact Us Section Start
    *********************************************************/
    .contact-area {padding-top: 0;}

    .contact-form-area {
        padding: 0;
        margin-bottom: 40px;
    }

    .form-area {padding: 15px 12px;}
    .contact-detail {padding-left: 0;}
    .form-info {padding: 15px;}
    .form-info h6 {font-size: 15px;}
    .form-info p {font-size: 13px;}

    /*********************************************************
        Page Content Section Start
    *********************************************************/
    #pages-area {margin-top: 30px;}
    
    .page-details {
        flex-direction: column;
        gap: 50px;
    }

    .main-hd {
        font-size: 22px;
        font-weight: 500;
        color: #575757;
        border-bottom: 1px solid #ccc;
        margin-bottom: 35px;
        padding-bottom: 4px;
    }
    
    .page-details .left-col, .page-details .right-col {width: 100%;}
    .pages-content > ol, .pages-content > ul {padding-left: 20px;}

    .pages-content p, .pages-content li {
        font-size: 15px;
        color: #404040;
        margin-bottom: 15px;
    }

    /********************************************
        Testimonials Begin Here
    ********************************************/
    .testimonial {padding: 35px 12px;}

    .testimonial h2, .page-content > h1 {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .testimonial-slider h6 {font-size: 14px;}
    .testimonial .experience-more {margin-top: 30px;}

    .testimonial-prof {
        width: 70px;
        height: 70px;
    }

    .testimonial-slider {
        padding: 50px 15px;
        padding-bottom: 20px;
    }
    .testimonials-list {gap: 20px;}
    .testimonials-list .testimonial-slider {width: 100%;}

    /*********************************************************
        Privacy Policy Section Start
    *********************************************************/
    .privacy-policy-area {
        margin-top: 68px;
        padding-top: 20px;
        border: none;
    }

    /*********************************************************
        Footer Section Start
    *********************************************************/
    .footer .important-links, .footer .contact-details {margin-bottom: 30px;}

    .footer .social-media {
        display: flex;
        flex-direction: row-reverse;
    }

    .footer-social {
        width: 50%;
        flex-wrap: wrap;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    /*********************************************************
        Copyright Section Start
    *********************************************************/
    .copyright-description {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .copyright-description p {font-size: 12px;}
    .copyright-description p a {font-size: 14px;}

    /************************************************************************
        WhatsApp Section Start
    ************************************************************************/
    .whatsapp-chat {
        width: 50px;
        height: 50px;
        right: 20px;
        top: auto;
        bottom: 85px;
    }
    .whatsapp-chat i {font-size: 34px;}

    /* =========================================
        Scroll Section Start
    ========================================= */
    #scrollTop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        width: 42px;
        height: 42px;
        background-color: #4f6694;
        text-align: center;
        cursor: pointer;
        border-radius: 5px;
        box-shadow: 0px 5px 20px 0 rgba(66, 65, 65, 0.5);
        display: none;
    }

}