* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body a {
    text-decoration: none;
}
body li {
    list-style: none;
}
body p{
    margin-bottom: 0%;
}
body h1,h2,h3,h4,h5 {
    font-family: "Fredoka", sans-serif;
    font-weight: 700;
}
:root {
    --primary: #07a258;
    --secondary: #c7a34a;
    --third: #333;
    --white: white;
    --gray: gray;
    --lightgray: lightgray;
    --black: #333;
    --red: red;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center-column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.grid {
    width: 90%;
    margin: auto;
}
.gap {
    margin-top: 4%;
}
.color {
    color: var(--primary);
}
.common{
    height:160px;
    background: repeating-conic-gradient(#333 0deg 19deg ,#111 19deg 38deg);
    background-size: 15px 15px;
    color:var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 90% 100%, 89% 90%, 11% 90%, 10% 100%, 0 100%);
    display: flex;
    align-items: center;
    flex-direction: column;
}
.common a{
    color:var(--white);
}
.common h4{
    margin-bottom: 1%;
}
.whatsapp,.pulse {
    background: #1ab744;
    position: fixed;
    right:2%;
    bottom:10%;
    font-size: 30px;
    text-align: center;
    z-index: 99;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--white);
}
.pulse:nth-child(1) {
    animation: pulse 2s infinite
}
.pulse:nth-child(2) {
    animation: pulse 2s infinite .3s
}
.pulse:nth-child(3) {
    animation: pulse 2s infinite .6s
}
@keyframes pulse {
0% {
    transform: scale(.1);
    opacity: 0;
}
50% {
    opacity: .3;
}
100% {
    transform: scale(1.6);
    opacity: 0;
}
}
.arrow-up{
    display: none;
    position: absolute;
    border: 2px solid var(--primary);
    height:35px;
    width:35px;
    background-color: var(--white);
    border-radius: 50%;
    color:var(--primary);
    bottom:3%;
    right:2.4%;
    position: fixed;
    z-index: 99;
    animation: popup 0.4s linear forwards;
}
@keyframes popup{
  from {
    transform: translateY(50%);
  }
  to {
    transform: translateY(-5%);
  }
}

/* navbar part  */
.first{
    background-color: #4ab481;
    color:var(--white);
    padding-block: 2px;
    display: flex;
    justify-content: center;
}
.first-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.first-grid{
    display: flex;
    gap:30px;
    font-size: 14px;
}
.first-grid a{
    color:var(--white);
}
.first-icon{
    height:28px!important;
    width:28px!important;
    border: 2px solid var(--white);
    border-radius: 50%;
    color:var(--white);
    padding-top: 5px;
    margin-right: 5px;
}
.year{
    font-size: 14px;
}
.second-grid{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 5px;
    gap:30px;
}
.second-left{
    display: flex;
    align-items: center;
    gap:25px;
    padding-right: 25px;
}
.second-left h1{
    margin-bottom: 0%;
    font-size: 27px;
    font-weight: 700;
}
.logo{
    height:85px;
    width:85px;
    object-fit: contain;
}
.second-right{
    display: flex;
    gap:15px;
    padding-left: 15px;
}
.second-btn-one{
    height:40px;
    width:40px;
    color:var(--white);
    border-radius: 50%;
    text-align: center;
    padding-top: 8px;
}
.facebook{
    background-color: #3b5998;
}
.twitter{
    background-color: #000;
}
.instagram{
    background: radial-gradient(circle at 30% 107%, 
#fdf497 0%, 
#fdf497 5%, 
#fd5949 45%, 
#d6249f 60%, 
#889bd3 90%);
}
.youtube{
    background-color: red;
}
nav{
    background-color: var(--primary);
}
.nav-item{
    margin-left: 50px;
}
.nav-item:first-child{
    margin-left: 0px;
}
.nav-link{
    font-size: 13.5px!important;
    color:var(--white)!important;
}
.dropdown-menu{
    border-radius: 0%!important;
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.5s;
}
.dropdown:hover .dropdown-menu{
    transform: translateY(5px);
    opacity: 1;
}
.dropdown-item:focus{
    background-color: var(--white)!important;
    color:var(--black)!important;
}
.offcanvas-body{
    display: flex;
    align-items: center;
}
.mobile-show{
    display: none;
}

/* index page  */
.header-1{
    background: linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.0)),url('images/23.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:590px;
}
.header-2{
    background: linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.0)),url('images/22.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:590px;
}
.header-3{
    background: linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.0)),url('images/24.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:590px;
}
.carousel-indicators{
    margin-bottom: 30px!important;
}
.carousel-indicators button{
    height:15px!important;
    width:15px!important;
    border:2px solid var(--primary)!important;
    border-radius: 50%!important;
}
.color{
    color: var(--primary);
}
.line-height{
    display: flex;
    align-items: end;
    gap:5px;
    font-size: 18px;
}
.line{
    height:2px;
    width:40px;
    background-color: var(--primary);
}
.title-heading{
    font-weight: 600;
    margin-top: 1%;
}
.mission-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    height:300px;
}
.mission-image{
    background: url('images/2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:100%;
    width:100%;
}
.mission-content{
    padding-inline: 10px;
    background-color: var(--primary);
    color:var(--white);
}
.mission-content h4{
    position: relative;
    margin-bottom: 8%;
}
.mission-content h4:before{
    position: absolute;
    content: "";
    height:2px;
    width:50px;
    background-color: antiquewhite;
    bottom:-7px;
    left: 0;
    z-index: 100;
}
.vision-image{
    background: url('images/12.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:100%;
    width:100%;
}
.work-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:15px;
}
.work{
    background:linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.9)),url('images/2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:270px;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    color:var(--white);
    padding-bottom:20px;
    border-radius: 5px;
}
.workBg-one{
    background:linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.9)),url('images/6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.workBg-two{
    background:linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.9)),url('images/4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.workBg-three{
    background:linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.9)),url('images/5.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.dot{
    position: relative;
    height:10px;
    width:10px;
    background-color: var(--white);
    border-radius: 50%;
    margin-top: 3%;
    margin-bottom: 5%;
}
.dot::before{
    position: absolute;
    content: "";
    height: 4px;
    width:70px;
    background-color:var(--white);
    clip-path: polygon(0 49%, 100% 94%, 100% 6%);
    left:-75px;
    top:3px;
    border-radius:50px;
}
.dot::after{
    position: absolute;
    content: "";
    height: 4px;
    width:70px;
    background-color:var(--white);
    clip-path: polygon(100% 49%, 0% 94%, 0 6%);
    left:15px;
    top:3px;
    border-radius:50px;
}
.read-more{
    padding:9px 25px;
    border:1.5px solid var(--white);
    color:var(--white);
    border-radius: 3px;
    transition: 0.3s;
}
.read-more:hover{
    background-color: var(--white);
    color:var(--black);
}
.counter-box{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    gap:20px;
    padding-inline: 15px;
    padding-block: 30px;
}
.counter-grid{
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    gap:20px;
}
.counter-left{
    display: flex;
    align-items: center;
}
.counter-icon{
    font-size: 35px;
    color: var(--primary);
}
.counter-text h6{
    margin-bottom: 0%;
}
.social-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
}
.social{
    height:130px;
    background-color: #25D366;
    color:var(--white);
    border-radius: 5px;
}
.social h5{
    margin-bottom: 0%;
    margin-top: 2%;
}
.social-icon{
    font-size: 40px;
    color:var(--white)!important;
    margin-bottom: 25%;
}
.social-one{
    background-color: #3b5998;
}
.social-two{
    background-color: hotpink;
}
.social-three{
    background-color: var(--red);
}
.social-five{
    background-color: var(--black);
}
.social-four{
    background-color: #0072b1;
}
.social-six{
    background-color: darkred;
}
.social-seven{
    background-color: #0088cc;
}
.testimonial-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:25px;
}
.testimonial-center{
    gap:25px;
    padding-inline: 10px;
}
.testimonial-center h6{
    color:var(--primary);
}
.fa-quote-right{
    font-size: 40px;
}

/* footer part start  */
footer{
    background: repeating-conic-gradient(#000 0deg 45deg ,#111 45deg 90deg);
    background-size: 15px 15px;
    color: var(--white);
    margin-top: 2%;
    padding-top: 80px;
    padding-bottom: 20px;
    clip-path: polygon(12% 10%, 88% 10%, 90% 0, 100% 0, 100% 100%, 0 100%, 0 0, 10% 0);
}
footer a{
    color:var(--white);
}
footer h4{
    font-size: 21px;
    margin-bottom: 7%;
}
.footer-grid{
    display: grid;
    grid-template-columns: 1fr 0.7fr 0.7fr 1fr;
    gap:35px;
}
.footer-icon{
    height: 37px!important;
    width:37px!important;
    border:2px solid var(--lightgray);
    border-radius: 50%;
    padding-top: 8px;
}
.footer-one{
    border-bottom: 1px dotted var(--white);
    padding-block: 10px;
}
.footer-one:last-child{
    border-bottom: none;
}
.footer-two{
    padding-block: 7px;
    border-bottom: 1px dotted var(--white);
}

/* about page start  */
.team-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}
.board{
    padding-bottom: 20px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.board-box{
    height: 250px;
    width:100%;
    overflow: hidden!important;
    margin-bottom: 5%;
}
.board-image{
    height:100%;
    width:100%;
    object-fit: cover;
    transition: .7s;
}
.board-box:hover .board-image{
    transform: scale(1.1);
}
.president-grid{
    width:75%;
    margin: auto;
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap:50px;
    margin-top: 5%;
}
.president-image{
    height:100%;
    width:100%;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* member page  */
.grid-member{
    width:40%;
    margin: auto;
    margin-top: 4%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-block: 30px;
    padding-inline: 15px;
}
.input-group,.input-group-text,.form-control{
    border-radius: 0%!important;
    height:44px;
}
.form-control:focus{
    border:1px solid var(--lightgray)!important;
    outline: none!important;
    box-shadow: none!important;
}
.submit-btn{
    background-color: var(--primary)!important;
    height:45px!important;
    color:var(--white)!important;
}
.member-card{
    height:100%;
    width:100%;
    background-color: var(--lightgray);
    text-align: center;
    padding-block: 10px;
    padding-inline: 10px;
    border-radius: 5px;
}
.member-card p{
    margin-bottom: 0%;
}
.member-logo{
    height:60px;
    width:60px;
    margin-bottom: 5%;
}
.member-person{
    height:120px;
    width:120px;
    border-radius: 50%;
    background-color: var(--black);
    object-fit: contain;
    margin-top: 5%;
    margin-bottom: 6%;
}
.memebr-date{
    margin-top: 4%;
    font-size: 15px;
    font-weight: 500;
}


/* media page start  */
.media-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:25px;
}
.media-image{
    height:200px;
    width:100%;
    object-fit: cover;
}
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}
.modal img {
    max-width: 90%;
    max-height: 90%;
}

/* contact part  */
.contact-grid{
    width:75%;
    margin: auto;
    margin-top: 4%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
}
.contact-left{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:10px;
}
.contact-icon{
    height: 37px!important;
    width:37px!important;
    border:2px solid var(--black);
    color:var(--black);
    border-radius: 50%;
    padding-top: 8px;
}
.contact-icon:hover{
    background-color: var(--black);
    color:var(--white);
}
.map{
    height:400px;
    width:100%;
}

/* donate page start  */
.donate-grid{
    width:70%;
    margin:auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
    margin-top: 4%;
}
.donate-left{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-inline: 10px;
    padding-block: 20px;
}
.donate-left h4{
    margin-bottom: 4%;
}

/* responsive part start  */
@media (max-width:1024px){
.second-left{
    gap:2px;
}
.second-left h1{
    font-size: 20px;
}
.second-right{
    gap:10px;
}
.nav-item{
    margin-left: 20px;
}
.nav-link{
    font-size: 11.5px!important;
}
.header-1,.header-2,.header-3{
    height:500px;
}
.mission-grid{
    height:250px;
}
.mission-content h4{
    font-size: 20px;
}
.mission-content p{
    font-size: 15px;
}
.work{
    height:240px;
    text-align: center;
}
.counter-box{
    gap:10px;
}
.counter-grid{
    grid-template-columns: 0.2fr 1fr;
    gap:10px;
}
.counter-icon{
    font-size: 25px;
}
.social-grid{
    gap:10px;
}
.president-grid{
    width:88%;
}
.team-grid{
    gap:15px;
}
.board-box{
    height: 200px;
}
}

@media (max-width:768px){
.br{
    display: none;
}
.second-grid{
    display: block;
}
.second-left h1{
    font-size: 25px;
    font-weight: 600;
}
.second-right{
    display: none;
}
.mob-logo{
    height:80px;
    width:80px;
    object-fit: cover;
}
.btn-close{
    height:15px!important;
    width:15px!important;
    border: 2px solid var(--black)!important;
    border-radius: 5px!important;
}
.navbar-toggler{
    border-radius: 0%!important;
    background-color: var(--white)!important;
}
.navbar-toggler:focus{
    box-shadow: none!important;
    outline: none!important;
}
.nav-item{
    margin-left: 0px!important;
}
.nav-link{
    font-size: 14px!important;
    font-weight: 500!important;
    color:var(--black)!important;
}
.offcanvas-body{
    align-items: start;
}
.mobile-show{
    display: block;
}
.mob-icon-size{
    font-size: 16px!important;
    font-weight: 500!important;
}
.mob-icon{
    height:33px!important;
    width:33px!important;
    border:2px solid var(--black);
    border-radius: 5px;
    padding-top: 6px;
}
.offcanvas-header{
    border-bottom: 1px solid var(--lightgray);
}
.mission-grid{
    grid-template-columns: repeat(2,1fr);
    height:100%;
    row-gap:15px;
}
.mission-content{
    padding-block: 30px;
}
.mission-content p{
    font-size: 16px;
}
.mission-content h4{
    font-size: 25px;
}
.order1{
    order: 2;
}
.work-grid{
    grid-template-columns: repeat(2,1fr);
}
.counter-box{
    grid-template-columns: repeat(2,1fr);
    row-gap: 30px;
}
.counter-grid{
    grid-template-columns: 0.3fr 1fr;
    gap:2px;
}
.counter-icon{
    font-size: 40px;
}
.social-grid, .testimonial-grid{
    grid-template-columns: repeat(2, 1fr);
}
footer{
    padding-top: 70px;
    clip-path: polygon(10% 5%, 90% 5%, 94% 0, 100% 0, 100% 100%, 0 100%, 0 0, 6% 0);
}
.footer-grid{
    grid-template-columns: 1fr 1fr;
}
.footer-two{
    padding-block: 10px;
}
.common h4{
    margin-bottom: 2%;
}
.grid-member{
    width:60%;
}
.president-grid{
    grid-template-columns: 1fr;
}
.pre-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.president-image{
    height:350px;
    width:350px;
}
.team-grid{
    grid-template-columns: repeat(2,1fr);
    gap:30px;
}
.board-box{
    height: 280px;
}
.media-grid{
    grid-template-columns: 1fr 1fr 1fr;
}
.contact-grid{
    width:88%;
}
.map{
    height:300px;
}
.donate-grid{
    width:88%;
}
}

@media (max-width:425px){
.first{
    display: none;
}
.second-grid{
    display: block;
    padding-block: 4px;
}
.second-left{
    flex-direction: column;
    gap:15px;
    padding-right: 0px;
}
.second-left h1{
    font-size: 25px;
    text-align: center;
}
.offcanvas-end{
    width:70%!important;
}
.header-1,.header-2,.header-3{
    height:270px;
}
.order2{
    order: 2;
}
.gap{
    margin-top: 8%;
}
.mission-grid{
    display: grid;
    grid-template-columns: 1fr;
}
.mission-image,.vision-image{
    height: 240px;
}
.work-grid,.counter-box, .testimonial-grid{
    grid-template-columns: 1fr;
}
.counter-text{
    text-align: right;
}
.social-icon{
    font-size: 30px;
}
.social{
    height:100px;
}
footer{
    clip-path: polygon(12% 3%, 88% 3%, 90% 0, 100% 0, 100% 100%, 0 100%, 0 0, 10% 0);
}
.footer-grid{
    grid-template-columns: 1fr;
}
.president-image{
    height:100%;
    width:100%;
}
.media-grid{
    grid-template-columns: 1fr;
}
.common h4{
    margin-bottom: 3%;
}
.grid-member{
    width:88%;
}
.contact-grid{
    width:88%;
    margin-top: 5%;
    grid-template-columns: 1fr;
    gap:50px;
}
.map{
    height:250px;
}
.donate-grid{
    width:88%;
    grid-template-columns: 1fr;
}
}

@media (max-width:375px){
.header-1,.header-2,.header-3{
    height:250px;
}
}