body{
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #1e70ba;
    background-color: #f1fff7;
    overflow-x: hidden;
}
html{
    overflow-x: hidden;
}
.ovhidden{
    overflow: hidden;
}


a{
  color: #00923f;
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
    font-weight: 400;
}
a:hover{
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

/* .fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas{
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
} */
ul{
  padding-left: 0px; 
  list-style-type: none;
  margin: 0
}
img{
    display: block;
  max-width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

img.loadimg{
    opacity: 0;
    transform: scale(.95);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
img.loadimg.fade{
    opacity: 1.0;
    transform: scale(1);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

button{
    border: none;
    cursor: pointer;
    outline: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.h1, .h2, .h3, h1, h2, h3{
  font-weight: 600;
    color: #287f51;
}
.h4, .h5, .h6, h4, h5, h6{
    font-weight: 600;
    line-height: 1.4;
    color: #287f51;
}

input{
    font-family: "Poppins", sans-serif;
}
  


@media(min-width: 1366px){
.cmpad{
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
}
@media(max-width: 1366px){
.cmpad{
  padding-left:80px;
  padding-right:80px;
}
}
@media(max-width: 991px){
.cmpad{
  padding-left:40px;
  padding-right:40px;
}

}
@media(max-width: 767px){
.cmpad{
  padding-left:15px;
  padding-right:15px;
}

}
@media(max-width: 575px){
html{
  font-size: 90%;
}

}





@media(max-width: 767px){
.h1, h1{
    font-size: 2.2rem;
}
.h2, h2{
    font-size: 1.75rem;
}
}
@media(max-width: 575px){
.h2, h2{
    font-size: 1.5rem;
}
.h1, h1{
    font-size: 2rem;
}
}



@media(min-width:768px){
::-webkit-scrollbar{width:10px;height:6px}
::-webkit-scrollbar-track{background-color:#eee}
::-webkit-scrollbar-thumb{background-color:#3a3a3a}
::-webkit-scrollbar-thumb:hover{background-color:#444}
}

.custscroll::-webkit-scrollbar,.custscroll::-webkit-scrollbar-thumb{border-radius:13px;width:6px;height:6px;background-clip:padding-box;background:transparent}
.custscroll::-webkit-scrollbar-track{background:transparent}
.custscroll:hover::-webkit-scrollbar-thumb{background-color:#ccc}
.custscroll::-webkit-scrollbar-thumb:hover{background-color:#999}


.custscrollA::-webkit-scrollbar{border-radius:13px;width:6px;height:6px;background-clip:padding-box;background:transparent}
.custscrollA::-webkit-scrollbar-track{background:transparent}
.custscrollA::-webkit-scrollbar-thumb{background-color:#ccc;border-radius: 6px;}
.custscrollA::-webkit-scrollbar-thumb:hover{background-color:#999}


ul.social {
    display: flex;
    gap: 10px;
}
ul.social li {
    display: block;
}
ul.social li:last-child{
    margin-right: 0;
}
ul.social li a {
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    font-size: 0.875rem;
}

ul.social li a i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    font-size: .9rem;
    color: #fff;
    background-color: rgb(228 29 36 / 30%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

ul.social li a:hover i {
    color: #fff;
    background-color: #e41d22;
}
p{
    margin-top: 0;
    color: #545456;
    font-size: 0.875rem;
}


.flexVcenter{
    display: flex;
    flex-flow: wrap;
    align-content: center;
}



@keyframes moveRight{
    0%{
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }
    50%{
        transform: translateX(5px);
        -webkit-transform: translateX(5px);
    }
    100%{
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}
@keyframes moveLeft{
    0%{
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }
    50%{
        transform: translateX(-5px);
        -webkit-transform: translateX(-5px);
    }
    100%{
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}
@keyframes moveDown{
    0%{
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
    50%{
        transform: translateY(5px);
        -webkit-transform: translateY(5px);
    }
    100%{
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}
@keyframes moveUp{
    0%{
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
    50%{
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
    }
    100%{
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*PULSE*/
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}



.btn{
    padding: 10px 15px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    border-radius: 25px;
}
.mybtn-primary {
    position: relative;
    color: #00923f;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 15px;
    border: 1px solid #00923f;
    overflow: hidden;
    min-width: 140px;
}
.mybtn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
    background-color: #287f51;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}
.mybtn-primary:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #287f51;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}
.mybtn-primary span {
    position: relative;
    z-index: 10;
}
.mybtn-primary:hover:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.mybtn-primary:hover:after {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.mybtn-primary:hover {
    color: #ffffff;
}
.mybtn-primary:hover img{
    filter: brightness(0) invert(1);
}


.morebtn{
    background: linear-gradient(90deg, #00923f, #1d1717);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}





.outlinebtn:hover{
    color: #1d70bb;
    border: 1px solid #1d70bb;
}
.outlinebtn2{
    color: #1D75BD;
    background: linear-gradient(to right,#fff,#fff,#1D75BD,#0EB3C1);
    background-size: 300% 100%;
    width:135px;
}
.outlinebtn2:hover{
    color: #fff;
    background-position: 100% 0;
}







.mybtn-secondary {
    position: relative;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 15px;
    border: 1px solid transparent;
    overflow: hidden;
    min-width: 140px;
    background: #00923f;
    
}
.mybtn-secondary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
    background-color: #287f51;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}
.mybtn-secondary:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #287f51;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}
.mybtn-secondary span {
    position: relative;
    z-index: 10;
}
.mybtn-secondary:hover:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.mybtn-secondary:hover:after {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.mybtn-secondary:hover {
    color: #ffffff;
    border: 1px solid #287f51;;
}
.mybtn-secondary:hover img{
    filter: brightness(0) invert(1);
}





.mybtn-outline{
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
}






.btn.center{
    display: table;
    margin: auto;
}

.mybtn-group{
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin: -5px;
}
.mybtn-group .mybtn-primary,
.mybtn-group .mybtn-secondary,
.mybtn-group .mybtn-third,
.mybtn-group .white-outline{
    margin: 5px;
}
.white-outline{
    border:1px solid #fff;
    color: #fff;
    background-color: transparent;
    opacity: .75;
}
.white-outline:hover{
    opacity: 1;
    background: #fff;
}


.posrel{
    position: relative;
}

@media(max-width:575px){
.btn{
    font-size: .875rem;
}
}





/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header{
    background-color: ;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}
header.sticky{
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    background-color: #fff;
    border-bottom: 0px solid transparent;
}
header.sticky .headmain{
    box-shadow: none;
    margin-top: 0;
    padding-top: 0;
}
header.sticky .headmain .logocol{
    width: 200px;
    padding: 5px 0;
    -webkit-transition: all .3s linear;
}


header.sticky .headmain .menucol{
margin-top: 0px;
}

header .hedtop-full{
    background: #42BEED;
}
header .headtop{
    height: 40px;
    display: flex;
    border-bottom: none;
    background: #287f51;
}
.sticky .headtop{
display: none!important;
height: 0;
}
header .headtop .hedtop1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
header .headtop .topmenu{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-weight: 500;
    align-content: center;
}
header .headtop .topmenu li a{
    color: #fff;
    cursor: pointer;
}
header .headtop .topmenu li a:hover{
    color: #d2fbf4;
}
header .headtop .topmenu li a img{
    width: 20px;
    display: inline-block;
    margin-right: 10px;
}
header .headtop .topmenu .topmenumail{
    padding-right: 10px;
    border-right: 1px solid #ffffff17;
}
header .topmenuli{
    padding-right: 15px;
    border-right: 1px solid #ffffff29;
}

header .headtop .topsocial{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: center;
}
header .headtop .topsocial a{
     width: 30px;
    height: 30px;
    display: flex;
    background:#fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
header .headtop .topsocial a:hover{
    background: #d2ffe7;
     transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
header .headtop .topsocial a img{
    max-height: 17px;
}
header .headtop .jobprtl{
    padding: 10px 15px;
    background: #fff;
    color: #42beed;
}
header .headtop .jobprtl a{
    color: #42BEED;
    font-weight: 400;
}
header .headtop .jobprtl a:hover{
    color: #000080;
}
header.sticky .hedtop-full{
    margin-top: 0px;
    height: 0;
    -webkit-transition: all .3s linear;
}
header.sticky .hedtop-full .jobprtl{
   display: none;
}
header .headmain{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    align-items: center;
    margin-top: 0;
     padding-top: 10px;
}
header .headmain .logocol{
    width: 233px;
   
    display: flex;
    align-items: center;
    z-index: 1;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
}
/* header.sticky .headmain .logocol{
    width: 200px;
    margin-top: 0;
} */
header .headmain .logocol a{
    display: flex;
    width: 100%;
}
header .headmain .logocol a img{
    width: 100%;
}
/* header.sticky .headmain .logocol a img{
    height: 50px;
} */
header .headmain .menucol{
    flex: 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    
}
header .headmain .menucol .mainmenu{
    display: flex;
    align-items: center;
    height: 100%;
}

header .megamenu{
    height: 100%;
    flex: 1 0 auto;
    margin: 0 6px;
}
header .megamenudonate{
    margin: 0;
}
header .normalmenu{
    position: relative;
}
header .megamenu a.mainli{
    display: flex;
    align-items: center;
    font-weight: 400;
    position: relative;
    color: #000000;

}
header .megamenu:hover a.mainli{
    color: #00923f;
}
header .megamenu.active a.mainli{
    color: #00923f;
}
header .megamenu-content {
    display: flex;
    align-items: center;
    position: absolute;
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    right: -15px;
    border: none;
    z-index: 99;
    height: 0;
    padding: 0 15px;
    overflow: hidden;
    box-shadow: 1px 5px 20px 0px #43b1733d;
    line-height: 1.4;
    border-radius: .3rem;
}
header .normalmenu .megamenu-content{
    width: max-content;
    max-width: 463px;
    min-width: 200px;
}
header .megamenu:hover .megamenu-content {
    min-height: 315px;
    height: auto;
    align-items: flex-start;
    padding-top: 15px;
    animation-name: zoomIn;
    animation-duration: .4s;
    animation-iteration-count: 1;
}
header .normalmenu:hover .megamenu-content{
    padding: 0;
    padding-bottom: 5px;
    min-height: auto;
    height: auto;
}
header .normalmenu .normlist{
    display: flex;
    flex-flow: column;
    font-size: .9rem;
    width: 100%;
}

header .normalmenu .normlist li a{
    color: #4f6b78;
    display: flex;
    padding: 8px 10px;
    border-bottom: 1px solid #0000000d;
}
header .normalmenu .normlist li a:hover{
    color: #000050;
}

header .megamenu .megalist li a {
    display: flex;
    gap: 10px;
    padding: 10px 10px;
    color: #000;
}
header .megamenu .megalist li a:hover{
    color: #00923f;
}
header .megamenu .megalist li a img{
    filter: brightness(0);
}
header .megamenu .megalist li a:hover img{
    filter: none;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
    from {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
  }
  @keyframes zoomIn {
    from {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
  }


.sizeUp{font-size:110%!important;}
.sizeNormal{font-size:100%!important;}
.sizeDown{font-size:90%!important;}

.themebtn.active{
    background-color: #2a2a2a !important;
    color: #fff !important;
    border-color: #2a2a2a !important;
}

.bottom-nav{
    border-bottom: none!important;
}
.enquiry{
 display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;   
    margin-left: 10px;
    min-width: 140px;
}
.enquiry img{
    width: 20px;
    display: inline-block;
    margin-right: 10px;
}

@media(max-width:1200px){
header .headmain .menucol .mainmenu{
    gap: 0;
}
header .megamenu{
    margin: 0 6px;
}
header .headmain .logocol{
    width: 200px;
}
}

@media(max-width:991px){
header .headtop{
    height: 36px;

}
header .megamenu button{
    background-color: transparent;
}
header.sticky .headtop{
    margin-top: 0px;
}
header .headmain .menucol{
    max-width: 44px;
}
header .megamenu{
    display: flex;
    align-items: center;
}
header .headmain .logocol{
    width: 190px;
}
header.sticky .headmain .logocol{
    width: 130px;
}
}

@media(max-width:767px){
header .headtop .topmenu{
    display: none;
}
header .headtop{
    justify-content: center;
}
}

@media(max-width:575px){
header .headmain .logocol{
    width: 150px;
}
header .headtop .topsocial{
    display: none;
}
}



/*@media(min-width:992px){
    .sidenav{display: none!important;}
}*/
.sidenav{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 290px;
    height: 100%;
    z-index: 9999;
    background-color: #f9f6ff;
    padding: 15px;
    box-shadow: -20px 0 20px rgb(0 0 0 / 10%);
}
.sidenav .sidehead{
   display: flex;
    justify-content: space-between;
    /* border-bottom: 1px solid #eee; */
    padding-bottom: 10px;
    margin-bottom: 10px;
    background: transparent;
}
.sidenav .sidehead img{
    width: 180px;
}
.sidenav .closebtn{
   width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    color: #fff;
    opacity: 0.5;
    background: linear-gradient(to right, #00923f, #24d972, #00923f, #24d972);
    background-size: 300% 100%;
    overflow: hidden;
    
}
.sidenav .closebtn:hover{
    background-position: 100% 0;
    opacity: 1;
}
.sidenav .sidemenu {
    overflow: auto;
    height: 100%;
}
.sidenav .menu{
    display: flex;
    flex-flow: column;
    gap: 10px;
   
}
.sidenav .menu a{
    display: flex;
    color: black;
    padding: 6px 10px;
    justify-content: space-between;
    align-items: center;
}
.sidenav .menu a:hover{
   color: #287f51; 
}
.sidenav .dropdown-menu.show{
    position:  relative!important;
    transform: none !important;
    border: none;
    background: transparent;
    border-left: none;
    border-radius: 0;
    padding: 0;
    margin-left: 10px !important;
}
.sidenav .dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.location-side{
    margin-top: 20px;
    display: flex;
  }
  .location-side img{
    width: 24px;
  }
  .location-menu{
    color: #24153a;
    font-size: 16px;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 15px;
}
  .location-side p{
    color: #513b71;
    padding-left: 10px;
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 0.875rem;
  }

  .sidenavmail{
    background-color: #287f51;
    margin-top: 20px;
    border-radius: 10px;
    padding: 15px 10px;
  }
  .sidenavmail .topmenu li{
    margin-bottom: 5px;
  }
  .sidenavmail .topmenu li a{
    color: #fff!important;
  }
 
  .sidenavmail .topmenu li a img {
    width: 20px;
    display: inline-block;
    margin-right: 10px;
    
}
.sidenavmail .topsocial{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: center;
    margin-top: 20px;
}
.sidenavmail .topsocial a{
     width: 30px;
    height: 30px;
    display: flex;
    background:#fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.sidenavmail .topsocial a:hover{
    background: #d2ffe7;
     transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.sidenavmail .topsocial a img{
    max-height: 17px;
}




@media(max-width:360px){
    .sidenav{width: 100%;}
}

@media(max-width:767px){
    header .headtop{
        display: none;
    }
}


@media (min-width: 992px) and (max-width: 1199px){
    header .cmpad {
        padding-left: 15px;
        padding-right: 15px;
    }
    header .megamenu {
        margin: 0 4px;
    }
    header .megamenu.active a.mainli{
        font-family: 0.800rem;
    }
    .megamenudonate a{
        min-width: 121px;
        max-width: 121px;
    }
    header .headmain{
        gap: 10px;
    }
    
}


/*---------------------------------------*/
/*:::::::::::::::::SLIDER::::::::::::::::*/
/*---------------------------------------*/
.slider{
    display: flex;
    align-items: center;
    height: auto;
    width: 100%;
   position: relative;
   top: 0;
}

.sliderban{
    position: relative;
    width: 100%;
    height: auto;
    background: #ffffff;
}
.sliderban .mainSwiper{
    height: 100%;
}
.slidermain{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    z-index: 1111;
    padding-top: 110px;
}
.slidecon{
    display: flex;
    flex-direction: column;
    width: 50%;
    position: relative;
    height: 100%;
}
.slidecon h3{
position: relative;
z-index: 1;
}
.slide-img{
    position: relative;
    width: 100%;
    height: 582px;
    object-fit: cover;
    margin-left: auto;
   
}
.slide-img2{
    width: 60%;
}
.slide-img::after{
   content: '';
    position: absolute;
    height: 100%;
    width: 100%;
   background: linear-gradient(90deg, #ffffff 44%, #c9edff00 57%);
    opacity: 70%;
    z-index: 1;
    top: 0;
}
.slide-img2::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #ffffff, #c9edff00 41%);
     opacity: 100%; 
    z-index: 1;
    top: 0;
}
.slide-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin-top: 80px;
    position: relative;
}
.slide-img::before{
   content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background:linear-gradient(180deg, #ffffff 0%, #c9edff00 25%);
    /* opacity: 80%; */
    z-index: 1;
    top: 0;
}
.bnr-ttl{
    font-size: 1.1rem;
}
.slidecon h4{
    opacity: 80%;
}
.slidecon h4 span{
    width: 20px;
    height: 2px;
    background: #287f51;
    margin: 0 8px;
    display: inline-block;
    bottom: 5px;
    position: relative;
    opacity: 80%;
}
.bnr-hed{
    
   font-size: 3rem; 
   z-index: 11;
}

.sldr-butn{
    display: flex;
    gap: 15px;
    flex-direction: row;
    z-index: 11;
}
.slidericon{
   position: absolute;
    bottom: 8%;
    width: 170px;
    left: -19px;
    opacity: 10%;
}
.sliderlove{
  position: relative;
    margin-left: auto;
    right: 18px;
    bottom: -9px;  
}
.animate_pulse{
animation: pulse 5s infinite;
}
@keyframes pulse {
from {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

50% {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

to {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
}

.sliderlove2{
    position: absolute;
    top:0;
    opacity: 10%;
}
.pulsezoom{
animation: pulsezoom 8s infinite;
}
@keyframes pulsezoom {
from {
  -webkit-transform: scale3d(.25, .25, .25);
  transform: scale3d(.25, .25, .25);
}

50% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

to {
  -webkit-transform: scale3d(.25, .25, .25);
  transform: scale3d(.25, .25, .25);
}
}




@media(max-width:1200px){
    .slidecon{
        width: 60%;
    }
}

@media(max-width:768px){
    .slidecon{
        width: 100%;
    }
    .slide-img::after {
        background: linear-gradient(90deg, #ffffff 60%, #c9edff00 100%);
    }
    .slide-img2{
        width: 100%;
    }
    .slide-img2::after{
        opacity: 70%;
    }
}
@media(max-width:575px){
    .bnr-hed{
        font-size: 1.5rem;
    }
    .slide-img{
        height: 300px;
    }
    .sldr-butn a{
        min-width: 100px;
    }

}





/*---------------------------------------*/
/*:::::::::::::::::ABOUT:::::::::::::::::*/
/*---------------------------------------*/
.abt-points{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.abt-points .abtpoints-ttl{
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.abtpoint-img span{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00923f;
    display: flex;
    justify-content: center;
    align-items: center;
}
.abtpoint-img img{
    width: 25px;
    filter: invert(1);
}
.abtpoints-hed{
    font-weight: 700;
    font-size: 1rem;
    color: #01903f;
}
.abt-img{
    position: relative;
}
.abt-img img {
    max-width: 100%;
    width: 450px;
    margin-left: auto;
}

.abt-year{
   position: absolute;
    right: 70px;
    width: 160px;
    height: 160px;
    text-align: center;
    border-radius: 50%;
    z-index: 99;
    top: 0;
    right: 60px;
}
.abtyer-round{
   position: absolute;
    top: 10px;
    left: 10px;
    width: 140px;
    height: 140px;
    text-align: center;
    line-height: 140px;
    background: #fff;
    display: flex;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
}
.abtyer-round:before {
    position: absolute;
    content: '';
    width: 120px;
    height: 120px;
    border: 3px dotted #287f51;
    left: 10px;
    top: 10px;
    border-radius: 50%;
    animation: rotate 12s linear infinite;
}
.abtyer-round h2{
    line-height: 26px;
}
.abtyer-round h2 span{
    font-size: 1.4rem;
    font-weight: 500;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


@media(max-width:991px){
.abt-img{
    margin-top: 35px;
    
}
.abt-img img{
    margin-left: 0;
}
.abt-year {
    right: 0;
    left: 217px;
}
}
@media(max-width:450px){
    .abt-year{
        left: auto;
        right: 0;
     }
     .abtyer-round{
        width: 100px;
        height: 100px;
     }
     .abtyer-round:before {
         width: 80px;
         height: 80px;
     }
}
/*--------------------------------------------------------*/
/*:::::::::::::::::SERVICES:::::::::::::::::*/
/*--------------------------------------------------------*/
.serviceshed-full{
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}
.serviceshed-full p{
    width: 60%;
}
.iconcard{
  position: relative;
  display: flex;
  flex-direction: column;
 justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: 20px;
  padding-bottom: 10px;
  border-radius: 8px;
  background-color: #fff;
  height: 100%;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.iconcard:hover {
    box-shadow: 0 0 0 2px #00923f2e;
}
.iconcard .icon{
  width: 44px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  margin-top: -30px;
  background-color: #00923f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
 transition: all .3s ease;
    -webkit-transition: all .3s ease;
  box-shadow: 3px 4px 20px #00923f2e;
}
.iconcard:hover .icon{
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.iconcard .icon img{
  height: auto;
  filter: brightness(0) invert(1) opacity(.75);
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.iconcard .head{
  color: #000;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.iconcard:hover .head{
  color: #00923f;
}
.iconcard .desc{
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.serviceslide .serviceSwiper{
    padding-top: 20px;
    padding-bottom: 20px;
}


@media(max-width:768px){
    .serviceshed-full {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .serviceshed-full p{
        width: 100%;
        margin-bottom: 0px;
    }
}

/*---------------------------------------*/
/*:::::::::::::::::donation:::::::::::::::::*/
/*---------------------------------------*/
.donation{
    display: flex;
    position: relative;
}
.donate-hed{
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    background: url(../img/slider/slider1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 25px;
}
.donate-hed::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #c9edff 12%, #287f51db);
    top: 0;
    left: 0;
    border-radius: 15px;
}
.donate-hed h2,
.donate-hed p{
    z-index: 1;
    position: relative;
}
.donate-hed p{
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
}
.donationimg{
    position: relative;
}
.donationimg img{
border-radius: 15px;
height: 350px;
object-fit: cover;
position: relative;
}
.donationqr{
position: absolute;
    top: 0;
    height: 100%;
    display: flex
;
    justify-content: center;
    width: 100%;
    align-items: center;

}
.qr{
  border-radius: 15px !important;
    width: 230px;
    height: auto !important;
    object-fit: cover !important;
    background: #fff;
    padding: 10px;
}

@media(max-width:991px){
    .donationimg img{
        height: auto;
        margin-top: 15px;
    }
}
/*---------------------------------------*/
/*::::::::::::::news:::::::::::::::*/
/*---------------------------------------*/
.imgcard{
  display: flex;
  flex-flow: column;
  position: relative;
  padding-bottom: 10px;
  height: 100%;
  background: #fff;
  cursor: pointer;
}
.imgcard .stretched-link::after{
z-index: 1111;
}
.imgcard .imgbox{
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.imgcard .imgbox img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: auto;
  position: relative;
  z-index: 1;
   transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.imgcard .imgbox:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, #c9edffa3 12%, #287f51ba);
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    z-index: 11;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.imgcard:hover .imgbox:before {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.imgcard .imgcont{
    padding: 10px;
    position: relative;
    z-index: 111;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    background: #fff;
}
.imgcard:hover .imgcont{
    margin-top: -15px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.imgcard .imgcont .head{
  font-weight: 500;
  color: #000;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
  margin-bottom: 5px;
}



.imgcard .imgcont .newsdd{
   
   display: flex;
    color: #00923f;
    margin-top: -30px;
    margin-bottom: 10px;
    

}
.imgcard .imgcont .newsdd .date{
   background: #fff;
   padding: 8px;
   border-radius: 8px;
    box-shadow: 2px 1px 20px #00000026;

}
.imgcard .imgcont .newsdd .dd{
    font-size: 1rem;
}
.imgcard .imgcont .newsdd .mmyy{
    font-size: 0.875rem;
}


.newsslide .newsSwiper{
padding-bottom: 20px;
}


/*---------------------------------------*/
/*::::::::::::::TESTIMONIALS:::::::::::::::*/
/*---------------------------------------*/
.tetimonialslide{
    height: 100%;
}
.tetimonialslide .testimonialsSwiper{
padding-top: 30px;
padding-bottom: 20px;
height: 100%;
}
.testmonial-card{
  position: relative;
  display: flex;
  flex-direction: column;
 justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 1px 1px 20px 2px #00000014;
    background: #f1fff7;
  height: 100%;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.testmonial-card:hover {
    box-shadow: 1px 1px 20px 2px #00000014;
    background: #f1fff7;
}
.testmonial-card .profile{
   width: 50px;
  width: 110px; 
  height: 110px;
  margin-top: -35px;
  position: relative;
}
.testmonial-card .profile img {
    border-radius: 50%;
    height: 100%;
    object-fit:cover;
}

.testmonial-card .profile:before {
    position: absolute;
    content: '';
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #287f51;
    border-radius: 50%;
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
}

.testmonial-card .profile:after {
    position: absolute;
    content: '';
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #287f51;
    border-radius: 50%;
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
    opacity: 1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.testmonial-card:hover .profile:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 1;
}
.testmonial-card .cardcont{
    margin-top: 25px;
}
.testmonial-card .desc{
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.navibtn{
    display: flex;
    justify-content: center;
    display: flex;
    position: relative;
    top:15px;
    right: 0;
    gap: 8px;
}
.navibtn .slidebtn {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    background: linear-gradient(to right, #00923f, #24d972, #00923f, #24d972);
    background-size: 300% 100%;
    margin: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all .3s ease;
     -webkit-transition: all .3s ease;
}
.navibtn .slidebtn:hover {
   background-position: 100% 0;
    transition: all .3s ease;
     -webkit-transition: all .3s ease;
}
.navibtn .slidebtn:hover:after {
    color: #fff;
   transition: all .3s ease;
     -webkit-transition: all .3s ease; 
}
.navibtn .slidebtn:after {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    transition: all .3s ease;
     -webkit-transition: all .3s ease;
}

/*---------------------------------------*/
/*::::::::::::::::::GALLERY::::::::::::::*/
/*---------------------------------------*/

.galbox{
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    transition: var(--trans30);
    -webkit-transition: var(--trans30);
    border: 1px solid #eee;
    cursor: zoom-in;
    height: 190px;
  }
  .galbox .galimg{
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    width: 100%;
  }
  .galbox .galimg .coverimg{
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
  }
  .galbox:hover .galimg .coverimg{
    filter: brightness(0.5);
  }
 .galbox .galimg .galicon {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin: auto;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.galbox:hover .galimg .galicon{
    opacity: 1;
    -webkit-transition: all 0.5s ease;
}
.galbox .galimg .galicon img{
   width: 44px;
    height: 44px;
    padding: 9px; 
    background-color: rgb(0 0 0 / 20%);
    border-radius: 50%;
}
.galbox:hover .galimg .galicon img{
background: rgb(0 145 63 / 65%);
}
.galbox .galcont {
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background:#00913f9e;
    display: flex;
    align-items: flex-end;
    color: #fff;
    backdrop-filter: blur(2px);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
}
  .galbox:hover .galcont{
    opacity: 1;
  }
  .galbox .galcont span{
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: var(--font14);
  }

.galvideo{
    height: 220px;
}
.galeryfrst{
    display: flex;
    gap: 10px;
    flex-direction: column;
}

/*---------------------------------------*/
/*::::::::::::::::::intervention::::::::::::::*/
/*---------------------------------------*/
.intercard{
  position: relative;
  display: flex;
  flex-direction: column;
 justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  height: 100%;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.intercard:hover {
    box-shadow: 1px 1px 20px 2px #00000014;
    background: #f1fff7;
}
.intercard .icon{
  width: 50px;
    height: 50px;
    margin-top: -35px;
    position: relative;
    background: #00923f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}


.intercard .icon:before {
    position: absolute;
    content: '';
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #287f51;
    border-radius: 50%;
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
}

.intercard .icon:after {
    position: absolute;
    content: '';
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #287f51;
    border-radius: 50%;
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
    opacity: 0;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.intercard:hover .icon:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 1;
}
.intercard .cardcont{
    margin-top: 15px;
}
.intercard .desc{
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.intercard .desc span{
    color: #000;
}
.intercard .head {
    font-weight: 700;
    font-size: 1rem;
    color: #01903f;
    margin-bottom: 10px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

/*---------------------------------------*/
/*::::::::::::::::::FOOTER::::::::::::::*/
/*---------------------------------------*/
footer{
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-top: 1px solid #00923f1f; 
    margin-top: 40px;
}
.ft-full{
background: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 20px;
    position: relative;
    box-shadow: 0px -2px 20px 0px #43b17324;
    margin-top: -40px;
}
.ftlogo{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}
.ftlogo a img{
width: 210px;
}
.ftlogo p{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}
.ftlinks ul li a{
    font-size: 0.875rem;
    color: #545456;
}
.ftlinks ul li a:hover{
    color: #000;
}
.ftlinksfull{
   position: relative;
    z-index: 1;
}
.menuhed{
    color: #01903f;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}
.ft-social{
    display: flex;
    flex-direction: row;
    gap: 11px;
}

.ft-social a span{
     width: 30px;
    height: 30px;
    display: flex;
    background:#d2ebde;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.ft-social a:hover span{
    background:#a2cdb6;
}
.ft-social a span img{
    max-height: 17px;
    width: 17px;
}
.ft-copy-full{
    background: #009340b8;
    backdrop-filter: blur(2px);
    padding: 10px 0;
    z-index: 1;
    position: relative;
}
.ftcopy{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.ftcopy p,
.ftcopy a{
    color: #fff;
}
.ft-con{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
 
}
.ftlogo p a{
   color: #545456;    
}




@media(max-width:575px){
    .ftlinksfull{
        display: none;
    } 
    .ftcopy{

        flex-direction: column;
    }
}



@media(max-width:1024px){
    .tetimonialslide{
    height: auto;
}
.tetimonialslide .testimonialsSwiper{
height:auto;
}
}

.careersbx{
    display:flex!important;
    gap: 10px;
    align-items: flex-start;
}




/*modal*/
.close{
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: none!important;
    outline: none;
    color: #220f3c;
}
.modal-dialog{
    max-width: 1000px !important;
}
.modal-header{
    border-bottom: none !important;
    padding: 0;
}
.modal-content, .modal{
    height: 100% !important;
    padding: .5rem;
}
.i-flex{
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #cec0a8;
    padding: 10px;
}
.sign{
    display: none;
}
.loginimg{
    border-radius: 15px;
}
.modal-sucess{
    width: 300px;
    height: auto!important;
    background: #fff!important;
    text-align: center;
}

#successModal .modal-dialog{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sucessimg{
    width: 65px;
    margin: auto;
}



.paycard{
}
.paycard ul{
  display: flex;
  flex-flow: wrap;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
}
.paycard ul li{
  flex: 1 0 20%;
    padding: 0 10px;
    text-align: center;
    display: flex
;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.paycard ul li img{
    height: 45px;
}
.paycard ul li p{
    padding: 0!important;
}
