html, body{
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #000;
    -webkit-scroll-behavior:smooth;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

/************************************************
*                 Font Classes                  *
************************************************/a
.fwReg{
    font-weight: 400;
}inputBox

.fwMed{
    font-weight: 500;
}

.fwBold{
    font-weight: 700;
}

.fwExtraBold{
    font-weight: 800;
}

h2{
    font-size: 30px;
}

h5{
    font-size: 14px;
}

/************************************************
*                 Color Classes                 *
************************************************/
.whiteText{
    color: #fff;
}

.orangeBG{
    background: #FFE5DE;
}

.greyBG{
    background: #F1F1F1;
}

/************************************************
*                Common Classes                 *
************************************************/
.flex{
    display: flex;
}

.none{
    display: none;
}

.center{
    text-align: center;
}

.upperCase{
    text-transform: uppercase;
}

.img-fluid{
    max-width: 100%;
    height: auto;
}

/*******************************************************************
*                        header styles                             *
*******************************************************************/
.header{
    position: fixed;
    top: 0;
    transition: .3s;
    height: 100px;
    width: 100%;
    z-index: 999;
    background: #fff;
}

.header.shrink{
    height: 80px;
    transition: .4s;
}

.mainLogo{
    position: relative;
    top: 5px;
    left: 8%;
    width: 110px;
    float: left;
    transition: 0.5s;
}

.mainLogo.shrink{
    width: 80px;
    transition: 0.5s;
    top: 5px;
}

.mainLogo img{
    max-width: 100%;
    height: auto;
}

.headerNav{
    position: relative;
    margin: 2% 0 0;
    float: right;
    right: 7%;
    text-align: left;
    transition: .4s;
    font-weight: bold;
    font-size: 16px;
}

.headerNav.shrink{
    margin: 20px 0 0 0;
    transition: .3s;
}

.headerNav a{
    padding: 5px 15px;
    text-decoration: none;
    transition: .4s;
    position: relative;
    text-transform: uppercase;
    color: #6D6D6D;
}

.headerNav a:hover, .headerNav a.activeNav{
    color: #000;    
}

.activeNav.hoverEffect::after{
    width: 100%;
    background: #000;
}

.hoverEffect {
  display: inline-block;
}

.hoverEffect::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #fff;
    transition: width .3s;
    position: relative;
    bottom: 45px;
    border-radius: 5px;
}

.hoverEffect:hover::after {
    width: 100%;    
}


nav select{
    background: none;
    color: #fff;
    border: none;
    font-size: 14px;
}

nav select option{
    color: #000;
}

.headerNav a.donateLink {
    border: 2px solid #6D6D6D;
    padding: 10px 25px;
    margin: 0 20px;
    transition:.5s;
}

.headerNav a.donateLink:hover{
    background:#000;
    color:#fff;
    
}

/*******************************************************************
*                        mobile styles                        *
*******************************************************************/
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    background-color: #262626;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    display: none;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    opacity: 0.9;
}

.openNav{
    display: none;
    position: fixed;
    right: 4%;
    top: 2%;
    color: #000;
    font-size:30px;
    cursor:pointer;
    z-index: 9999;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 17px;
    color: #fff;
    display: block;
    transition: 0.3s;
    text-align: center;
}

.sidenav a:hover {
    color: #fff;
}

.sidenav a.activeNav{
    color: #32C2F4;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/*********** header responsive start **************/
@media only screen and (min-width: 1900px){
    .headerNav{
        margin: 2.5% 0 0;
    }
}

@media only screen and (min-width: 2560px){
    .headerNav{
        margin: 2% 0 0;
    }
    
    .headerNav a{
        padding: 5px 50px;
    }
}

@media only screen and (max-width: 1370px){
    .headerNav a{
        padding: 5px 10px;
    }    
    
}

@media only screen and (max-width: 1280px){
    .headerNav a{
        padding: 5px;
    }
    
    .mainLogo{
        top: 15px;
        width: 120px;
    }
}

@media only screen and (max-width: 1024px){
   
    .mainLogo{
        width: 10%;
        top: 20px;
        left: 5%;
    }
    
    .headerNav{
        font-size: 14px;
        right: 3%;
        margin: 4% 0 0;
    }
    
    .mainLogo.shrink{
        width: 8%;
        top: 12px;
    }
    
    .headerNav.shrink{
        margin: 25px 0 0;
    }
}

@media only screen and (max-width: 800px){
    
    .headerNav{
        display: none;
    }
    
    .mainLogo{
        width: 120px    ;
        top: 3px;
    }
    
    .nav{
        display: none;
    }
    
    .openNav{
        display: block;
    }
    .sidenav{
        display: flex;
    }
    
    .sidenav a{
        font-size: 22px;
    }
    
    .header{
        height: 100px;
    }    
    
    .mainLogo.shrink{
        width: 80px;
    }
    
    .sidenav .closebtn{
        font-size: 55px;
    }
    
}

@media screen and (max-width: 500px) {
    .sidenav a{
        font-size: 15px;
    }
    
    .mainLogo.shrink{
        width: 90px;
    }
    
    .mainLogo{
        width: 140px;
        padding-left: 1%;
    }
    
    .hoverEffect:hover::after, .activeNav.hoverEffect::after{
        width: 0;
    }
    
    
}

@media screen and (max-width: 450px) {
    .sidenav {
        padding-top: 15px;
    }
    
    .sidenav a {
        font-size: 18px;
    }
    
    .mainLogo{
        width: 120px;
    }
}

/*******************************************************************
*                        footer styles starts                      *
*******************************************************************/

.footer{
    position: relative;
    justify-content: space-between;
    margin: 5% 0;
    width: 94%;
    left: 8%;    
}

.footer a{
    color: #000;
    transition: .3s
}

.footer a:hover{
    color: #6D6D6D;
    font-weight: normal;
    transition: .3s;
}

.footer h5{
    margin-bottom: 15px;
}

.footerBox1, .footerBox2, .footerBox3, .footerBox4{
    position: relative;
    width: 21%;
}

.footerLogo{
    width: 130px;
    margin-bottom: 10%;
}

.footermenu{
    flex-direction: column;
}

.footermenu a{
    margin-bottom: 10px;
}

.contactBox{
    position: relative;
}

.contactBox a:nth-child(3){
    position: relative;
    top: 5px;
}

.locateBox, .socialBox{
    margin: 5% 0 0;
}

.socialBox .flex{
    position: relative;
    justify-content: space-between;
    width: 50%;
}

.socialBox .flex img{
    width: 75%;
}

.footer2Form input{
    padding: 10px 20px;
    border: 1px solid #000;
    width: 100%;
}

.footer2Form input.submit{
    padding: 10px 14px;
    background: #000;
    color: #fff;
    margin-top: 10px;
    transition: .3s;   
    cursor: pointer;
}

.footer2Form input.submit:hover{
    background: #fff;
    color: #000;
    transition: .3s;
}

footer.flex{
    position: relative;
    justify-content: space-between;
    padding: 2% 8% 20px 8%;
    font-size: 13px;
}

footer .flex{
    position: relative;
    width: 35%;
    left: 7px;
    justify-content: space-around;
}

footer a{
    color: #525056;
    transition: .5s;
}

footer a:hover{    
    color: #525056;
    transition: .5s;
}



@media only screen and (min-width: 1900px){
    
    .footerSocailBox{
        width: 23%;
    }
    
}

@media only screen and (min-width: 2160px){
    
    .footerSocailBox{
        width: 18%;
    }
    
}

@media only screen and (min-width: 2560px){
    
    .footerSocailBox {
        width: 15%;
    }
    
}


@media (min-width: 1025px) and (max-width: 1280px) {
 
    .footerSocailBox{
        width: 55%;
    }
  
}

@media (min-width: 768px) and (max-width: 1024px) {
      
    .footer {
        width: 95%;
        left: 5%;
        flex-wrap: wrap;
    }
    
    .footerBox1, .footerBox2, .footerBox3, .footerBox4{
        width: 48%;
    }
    
    .socialBox .flex{
        width: 35%;
    }
    
    .socialBox .flex img{
        width: 60%; 
    }
    
    .footerBox4, .footerBox3{
        margin: 5% 0 0;
    }
    
    footer.flex{
        padding: 2%;
        text-align: center;
        flex-direction: column;
    }
    
    footer .flex{
        width: 100%;
        left: 0;
        justify-content: center;
        
    }    
    
    .activeNav.hoverEffect::after{
        width: 0;
    }
    
  
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
    .footer{
        width: 95%;
        left: 5%;
        flex-wrap: wrap;
    }
    
    .footerBox1, .footerBox2, .footerBox3, .footerBox4{
        width: 50%;
    }
    
    .socialBox .flex{
        width: 35%;
    }
    
    .socialBox .flex img{
        width: 60%; 
    }
    
    .footerBox4, .footerBox3{
        margin: 5% 0 0;
    }
    
    footer.flex{
        padding: 2% 4% 20px 4%;
    }
    
    footer .flex{
        width: 45%;
        justify-content: space-around;
        left: 28%;
    }
  
}

@media (min-width: 481px) and (max-width: 767px) {
    
    .footer {
        width: 100%;
        left: 0;
        padding: 0 2%;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .footerLogo{
        width: 100%;
        text-align: center;
        padding: 0 20%;
    }
    
    .footerBox1, .footerBox2, .footerBox3, .footerBox4{
        width: 100%;
    }
    
    .socialBox .flex{
        width: 35%;
        left: 32%;
    }
    
    .socialBox .flex img{
        width: 60%; 
    }
    
    .footerBox4, .footerBox3{
        margin: 5% 0 0;
    }
    
    footer.flex{
        padding: 2%;
        text-align: center;
        flex-direction: column;
    }
    
    footer .flex{
        width: 100%;
        left: 0;
        justify-content: center;   
    } 
    
    footer .flex a{
        margin: 0 10px;
    }
      
}

@media (min-width: 320px) and (max-width: 480px) {
  
   .footer {
        width: 100%;
        left: 0;
        padding: 0 2%;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .footerLogo{
        width: 100%;
        text-align: center;
        padding: 0 30%;
    }
    
    .footerBox1, .footerBox2, .footerBox3, .footerBox4{
        width: 100%;
    }
    
    .socialBox .flex{
        width: 35%;
        left: 32%;
    }
    
    .socialBox .flex img{
        width: 60%; 
    }
    
    .footerBox4, .footerBox3{
        margin: 5% 0 0;
    }
    
    footer.flex{
        padding: 2%;
        text-align: center;
        flex-direction: column;
        font-size: 14px;
    }
    
    footer .flex{
        width: 100%;
        left: 0;
        justify-content: center;  
        flex-direction: column;
    } 
    
    footer .flex a{
        margin: 0;
    } 
    
    footer .flex span{
        display: none;
    }
  
}


/*******************************************************************
*                        home page style start                     *
*******************************************************************/

.topBanner{
    position: relative;
    height: 620px;
    margin: 0 0 0;
}

.blur{
  -webkit-filter: blur(8px);
  -moz-filter: blur(8px);
  -o-filter: blur(8px);
  -ms-filter: blur(8px);
  filter: blur(8px);
}

.homeBanner .swiper-pagination-bullet{
    background: #fff;
}


.homeBannerTitle{
    position: absolute;
    height: 65%;
    width: 55%;
    z-index: 1;
    left: 8%;
    right: 0;
    font-style: normal;
    text-align: left;
    bottom: 6%;
}

.homeBannerTitle::before{
    content: '';
    position: relative;
    width: 10%;
    border-top: 5px solid #fff;
    left: 3px;
    display: block;
    margin-bottom: 3%;
}

.homeBannerTitle h2{
    font-size: 2.5rem;    
    line-height: 1.5;
    font-weight: 600;
}

.homeLink{
    position: relative;
    top: 20px;
    background: #fff;
    padding: 15px 40px;
    color: #000;
    font-size: 16px;
    font-weight: normal;
    transition:.5s;
}

.homeLink:hover{
    text-decoration: none;
    color: #fff;    
    background:#000;
}






.homeAboutSection{
    position: relative;
    justify-content: space-between;
    width: 83%;
    left: 8%;
    margin: 10% 0 0;
}

.homeAboutContent{
    position: relative;
    width: 50%;
}

.bottomLine{
    position: relative;
    width: 80px;
    border-top: 6px solid #000;
    margin: 2% 0;
}

.bottomLine.white{
    border-top: 6px solid #fff;
    width: 100px;
}

.homeAboutOur{
    position: relative;
}

.homeAboutOurLogo{
    position: absolute;
    width: 600px;
    right: 20px;
    bottom: -65px;
    z-index: -1;
}

.homeAboutOur div a{
    color: #000;
    z-index: 9;
}

.homeAboutOur div a:hover{
    color: #000;
    text-decoration: none;
}

.homeAboutOur div a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-bottom: 1px solid #000;
}

.hoverInnerEffect::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #000;
    transition: width .3s;
    position: relative;
    top: 10px;
}

.hoverInnerEffect:hover::after {
    width: 100%;    
}

.homeImpactSection{
    position: relative;
    background: url(../img/home/home-OurImapacts-img.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    height: 700px;
    justify-content: space-between;
    padding: 0 8%;
    margin: 5% 0 0;
}

.homeImapctContent{
    position: relative;
    width: 40%; 
    margin-top: 18%;
}

.homeImapctNumber{
    position: relative;
    justify-content: space-between;
    width: 43%;
}

.homeImapctCount{
    position: relative;
    margin-top: 14%;
    right: 10%;
}

.homeImapctCount h5 , .single h5{
    padding: 0 20%;
}

.homeImapctCount h2{
    padding: 30% 0 0;
    font-size: 3rem;
}

.homeImapctBox{
    position: relative;
    width: 250px;
    height: 250px;
    background-color: #38322f;
    text-align: center;
    margin: 3% 0;
}

.single{
    margin-top: 40%;
    position: relative;
    right: 5px;
}

.single h2{
    padding: 25% 0 0;
    font-size: 3rem;
}



.homeOurWorks{
    position: relative;
    justify-content: space-between;
    width: 83%;
    left: 8%; 
    margin: 5% 0 0;
}

.homeOurWorksContent{
    position: relative;
    width: 50%;
}

.homeOurWorksLink a{
    color: #000;
}

.homeOurWorksLink a:hover{
    text-decoration: none;
    color: #000;
}

.homeOurWorksLink a::after{
    content: '';
    position: absolute;
    width: 12%;
    height: 2px;
    border-bottom: 1px solid #000;
}

.homeOurWorksContent .bottomLine{
    width: 95px;
}

.homeOurWorksContainer{
    position: relative;
    justify-content: space-around;
    width: 86%;
    left: 6.5%;
    margin: 3% 0 0;
}

.homeOurWorksBox{
    position: relative;
    flex-direction: column;
    width: 30%;
}

.homeOurWorksBoxText{
    padding: 10px 10%;
}

.homeOurWorksBoxText h5{
    margin-bottom: 6%;
    margin-top: 8%;
}

.homeOurWorksBoxText a h5{
    margin: 11% 0 5% 0;
    color: #000;
    border-bottom: 3px solid;
}

.homeOurWorksBoxText a:hover{
    text-decoration: none;
}

/*.homeOurWorksBoxText a::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 25%;*/
/*    height: 3px;*/
/*    border-bottom: 1px solid #000;*/
/*    bottom: 18px;*/
/*    left: 10%;*/
/*}*/

.homeOurWorksBoxText .hoverInnerEffect:hover::after {
    width: 35%;    
}

.homeWhatSection{
    position: relative;
    justify-content: space-around;
    background: #F6F0E5;
    padding: 5% 6%;
    margin: 5% 0 0
}

.homeWhatContent{
    position: relative;
    width: 40%;
}

.homeWhatContent h2{
    margin-bottom: 5%;
}

.homeWhatContent .bottomLine{
    width: 100px;
}

.homeWhatContent a{
    position: relative;
    top: 30px;
    border: 1px solid #000;
    text-align: center;
    padding: 20px 60px;
    color: #000;
    text-decoration: none;
}

.homeWhatContent a, .homeWhatContent a:after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
}

.homeWhatContent a::before,
.homeWhatContent a::after {
  background: #000;
  content: '';
  position: absolute;
  z-index: -1;
}

.homeWhatContent a:hover {
    color: #fff;
    text-decoration: none;
    z-index: 1;
}

.btnAnim::after {
  height: 100%;
  left: 0;
  top: 0;
  width: 0;
}

.btnAnim:hover:after {
  width: 100%;
}

.carousel-control{
    top: 86%;
    width: 115%;
    right: 85%;
}


.homeWhatImgSlider{
    position: relative;
    width: 50%;
    right: 5px;
}

.homeWhatButton{
    position: absolute;
    top: 92%;
    left: 16%;
}

.homeWhatButton .swiper-button-prev{
    left: auto;
    right: 50px;
}

.homeWhatButton .swiper-button-next, .homeWhatButton .swiper-button-prev{
    background-image: none;
    width: 60px;
}

.homeWhatButton .swiper-button-next{
    right: -10px;
}

.homeDonateSection{
    position: relative;
    justify-content: space-between;
    padding: 0 8%;
    margin: 5% 0 0;
    height: 775px;
}

.homeDoanteBox{
    position: relative;
    width: 35%;
    background: #fff;
    padding: 3%;
    margin: 5% 0;
    /*height: 500px;*/
}

.homeDoanteBox h2 {
    margin-bottom: 3%;
}

.homeDoanteBox h5:nth-child(4), .homeDoanteBox form h5{
    margin-bottom: 6%;
}

.homeDoanteBox form div{
    margin-bottom: 5%;
}

.homeDoanteBox form div input{
    padding: 10px 20px;
    position: relative;
    width: 100%;
    border: 1px solid #000;
    background: transparent;
}

.homeDoanteBox form .sumbit{
    padding: 10px 20px;
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid #000;
    transition: .3s;
}

.homeDoanteBox form .sumbit:hover{
    background: #000;
    color: #fff;
    transition: .3s;
}

.homeDoanteBox label{
    padding: 0 10px;
    left: 5%;
    margin-bottom: 20px;
}

.homeDoanteBox label input[type=radio]{
    position: relative;
    right: 8px;
}

.homeDonateWhatBox{
    position: relative;
    margin: 15% 0 0;
    width: 30%;
    z-index: 1; 
}

.homeDonateWhatBox h5{
    margin-bottom: 8%;
}

.homeWhatQus{
    position: relative;
    flex-direction: column;
}

.homeWhatQus a{
    font-size: 13px;
    margin-bottom: 6%;
    border: none;
    color: #000;
    cursor: pointer;
    transition: .3s;
}

.homeWhatQus a:hover{
    text-decoration: none;
}

.plus{
    position: absolute;
    right: 1.2rem;
    height: 1.5rem;
    cursor: pointer;
}

.plus::before{
    content: "";
    position: absolute;
    background-color: #000;
    transition: transform .25s ease-out;
    width: 12px;
    height: 1.5px;
    margin-top: 4.5px;
}

.plus::after{
    content: "";
    position: absolute;
    background-color: #000;
    transition: transform .25s ease-out;
    width: 1.5px;
    height: 12px;
    margin-left: 5px;
}

.plus.active::before{
    -ms-transform: rotate(180deg);
     transform: rotate(180deg);
}

.plus.active::after{
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.homeWhatQus a:hover .plus{
    color: #fff;
    transition: .3s;
}

.homeWhatQus a::after{
    content: '';
    position: absolute;
    width: 100%;
    margin-top: 10px;
    border-bottom: 1px solid #fff;
    display: block;
}

.homeWhatBox{
    font-size: 14px;
}

.homeDonateWhereBox{
    position: relative;
    width: 25%;
    margin: 13% 0 0;
    top: 20px;
}

.homeDonateWhereLogo{
    position: relative;
    width: 600px;
    right: 50%;
    bottom: 35px;
}

.homeUpcomingEvents{
    position: relative;
    margin: 5% 0 0;
    width: 90%;
    left: 6%;
}

.homeUpcomingRow {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
}

.homeUpcomingImg {
    width: 50%;
    padding: 2%;
    position: relative;
    z-index: 1;
}

.homeUpcomingText {
    position: relative;
    width: 50%;
    left: -5%;
    top: 0;
    padding: 5% 8%;
    background: #E1F4FE;
}

.homeEventsbutton{
    position: absolute;
    top: 20%;
    right: 15%;
}

.homeEventsbutton .swiper-button-next, .homeEventsbutton .swiper-container-rtl .swiper-button-prev,
.homeEventsbutton .swiper-button-prev, .homeEventsbutton .swiper-container-rtl .swiper-button-next{
    background-image: none;
}


.homeEventsbutton .swiper-button-prev{
    left: auto;
    right: 50px;
}

.homeEventsbutton .swiper-button-next, .homeEventsbutton .swiper-button-prev{
    width: 15px;
    height: 15px;
    border: none;
}

.homeUpcomingLink{
    margin: 10% 0 0;
}

.homeUpcomingButton{
    color: #000;
    border: 1.5px solid #000;
    padding: 10px 30px;
    transition: .3s;
}

.homeUpcomingButton:hover{
    text-decoration: none;
    color: #fff;
    background: #000;
    transition: .3s;
}

.homeBannerForm{
    width: 100%;   
    position: relative;
    bottom: 30px;
}

.homeBannerForm .formInputContainer, .formInput {
    position: relative;
    width: 100%;
    left: 0;
    margin: 0 0 1% 0;
    background: transparent;
}

.homeBannerForm .formInput {
    border: 1px solid #414042;
    padding: 10px;
    background: transparent;
}

.homeBannerForm .formSubmit input {
    padding: 5px 10px;
    border: 1px solid #414042;
    cursor: pointer;
}

.homeBannerForm input::placeholder{
    color: #000;
    font-size: 16px;
}

.homeBannerForm .formCheckContainer{
    width: 70%;
    justify-content: space-around;
    position: relative;
    bottom: 5px;
}

.homeBannerForm .formCheckContainer .checkbox{
    border: 1px solid #000;
}

.homeBannerForm .formCheckContainer input {
    position: relative;
    top: 5px;
}

.homeBannerForm #submit:hover{
    background: #fff;
    cursor: pointer;
}


.homeTestmonials{
    position: relative;
    width: 85%;
    left: 8%;
    margin: 5% 0 0;
}

.homeTestmonials h2{
    margin: 3% 0;
}

.testmonialsContent{
    position: relative;
    width: 80%;
    left: 10%;
    margin: 5% 0;
}

.testmonialsContent h5{
    font-size: 18px;
    margin: 5% 0;
}

.homeTestmonials .swiper-button-next, .homeTestmonials .swiper-button-prev{
    height: 30px; 
    width: 30px;
    background-size: 20px;
    
}

.homeTestmonials .swiper-pagination-bullet-active{
    background: #000;
}

.homeTestmonials .swiper-button-next{    
    background-image: url(../img/slider-right-arrow.png);
    right: 10px;
    left: auto;
}

.homeTestmonials .swiper-button-prev{    
    background-image: url(../img/slider-left-arrow.png);
    left: 10px;
    right: auto;
}

.homeTestmonials .testmonialsContent h4:first-child:before {
    content: '\201C';
    color: rgb(0 0 0 / 47%);
    font-size: 7.5em;
    font-weight: 700;
    opacity: 0.6;
    position: absolute;
    top: -.4em;
    left: -.2em;
    z-index: -10;
}


/************** home page responsive start here ******************/

@media only screen and (min-width: 1900px){
    
    .homeAboutSection{
        margin: 18% 0 0;
    }
    
    .homeAboutOurLogo{
        right: 100%;
    }
    
    .homeImapctCount{
        right: 0;
    }
    
    .homeWhatButton{
        top: 93%;
        left: 13%;
    }
    
    .homeDonateWhereLogo{
        right: 20%;
    }
    
    .homeDonateSection{
        height: 834px;
    }
}

@media only screen and (min-width: 2160px){
    .homeAboutSection{
        margin: 22% 0 0;
    }
    
    .homeImpactSection{
        height: 800px;
    }
    
    .homeOurWorksBox{
        width: 26%;
    }
    
    .homeWhatButton{
        top: 94%;
        left: 11%;
    }
    
    .homeUpcomingText{
        width: 58%;
    }
    
    .homeDoanteBox {
        height: 700px;
    }
    
    .homeDonateWhereLogo{
        right: 10%;
        width: 550px;
    }
}

@media only screen and (min-width: 2560px){
    
    .homeAboutSection{
        margin: 25% 0 0;
    }
    .homeDoanteBox {
        height: 740px;
    }
    
    .homeImapctNumber{
        justify-content: space-around;
    }
    
    .homeOurWorksLink a::after{
        width: 7.2%;
    }
    
    .homeOurWorksBoxText a::after{
        width: 18%;
    }
    
    .homeWhatButton{
        left: 9%;
    }
    
    .homeOurWorksBox {
        width: 22%;
    }
    
    .homeUpcomingImg{
        left: 5%;
    }
    
    .homeDonateSection{
        height: auto;
    }
    

    
    
}

@media only screen and (max-width: 1440px){
    .homeWhatButton{
        left: 17%;
    }
}

@media only screen and (max-width: 1370px){

}

@media only screen and (max-width: 1280px){
    
    .homeAboutSection{
        margin: 5% 0 0;
    }
    
    .homeAboutOurLogo{
        width: 550px;
        bottom: -30px;
    }
    
    .homeDonateWhereLogo{
        right: 70%;
    }
}

@media only screen and (max-width: 1024px){
    
    .topBanner{
        height: 450px;
    }
    
    .homeAboutOurLogo {
        width: 460px;
        bottom: 30px;
    }
    
    .homeImapctNumber{
        width: 50%;
    }
    
    .homeImapctBox{
        height: 200px;
        width: 200px;
    }
    
    .homeOurWorksLink a::after{
        width: 18%;
    }
    
    .homeOurWorksBoxText a::after{
       width: 38%; 
    }
    
    .homeWhatButton {
        left: 24%;
        top: 88%;
    }
    
    .homeOurWorksContainer{
        width: 88%;
    }
    
    .homeWhatSection{
        padding: 5% 3% 10% 3%;
    }
    
    .homeUpcomingImg{
        margin: 7% 0 0;
    }
    
    .homeDonateSection{
        padding: 0 5%;
    }
    
    .homeDonateWhereLogo {
        right: 120%;
    }
    
}

@media only screen and (max-width: 900px) {
    
}

@media only screen and (max-width: 800px) {
    
    .homeBannerTitle{
        width: 85%;
        bottom: 10%;
    }
    
    .topBanner {
        height: 340px;
        margin: 14% 0 0;
    }
    
    .homeAboutContent, .homeOurWorksContent{
        width: 75%;
    }
    
    .homeAboutOurLogo{
        bottom: 0;
        right: -88px;
    }
    
    .homeImpactSection{
        flex-direction: column;
    }
    
    .homeImapctContent, .homeImapctNumber{
        width: 100%;
    }
    
    .homeImapctNumber{
        margin-bottom: 10%;
    }
    
    .single{
        margin-top: 0%;
        right: 0%;
    }
    
    .homeImapctCount{
        display: flex;
        justify-content: space-between;
        margin-top: 0;
        right: 0;
        width: 70%;
    }
    
    .homeImapctCount h2, .single h2{
        padding: 10% 0 0;
    }
    
    .homeImapctBox{
        margin: 2%;
    }
    
    .homeImapctBox.single{
        margin: 7px 2%;        
    }
    
    .homeOurWorksLink a::after{
        width: 23%;
    }
    
    .homeOurWorksBoxText a::after{
        width: 48%; 
        bottom: 15px;
    }
    
    .homeOurWorksBoxText .hoverInnerEffect:hover::after {
        width: 60%;
        top: 2px;
    }
    
    .homeWhatSection {
        padding: 5%;
        flex-direction: column;
    }
    
    .homeWhatContent{
        width: 100%;
    }
    
    .homeWhatImgSlider{
        margin: 10% 0 0;  
        width: 80%;
        left: 10%;
    }
    
    .homeWhatButton {
        left: 20%;
        top: 90%;
    }
    
    .homeUpcomingImg{
        margin: 15% 0 0;
    }
    
    .homeUpcomingText{
        width: 70%;
    }
    
    .homeDonateSection{
        flex-wrap: wrap;
        height: auto;
    }
    
    .homeDoanteBox{
        width: 80%;
        left: 12%;
    }
    
    .homeDonateWhatBox, .homeDonateWhereBox{
        margin: 0;
        width: 45%;
    }
    
    .homeDonateWhereLogo {
        display: none;
    }
    
    .homeBannerTitle h2{
        font-size: 2rem;
    }
    
    .homeEventsbutton{
        top: 13%;
        right: 8%;
    }
    
    .homeDonateWhereBox{
        top: 0px;
    }
    
     .homeTestmonials .swiper-button-next, .homeTestmonials .swiper-button-prev{
        display:none;
    }
    
}

@media only screen and (max-width: 650px) {
    
}

@media only screen and (max-width: 500px) {
    
    .topBanner{
        margin: 21% 0 0;
        height: 250px;
    }
    
    .homeBannerTitle{
        bottom: 30%;
    }
    
    .homeBannerTitle h2{
        font-size: 1.2rem;
        bottom: 30%;
    }
    
    .homeAboutSection{
        flex-direction: column;
        text-align: center;
        width: 100%;
        left: 0%;
    }
    
    .homeAboutContent, .homeOurWorksContent{
        width: 100%;
    }
    
    .bottomLine{
        left: 42%;
    }
    
    .homeAboutOur{
        justify-content: center;
    }
    
    .homeAboutOur div a::after{
        display: block;
        width: 25%;
    }
    
    .homeAboutOurLogo{
        right: 0;
    }
    
    .homeImpactSection{
        padding: 0 4%;
    }
    
    .homeImapctContent, .homeImapctNumber{
        text-align: center;
    }
    
    .homeImapctContent{
        margin-top: 2%;
    }
    
    .bottomLine.white{
        left: 39%;
    }
    
    .homeImapctNumber{
        flex-wrap: wrap;
    }
    
    .homeImapctCount{
        width: 100%;
    }
    
    .homeImapctBox.single{
        left: 25%;
    }
    
    .homeOurWorks{
        width: 100%;
        left: 0;
        flex-direction: column;
        text-align: center;
        margin: 5% 0;
    }
    
    .homeOurWorksContent .bottomLine{
        left: 41%;
    }
    
    .homeOurWorksLink a::after{
        top: 235px;
        right: 170px;
        width: 31%;
    }
    
    .homeOurWorksContainer{
        width: 95%;
        left: 2%;
        flex-direction: column;
    }
    
    .homeOurWorksBox{
        width: 100%;
        margin-bottom: 5%;
    }
    
    .homeOurWorksBoxText{
        text-align: center;
    }
    
    .homeOurWorksBoxText a::after{
        width: 23%;
        left: 39%;
        bottom: 20px;
    }
    
    .homeWhatContent{
        text-align: center;
    }
    
    .homeWhatContent .bottomLine{
        left: 39%;
    }
    
    .homeWhatImgSlider, .homeUpcomingEvents{
        width: 100%;
        left: 0
    }
    
    .homeWhatButton {
        left: 24%;
        top: 88%;
    }
    
    .homeUpcomingRow{
        flex-direction: column;
    }
    
    .homeUpcomingImg{
        width: 100%;
        padding: 5%;
    }
    
    .homeUpcomingText {
        width: 90%;
        left: 26px;
    }
    
    .homeEventsbutton {
        top: 60%;
        right: 10%;
    }
    
    .homeUpcomingEvents{
        margin: 0;
    }
    
    .homeDoanteBox {
        width: 100%;
        left: 0;
    }
    
    .homeDonateWhatBox, .homeDonateWhereBox{
        width: 100%;
    }
    
    .homeDonateWhereBox{
        top: 0;
    }
    
    .homeImapctBox {
        height: 150px;
        width: 150px;
    }
    
   .testmonialsContent{
       width: 90%;
        left: 5%;
   }
   
   .homeTestmonials .testmonialsContent h4:first-child:before{
       font-size: 3.5em;
   }
    
}

@media only screen and (max-width: 451px) {
    
}

@media only screen and (max-width: 426px) {
    
    .topBanner{
        margin: 26% 0 0;
        height: 200px;
    }
    
    .homeBannerTitle h2{
        font-size: 1rem;
    }
    
    .homeLink{
        padding: 5px 20px;
        font-size: 14px;
    }
    
    .bottomLine {
        left: 41%;
    }
    
    .bottomLine.white, .homeWhatContent .bottomLine {
        left: 37%;
    }
    
    .homeOurWorksContent .bottomLine {
        left: 40%;
    }
    
    .homeOurWorksContent .bottomLine {
        left: 39%;
    }
    
    .homeUpcomingHeading .bottomLine{
        left: 1%;
    }
    
    .homeWhatButton{
        left: 30%;
        top: 85%;
    }
    
    .homeDoanteBox .bottomLine{
        left: 0;
    }
    
    .homeEventsbutton {
        top: 56%;
        right: 5%;
    }
    
    .homeOurWorksLink a::after {
        top: 242px;
        right: 126px;
        width: 38%;
    }
    
    h2{
        font-size: 1.2rem;
    }
    
    .homeWhatContent a{
        top: 10px;
        padding: 15px 25px;
    }
    
    .homeDoanteBox{
        /*height: 500px;*/
    }
    
    .homeImapctCount h2, .single h2{
        font-size: 1.2rem;
    }
    
    .hoverInnerEffect:hover::after {
        width: 41%;
        left: 30%;
    }
    
    .homeAboutOur div a::after{
        width: 31%;
    }
    
    .hoverInnerEffect:hover::after {
        width: 100%;
        left: 0;
    }
    
    .homeOurWorksLink .hoverInnerEffect:hover::after{
        width: 37%;
        left: 32%;
    }
    
    .homeOurWorksBoxText .hoverInnerEffect:hover::after{
        width: 33%;
        left: 34%;
        top: 8px;
    }
    
    .single h2{
        margin: 30px 0 0;
    }
    
    .homeImapctCount h5, .single h5 {
        padding: 0 10%;
    }
    
    .homeDoanteBox label{
        padding: 0 20px;
    }
    
    .testmonialsContent{
       width: 100%;
        left: 0%;
   }
   
   .testmonialsContent h2{
       margin: 5% 0;
   }
   
   .testmonialsContent h4{
       font-size: 1rem;
   }
   
   .homeTestmonials .testmonialsContent h4:first-child:before{
       top:-23px;
       left: 0;
       font-size: 5rem;
   }
   
   .testmonialsAuthor{
       margin-bottom: 35px;
   }
    
}

@media only screen and (max-width: 376px) {
    
    .homeWhatButton {
        left: 34%;
        top: 83%;
    }
    
    .homeImapctBox {
        height: 150px;
        width: 150px;
    }
    
    .bottomLine {
        left: 39%;
    }
    
    .homeOurWorksContent .bottomLine {
        left: 37%;
    }
    
    .bottomLine.white, .homeWhatContent .bottomLine{
        left: 34%;
    }
    
    .homeAboutOur div a::after{
        width: 35%;
    }
    
    .hoverInnerEffect:hover::after {        
        top: 5px;
    }
    
}

@media only screen and (max-width: 321px) {
    
}

/*******************************************************************
*                       about page style start                     *
*******************************************************************/
.aboutBanner{
    position: relative;
    height: 700px;
    background: url(../img/about/about-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.bannerContent{
    position: absolute;
    width: 35%;
    z-index: 1;
    left: 8%; 
    margin-top: 15%;
}

.bannerContent::before{
    content: '';
    position: relative;
    width: 15%;
    border-top: 5px solid #fff;
    display: block;
    margin-bottom: 30px;
}

.bannerContent h2{
    line-height: 1.5;
    margin-bottom: 5%;
}

.aboutHistory{
    position: relative;
    padding: 3% 20%;
    margin: 5% 0 0;
}

.aboutHistory h3{
    margin-bottom: 3%;
}

.aboutHistory h3::before{
    border-top: 6px solid #000;
    display: block;
    position: relative;
    top: -25px;
    margin: 0 auto;
    width: 10%;
    content: "";
}

.aboutHistory h4{
    margin: 3% 0;
}

.aboutMotto{
    position: relative;
    height: 650px;
    background: url(../img/about/about-our-bg.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.aboutMottoBox{
    position: absolute;
    width: 33%;
    right: 6%;
    background: #fff;
    margin: 3% 0 0;
}

.aboutMottoBox h3{
    padding: 3% 8%;
    margin-top: 14%;
}

.aboutMottoBox h3::before{
    border-top: 6px solid #000;
    display: block;
    position: relative;
    top: -25px;
    width: 20%;
    content: "";
}

.aboutMottoBox p{
    padding: 0 8%;
}

.aboutMottoIcon{
    position: relative;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 8%;
}

.aboutMottoIconBox{
    position: relative;
    flex-direction: column;
    text-align: center;
    width: 50%;
}

.aboutMottoIconImg{
    width: 50%;
    align-self: center;
}

.aboutMottoIconText p{
    font-size: 12px;
    margin-top: 20px;
}

.aboutMission{
    position: relative;
    justify-content: space-between;
    width: 70%;
    left: 15%;
    margin: 5% 0 ;
}

.aboutMissionBox{
    position: relative;
    flex-direction: column;
    text-align: center;
    width: 35%;
}

.aboutMissionText h3{
   margin-top: 8%;
    margin-bottom: 5%;
}

.aboutMissionBox .aboutMissionText ul{
    text-align: left;
}

.aboutCommittee{
    position: relative;
    padding: 5% 8%;
}

.aboutCommittee h3{
    margin-bottom: 4%;
}

.aboutCommitteeContainer{
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
}

.aboutCommitteeBox{
    position: relative;
    width: 23%;
    flex-direction: column;
    margin-bottom: 3%;
}

.showContent{
    display: none;
}

.aboutCommitteeBox .showContent.active{
    display: block;
    width: 250%;
    padding-top: 10%;
    padding-left: 10%;
    transition: .4s;
    color: #000;
    padding-bottom: 5%;
    padding-right: 10%;
    font-size: 16px;
}

.aboutCommitteeBox#ourTeamPerson1 .showContent.active  {
    padding-top: 10%;
    margin-left: 0%;
    transition: .4s;
    width: 435%;
}

.aboutCommitteeImg{
    cursor: pointer;
}

.aboutCommitteeText{
    padding: 5% 10%;
    background: #fff;
        cursor:pointer;
}

.aboutCommitteeText h5 img{
    width: 12%;
    position: relative;
    left: 1%;
    bottom: 1px;

}

.aboutCommitteeText h5 img {
  border-radius: 50%;
  -webkit-transition: -webkit-transform .5s ease-in-out;
          transition:         transform .5s ease-in-out;
}
.aboutCommitteeBox:hover h5 img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.aboutCommitteeText p{
    cursor:pointer;
}

.aboutCommitteeText .flex{
    position: relative;
    right: 8%;
    justify-content: flex-start;
}

.aboutDonate.homeDonateSection{
    margin: 0;
}

/***************** about page responsive style start ***************/


@media only screen and (min-width: 1900px){
    
    .aboutBanner{
        height: 800px;
    }
    
    .aboutHistory{
        padding: 3% 17%;
        margin: 2% 0 0;
    }
    
    .aboutMottoBox h3{
        margin-top: 9%;
    }
    
}

@media only screen and (min-width: 2160px){
    
}

@media only screen and (min-width: 2560px){
    
    .aboutBanner, .aboutMotto{
        height: 1000px;
    }
    
    .aboutMottoBox{
        margin-top: 15%;
        right: 8%;
        width: 25%;
    }
    
    .aboutCommitteeText{
        position: relative;
        width: 73%;
    }
    
}

@media only screen and (max-width: 1440px){

}

@media only screen and (max-width: 1370px){
    
    .aboutMottoBox{
        width: 35%;
        margin: 1% 0 0;
    }
    
    .aboutMottoIconText p{
        font-size: 14px;
    }
    
}

@media (min-width: 1025px) and (max-width: 1280px) {
 
    .aboutMottoBox{
        width: 40%;
        right: 9%;
    }
  
}

@media (min-width: 768px) and (max-width: 1024px) {
  
    .aboutBanner{
        height: 500px;
    }
    
    .bannerContent{
        width: 55%;
        margin-top: 20%;
    }
    
    .aboutHistory{
        padding: 3% 10%;
    }
    
    .aboutMottoBox{
        width: 87%;
    }
    
    .aboutCommitteeBox{
        width: 48%;
    }
    
    .aboutMission{
        width: 90%;
        left: 6%;
    }
    
    .aboutMissionBox{
        width: 45%;
    }
    
    .aboutMottoBox h3{
        margin-top: 10%;
    }
    
    .aboutCommitteeBox#ourTeamPerson1 .showContent.active{
        width: 208%;
    }
  
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
    .aboutMottoBox {
        width: 48%;
    }  
    
  
}

@media (min-width: 481px) and (max-width: 767px) {
  
    .aboutBanner{
        height: 400px;
    }
    
    .bannerContent{
        width: 75%;
        margin-top: 20%;
    }
    
    .aboutHistory{
        padding: 3% 10%;
    }
    
    .aboutMottoBox{
        width: 87%;
    }
    
    .aboutCommitteeBox{
        width: 85%;
        left: 8%;
    }
    
    .aboutMission{
        width: 95%;
        left: 5%;
        flex-direction: column;
    }
    
    .aboutMissionBox{
        width: 90%;
    }  
    
    .aboutMotto{
        margin-bottom: 15%;
    }
    
    .aboutCommitteeBox#ourTeamPerson1 .showContent.active{
        width: 100%;
    }
  
}

@media (min-width: 320px) and (max-width: 480px) {
  
    .aboutBanner{
        height: 350px;
    }
    
    .bannerContent{
        width: 75%;
        margin-top: 18%;
    }
    
    .aboutHistory{
        padding: 3% 10%;
        margin: 8% 0 0;
    }
    
    .aboutMottoBox{
        width: 100%;
        right: 0;
        margin: 0;
    }
    
    .aboutCommitteeBox{
        width: 85%;
        left: 8%;
    }
    
    .aboutMission{
        width: 95%;
        left: 5%;
        flex-direction: column;
    }
    
    .aboutMissionBox{
        width: 90%;
    }  
    
    .aboutCommittee h3{
        text-align: center;
        font-size: 20px;
    }
    
    .aboutMotto{
        margin-bottom: 15%;
    }
    
    .aboutCommitteeBox#ourTeamPerson1 .showContent.active{
        width: 100%;
    }
  
}


/*******************************************************************
*                     what we do page style start                  *
*******************************************************************/
.whatWeBanner{
    position: relative;
    height: 700px;
    background: url(../img/what-we-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.whatWeSection {
    background: none;
}

.whatHygiene{
    position: relative;
    height: 650px;
    background: url(../img/what-we-do-bg.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.whatHygieneBox{
    position: absolute;
    width: 30%;
    right: 10%;
    background: #fff;
    margin: 8% 0 0;
    padding: 5% 2% 3% 2%;
}

.whatHygieneBox h3{
    margin-bottom: 5%;
}

.whatHygieneBox p{
    margin-bottom: 10%;
}

.whatHygieneBox ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.whatHygieneBox h3::before{
    border-top: 6px solid #000;
    display: block;
    position: relative;
    top: -25px;
    width: 20%;
    content: "";
}

.whatNewsSection{
    position: relative;
    margin: 5% 0 0;
}

.whatNewsContainer{
    position: relative;
    margin-top: 2%;
    margin-bottom: 5%;        
    width: 85%;
    left: 7.5%;
    justify-content: flex-start;
}

.whatNewsBox{
    position: relative;
    flex-direction: column;
    text-align: center;
    border: 1px solid #000;
    width: 35%;
    padding: 15px;
    margin: 10px;
}

.whatNewsTitle h3{
    margin: 12% 0;
}

.whatNewsText h5{
    height: 85px;
}

.whatNewsText a h5{
    border-bottom: 3px solid;
}

.whatNewsText a{
    position: relative;
    color: #000;
    margin-bottom: 20px;
    transition: .5s;
    /*border-bottom:3px solid #000;*/
    text-decoration:none;
}


.whatNewsText a:hover{
  text-decoration: none;
    
}
/*.whatNewsText a::after {*/
/*    border-top: 2px solid #000;*/
/*    display: block;*/
/*    position: absolute;*/
/*    width: 0;*/
/*    transition: width .3s;*/
/*    content: "";*/
/*    left: 0%;*/
/*    transition: .5s;*/
/*}*/

/*.whatNewsText a:hover::after{*/
/*    border-top: 2px solid #6D6D6D;*/
/*    transition: .5s;*/
/*       width: 100%;*/
/*}*/

/*.whatNewsText a:hover{*/
/*    color: #6D6D6D;*/
/*    text-decoration: none;*/
/*    transition: .5s;*/
/*}*/

.whatNewsVideo{
    position: relative;
    margin: 3% 0;
    width: 40%;
    left: 30%;
}


video {
  display: block;
  width: 100%;
  height: 100%;
}



/****************** what we do page responsive style ********************/

@media only screen and (min-width: 1900px){    
    
    .whatHygiene, .whatWeBanner{
        height: 800px;
    }
    
    .whatHygieneBox{
        margin: 10% 0 0;
    }
    
}

@media only screen and (min-width: 2160px){
    
}

@media only screen and (min-width: 2560px){
    
    .whatHygiene, .whatWeBanner{
        height: 1000px;
    }
    
}

@media only screen and (max-width: 1440px){

    .whatNewsBox{
        padding: 10px;
    }

}

@media only screen and (max-width: 1370px){

    .whatNewsText h5{
        height: auto;
    }
    
    .whatNewsContainer{
        left: 3%;
        width: 95%;
    }

}

@media (min-width: 1025px) and (max-width: 1280px) {
 
  
}

@media (min-width: 768px) and (max-width: 1024px) {
  
    .whatWeBanner{
        height: 500px;
    }
    
    .whatHygieneBox{
        width: 55%;
    }
    
    .whatNewsContainer{
        width: 100%;
        left: 6%;
        flex-wrap: wrap;
    }
    
    .whatNewsBox{
        width: 40%;
    }
    
    .whatNewsText h5 {
        height: auto;
    }
    
    .whatNewsVideo{
        width: 60%;
        left: 20%;
    }
  
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
    .whatHygieneBox{
        width: 40%;
        margin: 12% 0 0;
    }
    
    .whatNewsContainer{
        width: 100%;
        left: 8%;
        flex-wrap: wrap;
    }
    
    .whatNewsBox{
        width: 40%;
    }
    
    .whatNewsText h5 {
        height: auto;
    }
    
    .whatNewsVideo{
        width: 50%;
        left: 25%;
    }
  
}

@media (min-width: 481px) and (max-width: 767px) {
  
    .whatWeBanner{
        height: 400px;
    }
    
    .whatHygieneBox{
        width: 86%;
        right: 5%;
        padding: 10%;
        margin: 10% 0 0;
    }
    
    .whatNewsContainer{
        width: 100%;
        left: 4%;
        flex-wrap: wrap;
        margin: 5%; 
    }
    
    .whatNewsBox{
        width: 80%;
    }
    
    .whatNewsText h5 {
        height: auto;
    }
    
    .whatNewsTitle h3{
        margin: 8% 0;
    }
        
    .whatNewsSection{
        margin: 8% 0 0;
    }
    
    .whatNewsVideo{
        width: 80%;
        left: 10%;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
  
    .whatWeBanner, .whatHygiene{
        height: 350px;
    }
    
    .whatHygiene{
        background: none;
        margin-bottom: 15%;
    }
    
    .whatHygieneBox{
        width: 100%;
        right: 0;
        padding: 10%;
        margin: 0;
    }
    
    .whatNewsContainer{
        width: 100%;
        left: 0%;
        flex-wrap: wrap;
        margin: 5%; 
    }
    
    .whatNewsBox{
        width: 85%;
        padding: 15px;
    }
    
    .whatNewsText h5 {
        height: auto;
    }
    
    .whatNewsTitle h3{
        margin: 5% 0;
    }
        
    .whatNewsSection{
        margin: 8% 0 0;
    }
    
    .whatNewsVideo{
        width: 90%;
        left: 5%;
    }
  
}


/*******************************************************************
*                       our work page style start                  *
*******************************************************************/
.ourBanner{
    position: relative;
    height: 700px;
    background: url(../img/our-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.ourOverView{
    position: relative;
    margin: 5% 0 0;
    width: 86%;
    left: 8%;
}

.ourActiveSection{
    position: relative;
    justify-content: space-between;
    width: 97%;
    flex-wrap: wrap;
}

.ourActiveBox{
    position: relative;
    width: 30%;
    margin-bottom: 2.5%;
    margin-top: 2.5%
}

.ourActiveText{
    padding: 10%;
}

.ourActiveText p:nth-child(2){
    font-size: 14px;
    margin-bottom: 50px;
}

.ourActiveText a{
   color: #000;
}

.ourActiveText a h5{
      border-bottom: 3px solid #000;
}
 
/*.ourActiveText a:hover{*/
/*    text-decoration: none;*/
/*    color: #000;*/
/*}*/

/*.ourActiveText a::after{*/
/*    border-top: 1px solid #000;*/
/*    display: block;*/
/*    position: relative;*/
/*    width: 0;*/
/*    transition: width .3s;*/
/*    content: "";*/
/*}*/

.ourActiveText a:hover::after {
    width: 39%;    
    border-top: 2px solid #000;
}

.ourActive{
    position: relative;
    background: url(../img/active-dot.png) no-repeat;
    background-position: center;
    background-size: contain;
    padding-left: 40px;
}

.ourComplete{
    position: relative;
    background: url(../img/completed-dot.png) no-repeat;
    background-position: center;
    background-size: contain;
    padding-left: 40px;
}

.ourShowMore, .ourShowLess{
    cursor: pointer;
}

/************** our work inner page style **************/

.ourWorkInner .bannerContent{
    margin-top: 22%;
}

.ourWorkInner.eventInnerContent{
    position: relative;
    width: 86%;
    left: 8%;
    padding: 0;
    margin: 0;
}

.ourWorkInner.homeWhatSection{
    background: none;
    margin: 2% 0 0; 
    padding: 0;
}

.ourWorkInner .homeWhatContent{
    width: 100%;
    padding: 3% 25%;
}

.ourWorkInner .homeWhatContent h4{
    margin-bottom: 5%;
}

.ourWorkInner.getContent{
    margin: 0;
    left: 9%;
    margin-bottom: 5%;
    width: 82%;
}

.ourWorkInner.getContent h1{
    padding: 1% 5% 1% 5%;
}

.ourWorkInner.getContent::before{
    height: 80%;
    top: 0px;
}

.ourWorkImgBox{
    position: relative;
    flex-wrap: wrap;
    width: 85%;
    left: 8%;
    justify-content: flex-start;
    transition: 0.4s ease;
}

.ourWorkImgBox a:hover{
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.ourWorkImg{
    position: relative;
    width: 33%;
    padding: 2%;  
    transition: 0.4s ease;
}

/**************** our work page responsive style ******************/


@media only screen and (min-width: 1900px){
    
    .ourBanner{
        height: 800px;
    }
    
    .ourShowMore{
        position: relative;
        left: 1%;
        margin-bottom: 2%;
    }
    
}

@media only screen and (min-width: 2160px){
    
}

@media only screen and (min-width: 2560px){
    
    .ourBanner{
        height: 1000px;
    }
    
    .ourActiveBox{
        width: 22%;
    }
    
}

@media only screen and (max-width: 1440px){

}

@media only screen and (max-width: 1370px){

}

@media (min-width: 1025px) and (max-width: 1280px) {
 
  
}

@media (min-width: 768px) and (max-width: 1024px) {
  
    .ourBanner{
        height: 500px;
    }
    
    .ourOverView{
        width: 90%;
        left: 5%;    
    }
    
    .ourActiveSection{
        width: 100%;
    }
    
    .ourActiveBox{
        width: 32%;
    }
    
    .ourShowMore{
        position: relative;
        left: 2%;
    }
  
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
    .ourActiveSection{
        width: 100%;
    }
    
    .ourActiveBox{
        width: 32%;
    }
    
    .ourShowMore{
        position: relative;
        left: 2%;
    }
  
}

@media (min-width: 481px) and (max-width: 767px) {
  
    .ourBanner{
        height: 400px;
    }
    
    .ourOverView{
        width: 90%;
        left: 5%; 
        text-align: center;
    }
    
    .ourActiveSection{
        width: 100%;
    }
    
    .ourActiveBox{
        width: 48%;
    }
    
    .ourShowMore{
        position: relative;
        left: 2%;
    }
    
    .ourActiveText a::after{
       display: none;
    }
    
    .ourWorkInner .homeWhatContent{
        padding: 3% 10%;
    }    
    
  
}

@media (min-width: 320px) and (max-width: 480px) {
  
    .ourBanner{
        height: 350px;
    }
    
    .ourOverView{
        width: 90%;
        left: 5%; 
        text-align: center;
    }
    
    .ourActiveSection{
        width: 100%;
    }
    
    .ourActiveBox{
        width: 100%;
    }
    
    .ourActiveText a::after{
        display: none;
    }
    
    .ourWorkInner .homeWhatContent{
        padding: 3% 8%;
    }
    
    .ourWorkImg{
        width: 50%;
    }
    
    .ourWorkInner .bannerContent {
        margin-top: 8%;
    }
  
}


/*******************************************************************
*                   get involved page style start                  *
*******************************************************************/
.getBanner{
    position: relative;
    height: 700px;
    background: url(../img/getInvolved/get-banner.png) no-repeat;
    background-size: cover;
    background-position: top;
}

.getDonateSection{
    position: relative;
    width: 83.5%;
    left: 8%;
    margin: 5% 0 0;
    justify-content: space-between;
}

.getDonateContent{
    position: relative;
    width: 35%;
    margin: 3% 0 0;
}

.getDonateContent h5, .getDonateContent h3, .getDonateContent .bottomLine{
    margin-bottom: 5%;
}

.getDonateButton{
    position: relative;
    top: 30px;
    border: 1px solid #000;
    text-align: center;
    padding: 20px 60px;
    color: #000;
    text-decoration: none;
    transition: .3s;
}

.getDonateButton:hover{
    text-decoration: none;
    color: #fff;
    background: #000;
    transition: .3s;
}

.getDonateImg{
    width: 55%;
}

.getContent{
    position: relative;
    width: 80%;
    left: 13%;
    margin: 6% 0;
    justify-content: space-around;
}

.getContent h1{
    position: relative;
    padding: 5%;
    left: 3%;
}

.getContentLine{
    position: relative;
    border-left: 6px solid #FFE5DE;
    overflow: hidden;
}

/*
.getContent::before{
    content: '';
    width: 0;
    height: 80%;
    position: absolute;
    border: 6px solid #FFE5DE;
    top: 30px;
}
*/

.getOurWorks{
    width: 100%;
    left: 0;
    padding: 5% 8%;
}

.getOurWorksContainer{
    width: 100%;
    left: 0;
    margin: 0;
    padding: 0 7% 5% 7%;
}

.getOurWorksContainer .homeOurWorksBoxText {
    background: #fff;
}

.getOurWorks .homeOurWorksLink a::after{
    width: 10%;
}

/*************** get involved page responsive style ****************/


@media only screen and (min-width: 1900px){
    
    .getBanner{
        height: 800px;
    }
    
    .getOurWorks .homeOurWorksLink a::after {
        width: 8%;
    }
    
    .homeOurWorksBoxText a::after{
        width: 21%;
    }
    
}

@media only screen and (min-width: 2160px){
    
}

@media only screen and (min-width: 2560px){
    
    .getBanner{
        height: 1000px;
    }
    
    .getOurWorks .homeOurWorksLink a::after {
        width: 6%;
    }
    
}

@media only screen and (max-width: 1440px){

}

@media only screen and (max-width: 1370px){

}

@media (min-width: 1025px) and (max-width: 1280px) {
 
  
}

@media (min-width: 768px) and (max-width: 1024px) {
  
    .getBanner{
        height: 500px;
    }
    
    .getDonateSection{
        width: 100%;
        left: 5%;
        margin: 8% 0 0;
        flex-direction: column-reverse;
    }
    
    .getDonateContent, .getDonateImg{
        width: 90%;
    }
    
    .getDonateSection.two{
        flex-direction: column;
        margin: 15% 0 0;
    }
    
    .getOurWorks .homeOurWorksLink a::after {
        width: 20%;
    }
    
    .getContent {
        margin: 10% 0 8% 0;
        left: 10%;
    }
    
  
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
    .getDonateSection{
        width: 90%;
        left: 5%;
        margin: 8% 0 0;
    }
    
    .getOurWorks .homeOurWorksLink a::after {
        width: 15%;
    }
  
}

@media (min-width: 481px) and (max-width: 767px) {
  
    .getBanner{
        height: 400px;
    }
    
    .getDonateSection{
        width: 100%;
        left: 5%;
        margin: 8% 0 0;
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .getDonateContent, .getDonateImg{
        width: 90%;
    }
    
    .getDonateSection.two{
        flex-direction: column;
        margin: 15% 0 0;
    }
    
    .getOurWorks .homeOurWorksLink a::after {
       display: none;
    }
    
    .getContent {
        margin: 15% 0 8% 0;
        left: 10%;
    }
    
    .getContent h1{
        font-size: 24px;
    }
  
}

@media (min-width: 320px) and (max-width: 480px) {
  
    .getBanner{
        height: 420px;
    }
    
    .getDonateSection{
        width: 100%;
        left: 5%;
        margin: 8% 0 0;
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .getDonateContent, .getDonateImg{
        width: 90%;
    }
    
    .getDonateSection.two{
        flex-direction: column;
        margin: 15% 0 0;
    }
    
    .getOurWorks .homeOurWorksLink a::after {
       display: none;
    }
    
    .getContent {
        margin: 15% 0 8% 0;
        left: 10%;
    }
    
    .getContent h1{
        font-size: 24px;
    }
  
}

/*******************************************************************
*               get involved donate page style start               *
*******************************************************************/
.getDonateBanner{
    position: relative;
    height: 700px;
    background: url(../img/getInvolved/get-donate-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.getDonationSection {
    position: relative;
    width: 83.5%;
    left: 8%;
    margin: 5% 0 0;
    justify-content: space-between;
}

.getDonationSection .flex{
    position: relative;
    flex-direction: column;
}

.getDoante{
    background: #FFE5DE;
    width: 75%;
    margin: 0;
    box-shadow: 0px 0px 20px 10px #cecccc;
    margin-bottom: 10%;
}

.getDoante.accountBox{
    height: 380px;
}

.getDoante.accountBox p{
    font-size: 16px;
}

.getDonationSection .homeDoanteBox form .sumbit{
    background: transparent;
    cursor: pointer;
}

.getDonationSection .homeDoanteBox form .sumbit:hover{
    background: #000;
}

.getDoanteContent{
    position: relative;
    width: 64%;
}

.getDoanteContentBox img{
    margin: 5% 0;
}

.getDoanteContentBox::after{
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
}

.getDoanttText{
    position: relative;
    margin: 10% 0 0;
}

.getDoanttText h3{
    margin: 6% 0 3% 0;
}

.radio-item {
  display: inline-block;
  position: relative;
  padding: 0 2px;
}

.radio-item input[type='radio'] {
  display: none;
}

.radio-item label {
  color: #666;
  font-weight: normal;
}

.radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
  width: 20px;
  height: 20px;
  border-radius: 11px;
  border: 2px solid #000;
  background-color: transparent;
}

.radio-item input[type=radio]:checked + label:after {
  border-radius: 11px;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 9px;
  left: 10px;
  content: " ";
  display: block;
  background: #000;
}


#homeDonatePopup .getDoante{
    background: transparent;
    box-shadow: unset;
    width: 100%;
    position: relative;
    top:15px;
}

#homeDonatePopup .getDoante{
    text-align:center;
}

#homeDonatePopup .getDoante .bottomLine{
    margin:0 auto;
}

#homeDonatePopup .homeDoanteBox h2 {
 margin-bottom: 4%;
    margin-top: 4%;
}

#homeDonatePopup a{
        padding: 10px 20px;
    position: relative;
    width: 100%;
    /* background: #fff; */
    border: 1px solid #000;
    transition: .3s;
    color: #000;
    top: 36px;
    text-decoration:none;
}

.accountBox h2{
    margin-top:2%;
    margin-bottom:3%;
}

.donatePageAccDetails  .bottomLine {
    width: 80px;
    margin: 2% 0;
    margin-top: 2%;
    margin-bottom: 4%;
}

.donatePageAccDetails h6:nth-child(1){
    margin-bottom: 5%;
}

/**************** get involved donate page responsive ******************/


@media only screen and (min-width: 1900px){
    
    .getDonateBanner{
        height: 800px;
    }
    
}

@media only screen and (min-width: 2160px){
    
}

@media only screen and (min-width: 2560px){
    
    .getDonateBanner{
        height: 1000px;
    }
    
}

@media only screen and (max-width: 1440px){

}

@media only screen and (max-width: 1370px){

}

@media (min-width: 1025px) and (max-width: 1280px) {
 
    .getDonateBanner{
        height: 600px;
    }
  
}

@media (min-width: 768px) and (max-width: 1024px) {
  
    .getDonateBanner{
        height: 500px;
    }
    
    .getDonationSection{
        width: 100%;
        left: 0%;
        flex-direction: column;
    }
    
    .getDoante{
        width: 90%;
        left: 5%;
    }
    
    .getDoanteContent{
        width: 90%;
        left: 5%;
        margin: 5% 0 0;
    }
  
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
    .getDonateBanner{
        height: 600px;
    }
    
    .getDonationSection{
        width: 90%;
        left: 5%;
    }
    
    .getDoante{
        width: 35%;
    }
    
    .getDoanteContent{
        width: 60%;
    }
  
}

@media (min-width: 481px) and (max-width: 767px) {
  
    .getDonateBanner{
        height: 400px;
    }
    
    .getDonationSection{
        width: 100%;
        left: 0%;
        flex-direction: column;
    }
    
    .getDoante{
        width: 90%;
        left: 5%;
    }
    
    .getDoanteContent{
        width: 90%;
        left: 5%;
        margin: 5% 0 0;
        text-align: center;
    }
    
    .getDoanteContentBox::after{
        left: 0;
        padding-bottom: 0;
    }
    
    .getDonationSection .homeDoanteBox .bottomLine{
        left: 0;
    }
  
  
}

@media (min-width: 320px) and (max-width: 480px) {
  
    .getDonateBanner{
        height: 350px;
    }
    
    .getDonateBanner .bannerContent {
        margin-top: 6%;
       width: 86%;
    }
    
    .getDonateBanner .bannerContent p{
       line-height: 1.5;
        margin-bottom: 0;
    }
    
    
    .getDonationSection{
        width: 100%;
        left: 0%;
        flex-direction: column;
    }
    
    .getDoante{
        width: 90%;
        left: 5%;
    }
    
    #homeDonatePopup .getDoante {
        width: 90%;
        left: 0;
    }
    
    
    .getDoanteContent{
        width: 90%;
        left: 5%;
        margin: 5% 0 0;
        text-align: center;
    }
    
    .getDoanteContentBox::after{
        left: 0;
        padding-bottom: 0;
    }  
    
    .getDonationSection .homeDoanteBox .bottomLine{
        left: 0;
    }
  
}

/*******************************************************************
*               get involved partner page style start              *
*******************************************************************/
.getPartnerBanner{
    position: relative;
    height: 700px;
    background: url(../img/getInvolved/get-partner-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.getPartner{
    padding: 3% 15%;
}

.getPartner .bottomLine{
    left: 42.5%;
    width: 15%;
}

.getPartnerImg{
    position: relative;
    width: 83.5%;
    left: 8%;
    margin-bottom: 5%;
}

.getPartnerWhy{
    position: relative;
    width: 83.5%;
    left: 8%;
}

.getPartnerWhyBox1{
    padding: 2% 20%;
}

.getPartnerWhyBox2{
    padding: 0 25%;
    margin-bottom: 3%;
}

.getPartnerWhyBox3{
    padding: 0 20%;
}

.getParticipation{
    position: relative;
    width: 83.5%;
    left: 8%;
    justify-content: space-between;
    margin: 5% 0;
}

.getParticipationContent{
    position: relative;
    flex-direction: column;
    width: 40%;
}

.getParticipationImg{
    position: relative;
    width: 55%;
}


.getParticipationLine{
    position: relative;
    width: 84%;
    left: 8%;
    border-bottom: 1px solid #000;
    margin: 3% 0 0;
}

/******************* get involved partner page responsive ************/


@media only screen and (min-width: 1900px){
    
    .getPartnerBanner{
        height: 800px;
    }
    
}

@media only screen and (min-width: 2160px){
    
}

@media only screen and (min-width: 2560px){
    
    .getPartnerBanner{
        height: 1000px;
    }
    
    .getPartnerImg{
        width: 100%;
        left: 20%;
    }
    
}

@media only screen and (max-width: 1440px){

}

@media only screen and (max-width: 1370px){

}

@media (min-width: 1025px) and (max-width: 1280px) {
 
  
}

@media (min-width: 768px) and (max-width: 1024px) {
  
    .getPartnerBanner{
        height: 520px;
    }
    
    .getPartner {
        padding: 3% 5%;
    }
    
    .getPartnerWhyBox1{
        padding: 2% 5%;
    }
    
    .getPartnerWhyBox3{
        padding: 0 5%;
    }
    
    .getParticipation{
        flex-direction: column-reverse;
    }
    
    .getParticipationContent, .getParticipationImg{
        width: 100%;
    }
    
    .getParticipationContent{
        margin: 5% 0 0;
    }
    
    .getParticipation.two{
        flex-direction: column;
    }
  
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
    
  
}

@media (min-width: 481px) and (max-width: 767px) {
  
    .getPartnerBanner .bannerContent{
        margin-top: 10%;
    }
    
    .getPartnerBanner{
        height: 420px;
    }
    
    .getPartner{
        padding: 3% 5%;
    }
    
    .getPartner h2{
        font-size: 24px;
    }
    
    .getPartnerWhyBox1{
        padding: 2% 5%;
    }
    
    .getPartnerWhyBox3{
        padding: 0 5%;
    }
    
    .getParticipation{
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .getParticipationContent, .getParticipationImg{
        width: 100%;
    }
    
    .getParticipationContent{
        margin: 5% 0 0;
    }
    
    .getParticipation.two{
        flex-direction: column;
        text-align: center;
    }
    
    .getPartnerWhyBox3{
        font-size: 20px;
    }
  
}

@media (min-width: 320px) and (max-width: 480px) {
  
    .getPartnerBanner .bannerContent{
        margin-top: 10%;
    }
    
    .getPartnerBanner{
        height: 420px;
    }
    
    .getPartner{
        padding: 3% 5%;
    }
    
    .getPartner h2{
        font-size: 20px;
    }
    
    .getPartnerWhyBox1{
        padding: 2%;
    }
    
    .getPartnerWhyBox3{
        padding: 2%;
    }
    
    .getParticipation{
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .getParticipationContent, .getParticipationImg{
        width: 100%;
    }
    
    .getParticipationContent{
        margin: 5% 0 0;
    }
    
    .getParticipation.two{
        flex-direction: column;
        text-align: center;
    }
    
    .getPartnerWhyBox3{
        font-size: 18px;
    }
    
    .getPartnerWhyBox2{
        padding: 0;
    }
  
}



/*******************************************************************
*                  upcoming events page style start                *
*******************************************************************/
.eventsBanner{
    position: relative;
    height: 700px;
    background: url(../img/events/events-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.banner1{
    background: url(../img/ourwork/1/1-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.banner2{
    background: url(../img/ourwork/2/2-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.banner3{
    background: url(../img/ourwork/3/3-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.banner4{
    background: url(../img/ourwork/4/4-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.banner5{
    background: url(../img/ourwork/5/5-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.banner6{
    background: url(../img/ourwork/6/6-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.eventsContainer{
    position: relative;
    width: 80%;
    left: 8%;
    justify-content: space-between;
    margin: 5% 0 0;
}

.eventsImg{
    position: relative;
    width: 40%;
}

.eventsContent{
    position: relative;
    width: 53%;
    margin-top: 5%;
}

.eventsContent h3{
    margin: 3% 0;
}

.eventsContent a{
    color: #000;
}

.eventsContent a::after{
    content: '';
    position: absolute;
    width: 18%;
    border-bottom: 2px solid #000;
    left: 0;
    bottom: 30px;
}

.eventsContent a:hover{
    text-decoration: none;
    color: #000;
}

.eventsContent p{
    margin-bottom: 5%;
}

.aboutShow, .aboutShowLess{
    position: relative;
    left: 8%;
    margin: 5% 0 0;
    cursor: pointer;
}

.aboutShow::after, .aboutShowLess::after{
    content: '';
    position: absolute;
    width: 8%;
    border-bottom: 2px solid #000;
    left: 0;
    bottom: -5px;
}

/*******************************************************************
*             upcoming events inner page style start               *
*******************************************************************/
.eventsInner{
    position: relative;
    margin: 5% 0;
    padding: 0 20%;
}

.eventInnerImg{
    position: relative;
    padding: 5% 0;
    width: 84%;
    left: 8%;
}

.eventsInnerBox{
    position: relative;
    width: 60%;
    background-position: center;
    background-size: contain;
    width: 300px;
    height: 300px;
}

.eventInnerContent{
    margin: 5% 0 0;
    padding: 0 20%;
}

.eventsInnerNext{
    position: relative;
    width: 40%;
    left: 30%;
    justify-content: space-around;
    margin: 3% 0;
}

.eventsInnerNext a{
    color: #000;
    transition: .3s;
}

.eventsInnerNext a:hover{
    color: #000;
    text-decoration: none;
    transition: .3s;
}

/******************* upcoming page responsive style ****************/


@media only screen and (min-width: 1900px){
    
    .eventsBanner{
        height: 800px;
    }
    
    .eventsContent a::after{
        width: 15%;
        bottom: 25%;
    }
    
    .aboutShow::after, .aboutShowLess::after{
        width: 6%;
    }
    
}

@media only screen and (min-width: 2160px){
    
    .eventsContent a::after {
        width: 12%;
        bottom: 22%;
    }
    
}

@media only screen and (min-width: 2560px){
    
    .eventsContent a::after {
        width: 10%;
        bottom: 19%;
    }
    
    .aboutShow::after, .aboutShowLess::after{
        width: 4.5%;
    }
    
}

@media only screen and (max-width: 1440px){
    
    .eventsContent a::after{
        bottom: 10px;
    }
}

@media only screen and (max-width: 1370px){

}

@media (min-width: 1025px) and (max-width: 1280px) {
 
    .eventsContent a::after {
        bottom: -5px;
    }
  
}

@media (min-width: 768px) and (max-width: 1024px) {
  
    .eventsBanner{
        height: 550px;
    }
    
    .eventsContent a::after {
        bottom: -5px;
        width: 35%;
    }
    
    .aboutShow::after, .aboutShowLess::after{
        width: 15%;
    }
    
    .eventsContent{
        margin: 0;
    }
    
    .eventsInner, .eventInnerContent{
        padding: 0 10%;
    }
  
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
    .eventsContent a::after {
        bottom: -5px;
        width: 25%;
    }
    
    .aboutShow::after, .aboutShowLess::after{
        width: 11%;
    }
  
}

@media (min-width: 481px) and (max-width: 767px) {
  
    .eventsBanner{
        height: 400px;
    }
    
    .eventsContainer{
        flex-direction: column;
        width: 95%;
        left: 5%;
    }
    
    .eventsImg, .eventsContent{
        width: 95%;
    }
    
    .eventsContent a::after {
        bottom: -5px;
        width: 25%;
    }
    
    .aboutShow::after, .aboutShowLess::after{
        width: 15%;
    }
    
    .aboutShow, .aboutShowLess{
        text-align: center;
        left: 0;
    }
    
    .aboutShow::after, .aboutShowLess::after{
        width: 22%;
        left: 39%;
    }
    
    .eventInnerImg{
        width: 90%;
        left: 5%;
    }
    
    .eventsInner, .eventInnerContent{
        padding: 0 10%;
    }
    
    .eventsInnerNext{
        width: 100%;
        left: 0%;
        margin: 8% 0;
    }
  
}

@media (min-width: 320px) and (max-width: 480px) {
  
    
    .eventsBanner {
        height: 280px;
    }
    
    .eventsBanner .bannerContent {
        width: 75%;
        margin-top: 7%;
    }

    .eventsContainer{
        flex-direction: column;
        width: 95%;
        left: 5%;
    }
    
    .eventsImg, .eventsContent{
        width: 95%;
    }
    
    .eventsContent a::after {
        bottom: -5px;
        width: 35%;
    }
    
    .aboutShow::after, .aboutShowLess::after{
        width: 15%;
    }
    
    .aboutShow, .aboutShowLess{
        text-align: center;
        left: 0;
    }
    
    .aboutShow::after, .aboutShowLess::after{
        width: 22%;
        left: 39%;
    }
    
    .eventInnerImg{
        width: 90%;
        left: 5%;
    }
    
    .eventsInner, .eventInnerContent{
        padding: 0 10%;
    }
    
    .eventsInnerNext{
        width: 100%;
        left: 0%;
        margin: 8% 0;
    }
    
    .getDonateBanner {
        height: 386px;
    }
  
}


/*******************************************************************
*                     contact page style start                     *
*******************************************************************/
.contactBanner{
    position: relative;
    height: 700px;
    background: url(../img/contact-banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.contactAddress{
    position: relative;
    justify-content: space-between;
    width: 83.5%;
    left: 8%;
    margin: 8% 0 0;
}

.contactAddressBox{
    position: relative;
    width: 35%;
}

.contactAddressBox a{
    color:#000;
}

.contactAddressBox a:hover{
    color:#000;
    /*text-decoration: none;*/
}

.contactMap{
    position: relative;
    width: 60%;
}

.contactFormSection{
    position: relative;
    margin: 5% 0 0;
    padding: 5% 0 8% 0;
}

.contactTitle {
    margin-top: 1%;
    margin-bottom: 6%;
}

.contactTitle h2::after {
    content: '';
    display: block;
    width: 5%;
    height: 6px;
    background: #000;
    transition: width .3s;
    position: relative;
    bottom: -20px;
    margin: 0 auto;
}

.inputBox {
    margin-bottom: 2%;
}

.inputBox input{
    width: 60%;
    border: 2px solid #000;
    padding: 1%;
    background: transparent;   
}

textarea {
    resize: none;
    overflow: auto;
}

.inputBox .twoBox{
    width: 35%;
    margin: 0 20px;
}

.inputBox .singleBox{
    width: 73%;
    padding: 2%;
    background: transparent;
    border: 2px solid #000; 
}

.inputBox #recaptcha{
   display: inline-block;
}

.inputBox .submit{
    text-align: center;
    width: 30%;
    align-self: center;
    background: #000;
    color: #fff;
    padding: 1%;
    margin-top: 2%;
    cursor: pointer;
    transition: .3s;
}

.inputBox .submit:hover{
    background: #fff;
    color: #000;
    transition: .3s;
}

.contactLogo{
    position: absolute;
    right: 0;
    bottom: -25px;
    width: 40%;
}

/************* contact page responsive style ********************/


@media only screen and (min-width: 1900px){
    
    .contactAddress{
        width: 100%;
    }
    
}

@media only screen and (min-width: 2160px){
    
}

@media only screen and (min-width: 2560px){
    
    .inputBox .singleBox{
        width: 72%;
    }
    
}

@media only screen and (max-width: 1440px){

}

@media only screen and (max-width: 1370px){

}

@media (min-width: 1025px) and (max-width: 1280px) {
 
  
}

@media (min-width: 768px) and (max-width: 1024px) {
  
    .contactBanner{
        height: 500px;
    }
    
    .contactAddress{
        width: 90%;
        left: 5%;
        flex-direction: column;
    }
    
    .contactAddressBox, .contactMap{
        width: 100%;
    }
    
    .inputBox .twoBox{
        width: 45%;
        margin: 0 10px;
    }
    
    .inputBox .singleBox{
        width: 93%;
    }
    
    .contactTitle h2::after{
        width: 15%;
    }
  
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
    .contactAddress{
        width: 90%;
        left: 5%;
    }
  
}

@media (min-width: 481px) and (max-width: 767px) {
  
    .contactBanner{
        height: 400px;
    }
    
    .contactAddress{
        width: 90%;
        left: 5%;
        flex-direction: column;
    }
    
    .contactAddressBox, .contactMap{
        width: 100%;
        text-align: center;
    }
    
    .inputBox .twoBox{
        width: 45%;
        margin: 0 10px;
    }
    
    .inputBox .singleBox{
        width: 93%;
    }
    
    .contactTitle h2::after{
        width: 15%;
    }
  
}

@media (min-width: 320px) and (max-width: 480px) {
  
    .contactBanner{
        height: 300px;
    }
    
    .contactAddress{
        width: 90%;
        left: 5%;
        flex-direction: column;
    }
    
    .contactAddressBox, .contactMap{
        width: 100%;
        text-align: center;
    }
    
    .inputBox .twoBox{
        width: 93%;
        margin: 10px;
    }
    
    .inputBox .singleBox{
        width: 93%;
    }
    
    .contactTitle h2::after{
        width: 15%;
    }
    
    .inputBox .submit{
        width: 50%;
    }
    
    .contactLogo{
        display: none;
    }
  
}

  
/************* privacy Policy page *****************/

.pageNot .bannerTitle{
    flex-direction: column;
}

.privacyPolicyContent{
    margin: 40px 5%
}

.privacyPolicyContent a{
    color: #33C2F4;
}

.privacyPolicyContent a:hover{ 
    color: #252642;
}


/*****************************************
            animation
******************************************/


.expand{
  position:relative;
  text-decoration:none;
  display:inline-block;
}
.expand:after {
    display: block;
    content: '';
    border-bottom: solid 3px #fff;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    transform-origin: 100% 50%;
    position: relative;
    top: 3px;
}

.expand:hover:after { 
  transform: scaleX(1);
  transform-origin:0 50%;
}


.arrow-icon {
  background-color: lightcoral;
  height: 2.8em;
  width: 2.8em;
  display: block;
  padding: 0.5em;
  margin: 1em auto;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
}

.left-bar {
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  width: 40px;
  height: 10px;
  display: block;
  transform: rotate(35deg);
  float: right;
  border-radius: 2px;
}
.left-bar:after {
  content: "";
  background-color: white;
  width: 40px;
  height: 10px;
  display: block;
  float: right;
  border-radius: 6px 10px 10px 6px;
  transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
  z-index: -1;
}

.right-bar {
  position: absolute;
  background-color: transparent;
  top: 0px;
  left: 26px;
  width: 40px;
  height: 10px;
  display: block;
  transform: rotate(-35deg);
  float: right; 
  border-radius: 2px;
}
.right-bar:after {
  content: "";
  background-color: white;
  width: 40px;
  height: 10px;
  display: block;
  float: right;
  border-radius: 10px 6px 6px 10px;
  transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
  z-index: -1;
}

.open .left-bar:after {
  transform-origin: center center;
  transform: rotate(-70deg);
}
.open .right-bar:after {
  transform-origin: center center;
  transform: rotate(70deg);
}


/*****************************
        success page
******************************/

.success-showcase{
     margin-top: 14%;
}

.success-showcase .homeAboutOur {
    position: relative;
    top: 200px;
}

.lead a{
    border: 2px solid #6D6D6D;
    padding: 10px 25px;
    margin: 0 20px;
    transition: .5s;
    color:#000;    
}

/**********************************
    success page responsive starts
***********************************/

@media only screen and (min-width:1536px){
 
 .success-showcase {
    margin-bottom: 0%;
}   
    
}

@media only screen and (max-width:800px){
    
    .display-3{
       font-size: 2.5rem;
    }   
}

@media only screen and (max-width:500px){
   
   .success-showcase {
    margin-top: 21%;
} 
}