:root{
    --yellow-color: #D6AD4E;
    --ash-color: #535353;
    --light-ash-color: #F6F6F6;
    --ash-color-dark: #3E3E3E;
    --white-color: #fff;
    --light-blue-color: #4CB8DB;
    --dark-blue-color: #214888;
}
    .translatepress-ja #footer .box.donate p br{
        display: none;
    }
    #gtranslate_wrapper{
        top: 142px !important;
        right: 0% !important;
        /* transition: all .5s; */
    }
    #gtranslate_wrapper.g-translate-scrolled{
        top: 75px !important;
        /* transition: all .5s; */
    }

    .skiptranslate iframe.VIpgJd-ZVi9od-ORHb-OEVmcd{
        display: none;
    }
    .translated-ltr #footer .contact-info li div{
        flex-direction: column;
        gap: 0;
    }
.gt_switcher_wrapper{
	right: 0 !important;
}
.gtranslate_wrapper .gt_switcher {
    width: 137px !important;
}
/* COMMON */
    *{
        font-family: 'Dosis', sans-serif;
    }
    ul{
        padding-left: 0;
        margin-bottom: 0;
    }
    h1, h2, h3, h4, h5, h6, p{
        margin: 0;
    }

    .slick-slider:not(.slick-initialized){ 
        display: none !important; 
    }

    /* TEXTS */
        .txt--white{
            color: var(--white-color);
        }
        .txt--dark-blue{
            color: var(--dark-blue-color);
        }
        .txt--light-blue{
            color: var(--light-blue-color);
        }
        .txt--dark{
            color: var(--ash-color-dark);
        }
        .paragraph,
        .paragraph p{
            font-family: 'Inter Tight', sans-serif;
            font-size: 17px;
            font-weight: 600;
            line-height: 30px;
        }
        .special-para{
            text-transform: uppercase;
            font-size: 18px;
            line-height: 30px;
            letter-spacing: 0.9px;
            padding-bottom: 25px;
            font-weight: 600;
        }
        .paragraph--light-weight{
            font-weight: 200;
        }
        .creative-heading{
            font-size: 17px;
            color: var(--light-blue-color);
            text-transform: uppercase;
            letter-spacing: 0.85px;
            font-weight: 400;
        }
        .section-heading{
            font-size: 40px;
            line-height: 50px;
            padding-bottom: 35px;
        }
        .txt--center{
            text-align: center;
        }
        .box--small-heading{
            font-size: 17px;
            line-height: 30px;
            font-weight: 400;
            padding-bottom: 15px;
            letter-spacing: 0.85px;
        }
        .box--large-heading{
            text-transform: uppercase;
            letter-spacing: 0.9px;
            font-size: 18px;
            line-height: 30px;
        }
    /* TEXTS */

    /* BACKGROUNDS */
        .bg--yellow{
            background-color: var(--yellow-color);
        }
        .bg--light-blue{
            background-color: var(--light-blue-color);
        }
        .bg--dark-blue{
            background-color: var(--dark-blue-color);
        }
        .bg--light-ash{
            background-color: var(--light-ash-color);
        }
    /* BACKGROUNDS */

    /* WRAPPERS */
        .max-wrap{
            width: 85%;
            margin: auto;
        }
        .middle-wrap{
            width: 70%;
            margin: auto;
        }
        .min-wrap{
            width: 50%;
            margin: auto;
        }
        .extra-small-wrap{
            width: 25%;
            margin: auto;
        }
    /* WRAPPERS */
    /* SECTION PADDINGS */
        .sect-pad-top--40{
            padding-top: 40px;
        }
        .sect-pad-bottom--40{
            padding-bottom: 40px;
        }
        .sect-pad-top--70{
            padding-top: 70px;
        }
        .sect-pad-bottom--70{
            padding-bottom: 70px;
        }

        .sect-pad-top--100{
            padding-top: 100px;
        }
        .sect-pad-bottom--100{
            padding-bottom: 100px;
        }

        .sect-pad-top--160{
            padding-top: 160px;
        }
        .sect-pad-bottom--160{
            padding-bottom: 160px;
        }
    /* SECTION PADDINGS */
    /* BUTTONS */
        .box-btn {
            padding: 0 60px;
            border-radius: 5px;
            width: max-content;
            text-decoration: none;
            font-weight: 600;
            transition: all .5s;
            letter-spacing: 0.85px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: all .3s;
            height: 60px;
            align-items: center;
        }
        .box-btn::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-color: var(--light-blue-color);
            z-index: -1;
            transform: translateX(-100%);
            transition: all .5s;
        }
        .box-btn:hover::after{
            transform: translateX(0);
            transition: all .5s;
        }
        .box-btn:hover{
            color: var(--white-color);
            transition: all .3s;
        } 
        .btn-white-bg{
            background-color: var(--white-color);
            color: var(--ash-color-dark);
        }
        .btn-yellow-bg{
            background-color: var(--yellow-color);
            color: var(--white-color);
        }
        .btn-blue-bg{
            background-color: var(--dark-blue-color);
            color: var(--white-color);
        }

        .btn--small{
            font-size: 17px;
            letter-spacing: 0.85px;
            font-weight: 600;
            position: relative;
            width: max-content;
            z-index: 1;
            transition: all .3s;
            text-decoration: none;
        }
        .btn--color-dark{
            color: var(--ash-color-dark);
        }
        .btn--color-white{
            color: var(--white-color);
        }
        .btn--small::after{
            position: absolute;
            content: '';
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            background-color: var(--yellow-color);
            z-index: -1;
            transition: all .3s;
        }
        .btn--small:hover{
            color: var(--white-color);
            transition: all .3s;
        }
        .btn--small:hover::after{
            height: 100%;
            transition: all .3s;
        }

        .btn-view-more{
            gap: 10px;
            color: var(--ash-color-dark);
            text-decoration: none;
            font-size: 17px;
            line-height: 30px;
            font-weight: 600;
            cursor: pointer;
        }
        .btn-view-more:hover{
            color: var(--ash-color-dark);
        }
    /* BUTTONS */
    .element-with-mask{
        position: relative;
    }
    .element-with-mask::after{
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;

    }
    /* COMMON BANNER */
        .common-banner{
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            height: 45vh;
            position: relative;
        }
        .common-banner::after{
            opacity: 0.8;
            background-color: #2E2E2E;
        }
        .common-banner .content-box{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            gap: 10px;
        }
        .common-banner .content-box h2{
            font-size: 50px;
            line-height: 85px;
            font-weight: 300;
        }
        .breadcrumb{
            text-transform: uppercase;
            font-size: 14px;
            line-height: 17px;
            letter-spacing: 0.42px;
        }
        .breadcrumb a{
            color:var(--white-color);
            text-decoration: none;
            transition: all .5s;
        }
        .breadcrumb a:hover{
            text-decoration: underline;
            transition: all .5s;
        }
        
    /* COMMON BANNER */
    /* INNER COMMON BANNER */
        .inner-common-banner-with-pro-info {
            padding-bottom: 225px;
        }
        .inner-common-banner-with-gallery {
            padding-bottom: 215px;
        }
        .inner-common-banner .main-wrapper{
           width: 60%;
           margin: auto; 
        }
        .inner-common-banner .breadcrumb{
            margin-bottom: 0;
        }
        .inner-common-banner h2{
            padding-top: 60px;
            padding-bottom: 45px;
        }
        .inner-common-banner hr{
            border: none;
            height: 1px;
            background-color: var(--white-color);
            opacity: 0.15;
        }
        .inner-common-banner h6{
            font-weight: 400;
            letter-spacing: 0.85px;
            text-transform: uppercase;
        }
        .inner-common-banner h5{
            font-family: 'Inter Tight', sans-serif;
            font-size: 20px;
            font-weight: 400;
            padding-top: 10px;
        }
        .inner-common-banner .project-info-wrapper{
            padding-top: 45px;
        }
       
    /* INNER COMMON BANNER */
/* COMMON */

/* HEADER */
    /* YELLOW BAR */
        .header .yellow-bar{
            background-color: var(--yellow-color);
            padding: 8px 0;
            position: relative;
            z-index: 1000;
        }
        .header .yellow-bar .inner{
            width: 85%;
            margin: auto;
        }
        .header .yellow-bar .left{
            gap: 50px;
        }
        .trp-language-switcher > div{
            background-color: var(--yellow-color);
            border: none;
            position: relative;
            z-index: 100;
            background-image:  linear-gradient(45deg, transparent 50%, var(--white-color) 50%),
            linear-gradient(135deg, var(--white-color) 50%, transparent 50%);
            background-position: calc(100% - 8px) calc(13px + 0px),
            calc(100% - 3px) calc(13px + 0px);
            cursor: pointer;
           
        }
        .trp-language-switcher:focus .trp-ls-shortcode-language, .trp-language-switcher:hover .trp-ls-shortcode-language{
            display: inline-block !important;
        }
        .trp-language-switcher > div > a:hover{
            background-color: var(--yellow-color) !important;
        }
        .trp-language-switcher:focus .trp-ls-shortcode-language, .trp-language-switcher:hover .trp-ls-shortcode-language{
            width: 90px !important;
        }
        .trp-language-switcher > div > a{
            font-size: 17px;
            line-height: 22px;
            text-decoration: none;
            color: var(--white-color);
        }
        .trp-language-switcher .trp-ls-shortcode-current-language{
            width: 90px !important;
        }
        .header .yellow-bar .social-icons{
            list-style: none;
            gap: 25px;
        }
        .header .yellow-bar .social-icons a:hover{
            filter: brightness(0) saturate(100%) invert(19%) sepia(24%) saturate(5229%) hue-rotate(205deg) brightness(96%) contrast(86%);
        }
        .header .yellow-bar .contact-info{
            list-style: none;
            gap: 55px;
        }
        .header .yellow-bar .contact-info a{
            text-decoration: none;
            color: var(--white-color);
            gap: 15px;
            letter-spacing: 0.51px;
            transition: all .5s;
        }
        .header .yellow-bar .contact-info a:hover{
            text-decoration: underline;
            transition: all .5s;
        }
    /* YELLOW BAR */
    /* NAV */
        .navbar-dark .navbar-nav .nav-link:focus-visible{
            outline: 0;
            border: none;
            box-shadow: none;
        }
        .navbar-expand-lg .navbar-nav .menu-item:focus-visible{
            outline: 0;
            border: none;
            box-shadow: none;
        }
        .mobile-offcanvas{
            display: none;
        }
        .navbar-toggler{
            display: none !important;
        }
        .header .main-wrapper{
            width: 85%;
            margin: auto;
        }
        .navbar-expand-lg .navbar-nav{
            /* gap: 70px; */
        }
        .navbar-expand-lg .navbar-nav .nav-link{
            text-transform: uppercase;
            color: var(--ash-color);
            font-weight: 500;
            letter-spacing: 0.51px;
            padding: 0;
            padding-bottom: 8px;
            position: relative;
            font-size: 17px;
        }
        .navbar-expand-lg .navbar-nav .menu-item-has-children:hover .dropdown-menu{
            display: block;
        }
        .navbar-expand-lg .navbar-nav .active .nav-link{
            color: var(--yellow-color);
        }
        .navbar-expand-lg .navbar-nav .menu-item{
            padding: 0 35px;
            height: 74px;
            display: flex;
            align-items: center;
        }
        .navbar-expand-lg .navbar-nav .menu-item:last-child{
            padding-right: 0;
        }
        .navbar-expand-lg .navbar-nav .active .nav-link::before{
            position: absolute;
            content: '';
            left: -5px;
            right: -5px;
            bottom: 0;
            height: 3px;
            background-color: var(--yellow-color);
        }
        .navbar-expand-lg .navbar-nav .menu-item-has-children .menu-item{
            padding: 0;
            height: max-content;
        }
        .navbar-expand-lg .navbar-nav .nav-link::before{
            transition: all .5s;
        }
        .navbar-expand-lg .navbar-nav .nav-link:hover::before{
            position: absolute;
            content: '';
            left: -5px;
            right: -5px;
            bottom: 0;
            height: 3px;
            background-color: var(--yellow-color);
            transition: all .5s;
        }
        .header .navbar-expand-lg{
            z-index: 101;
        }
        .header{
            position: relative;
        }
        .header .main-wrapper{
            position: relative;
            z-index: 1000;
        }
        .header-white-bg{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 75px;
            background-color: var(--white-color);
            z-index: 990;
            display: none;
        }
        .header-white-bg-scrolled{
            display: flex;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        }
        .header-scrolled {
            overflow-x: hidden;
        }
        .header-scrolled .main-wrapper{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all .5s;
        }
        .header-scrolled .navbar-brand img{
            width: 250px;
            transition: all .5s;
        }
        .navbar-expand-lg .navbar-nav .dropdown-menu {
            top: 53px;
            border-radius: 0;
            padding: 0;
            left: -18px;
            padding-top: 31px;
            background-color: transparent;
            border: 0;
        }
        .dropdown-menu[data-bs-popper]{
            margin-top: 0;
        }
        .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item{
            padding: 12px 45px;
            text-align: center;
            color: var(--ash-color-dark);
            font-size: 17px;
            letter-spacing: 0.51px;
            font-weight: 500;
            text-transform: uppercase;
            line-height: 21px;
            background-color: var(--white-color);
            color: var(--ash-color-dark);
        }
        .navbar-expand-lg .navbar-nav .dropdown-menu .active .dropdown-item{
            background-color: var(--light-blue-color);
            color: var(--white-color);
        }
        .navbar-expand-lg .dropdown-item:focus,   
        .navbar-expand-lg .dropdown-item:hover{
            background-color: unset;
        }
        .header-scrolled .navbar-expand-lg .navbar-nav .dropdown-menu {
            top: 38px;
            box-shadow: rgba(0, 0, 0, 0.24) 0 4px 2px -2px;
        }
        
    /* NAV */
/* HEADER */

/* HOME */
    /* BANNER */
        .home-banner{
            background-repeat: no-repeat;
            background-size: cover;
            height: 87vh;
        }
        .home-banner h5{
            font-size: 65px;
            line-height: 85px;
            font-weight: 300;
            padding-bottom: 35px;
        }
        .home-banner p{
            padding-bottom: 60px;
        }
        .home-banner-slider{
            margin-left: 130px;
            position: relative;
        }
        .home-banner-slider .carousel-item{
            position: relative;
            z-index: 3 !important;
        }
        .home-banner-slider .content{
            width: 45%;
            padding-right: 110px;
        }
        .home-banner-slider .image{
            width: 55%;
            border-radius: 10px;
            height: max-content;
            overflow: hidden;
            height: 610px;
        }
        .home-banner-slider .image img{
            border-radius: 10px;
            object-fit: cover;
            height: auto;
            max-height: 610px;
        }
        .home-banner-slider .carousel-indicators{
            position: absolute;
            margin: 0;
            left: -130px;
            top: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
        }
        .home-banner-slider .carousel-indicators button{
            width: 2px;
            height: 40px;
        }
    /* BANNER */
    /* ABOUT */
        .home-about .left{
            padding-right: 60px;
        }
        .home-about .image-box{
            width: 50%;
            padding: 7px;
        }
        .home-about .image-box .inner{
            border-radius: 10px;
            overflow: hidden;
        }
        .home-about .image-box img{
            transition: all .5s;
            object-fit: cover;
        }
        .home-about .image-box:hover img{
            transform: scale(1.1);
            transition: all .5s;
        }
        .home-about .yellow-box{
            width: 50%;
            padding: 7px;
        }
        .home-about .yellow-box .rectangle{
            padding: 55px 30px;
            border-radius: 10px;
        }
        .home-about .box-btn{
            margin-top: 40px;
            padding: 0 50px;
        }
        .home-about .yellow-box .special{
            padding-top: 15px;
            padding-bottom: 25px;
            line-height: 30px;
        }
    /* ABOUT */
    /* PROJECTS */
        .home-news{
            background-color: #F6F6F6;
        }
        .home-projects .home-projects-slider {
            margin: 0 -40px;
        }
        .home-news .slick-between-btns .slick-arrow{
            top: 36%;
        }
        .slick-slider{
            position: relative;
        }
        .slick-between-btns .slick-arrow{
            position: absolute;
            top: 30%;
            width: 13px;
            height: 25px;
            border: 0;
            background-color: transparent;
            background-repeat: no-repeat;
            color: transparent;
        }
        .slick-between-btns .slick-arrow:hover {
            filter: brightness(0) saturate(100%) invert(24%) sepia(15%) saturate(4773%) hue-rotate(192deg) brightness(93%) contrast(92%);
        }
        .slick-between-btns .slick-prev{
            left: -80px;
        }
        .slick-between-btns .slick-next{
            right: -80px;
        }
        .home-projects .box{
            padding: 55px 40px;
        }
        .home-projects .image-box{
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
        }
        .home-projects .image-box img{
            transition: all .5s;
            object-fit: cover;
        }
        .home-projects .box:hover .image-box img{
            transform: scale(1.1);
            transition: all .5s;
        }
        .home-projects .box .content-box h6{
            padding: 27px 0 15px 0;
            font-weight: 500;
            font-family: 'Dosis', sans-serif;
        }
        .home-projects .btn-wrapper{
            gap: 20px;
        }
        
    /* PROJECTS */
    /* DONATE */
        .home-donate{
            background-repeat: no-repeat;
            background-size: cover;
        }
        .home-donate::after{
            opacity: .8;
            background-color: #313131;
        }
        .home-donate .extra-small-wrap{
            position: relative;
            z-index: 1;
        }
        .home-donate h5{
            font-size: 30px;
            line-height: 38px;
            padding-bottom: 40px;
        }
        .home-donate h6{
            font-size: 20px;
            padding-bottom: 5px;
            font-family: 'Inter Tight', sans-serif;
            font-weight: 300;
            letter-spacing: 1px;
        }
        .home-donate h4{
            font-size: 40px;
            padding-bottom: 40px;
            letter-spacing: 2px;
            font-weight: bold;
            font-family: 'Inter Tight', sans-serif;
        }
    /* DONATE */
    /* PARTNERS */
        .home-partners .left{
            padding-right: 40px;
        }
        .home-partners .box{
            padding: 0 8px;
        }
        .home-partners .box .rectangle{
            height: 480px;
            overflow: hidden;
            border-radius: 10px;
        }
        .home-partners .box .rectangle::after{
            background-color: #2B2B2B;
            opacity: 0.45;
        }
        .home-partners .box img{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            object-fit: cover;
            transition: all .5s;
        }
        .home-partners .box:hover img{
            transform: scale(1.1);
            transition: all .5s;
        }
        .home-partners .box .content-box{
            position: relative;
            z-index: 1;
            padding: 30px 35px;
        }
        .home-partners .box h5{
            padding-bottom: 35px;
        }
        .home-partners .box-btn{
            margin-top: 50px;
        }
        .home-partners .home-partners-slider{
            position: relative;
        }
        .home-partners .home-partners-slider .slick-arrow{
            position: absolute;
            right: -120px;
            width: 13px;
            height: 25px;
            background-color: transparent;
            color: transparent;
            border: 0;
            background-repeat: no-repeat;
        }
        .home-partners .home-partners-slider .slick-arrow:hover{
            filter: brightness(0) saturate(100%) invert(20%) sepia(96%) saturate(1338%) hue-rotate(200deg) brightness(86%) contrast(85%);
        }
        .home-partners .home-partners-slider .slick-next{
            top: 25%;
        }
        .home-partners .home-partners-slider .slick-prev{
            top: 40%;
        }
    /* PARTNERS */
    /* COUNTING */
        /* .home-counting-sect .box{
            width: 25%;
        } */
        .home-counting-sect .boxes-wrapper{
            justify-content: space-between;
        }
        .home-counting-sect .box .right{
            padding-left: 25px;
        }
        .home-counting-sect .box h5{
            font-size: 20px;
            line-height: 30px;
            letter-spacing: 1px;
            padding-bottom: 10px;
            text-transform: uppercase;
        }
        
        .home-counting-sect .box h4,
        .home-counting-sect .box h4 span{
            font-size: 35px;
            line-height: 30px;
            letter-spacing: 1.75px;
            padding-bottom: 10px;
            font-family: 'Inter Tight', sans-serif;
            font-weight: bold;
        }
        .home-counting-sect .box h6{
            font-size: 18px;
            line-height: 18px;
            letter-spacing: 0.9px;
            text-transform: uppercase;
        }
    /* COUNTING */
    /* VIDEO */
        .home-video{
            height: 600px;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }
        .home-video::after{
            opacity: 0.8;
            background-color: #1E1E1E;
        }
        .home-video .min-wrap{
            position: relative;
            z-index: 1;
        }
        .home-video .content-wrap{
            height: 600px;
        }
        .home-video h5{
            font-size: 30px;
            line-height: 38px;
            padding-top: 7px;
            padding-bottom: 30px;
        }
    /* VIDEO */
    /* NEWS */
        .home-news .box{
            padding-bottom: 0;
        }
        .home-news .box .special-para{
            padding-top: 25px;
        }
        .home-news .box .image-box{
            position: relative;
        }
        .home-news .box span{
            position: absolute;
            left: 0;
            bottom: 15px;
            padding: 5px 25px 5px 15px;
            background-color: var(--light-blue-color);
            z-index: 3;
            font-size: 17px;
            letter-spacing: 0.85px;
            border-radius: 0px 30px 30px 0px;
            line-height: 20px;
        }
    /* NEWS */
    /* INSTA */
        .home-insta .box{
            width: 20%;
            padding: 6px 3px; 
        }
        .home-insta .box:first-child{
            padding-left: 0;
        }
        .home-insta .box:last-child{
            padding-right: 0;
        }
        .home-insta .box img{
            object-fit: cover;
        }
    /* INSTA */
/* HOME */

/* ABOUT */
    /* ABOUT */
        .about-about .image-box{
            padding-left: 90px;
            position: relative;
        }
        .about-about .image-box .image{
            overflow: hidden;
            border-radius: 10px;
        }
        .about-about .image-box .image img{
            transition: all .5s;
        }
        .about-about .image-box .image:hover img{
            transform: scale(1.1);
            transition: all .5s;
        }
        .about-about .image-box .blue-box{
            position: absolute;
            padding: 30px;
            bottom: 45px;
            right: -70px;
            width: 35%;
            gap: 15px;
        }
        .about-about .image-box .blue-box h6{
            font-size: 18px;
            line-height: 30px;
            letter-spacing: 0.9px;
            font-weight: 400;
        }
    /* ABOUT */
    /* VISSION MISSION */
        .vision-mission {
            position: relative;
        }
        .vision-mission .box-left{
            padding: 70px 80px 70px 0;
        }
        .vision-mission::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 50%;
            background-repeat: no-repeat;
            background-size: cover;
            opacity: 0.85;
            background-color: #3E3E3E;
        }
        .vision-mission::after{
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            bottom: 0;
            right: 0;
            background-color: var(--yellow-color);
            z-index: -1;
        }
        .vision-mission .box-left .rectangle{
            position: relative;
            z-index: 1;
        }
        .vision-mission .box-right{
            padding: 70px 0 70px 80px;
        }
        .vision-mission img{
            margin-bottom: 20px;
        }
        .vision-mission .paragraph p{
            font-weight: 400;
        }
        .vision-mission .mask{
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 50%;
            opacity: 0.85;
            background-color: #3E3E3E;
        }
        .vision-mission-on-mobile{
            display: none;
        }
    /* VISSION MISSION */
    /* CORE VALUES */
        .about-core-values .left{
            padding-right: 50px;
        }
        .about-core-values .right{
            padding-left: 50px;
        }
        .about-core-values img{
            margin-bottom: 20px;
        }
        .about-core-values .accordion-item{
            border: 0;
            padding-bottom: 20px;
        }
        .about-core-values .accordion-button{
            box-shadow: none;
            border-radius: 5px;
            background-color: var(--dark-blue-color);
            text-transform: uppercase;
            font-size: 18px;
            letter-spacing: 0.9px;
        }
        .about-core-values .accordion-button:not(.collapsed){
            background-color: var(--light-blue-color);
            color: var(--white-color);
        }
        .about-core-values .accordion-button:not(.collapsed)::after,
        .about-core-values .accordion-button::after{
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(133deg) brightness(102%) contrast(101%);
        }
        .about-core-values .accordion-body{
            padding: 25px 0 5px 0;
        }
        .accordion-item:last-of-type .accordion-button.collapsed,
        .accordion-item:first-of-type .accordion-button{
            border-radius: 5px;
        }
    /* CORE VALUES */
    /* OBJECTIVES */
        .about-objectives .boxes-wrapper{
            column-count: 2;
            margin: 0 -40px;
        }
        .about-objectives .box{
            padding: 0 40px 30px 40px;
            page-break-inside: avoid;
            break-inside: avoid-column;
            display: table;
            width: 100%;
        }
        .about-objectives .paragraph{
            gap: 15px;
        }
        .about-objectives .paragraph::before{
            content: '';
            min-width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--yellow-color);
            margin-top: 10px;
        }
    /* OBJECTIVES */
    /* CHAIRMAN MESSAGE */
        .chairman-message .left{
            width: 30%;
            padding-top: 25px;
        }
        .chairman-message .left .image-box{
            overflow: hidden;
            border-radius: 5px;
            position: relative;
            z-index: 1;
            margin: 0 15px;
        }
        .chairman-message .left img{
            transition: all .5s;
        }
        .chairman-message .left:hover img{
            transform: scale(1.1);
            transition: all .5s;
        }
        .chairman-message .right{
            width: 70%;
            padding-left: 45px;
        }
        .chairman-message .content-box{
            padding: 55px 25px 20px 25px;
            border-radius: 5px;
            margin-top: -25px;
        }
        .chairman-message .content-box p{
            text-transform: uppercase;
        }
    /* CHAIRMAN MESSAGE */
/* ABOUT */

/* PROJECTS */
    /* PROJECTS WRAPPER */
        .project-projects .nav-pills{
            width: 100%;
            margin: auto;
            margin-top: 50px;
            justify-content: center;
            padding-bottom: 30px;
        }
        .project-projects .nav-pills .nav-item{
            width: 25%;
            padding: 4px;
        }
        .project-projects .nav-pills .nav-link{
            padding: 12px 8px;
            font-size: 15px;
            line-height: 20px;
            text-transform: uppercase;
            color: var(--ash-color-dark);
            letter-spacing: 0.75px;
            font-weight: 600;
            background-color: var(--light-ash-color);
            border-radius: 5px;
            width: 100%;
            height: 100%;
        }
        .project-projects .nav-pills .nav-link.active, 
        .project-projects .nav-pills .show>.nav-link{
            background-color: var(--dark-blue-color);
            color: var(--white-color);
        }
        .project-projects .boxes-wrapper{
            margin: 0 -40px;
        }
        .project-projects .box{
            width: 33.33%;
            padding: 35px 40px;
        }
        .project-projects .box .image{
            overflow: hidden;
            height: 250px;
            border-radius: 10px;
        }
        .project-projects .box .image img{
            object-fit: cover;
            transition: all .5s;
        }
        .project-projects .box:hover .image img{
            transform: scale(1.1);
            transition: all .5s;
        }
        .project-projects .box h6{
            padding: 30px 0 15px 0;
            font-size: 17px;
        }
        .project-projects .box h5{
            padding-bottom: 25px;
            text-transform: uppercase;
            font-weight: 500;
            transition: all .2s;
        }
  
        .project-projects .project-box{
            display: none;
        }
        .project-projects .box.display{
            display: flex;
        }
        .project-projects .btn-view-more{
            margin-top: 50px;
        }
        .project-projects .btn-view-more.display-none{
            display: none !important;
        }
    /* PROJECTS WRAPPER */
    /* GALLERY */
        .projects-gallery .project-gallery-slider{
            margin: 0 -25px;
        }
        .projects-gallery .box{
            padding: 0 25px;
        }
        .projects-gallery .box .rectangle{
            overflow: hidden;
            height: 400px;
            border-radius: 10px;
        }
        .projects-gallery .box .rectangle img{
            object-fit: cover;
            transition: all .5s;
        }
        .projects-gallery .box:hover .rectangle img{
            transform: scale(1.1);
            transition: all .5s;
        }
        .projects-gallery .slick-dots{
            display: flex;
            justify-content: center;
            list-style: none;
            margin-top: 50px;
            gap: 15px;
        }
        .projects-gallery .slick-dots button{
            padding: 0;
            border: 0;
            background-color: transparent;
            color: transparent;
            width: 40px;
            height: 2px;
            background-color: var(--ash-color-dark);
            border-radius: 1px;
        }
        .projects-gallery .slick-dots .slick-active button{
            background-color: var(--yellow-color);
        }
    /* GALLERY */
/* PROJECTS */

/* SINGLE PROJECT */
    .project-inner-content .single-project-gallery-slider{
        position: relative;
        margin-top: -160px;
    }
    .project-inner-content .single-project-gallery-slider .box{
        padding: 0 10px;
    }
    .project-inner-content .single-project-gallery-slider .image{
        overflow: hidden;
        border-radius: 10px;
        height: 420px;
        width: 100%;
        margin: auto;
    }
    .project-inner-content .single-project-gallery-slider img{
        transition: all .5s;
        object-fit: cover;
        border-radius: 10px;
        object-position: top;
    }
    .project-inner-content .single-project-gallery-slider .box:hover img{
        transform: scale(1.1);
        transition: all .5s;
    }
    .project-inner-content .single-project-gallery-slider .slick-arrow{
        padding: 0;
        background-color: transparent;
        width: 13px;
        height: 25px;
        color: transparent;
        border: 0;
        background-repeat: no-repeat;
        top: 48%;
        position: absolute;
    }
    .project-inner-content .single-project-gallery-slider .slick-prev{
        left: -10%;
        margin-right: 10%;
    }
    .project-inner-content .single-project-gallery-slider .slick-next{
        right: -10%;
        margin-left: 10%;
    }
    .project-inner-content .single-project-gallery-slider .slick-arrow:hover{
        filter: brightness(0) saturate(100%) invert(18%) sepia(10%) saturate(22%) hue-rotate(319deg) brightness(95%) contrast(78%);
    }
    .project-inner-content .description{
        padding-top: 60px;
    }
    .project-inner-content .description p{
        font-weight: 500;
    }
    .project-inner-content .description a{
        color: var(--dark-blue-color);
        text-decoration: none;
    }
    .project-inner-content .description h1,
    .project-inner-content .description h2,
    .project-inner-content .description h3,
    .project-inner-content .description h4,
    .project-inner-content .description h5,
    .project-inner-content .description h6{
        font-size: 18px;
        line-height: 30px;
        font-weight: bold;
        text-transform: uppercase;
    }
    .project-inner-content .description ul {
        list-style: none;
    }
    .project-inner-content .description ul li{
        font-size: 17px;
        line-height: 40px;
        font-weight: 600;
        font-family: 'Inter Tight', sans-serif;
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }
    .project-inner-content .description ul li::before {
        content: '';
        min-width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--yellow-color);
        margin-top: 15px;
    }

    /* VIDEO */
        .project-inner-video .video-wrapper{
            background-repeat: no-repeat;
            background-size: cover;
            height: 475px;
            position: relative;
        }
        .project-inner-video .video-wrapper::after{
            background-color: #000000;
            opacity: 0.6;
        }
        .project-inner-video .read-more{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }
    /* VIDEO */
/* SINGLE PROJECT */

/* INTERNATIONAL RELATIVES */
    .international-relatives-partners .nav-pills{
        gap: 8px;
        padding: 55px 0 50px 0;
    }
    .international-relatives-partners .nav-pills button{
        padding: 12px 50px;
        text-transform: uppercase;
        color: var(--ash-color-dark);
        background-color: var(--light-ash-color);
        border-radius: 5px;
        font-size: 15px;
        line-height: 20px;
        font-weight: 600;
        letter-spacing: 0.75px;
        min-width: 228px;;
    }
    .international-relatives-partners .nav-pills .nav-link.active, 
    .international-relatives-partners  .nav-pills .show>.nav-link{
        background-color: var(--dark-blue-color);
    }
    .international-relatives-partners .boxes-wrapper{
        margin: 0 -20px;
    }
    .international-relatives-partners .box{
        width: 33.33%;
        padding: 20px;
    }
    .international-relatives-partners .box .rectangle{
        height: 385px;
    }
    .international-relatives-partners .box{
        display: none;
    }
    .international-relatives-partners .box.box.display{
        display: block;
    }
    .international-relatives-partners .btn-view-more.display-none{
        display: none !important;
    }
   
/* INTERNATIONAL RELATIVES */

/* INTERNATIONAL RELATIVES INNER*/
    .inner-common-banner .paragraph p{
        font-weight: 400;
    }
    .single-partner-attachments h5{
        font-size: 18px;
        letter-spacing: 0.9px;
        font-weight: 600;
    }
    .single-partner-attachments .attachments-wrapper {
        margin: 0 -50px;
        padding-top: 35px;
    }
    .single-partner-attachments .box{
        width: 33.33%;
        padding: 20px 50px;
        text-decoration: none;
    }
    .single-partner-attachments .box .rectangle{
        gap: 30px;
    }
    .single-partner-attachments .box h6{
        font-size: 18px;
        letter-spacing: 0.9px;
        font-weight: 500;
        line-height: 30px;
    }
/* INTERNATIONAL RELATIVES INNER*/
/* NEWS */
    .news-news .boxes-wrapper{
        margin: 0 -40px;
    }
    .news-news .box{
        width: 33.33%;
        padding: 35px 40px;
    }
    .news-news .box h5{
        padding-top: 30px;
    }
    .news-news .box .image-box{
        position: relative;
    }
    .news-news .box .image-box span{
        position: absolute;
        left: 0;
        bottom: 15px;
        font-size: 17px;
        line-height: 25px;
        font-weight: 500;
        letter-spacing: 0.85px;
        padding: 5px 25px 5px 15px;
        border-radius: 0px 30px 30px 0px;
    }
    .paginations-wrapper{
        gap: 22px;
        align-items: center;
        padding-top: 45px;
    }
    .paginations-wrapper a{
        text-decoration: none;
        color: var(--ash-color-dark);
        font-size: 17px;
        font-weight: 600;
    }
    .paginations-wrapper .prev,
    .paginations-wrapper .next{
        color: transparent;
        width: 9px;
        height: 16px;
        background-repeat: no-repeat;
    }
    .paginations-wrapper .page-numbers.current{
        background-color: var(--light-blue-color);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--white-color);
    }
/* NEWS */
/* CONTACT */
.contact-contact-form p:has(input[type=submit]){
    display: flex;
    flex-direction: column;
    align-items: center;
}
    /* INFO */
        .contact-contact-info .left{
            width: 30%;
            box-shadow: 0px 3px 6px #00000029;
            border-radius: 10px;
            padding: 40px 40px 40px 80px;
            position: relative;
            z-index: 1;
        }
        .contact-contact-info .left .heading{
            border-bottom: 1px solid var(--white-color);
        }
        .contact-contact-info .left .heading h5{
            font-size: 18px;
            font-weight: 500;
            text-transform: uppercase;
            padding-bottom: 20px;
             font-family: 'Inter Tight', sans-serif;
        }
        .contact-contact-info .left .info-box{
            padding-top: 20px;
            gap: 20px;
        }
        .contact-contact-info .left .info-box a,
        .contact-contact-info .left .info-box p{
            font-size: 18px;
            line-height: 30px;
            font-weight: 400;
            font-family: 'Inter Tight', sans-serif;
            text-decoration: none;
            transition: all .5s;
        }
        .contact-contact-info .left .info-box a{
            cursor: pointer;
        }
        .contact-contact-info .left .info-box a:hover{
            color:var(--white-color);
            text-decoration: underline;
            transition: all .5s;
        }
        .contact-contact-info .left .info-box img{
            margin-top: 8px;
            margin-left: -42px;
        }
        .contact-contact-info .right{
            width: 70%;
        }
        .contact-contact-info .map iframe{
            width: 100%;
            height: 100%;
            margin-left: -5px;
        }
        .contact-contact-info .right-aligned-map-wrapper {
            padding-top: 45px;
        }
        .contact-contact-info .right-aligned-map-wrapper .map iframe{
            margin-left: 0;
            margin-right: -5px;
        }
        .contact-contact-info ul{
            list-style: none;
            gap: 30px;
            padding-top: 50px;
        }
        .contact-contact-info ul .hidden{
            display: none;
            transition: all .5s;
        }
        .contact-contact-info ul a:hover .hidden{
            display: flex;
            transition: all .5s;
        }
        .contact-contact-info ul a:hover .normal{
            display: none;
            transition: all .5s;
        }
    /* INFO */
    /* FORM */
        .contact-contact-form .w-50,
        .contact-contact-form .w-100{
            padding: 0 8px;
        }
        .contact-contact-form .form-group{
            position: relative;
        }
        .contact-contact-form input,
        .contact-contact-form select,
        .contact-contact-form textarea{
            width: 100%;
            border: 1px solid #D2D2D2;
            border-radius: 5px;
            padding-left: 30px;
            transition: all .5s;
            outline: 0;
            font-size: 17px;
            color: var(--ash-color-dark);
            font-weight: 600;
            font-family: 'Inter Tight', sans-serif;
            background-color: var(--white-color);
        }
        .contact-contact-form input,
        .contact-contact-form select{
            height: 70px;
        }
        .contact-contact-form select{
            background-repeat: no-repeat;
            background-position: 98%;
        }
        .contact-contact-form .form-label{
            position: absolute;
            z-index: 1;
            left: 30px;
            top: 48px;
            transition: all .5s;
            font-size: 16px;
            color: var(--ash-color-dark);
            font-weight: 500;
            font-family: 'Inter Tight', sans-serif;
        }
        .contact-contact-form textarea{
            padding-top: 23px;
            height: 130px;
        }
        .contact-contact-form input:focus,
        .contact-contact-form select:focus,
        .contact-contact-form textarea:focus{
            box-shadow: 0px 3px 6px #00000029;
            outline: 0;
            transition: all .5s;
        }
        .contact-contact-form .focused .form-label{
            opacity: 0;
            transition: all .5s;
        }
        .contact-contact-form select option:first-child{
            color: transparent;
        }
        .contact-contact-form .btn-submit{
            padding: 20px 60px;
            width: max-content;
            background-color: var(--dark-blue-color);
            color: var(--white-color);
            font-size: 17px;
            letter-spacing: 0.85px;
            font-weight: 300;
            text-transform: uppercase;
            transition: all .5s;
        }
        .contact-contact-form .btn-submit:hover{
            background-color: #142c52;
            transition: all .5s;
        }
        .contact-contact-form select {
            appearance: none;
        }
        .wpcf7 form.invalid .wpcf7-response-output, 
        .wpcf7 form.unaccepted .wpcf7-response-output, 
        .wpcf7 form.payment-required .wpcf7-response-output{
            border: 2px solid var(--yellow-color);
            color: var(--ash-color-dark);
            text-align: center;
        }
    /* FORM */
    /* FAQ */
        .contact-faq .box{
            width: 50%;
            padding: 25px 30px;
        }
        .contact-faq .box .rectangle{
            gap: 20px;
        }
        .contact-faq .box h6{
            font-size: 18px;
            font-weight: bold;
            padding-bottom: 30px;
        }
        /* .contact-faq .box .paragraph{

        } */
    /* FAQ */
/* CONTACT */
/* DONATE */
    .donate-donate .tab-pane h6{
        font-size: 18px;
        letter-spacing: 0.9px;
        font-weight: 500;
        padding-bottom: 30px;
    }
    .donate-donate .tab-pane .amounts-wrapper {
        padding-bottom: 4px;
    }
    .donate-donate .tab-pane .amounts-wrapper .button{
        width: 33.33%;
        padding: 4px;
    }
    .donate-donate .tab-pane .amounts-wrapper .button button{
        padding: 20px;
        background-color: var(--ash-color-dark);
        color: var(--white-color);
        border: 0;
        border-radius: 5px;
        font-size: 18px;
        transition: all .5s;
    }
    .donate-donate .tab-pane .amounts-wrapper .button button:hover{
        background-color: #262626;
        transition: all .5s;
    }
    .donate-donate .tab-pane .amount-txt-wrapper{
        position: relative;
        margin: 0 4px;
    }
    .donate-donate .tab-pane .amount-txt-wrapper label{
        position: absolute;
        left: 40px;
        top: 18px;
        font-size: 16px;
        color: var(--ash-color-dark);
        font-weight: 600;
        transition: all .5s;
    }
    .donate-donate .tab-pane .amount-txt-wrapper.focused label{
        top: 1px;
        font-size: 13px;
        transition: all .5s;
    }
    .donate-donate .tab-pane .amount-txt-wrapper input{
        width: 100%;
        height: 60px;
        border: 1px solid #CBCBCB;
        border-radius: 5px;
        padding-left: 40px;
        font-size: 18px;
        font-weight: 600;
    }
    .donate-donate .tab-pane .amount-txt-wrapper input:focus{
        outline: 0;
    }
    .donate-donate .tab-pane .logos-wrapper{
        list-style: none;
        gap: 10px;
        padding: 25px 0 30px 4px;
    }
    .donate-donate .tab-pane .agreement{
        padding-left: 4px;
        gap: 12px;
    }
    .donate-donate .tab-pane .agreement input{
        width: 23px;
        height: 23px;
        position: relative;
        border: 1px solid #3E3E3E;
        border-radius: 2px;
    }
    .donate-donate .tab-pane .agreement label,
    .donate-donate .tab-pane .agreement a{
        font-size: 16px;
        color: var(--ash-color-dark);
        font-family: 'Inter Tight', sans-serif;
        font-weight: 500;
    }
    .donate-donate .tab-pane .agreement a{
        text-decoration: none;
        color: var(--yellow-color);
    }
    .donate-donate .tab-pane .btn-submit{
        background-color: var(--yellow-color);
        border: 0;
        color: var(--white-color);
        padding: 20px 60px;
        border-radius: 5px;
        margin-top: 45px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        transition: all .5s;
    }
    .donate-donate .tab-pane .btn-submit:hover{
        background-color: #ba8f2c;
        transition: all .5s;
    }
    /* SECOND TAB */
        .donate-donate .second-tab-pane .main-para{
            font-weight: 500;
        }
        .donate-donate .second-tab-pane .main-para span{
            font-weight: 700;
            white-space: nowrap;
            padding-bottom: 50px;
        }
        .donate-donate .second-tab-pane .yellow-box{
            width: max-content;
            margin: auto;
            margin-top: 50px;
            padding: 40px 125px;
        }
        .donate-donate .second-tab-pane .yellow-box h5{
            font-size: 18px;
            letter-spacing: 0.9px;
            font-weight: 500;
            padding-bottom: 17px;
            border-bottom: .5px solid var(--white-color);
        }
        .donate-donate .second-tab-pane .yellow-box h6{
            font-size: 17px;
            padding-top: 25px;
            padding-bottom: 20px;
        }
        .donate-donate .second-tab-pane .yellow-box td{
            color: var(--white-color);
            font-size: 17px;
            font-family: 'Inter Tight', sans-serif;
        }
        .donate-donate .second-tab-pane .yellow-box tr td:first-child{
            padding-right: 20px;
        }
    /* SECOND TAB */
    /* THIRD TAB */
        .donate-donate .third-tab-pane .paragraph{
            padding-bottom: 30px;
        }
        .donate-donate .third-tab-pane .btn-submit{
            background-color: var(--dark-blue-color);
            transition: all .5s;
        }
        .donate-donate .third-tab-pane .btn-submit:hover {
            background-color: #142c52;
            transition: all .5s;
        }
    /* THIRD TAB */
/* DONATE */

/* TERMS AND CONDITIONS */
    .terms-and-conditions .description ul li{
        font-weight: 500;
    }
    .terms-and-conditions .description a{
        text-decoration: none;
        color: var(--ash-color-dark);
        font-size: 17px;
        font-weight: 500;
        font-family: 'Inter Tight', sans-serif;
    }
/* TERMS AND CONDITIONS */

/* PRIVACY POLICY */
    .privacy-policy-content .description{
        padding-top: 35px;
    }
    .privacy-policy-content .description ol ul{
        list-style: none;
        padding-left: 30px;
    }
    .privacy-policy-content .description ul li,
    .privacy-policy-content .description ol li{
        font-size: 17px;
        font-weight: 500;
        font-family: 'Inter Tight', sans-serif;
    }
    .privacy-policy-content .description ol li{
        padding-bottom: 30px;
    }
    .privacy-policy-content .description ul li{
        padding-bottom: 0;
    }
/* PRIVACY POLICY */

/* FOOTER */
    #footer{
        background-color: var(--dark-blue-color);
    }
    #footer .navbar-nav .nav-link {
        padding: 0;
        padding-bottom: 25px;
        font-size: 16px;
        line-height: 20px;
        color: var(--white-color);
        font-family: 'Inter Tight', sans-serif;
        font-weight: 300;
        transition: all .5s;
    }
    #footer .navbar-nav .nav-link:hover{
        text-decoration: underline;
        transition: all .5s;
    }
    #footer .navbar-nav .active .nav-link {
        color: var(--yellow-color);
    }
    #footer .navbar-nav .menu-item:last-child .nav-link{
        padding-bottom: 0;
    }
   #footer .contact-info li:last-child div{
        margin-bottom: 0;
   }
    #footer .boxes-wrapper{
        margin: 0 -10px;
    }
    #footer .box {
        padding: 0 10px;
    }
    #footer .box ul{
        list-style: none;
    }
    #footer .contact-info li a,
    #footer .contact-info li div{
        color: var(--white-color);
        gap: 12px;
        text-decoration: none;
        font-size: 16px;
        line-height: 20px;
        font-family: 'Inter Tight', sans-serif;
        letter-spacing: 0.48px;
        margin-bottom: 25px;
        font-weight: 300;
        transition: all .5s;
    }
    #footer .contact-info li a:hover{
        text-decoration: underline;
        transition: all .5s;
    }
    #footer .box.donate p{
        font-size: 16px;
        line-height: 30px;
        font-family: 'Inter Tight', sans-serif;
        padding-bottom: 20px;
        font-weight: 300;
    }
    #footer .copyright{
        font-size: 14px;
        letter-spacing: 0.42px;
        font-weight: 300;
    }
    #footer .copyright a{
        color: var(--white-color);
        text-decoration: none;
    }
    #footer .social-icons{
        list-style: none;
        gap: 25px;
    }
    #footer .social-icons a:hover{
        filter: brightness(0) saturate(100%) invert(96%) sepia(51%) saturate(6291%) hue-rotate(313deg) brightness(85%) contrast(98%);
    }
    #footer hr{
        border: 0;
        height: 1px;
        background-color: var(--white-color);
        opacity: 0.15;
        margin: 0;
    }
    #footer{
        position: relative;
    }
    #footer .btn-top{
        position: absolute;
        right: 25px;
        bottom: 83px;
        cursor: pointer;
    }
    .whatapp-icon{
        position: fixed;
        bottom: 205px;
        right: 25px;
        transition: all .5s;
        z-index: 1000;
    }
    .viber-icon{
        bottom: 140px;
    }
    .line-icon{
        bottom: 75px;
    }
    .whatsapp-scrolled{
        bottom: 313px;
        transition: all .5s;
    }
    .viber-scrolled{
        bottom: 248px;
        transition: all .5s;
    }
    .line-scrolled{
        bottom: 180px;
        transition: all .5s;
    }
/* FOOTER */

/* ANIMATIONS SCROLL */
    .js-scroll {
        opacity: 0;
        transition: opacity 500ms;
    }
    .js-scroll.scrolled {
        opacity: 1;
    }
    .scrolled.fade-in-bottom {
        animation: fade-in-bottom 0.5s ease-in-out both;
        animation-delay: calc(0.1s * var(--i));
    }

    @keyframes fade-in-bottom {
        0% {
            -webkit-transform: translateY(50px);
            transform: translateY(50px);
            opacity: 0;
        }
        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
        }
    }
/* ANIMATIONS SCROLL */

/* RESPONSIVE */
    @media only screen and (max-width: 1600px) {
        /* #gtranslate_wrapper .switcher {
            width: 113px;
        } */
        /* COMMON */
            /* WRAPPERS */
                .max-wrap{
                    width: 90%;
                    margin: auto;
                }
                .middle-wrap{
                    width: 75%;
                    margin: auto;
                }
                .min-wrap{
                    width: 55%;
                    margin: auto;
                }
                .extra-small-wrap{
                    width: 30%;
                    margin: auto;
                }
            /* WRAPPERS */
        /* COMMON */
        /* NAV */
            .navbar-expand-lg .navbar-nav .menu-item {
                padding: 0 30px;
            }
            .navbar-brand img{
                width: 250px;
            }
            /* .navbar-expand-lg .navbar-nav {
                gap: 40px;
            } */
            .navbar-expand-lg .navbar-nav .dropdown-menu {
                top: 57px;
                left: -51px;
            }
            .header-scrolled .navbar-expand-lg .navbar-nav .dropdown-menu {
                top: 53px;
            }
            .navbar-expand-lg .navbar-nav .nav-link{
                font-size: 16px;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item{
                font-size: 16px;
            }
        /* NAV */
        /* HOME */
            .home-banner {
                height: 85vh;
            }
            .home-banner-slider .image {
                height: 530px;
            }
            .home-banner-slider .content {
                padding-right: 80px;
            }
            .home-banner h5 {
                font-size: 55px;
                line-height: 75px;
            }
            .home-banner .creative-heading{
                font-size: 15px;
            }
            .home-banner-slider {
                margin-left: 80px;
            }
            .home-banner-slider .carousel-indicators {
                left: -83px;
            }
            .home-about .middle-wrap {
                width: 80%;
            }
            .home-partners .home-partners-slider .slick-arrow {
                right: -95px;
            }
            .home-counting-sect .middle-wrap {
                width: 85%;
            }
            .home-partners .box .rectangle {
                height: 450px;
            }
        /* HOME */
        /* PROJECTS LANDING */
            .projects-gallery .box .rectangle {
                height: 345px;
            }
            .project-projects .box .image {
                height: 260px;
            }
        /* PROJECTS LANDING */
        /* PROJECTS INNER */
            .project-inner-content .single-project-gallery-slider .image {
                height: 600px;
            }
        /* PROJECTS INNER */
        /* INTERNATIONAL RELATIVES LANDING */
            .international-relatives-partners .box .rectangle {
                height: 340px;
            }
        /* INTERNATIONAL RELATIVES LANDING */
        /* CONTACT US */
            .contact-contact-info .left{
                padding: 30px 30px 30px 70px;
            }
        /* CONTACT US */
    }   
    @media only screen and (max-width: 1400px) {
        /* COMMON */
            /* WRAPPERS */
                .middle-wrap{
                    width: 80%;
                    margin: auto;
                }
                .min-wrap{
                    width: 60%;
                    margin: auto;
                }
                .extra-small-wrap{
                    width: 35%;
                    margin: auto;
                }
            /* WRAPPERS */
            .paragraph, .paragraph p {
                font-size: 16px;
                line-height: 29px;
            }
            .box-btn {
                padding: 12px 40px;
                font-size: 15px;
            }
            .section-heading {
                font-size: 35px;
            }
            .creative-heading {
                font-size: 15px;
            }
            .special-para {
                line-height: 28px;
                font-size: 16px;
            }
            .box--large-heading {
                font-size: 16px;
                line-height: 28px;
            }
            .box--small-heading {
                font-size: 15px;
                line-height: 28px;
            }
            .btn--small {
                font-size: 15px;;
            }
            .common-banner .content-box h2 {
                font-size: 40px;
                line-height: 83px;
            }
            .common-banner {
                height: 40vh;
            }
            .breadcrumb {
                font-size: 13px;
            }
            .box-btn{
                height: 55px;
            }
        /* COMMON */
        /* NAV */
            .navbar-expand-lg .navbar-nav .menu-item{
                padding: 0 25px;
            }
            .header .main-wrapper {
                width: 90%;
            }
            .navbar-brand img {
                width: 230px;
            }
            .navbar-expand-lg .navbar-nav .nav-link {
                font-size: 15px;
            }
            .header .yellow-bar .inner {
                width: 90%;
            }
            .header .yellow-bar .social-icons {
                gap: 20px;
            }
            .header .yellow-bar .social-icons img{
                transform: scale(.9);
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu {
                top: 54px;
                left: -54px;
            }
            .header-scrolled .navbar-expand-lg .navbar-nav .dropdown-menu {
                top: 47px;
            }
        /* NAV */
        /* HEADER */
            .header-scrolled .navbar-brand img {
                width: 200px;
            }
            .header-white-bg {
                height: 65px;
            }
        /* HEADER */
        /* HOME */
            .home-banner-slider .image {
                height: 470px;
            }
            .home-partners .home-partners-slider .slick-arrow {
                right: -68px;
            }
            .home-banner-slider {
                margin-left: 47px;
            }
            .home-banner .creative-heading {
                font-size: 14px;
            }
            .home-banner h5 {
                font-size: 50px;
                line-height: 68px;
            }
            .home-about .middle-wrap {
                width: 85%;
            }
            .home-about .yellow-box .rectangle {
                padding: 35px 20px;
            }
            .home-banner-slider .carousel-indicators {
                left: -60px;
            }
            .slick-between-btns .slick-prev {
                left: -40px;
            }
            .slick-between-btns .slick-next {
                right: -40px;
            }
            .home-projects .image-box {
                height: 210px;
            }
            .home-donate h5 {
                font-size: 28px;
                line-height: 36px;
            }
            .home-donate h6 {
                font-size: 18px;
            }
            .home-donate h4 {
                font-size: 35px;
            }
            .home-counting-sect .box h5 {
                font-size: 17px;
            }
            .home-counting-sect .box h4, 
            .home-counting-sect .box h4 span {
                font-size: 30px;
            }
            .home-counting-sect .box h6 {
                font-size: 15px;
            }
            .home-partners .box .rectangle {
                height: 410px;
            }
            .home-partners .box .content-box {
                padding: 30px 25px;
            }
            .home-counting-sect .middle-wrap {
                width: 90%;
            }
            .home-video {
                height: 500px;
            }
            .home-video .content-wrap {
                height: 500px;
            }
        /* HOME */
        /* ABOUT */
            .chairman-message .content-box {
                padding: 45px 25px 10px 25px;
            }
            .chairman-message .content-box p {
                font-size: 14px;
            }
            .about-about .image-box {
                padding-left: 30px;
            }
            .about-about .image-box .blue-box {
                padding: 20px;
            }
            .about-about .image-box .blue-box h6 {
                font-size: 16px;
                line-height: 28px;
            }
            .about-core-values .accordion-button {
                font-size: 16px;
            }
        /* ABOUT */
        /* PROJECTS LANDING */
            .project-projects .box .image {
                height: 235px;
            }
            .projects-gallery .box .rectangle {
                height: 290px;
            }
            .project-projects .nav-pills .nav-link{
                font-size: 14px;
            }
        /* PROJECTS LANDING */
        /* PROJECTS INNER */
            .project-inner-content .single-project-gallery-slider .slick-prev {
                left: -7%;
                margin-right: 14%;
            }
            .project-inner-content .single-project-gallery-slider .slick-next {
                right: -7%;
                margin-left: 13%;
            }
        /* PROJECTS INNER */
        /* INTERNATIONAL RELATIVES INNER */
            .inner-common-banner .main-wrapper {
                width: 70%;
            }
        /* INTERNATIONAL RELATIVES INNER */
        /* CONTACT */
            .contact-contact-info .middle-wrap{
                width: 85%;
            }
            .contact-contact-info .left .info-box a, .contact-contact-info .left .info-box p {
                font-size: 16px;
                line-height: 28px;
            }
            .contact-contact-info ul .hidden,
            .contact-contact-info ul .normal{
                transform: scale(.8);
            }
            .contact-contact-info ul{
                gap: 25px;
            }
            .contact-contact-form .form-label {
                font-size: 15px;
            }
            .contact-contact-form input, 
            .contact-contact-form select, 
            .contact-contact-form textarea {
                font-size: 16px;
            }
            .contact-contact-form .btn-submit {
                transform: scale(.8);
            }
            .contact-faq .box h6 {
                font-size: 16px;
                padding-bottom: 20px;
            }
            .paragraph, .paragraph p {
                font-size: 15px;
                line-height: 27px;
            }
        /* CONTACT */
        /* DONATE */
            .international-relatives-partners .nav-pills button {
                font-size: 14px;
            }
            .donate-donate .tab-pane .amounts-wrapper .button button {
                font-size: 16px;
            }
            .donate-donate .tab-pane .agreement label, .donate-donate .tab-pane .agreement a {
                font-size: 15px;
            }
        /* DONATE */
        /* FOOTER */
            #footer .navbar-nav .nav-link {
                font-size: 15px;
            }
            #footer .contact-info li a, #footer .contact-info li div {
                font-size: 15px;
            }
            #footer .box.donate p {
                font-size: 15px;
            }
            #footer .contact-info li img{
                transform: scale(.8);
                margin-top: 2px;
            }
            #footer .social-icons img{
                transform: scale(.9);
                gap: 20px;
            }
            #footer .btn-top img,
            .whatapp-icon img{
                transform: scale(.8);
            }
            
            .whatapp-icon{
                position: fixed;
                bottom: 184px;
                right: 25px;
                transition: all .5s;
                z-index: 1000;
            }
            .viber-icon{
                bottom: 130px;
            }
            .line-icon{
                bottom: 75px;
            }
            .whatsapp-scrolled{
                bottom: 268px;
                transition: all .5s;
            }
            .viber-scrolled{
                bottom: 214px;
                transition: all .5s;
            }
            .line-scrolled{
                bottom: 160px;
                transition: all .5s;
            }
        /* FOOTER */
    }
    @media only screen and (max-width: 1200px) {
        /* COMMON */
            .common-banner {
                height: 35vh;
            }
        /* COMMON */
        /* NAV */
            .navbar-expand-lg .navbar-nav .menu-item {
                padding: 0 12px;
            }
            .navbar-brand img {
                width: 200px;
            }
            .header-scrolled .navbar-brand img {
                width: 200px;
            }
            /* .navbar-expand-lg .navbar-nav {
                gap: 30px;
            } */
            .navbar-expand-lg .navbar-nav .nav-link {
                font-size: 14px;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu {
                top: 48px;
            }
            .header-scrolled .navbar-expand-lg .navbar-nav .dropdown-menu {
                top: 45px;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
                font-size: 14px;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu {
                left: -50px;
            }
        /* NAV */
        /* HOME */
            .home-projects .home-projects-slider {
                margin: 0 -20px;
            }
            .home-banner-slider .image {
                height: 400px;
            }
            .home-banner h5 {
                font-size: 40px;
                line-height: 55px;
            }
            .home-about .yellow-box .special {
                padding-top: 8px;
                padding-bottom: 10px;
                line-height: 25px;
                font-size: 14px;
            }
            .home-about .yellow-box .paragraph{
                font-size: 13px;
                line-height: 22px;
            }
            .home-about .yellow-box  .box-btn {
                margin-top: 10px;
            }
            .home-about .left {
                padding-right: 40px;
            }
            .home-projects .image-box {
                height: 230px;
            }
            .slick-between-btns .slick-prev {
                left: -28px;
            }
            .slick-between-btns .slick-next {
                right: -28px;
            }
            .home-partners .box .rectangle {
                height: 350px;
            }
            .home-partners .home-partners-slider .slick-arrow {
                right: -55px;
            }
            .home-counting-sect .box img{
                height: 40px !important;
            }
            .home-counting-sect .box .right {
                padding-left: 15px;
            }
            .home-counting-sect .box h5 {
                font-size: 15px;
                line-height: 22px;
                padding-bottom: 5px;
            }
            .home-counting-sect .box h4, 
            .home-counting-sect .box h4 span {
                font-size: 25px;
                padding-bottom: 5px;
            }
            .home-counting-sect .box h6 {
                font-size: 14px;
            }
            .home-projects .box {
                padding: 35px 20px;
            }
        /* HOME */
        /* ABOUT US */
            .about-about .image-box .blue-box h6 {
                font-size: 14px;
                line-height: 25px;
            }
            .vision-mission .box-left {
                padding: 30px 40px 30px 0;
            }
            .vision-mission .box-right {
                padding: 30px 0 30px 40px;
            }
        /* ABOUT US */
        /* PROJECTS LANDING */
            .project-projects .box {
                padding: 25px 20px;
            }
            .projects-gallery .box .rectangle {
                height: 222px;
            }
        /* PROJECTS LANDING */
        /* CONTACT US */
            .contact-contact-info .left{
                width: 35%;
            }
            .contact-contact-info .right{
                width: 65%;
            }
        /* CONTACT US */
        /* DONATE */
            .donate-donate .min-wrap {
                width: 70%;
            }
        /* DONATE */

        /* FOOTER */
            #footer .middle-wrap {
                width: 85%;
            }
        /* FOOTER */
    }
    @media only screen and (max-width: 1024px) {
        /* NAV */

        /* NAV */
    }
    @media only screen and (max-width: 991px) {
		.gt_switcher_wrapper {
			top: 86px !important;
		}

        .lang-on-mobile{
            margin-bottom: 40px;
            text-align: center !important;
        }
        .trp-language-switcher > div > a:hover{
            background-color: transparent !important;
        }
        .trp-language-switcher > div{
            background-color: transparent !important;
        }
        .trp-language-switcher > div > a.trp-ls-shortcode-disabled-language{
            padding-bottom: 5px !important;
        }
        #gtranslate_wrapper.g-translate-scrolled {
            top: 87px !important;
            /* transition: all .5s; */
        }
        #gtranslate_wrapper {
            top: 87px !important;
        }
        .international-relatives-partners .btn-view-more{
            margin-top: 30px;
        }
        .whatapp-icon {
            bottom: unset;
            top: 180px;
        }
        .viber-icon {
            bottom: unset;
            top: 230px;
        }
        .line-icon {
            bottom: unset;
            top: 280px;
        }
        .line-scrolled{
            bottom: 190px;
        }
        .viber-scrolled {
            bottom: 244px;
        }
        .whatsapp-scrolled {
            bottom: 298px;
        }
        .single-partner-attachments .box {
            width: 50%;
            padding: 20px 20px;
            text-decoration: none;
        }
        .single-partner-attachments .attachments-wrapper{
            margin: 0;
            padding-top: 20px;
        }
        .inner-common-banner .project-info-wrapper .box{
            width: 50%;
            display: flex;
            justify-content: center;
            text-align: center;
            padding-bottom: 30px;
        }
        .inner-common-banner-with-gallery {
            padding-bottom: 115px;
        }
        .inner-common-banner .breadcrumb{
            display: block !important;
            text-align: center;
        }
        /* COMMON */
            /* WRAPPERS */
                .sect-pad-top--40{
                    padding-top: 40px;
                }
                .sect-pad-bottom--40{
                    padding-bottom: 40px;
                }
                .sect-pad-top--70{
                    padding-top: 40px;
                }
                .sect-pad-bottom--70{
                    padding-bottom: 40px;
                }
        
                .sect-pad-top--100{
                    padding-top: 40px;
                }
                .sect-pad-bottom--100{
                    padding-bottom: 40px;
                }
        
                .sect-pad-top--160{
                    padding-top: 40px;
                }
                .sect-pad-bottom--160{
                    padding-bottom: 40px;
                }
            /* WRAPPERS */
            /* WRAPPERS */
                .max-wrap{
                    width: 90%;
                    margin: auto;
                }
                .middle-wrap{
                    width: 90%;
                    margin: auto;
                }
                .min-wrap{
                    width: 90%;
                    margin: auto;
                }
                .extra-small-wrap{
                    width: 50%;
                    margin: auto;
                }
            /* WRAPPERS */
            .section-heading {
                font-size: 30px;
                padding-bottom: 25px;
            }
            .common-banner {
                height: 250px;
            }
            .common-banner .content-box h2 {
                font-size: 30px;
                line-height: 45px;
            }
            .common-banner .content-box{
                gap: 0;
            }
            .inner-common-banner .main-wrapper {
                width: 90%;
            }
        /* COMMON */
        /* NAV */
            /* HAMBURGER MENU */
                .navbar-toggler{
                    display: flex !important;
                    padding-right: 0;
                }
                .three{
                    -webkit-box-sizing: border-box;
                    -moz-box-sizing: border-box;
                    box-sizing: border-box;
                    color: #ecf0f1;
                    text-align: center;
                }
                .hamburger .line{
                    width: 40px;
                    height: 4px;
                    background-color: var(--dark-blue-color);
                    display: block;
                    margin: 6px auto;
                    -webkit-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                    border-radius: 15px;
                }

                .hamburger:hover{
                    cursor: pointer;
                }
                #hamburger-1.is-active{
                    -webkit-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                    -webkit-transition-delay: 0.6s;
                    -o-transition-delay: 0.6s;
                    transition-delay: 0.6s;
                    -webkit-transform: rotate(45deg);
                    -ms-transform: rotate(45deg);
                    -o-transform: rotate(45deg);
                    transform: rotate(45deg);
                }

                #hamburger-1.is-active .line:nth-child(2){
                    width: 0px;
                }

                #hamburger-1.is-active .line:nth-child(1),
                #hamburger-1.is-active .line:nth-child(3){
                    -webkit-transition-delay: 0.3s;
                    -o-transition-delay: 0.3s;
                    transition-delay: 0.3s;
                }

                #hamburger-1.is-active .line:nth-child(1){
                    -webkit-transform: translateY(12px);
                    -ms-transform: translateY(12px);
                    -o-transform: translateY(12px);
                    transform: translateY(12px);
                }

                #hamburger-1.is-active .line:nth-child(3){
                    -webkit-transform: translateY(-9px) rotate(90deg);
                    -ms-transform: translateY(-9px) rotate(90deg);
                    -o-transform: translateY(-9px) rotate(90deg);
                    transform: translateY(-9px) rotate(90deg);
                }
                .navbar-toggler:focus{
                    outline: 0 !important;
                    box-shadow: none !important;
                }
            /* HAMBURGER MENU */
            .menu-main-menu-container{
                flex-grow: 1;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }
            .header-scrolled .navbar-brand img {
                width: 150px;
            }
            .header-white-bg {
                height: 86px;
            }
            .navbar-brand img {
                width: 150px;
            }
            .header .yellow-bar {
                display: none;
            }
            .mobile-offcanvas{
                display: block !important;
            }
            .mobile-offcanvas {
                visibility: hidden;
                transform: translateX(-100%);
                border-radius: 0;
                display: block;
                position: fixed;
                top: 86px;
                left: 0;
                bottom: 0;
                z-index: 1200;
                width: 100%;
                overflow-y: scroll;
                overflow-x: hidden;
                transition: visibility .3s ease-in-out, transform .3s ease-in-out;
                background-color: var(--dark-blue-color) !important;
                justify-content: center;
            }
            .mobile-offcanvas.show {
                visibility: visible;
                transform: translateX(0);
            }
            .navbar-expand-lg .navbar-nav{
                align-items: center;
            }
            .navbar-expand-lg .navbar-nav .nav-link{
                color: var(--white-color);
                font-size: 18px;
            }
            .navbar-expand-lg .navbar-nav .nav-link:hover::before{
                display: none;
            }
            .navbar-expand-lg .contact-info{
                padding-top: 40px;
            }
            .navbar-expand-lg .social-icons{
                list-style: none;
                gap: 20px;
                padding-bottom: 30px;
                padding-top: 0;
            }
            .navbar-expand-lg .contact-info a{
                gap: 15px;
                color: var(--white-color);
                font-size: 18px;
                text-decoration: none;
                padding-bottom: 30px;
            }
            .navbar-expand-lg .navbar-nav {
                gap: 40px;
            }
            .navbar-expand-lg .navbar-nav .menu-item{
                display: flex;
                flex-direction: column;
                align-items: center;
                height: max-content;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu{
                margin-top: 5px;
                background-color: transparent;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
                font-size: 18px;
                background-color: transparent;
                position: relative;
                color: var(--white-color);
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu .active .dropdown-item{
                background-color: transparent;
                z-index: 1;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item::after{
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: var(--white-color);
                opacity: .2;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu .active .dropdown-item::after{
                background-color: var(--light-blue-color);
                opacity: .8;
                z-index: -1;
            }
            .navbar-expand-lg .navbar-nav .active .nav-link::before{
                display: flex;
            }
            .header .main-wrapper{
                position: fixed;
                background: #fff;
                width: 100%;
                padding: 0 5%;
            }
            body section:first-of-type{
                margin-top: 87px;
            }
        /* NAV */
        /* HOME */
            .home-banner-slider .image {
                height: 295px;
            }
            .home-projects .box {
                padding: 25px 10px;
            }
            .home-banner{
                height: 450px;
            }
            .home-banner-slider {
                margin-left: 20px;
            }
            .home-banner-slider .content {
                padding-right: 30px;
            }
            .home-banner p {
                padding-bottom: 30px;
            }
            .home-banner h5 {
                font-size: 30px;
                line-height: 42px;
                padding-bottom: 25px;
            }
            .home-banner-slider .carousel-indicators {
                left: -35px;
            }
            .home-about .middle-wrap {
                width: 90%;
            }
            .home-about .left {
                padding-right: 0;
                padding-bottom: 30px;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .home-about .right{
                width: 80%;
                margin: auto;
            }
            .home-about .yellow-box .rectangle {
                padding: 25px 15px;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .home-donate h5 {
                font-size: 25px;
                padding-bottom: 25px;
            }
            .home-donate h4 {
                font-size: 30px;
                padding-bottom: 25px;
            }
            .home-video {
                height: 300px;
            }
            .home-video .content-wrap {
                height: 300px;
            }
            .home-video a img{
                width: 50px;
            }
            .home-counting-sect .boxes-wrapper{
                justify-content: space-between;
            }
            .home-counting-sect .box{
                width: max-content;
            }
            .home-counting-sect .rectangle{
                flex-direction: column;
                align-items: center !important;
                text-align: center;
            }
            .home-counting-sect .box .right {
                padding-left: 0;
                padding-top: 10px;
            }
            .home-projects .home-projects-slider {
                margin: 0 -10px;
                padding-bottom: 50px;
            }
            .slick-between-btns .slick-arrow {
                top: unset !important;
                bottom: 30px;
            }
            .slick-between-btns .slick-prev {
                left: 45%;
            }
            .slick-between-btns .slick-next {
                right: 45%;
            }
            .home-partners .left {
                padding-right: 0;
                padding-bottom: 30px;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .home-partners .box-btn {
                margin-top: 25px;
            }
            .home-partners .home-partners-slider {
                padding-bottom: 60px;
            }
            .home-partners .home-partners-slider .slick-prev {
                top: unset;
                bottom: 0;
                left: 45%;
            }
            .home-partners .home-partners-slider .slick-next {
                top: unset;
                bottom: 0;
                right: 45%;
            }
            .home-projects .image-box {
                height: 200px;
            }
            .home-partners .box .rectangle {
                height: 415px;
            }
           
          
            .projects-gallery .project-gallery-slider {
                margin: 0 -5px;
            }
            .projects-gallery .box {
                padding: 0;
            }
            .projects-gallery .slick-dots {
                margin-top: 25px;
            }
            .project-projects .btn-view-more {
                margin-top: 30px;
                font-size: 15px;
                gap: 0px;
            }
        /* HOME */
        /* ABOUT */
            .about-objectives .box:last-child {
                padding-bottom: 0;
            }
            .about-about .left{
                text-align: center;
                padding-bottom: 30px;
            }
            .about-about .image-box {
                padding-left: 0;
                width: 60%;
                margin: auto;
            }
            .about-about .image-box .blue-box {
                bottom: 30px;
                right: -50px;
                width: 45%;
            }
            .about-core-values .left {
                padding-right: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                padding-bottom: 30px;
                text-align: center;
            }
            .about-core-values .right {
                padding-left: 0;
            }
            .about-objectives .boxes-wrapper {
                column-count: unset; 
                margin: 0;
            }
            .about-objectives .box {
                padding: 0;
                padding-bottom: 30px;
            }
            .chairman-message .left {
                width: 60%;
                padding-top: 0;
                margin: auto;
                margin-bottom: 30px;
            }
            .chairman-message .right {
                width: 100%;
                padding-left: 0;
                text-align: center;
            }
            .vision-mission{
                display: none;
            }
            .vision-mission-on-mobile{
                display: block;
            }
            .vision-mission-on-mobile .box{
                padding: 40px 5%;
            }
            .vision-mission-on-mobile .vision-box{
                background-repeat: no-repeat;
                background-size: cover;
                position: relative;
            }
            .vision-mission-on-mobile .vision-box::before{
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: #3E3E3E;
                opacity: 0.85;
            }
            .vision-mission-on-mobile .rectangle{
                text-align: center;
            }
            .vision-mission-on-mobile .rectangle .section-heading{
                padding-bottom: 20px;
                padding-top: 10px;
            }
            
        /* ABOUT */
        /* PROJECTS LANDING */
            .project-projects .box h5 {
                padding-bottom: 5px;
            }
            .project-projects .nav-pills .nav-item {
                width: 50%;
            }
            .project-projects .boxes-wrapper {
                margin: 0;
            }
            .project-projects .box {
                width: 50%;
                padding: 25px 10px;
            }
            .projects-gallery .box {
                padding: 0 5px;
            }
            .projects-gallery .project-gallery-slider {
                margin: 0 -5px;
            }
            .projects-gallery .box .rectangle {
                height: 250px;
            }
        /* PROJECTS LANDING */
        /* PROJECT INNER */
            .project-inner-content .single-project-gallery-slider .box {
                padding: 0 5px;
            }
            .project-inner-content .single-project-gallery-slider {
                padding-bottom: 50px;
                margin-top: -80px;
            }
            .project-inner-content .single-project-gallery-slider .slick-arrow {
                top: unset;
                bottom: 0;
                margin: 0;
            }
            .project-inner-content .single-project-gallery-slider .slick-prev {
                left: 45%;
            }
            .project-inner-content .single-project-gallery-slider .slick-next {
                right: 45%;
            }
            .project-inner-content .single-project-gallery-slider .image {
                height: 320px;
            }
            .project-inner-content .description p{
                text-align: center;
            }
            .project-projects .nav-pills {
                margin-top: 30px;
                padding-bottom: 10px;
            }
        /* PROJECT INNER */
        /* PARTNERS LANDING */
            .international-relatives-partners .nav-pills {
                padding: 30px 0 10px 0;
            }
            .international-relatives-partners .boxes-wrapper {
                margin: 0 -10px;
            }
            .international-relatives-partners .box {
                width: 50%;
                padding: 10px;
            }
            .home-partners .box .rectangle {
                height: 345px;
            }
            .home-partners .box h5 {
                padding-bottom: 15px;
            }
        /* PARTNERS LANDING */
        /* NEWS */
            .news-news .boxes-wrapper {
                margin: 0 -10px;
            }
            .news-news .box {
                width: 50%;
            }
        /* NEWS */
        /* CONTACT US */
            .contact-contact-info .left {
                width: 100%;
            }
            .contact-contact-info .right {
                width: 100%;
            }
            .contact-contact-info .map iframe {
                height: 250px;
                margin-left: 0;
                margin-top: -5px;
            }
            .contact-contact-form .w-50, .contact-contact-form .w-100 {
                width: 100% !important;
            }
            .contact-faq .box {
                width: 100%;
                padding: 20px 0;
            }
            .contact-contact-info .right-aligned-map-wrapper {
                padding-top: 25px;
            }
            .contact-contact-info ul {
                padding-top: 30px;
            }
            .contact-contact-info .middle-wrap {
                width: 90%;
            }
        /* CONTACT US */
        /* DONATE */
            .donate-donate .min-wrap {
                width: 90%;
            }
            .donate-donate .tab-pane .amounts-wrapper .button button {
                padding: 15px;
            }
            .donate-donate .tab-pane .btn-submit {
                margin-top: 25px;
            }
            .donate-donate .second-tab-pane .yellow-box {
                width: 100%;
                margin-top: 30px;
                padding: 30px 100px;
            }
            .donate-donate .second-tab-pane .yellow-box .rectangle{
                width: 100%;
            }
            .donate-donate .second-tab-pane .yellow-box table{
                width: 100%;
            }
            .donate-donate .tab-pane .btn-submit {
                margin-top: 20px;
            }
        /* DONATE */

        /* FOOTER */
            #footer .btn-top {
                bottom: 135px;
            }
            #footer .middle-wrap {
                width: 90%;
            }
            #footer .navbar-brand img{
                width: 200px;
            }
            #footer .box:nth-child(1),
            #footer .box:nth-child(2){
                width: 30%;
            }
            #footer .box:nth-child(3){
                width: 40%;
            }
            #footer .box:nth-child(4){
                width: max-content;
            }
            #footer .box:nth-child(4) br{
                display: none;
            }
            #footer .box:nth-child(4) .rectangle{
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            #footer .box{
                width: 33.33%;
                padding: 0;
                padding-top: 20px;
            }
            #footer .middle-wrap .boxes-wrapper{
                justify-content: center !important;
                flex-wrap: wrap;        
                margin-left: 0;
                margin-right: 0;
            }
            #footer .copyright-wrapper{
                flex-direction: column-reverse;
                gap: 20px;
            }
        /* FOOTER */
    }
    @media only screen and (max-width: 600px) {
        .navbar-expand-lg .contact-info {
            padding-top: 30px;
        }
        .single-partner-attachments .box {
            width: 100%;
        }
        .inner-common-banner .project-info-wrapper .box{
            width: 100%;
        }
        /* COMMON */
            .box-btn {
                height: 45px;
                font-size: 14px !important;
            }
            .section-heading {
                font-size: 25px;
                padding-bottom: 15px;
                line-height: 40px;
            }
            .creative-heading {
                font-size: 14px;
            }
            .extra-small-wrap {
                width: 90%;
            }
            .box--large-heading {
                font-size: 15px;
                line-height: 26px;
            }
            .special-para {
                padding-bottom: 15px;
            }
            .common-banner .content-box {
                width: 90%;
                margin: auto;
            }
            .common-banner .content-box h2 {
                font-size: 25px;
                line-height: 40px;
            }
            .common-banner .content-box h2 {
                font-size: 25px;
                line-height: 40px;
                padding-bottom: 10px;
                padding-top: 5px;
            }
            .breadcrumb{
                margin-bottom: 0;
            }
            .btn-view-more {
                gap: 5px;
                font-size: 15px;
                line-height: 25px;
            }
        /* COMMON */
        /* NAV */
            .navbar-expand-lg .navbar-nav {
                gap: 20px;
            }
            .navbar-expand-lg .navbar-nav .nav-link {
                font-size: 15px;
            }
            .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
                font-size: 15px;
            }
            .navbar-expand-lg .contact-info a {
                gap: 10px;
                font-size: 15px;
                padding-bottom: 15px;
            }
            .navbar-expand-lg .social-icons {
                padding-bottom: 15px;
            }
            .navbar-expand-lg .navbar-nav .active .nav-link::before {
                bottom: 6px;
            }
      
        /* NAV */
        /* HOME */
            .home-partners .box {
                padding: 0;
            }
            .home-projects .box {
                padding: 25px 0;
            }
            .home-banner-slider .content {
                padding-right: 0;
                width: 100%;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                padding-bottom: 30px;
            }
            .home-banner h5 {
                font-size: 25px;
                line-height: 35px;
                padding-bottom: 15px;
            }
            .home-banner-slider{
                padding-bottom: 30px;
                margin-left: 0;
            }
            .home-banner-slider .image {
                width: 100%;
            }
            .home-banner {
                /* min-height: 90vh; */
                padding: 40px 0;
                height: max-content;
            }
            .home-banner p{
                padding-bottom: 15px;
            }
            .home-banner-slider .image {
                height: max-content;
            }
            .home-banner-slider .carousel-indicators {
                left: 0;
                top: unset;
                bottom: 0;
                flex-direction: row;
                gap: 8px;
            }
            .home-banner-slider .carousel-indicators button {
                height: 2px;
                width: 40px;
            }
            .home-about .box-btn {
                margin-top: 30px;
            }
            .home-about .right {
                width: 100%;
            }
            .home-about .image-box {
                width: 100%;
                padding: 7px 0;
            }
            .home-about .yellow-box {
                width: 100%;
                padding: 7px 0;
            }
            .home-projects .image-box {
                height: 356px;
            }
            .home-projects .content-box{
                text-align: center;
            }
            .slick-between-btns .slick-prev {
                left: 35%;
                right: unset;
            }
            .slick-between-btns .slick-next {
                right: 35%;
                left: unset;
            }
            .home-projects .btn-wrapper{
                gap: 0;
            }
            .home-projects .btn-wrapper .btn-box {
                padding: 10px 5px;
                width: 50%;
            }
            .home-projects .btn-wrapper .box-btn{
                width: 100%;
                padding: 12px 15px;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .home-donate h5 {
                font-size: 20px;
                padding-bottom: 20px;
                line-height: 30px;
            }
            .home-donate h4 {
                font-size: 25px;
            }
            .home-donate h6 {
                font-size: 16px;
            }
            .home-partners .box .content-box {
                padding: 20px 15px;
                text-align: center;
            }
            .home-partners .home-partners-slider .slick-prev {
                left: 35%;
                right: unset;
            }
            .home-partners .home-partners-slider .slick-next {
                right: 35%;
                left: unset;
            }
            .home-partners .home-partners-slider .slick-arrow {
                width: 8px;
                height: 20px;
                background-size: 100% 100%;
            }
            .slick-between-btns .slick-arrow {
                width: 8px;
                height: 20px;
                background-size: 100% 100%;
            }
            .home-counting-sect .boxes-wrapper {
                padding-top: 10px;
            }
            .home-counting-sect .box {
                width: 50%;
                padding: 20px 5px;
            }
            .home-video h5 {
                font-size: 20px;
                line-height: 30px;
                padding-top: 7px;
                padding-bottom: 20px;
            }
            .home-video {
                height: 250px;
            }
            .home-video .content-wrap {
                height: 250px;
            }
            .home-video a img {
                width: 40px;
            }
            .home-news .heading-box{
                flex-direction: column;
                align-items: center !important;
                gap: 25px;
            }
            .home-projects .image-box {
                height: 300px;
            }
            .home-projects .home-projects-slider {
                margin: 0;
            }
        /* HOME */
        /* ABOUT */
            .about-about .image-box {
                width: 100%;
            }
            .about-about .image-box .blue-box {
                bottom: 30px;
                right: 0;
                width: 50%;
                bottom: 0;
                border-bottom-right-radius: 10px;
                border-bottom-left-radius: 10px;
                position: relative;
                width: 100%;
                align-items: center !important;
                text-align: center;
            }
            .chairman-message .left {
                width: 100%;
            }
           
        /* ABOUT */
        /* PROJECTS LANDING */
            .project-projects .box {
                width: 100%;
                padding: 25px 0;
            }
            .project-projects .box h5 {
                padding-bottom: 5px;
                text-transform: uppercase;
                font-weight: 500;
                transition: all .2s;
            }
            .project-projects .box .content {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        /* PROJECTS LANDING */
        /* PROJECTS INNER */
            .inner-common-banner .breadcrumb {
                font-size: 11px;
            }
            .inner-common-banner h2 {
                padding-top: 30px;
                padding-bottom: 30px;
                font-size: 20px;
                line-height: 30px;
            }
            .project-inner-content .single-project-gallery-slider .box{
                /* padding: 0; */
            }
            .project-inner-content .single-project-gallery-slider .image {
                height: 215px;
            }
            .project-inner-content .single-project-gallery-slider .slick-prev {
                left: 40%;
            }
            .project-inner-content .single-project-gallery-slider .slick-next {
                right: 40%;
            }
            .project-inner-content .description {
                padding-top: 30px;
            }
        /* PROJECTS INNER */
        /* PARTNERS LANDING */
            .international-relatives-partners .boxes-wrapper {
                margin: 0;
            }
            .international-relatives-partners .box {
                width: 100%;
                padding: 10px 0;
            }
            .international-relatives-partners .nav-pills li{
                width: 100%;
            }
            .international-relatives-partners .nav-pills li button{
                width: 100%;
            }
        /* PARTNERS LANDING */
        /* NEWS LANDING */
            .news-news .boxes-wrapper {
                margin: 0;
            }
            .news-news .box {
                width: 100%;
            }
            .paginations-wrapper {
                padding-top: 25px;
            }
        /* NEWS LANDING */
        /* CONTACT */
            .contact-contact-info .map iframe {
                height: 200px;
            }
            .contact-contact-info ul {
                gap: 15px;
            }
            .contact-contact-form input, .contact-contact-form select {
                height: 50px;
            }
            .contact-contact-form .form-label {
                top: 39px;
            }
            .contact-contact-form .btn-submit {
                line-height: 13px;
            }
            .contact-faq .box h6 {
                font-size: 15px;
                padding-bottom: 10px;
            }
            .contact-faq .box .paragraph, 
            .contact-faq .box .paragraph p{
                font-size: 14px;
                line-height: 22px;
            }
        /* CONTACT */
        /* DONATE */
            .donate-donate .tab-pane .amounts-wrapper .button button {
                padding: 8px;
                font-size: 14px;
            }
            .donate-donate .tab-pane h6 {
                font-size: 16px;
                padding-bottom: 15px;
            }
            .donate-donate .tab-pane .amount-txt-wrapper input {
                height: 50px;
                font-size: 15px;
            }
            .donate-donate .tab-pane .amount-txt-wrapper label {
                top: 14px;
                font-size: 15px;
            }
            .donate-donate .tab-pane .logos-wrapper {
                list-style: none;
            }
            .donate-donate .tab-pane .agreement {
                align-items: flex-start !important;
                padding-bottom: 20px;
            }
            .donate-donate .tab-pane .agreement label, 
            .donate-donate .tab-pane .agreement a {
                font-size: 14px;
            }
            .donate-donate .second-tab-pane .main-para {
                line-height: 23px;
            }
            .donate-donate .second-tab-pane .yellow-box h5 {
                font-size: 16px;
                padding-bottom: 10px;
            }
            .donate-donate .second-tab-pane .yellow-box h6 {
                font-size: 16px;
                padding-top: 20px;
                padding-bottom: 15px;
            }
            .donate-donate .second-tab-pane .yellow-box td {
                font-size: 14px;
            }
            .donate-donate .second-tab-pane .yellow-box {
                padding: 15px 30px;
            }
            .donate-donate .third-tab-pane .paragraph {
                padding-bottom: 10px;
            }
            .project-inner-content .description ul li {
                font-size: 15px;
                line-height: 25px;
            }
            .project-inner-content .description ul li::before {
                margin-top: 8px;
            }
        /* DONATE */
        /* FOOTER */
            #footer .box{
                padding: 10px;
            }
            #footer .box:nth-child(1), #footer .box:nth-child(2) {
                width: 50%;
            }
            #footer .box:nth-child(3) {
                width: 100%;
            }
            #footer .box:nth-child(4) {
                width: 100%;
            }
            #footer .btn-top {
                bottom: 118px;
            }
            #footer .middle-wrap:nth-child(2){
                padding-bottom: 0px;
            }
            #footer .middle-wrap.last{
                padding-top: 0px;
            }
            #footer .copyright-wrapper {
                text-align: center;
            }
            #footer .navbar-nav .nav-link {
                padding-bottom: 20px;
                font-size: 14px;
            }
            #footer .contact-info li a, #footer .contact-info li div {
                margin-bottom: 20px;
            }
            #footer .box.donate p {
                padding-top: 10px;
                font-size: 14px;
                padding-bottom: 15px;
            }
            #footer .contact-info li a, 
            #footer .contact-info li div {
                font-size: 14px;
            }
            #footer .copyright {
                font-size: 12px;
            }
        /* FOOTER */
    }
/* RESPONSIVE */