* {
    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 h1,h2,h3,h4,h5,h6,p{
    margin-bottom: 0!important;
}
body h1,h2,h3,h4,h5 {
    font-family: "Momo Trust Display", sans-serif!important;
    font-weight: 700;
}
:root {
    --primary: #84ab82;
    --secondary: #f3b74e;
    --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:150px;
    background: repeating-conic-gradient(#333 0deg 19deg ,#111 19deg 38deg);
    background-size: 10px 10px;
    color:var(--white);
    display: flex;
    align-items: center;
}
.common a{
    color:var(--white);
}
.common h4{
    margin-bottom: 1%!important;
}
.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: var(--black);
    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{
    display: flex;
    height:92px;
    align-items: center;
    gap:15px;
}
nav{
    background-color: var(--black);
}
.logo {
    height: 80px;
}
.nav-link {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color:var(--white)!important;
}
.nav-link:hover{
    color:var(--lightgray)!important;
}
.nav-item {
    padding-right: 70px;
}
.nav-item:nth-child(7) {
    padding-right: 0px;
}
.dropdown{
    transition: 3s!important;
}
.dropdown-menu{
    border-radius: 0%!important;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: .5s!important;
}
.dropdown:hover .dropdown-menu{
    transform: translateY(7px);
    opacity: 1;
    visibility: visible;
}
.dropdown-item{
    font-size: 15px;
}
.dropdown-item:hover{
    background-color: transparent!important;
}
.act{
    color:var(--secondary)!important;
}
.txt{
    margin-bottom: 0%;
    font-size: 32px;
    font-weight: 600;
    width: 0ch;
    overflow: hidden;
    white-space: nowrap;
    animation: walking 10s linear infinite;
}
@keyframes walking {
    0%{
        width: 0ch;
    }
    100%{
        width: 47ch;
    }
}
.mobile-show{
    display: none;
}

/* index page  */
header{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height:600px;
}
.headerOne{
    padding-left: 100px;
    padding-right: 70px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:25px;
}
.headerOne h1{
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}
.headerOne p{
    margin-bottom: 3%!important;
}
.headerOne h6{
    letter-spacing: 0.3px;
    color:var(--secondary);
    font-size: 17px;
}
.headerImage{
    height:600px;
    width:100%;
    object-fit: cover;
}
.btn-one{
    padding:11px 27px;
    background-color: var(--primary);
    color:var(--white);
    border-radius: 2px;
    background-image: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, .23) 0, transparent 86.18%), 
    radial-gradient(66% 66% at 26% 20%, rgba(255, 255, 255, .75) 0, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%);
}
.counter{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background-color: var(--primary);
    height:180px;
    color:var(--white);
    border-radius: 3px;
}
.border-right{
    border-right: 1px solid #999;
}
.counter-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 30px;
}
.counter-text h2{
    font-size: 35px;
    margin-bottom: 10%;
}
.counter-icon{
    height:35px;
    width:35px;
    background-color: var(--white);
    color: var(--black);
    padding:20px;
    border-radius: 50%;
    transition: 0.5s;
}
.counter-icon:hover{
    background-color: var(--secondary);
    color: var(--white);
}
.about-grid{
    width:70%;
    margin: auto;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap:50px;
    margin-top: 5%;
    height:100%;
}
.img-one{
    height: 400px;
    width:100%;
    object-fit: cover;
    border-radius: 5px;
}
.about-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:25px;
}
.about-right h2{
    font-size: 45px;
    font-weight: 600;
}
.author{
    display: grid;
    grid-template-columns: 0.2fr 1fr;
    gap:1px;
}
.about-image{
    height:80px;
    width:70px;
    border:1px solid var(--lightgray);
    object-fit: cover;
    border-radius: 3px;
}
.author-content{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.color{
    color:var(--primary);
}
.aim{
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.bright{
    border-right: 1px dotted var(--primary);
}
.mission{
    gap:25px;
    padding-inline: 25px;
}
.missionIcon{
    height: 100px;
    width: 100px;
    background-color: var(--white);
    border-bottom: 10px solid var(--primary);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    font-size: 40px!important;
    border-radius: 50%;
}
.title{
    font-size: 40px;
    font-weight: 600;
}
.help-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}
.work-box{
    padding-inline: 10px;
    display: flex;
    gap:15px;
}
.work-image-one{
    background:linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)),url('images/z8.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:280px;
}
.work-image-two{
    background:linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)),url('images/z12.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:280px;
}
.work-image-three{
    background:linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)),url('images/z6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:280px;
}
.work-image-four{
    background:linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)),url('images/z18.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:280px;
}
.work-icon{
    height:70px;
    width:70px;
    background-color: var(--lightgray);
    font-size: 30px;
    border-radius: 50%;
}
.test-header{
    display: flex;
    gap:13px;
    margin-bottom: 3%;
}
.item{
    padding-inline: 10px;
    padding-block: 20px;
    margin-top: 3%;
    margin-bottom: 3%;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.test-header h5{
    font-size: 19px;
}
.test-header h6{
    color:var(--gray);
}
.testimonial_img{
    height: 55px !important;
    width: 55px!important;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white)!important;
}
.fa-star{
    color:var(--secondary);
}
.owl-dot span{
    height:20px!important;
    width:20px!important;
}
.owl-dot.active span{
    background-color: var(--lightgray)!important;
    height:20px!important;
    width:20px!important;
    border:3px solid var(--primary);
    padding:7px;
}
.test_info{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* about page start  */
.aboutPage-image{
    height:100%;
    width:100%;
    object-fit: cover;
}
.president-grid{
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    width:70%;
    margin: auto;
    gap:10px;
    margin-top: 5%;
}
.president-image{
    height: 450px;
    width:350px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

/* contact us page start  */
.contact-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:50px;
}
.contact-box{
    display: flex;
    gap:15px;
    padding-inline: 10px;
    padding-block: 30px;
    transition: .5s;
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
.contact-box:hover{
    background-color: var(--primary);
    color:var(--white);
}
.contact-box:hover .contact-icon{
    border: 2px solid var(--white);
}
.contact-flex{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:7px;
}
.contact-icon{
    height:60px!important;
    width:60px!important;
    font-size: 25px;
    border: 2px solid var(--black);
    padding-top: 15px;
    border-radius: 50%;
}
.map{
    height:400px;
    width:100%;
    border-radius: 5px;
}

/* media part start  */
.media-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:25px;
}
.media-image{
    height:100%;
    width:100%;
    object-fit: cover;
}
.modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}
#full-img {
    max-width: 90%;
    max-height: 90%;
}

/* get involved page start  */
.member-grid{
    width:40%;
    margin: auto;
    margin-top: 5%;
    padding-block: 20px;
    padding-inline: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.form-group{
    margin-top: 2%;
}
.form-control{
    margin-top: 1%;
    border-radius: 0%!important;
}
.form-control:focus{
    outline: none!important;
    box-shadow: none!important;
    border-color: var(--lightgray)!important;
}
.form-btn{
    background-color: var(--primary)!important;
    color:var(--white)!important;
}

/* donate page start  */
.donation-flex{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width:60%;
    margin: auto;
    gap:50px;
    margin-top: 5%;
}
.donate-grid{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height:250px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-inline: 20px;
}
.qr{
    height:520px;
    width:100%;
    object-fit: contain;
}

/*footer part */
footer{
    background: repeating-conic-gradient(#333 0deg 9deg ,#111 9deg 18deg);
    background-size: 10px 10px;
    color: var(--white);
    padding-top: 30px;
    padding-bottom: 20px;
    margin-top: 3%;
}
.footer-grid{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:100px;
}
.footer-left p{
    margin-bottom: 0%;
}
.footer-left h5{
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 2%!important;
}
.subscribe{
    height:40px;
    padding-left: 20px;
    padding-right: 3px;
    background-color: var(--white);
    border-radius: 50px;
    padding-top: 2px;
}
.subscribe input{
    height:35px;
    border: none;
    outline: none;
}
.fa-paper-plane{
    background-color: var(--primary);
    height:35px!important;
    width:70px!important;
    border-radius: 32px;
    padding-top: 9px;
    cursor: pointer;
}
.footer-grid-one{
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap:20px;
    margin-top: 2%;
}
.footer-grid-one h5{
    margin-bottom: 6%!important;
    font-weight: 500;
}
.footer-grid-one a{
    color: var(--white);
}
.footer-one, .footer-two{
    border-bottom:1px dotted var(--white);
    padding-block: 10px;
}
.footer-grid-three{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
}
.footer-icon{
    height: 33px!important;
    width:33px!important;
    border:2px solid var(--lightgray);
    border-radius: 50%;
    padding-top: 6px;
}
.footer-bottom{
    background-color: var(--primary);
    padding-block: 10px;
}
.footer-bottom p{
    margin-bottom: 0%;
}

/* admin area part start  */
.login{
    height:100vh;
}
.login-form{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width:40%;
    margin: auto;
    padding-block: 30px;
    padding-inline: 25px;
}
.dashboard{
    height:8vh;
    background-color: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    padding-inline: 20px;
    border-bottom: 1px solid var(--lightgray);
}
.admin{
    display: grid;
    grid-template-columns: 0.2fr 1fr;
    height: 92vh;
}
.admin-left{
    background-color: var(--black);
}
.admin-box{
    background-color: var(--white);
    padding-block: 7px;
    text-align: center;
    width: 90%;
    margin: auto;
    margin-top: 5%;
}
.admin-box a{
    color:var(--black);
}
.adminContact-grid{
    width:40%;
    margin: auto;
    margin-top: 5%;
}
.admin-form{
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding-inline: 25px;
    padding-top: 15px;
    padding-bottom: 25px;
}
.fa-trash-can{
    color:var(--red);
}

/* responsive part start  */
@media (max-width:1024px){
    .clip{
        overflow-x: clip!important;
    }
    .second h1{
        font-size: 22px;
    }
    .nav-item{
        padding-right: 40px;
    }
    header{
        height:520px;
    }
    .headerOne{
        padding-left: 75px;
        padding-right: 50px;
    }
    .headerOne h1{
        font-size: 27px;
    }
    .headerOne h6{
        letter-spacing: 0px;
        font-size: 16px;
    }
    .headerImage{
        height:520px;
    }
    .counter-text{
        padding-inline: 10px;
    }
    .counter-icon{
        height:25px;
        width:25px;
        padding:15px;
    }
    .about-grid{
        width:88%;
    }
    .mission{
        padding-inline: 15px;
    }
    .president-grid{
        width:88%;
    }
    .contact-grid{
        gap:20px;
    }
    .contact-flex{
        gap:7px;
    }
    .contact-icon{
        height:50px!important;
        width:50px!important;
        font-size: 20px;
        padding-top: 13px;
    }
    .footer-grid-one{
        gap:10px;
    }
    .footer-grid-three{
        grid-template-columns: 0.7fr 0.7fr 1fr;
        gap:20px;
    }
    .work-icon{
        height:60px;
        width:60px;
        font-size: 25px;
    }
    .work-box h4{
        font-size: 19px;
    }
    .team-grid{
        gap:10px;
    }
    .donate-grid{
        width: 40%;
    }
    .admin{
        grid-template-columns: 0.3fr 1fr;
    }
    .adminContact-grid{
        width:50%;
    }
    .donation-flex{
        width:70%;
    }
    .donate-grid{
        width:100%;
    }
    .qr{
        height:470px;
    }
}

@media (max-width:768px){
    .second h1{
        font-size: 17.5px;
    }
    .offcanvas-header{
        padding:5px!important;
        padding-inline: 15px!important;
    }
    .navbar-toggler{
        border-radius: 0%!important;
        background: var(--white)!important;
    }
    .navbar-toggler:focus{
        box-shadow: none!important;
    }
    .nav-item {
        padding-right: 0px!important;
        padding-top: 6px!important;
        padding-left: 10px!important;
    }
    .nav-item:first-child {
        padding-top: 0px!important;
    }
    .nav-link{
        color:var(--black)!important;
    }
    .dropdown:hover .dropdown-menu{
        transform: translateY(5px);
    }
    .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: 2px;
        padding-top: 6px;
    }
    header{
        grid-template-columns: 1fr;
        height:100%;
        padding-top: 50px;
        padding-bottom: 5px;
    }
    .headerOne{
        padding-left: 0px;
        padding-right: 0px;
        width: 88%;
        margin: auto;
    }
    .res-headerImage{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 8%;
    }
    .headerImage{
        height:430px;
        width:88%;
        border-radius: 5px;
    }
    .counter{
        grid-template-columns: repeat(2,1fr);
        gap:30px;
        height:100%;
        padding:20px;
    }
    .border-right{
        border: none;
    }
    .counter-text{
        padding-inline: 30px;
        padding-block: 20px;
        border:1px solid var(--lightgray);
    }
    .about-grid{
        grid-template-columns: 1fr 1fr;
        gap:25px;
    }
    .img-one{
        height: 360px;
    }
    .about-right h2{
        font-size: 25px;
    }
    .author{
        grid-template-columns: 0.3fr 1fr;
    }
    .help-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .common h4{
        margin-bottom: 2%!important;
    }
    .media-grid{
        grid-template-columns: repeat(3,1fr);
    }
    .member-grid{
        width:60%;
    }
    .contact-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .map{
        height: 300px;
    }
    .donation-flex{
        grid-template-columns: 1fr;
    }
    .donate-grid{
        width:100%;
    }
    .qr{
        height:470px;
    }
    .footer-grid{
        flex-direction: column;
        height:100%;
        gap:15px;
        padding-block: 5px;
    }
    .footer-left{
        text-align: center;
    }
    .footer-grid-one{
        grid-template-columns: 1fr;
    }
    .footer-grid-three{
        grid-template-columns: 0.7fr 0.7fr 1fr;
        margin-top: 4%;
    }
    .login-form{
        width:60%;
    }
    .adminContact-grid{
        width:70%;
    }
}

@media (max-width:425px){
    .first{
        display: none;
    }
    .second{
        height:100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .txt{
        display: none;
    }
    .offcanvas.offcanvas-end {
        width:75%!important;
    }
    .headerOne h1{
        font-size: 22px;
        letter-spacing: 1px;
    }
    .headerOne h6{
        font-size: 17px;
    }
    .res-headerImage{
        margin-top: 12%;
    }
    .headerImage{
        height: 300px;
    }
    .counter{
        grid-template-columns: 1fr;
        gap:10px;
        background-color: var(--white);
    }
    .counter-text{
        background-color: var(--primary);
    }
    .counter-icon{
        height:30px;
        width:30px;
        padding:20px;
    }
    .author{
        gap:12px;
    }
    .author-content h5{
        font-size: 16px;
    }
    .about-grid{
        grid-template-columns: 1fr;
    }
    .president-grid{
        grid-template-columns: 1fr;
        gap:40px;
    }
    .img-one{
        height:250px;
    }
    .title{
        font-size: 25px;
        font-weight: 500;
    }
    .help-grid{
        grid-template-columns: 1fr;
        width:88%;
        margin: auto;
        margin-top: 7%;
    }
    .gap{
        margin-top: 7%;
    }
    .aim{
        grid-template-columns: 1fr;
        gap:30px;
    }
    .bright{
        border: none;
    }
    .work-box{
        height:250px;
    }
    .work-image-one{
        height:250px;
    }
    .footer-grid{
        gap:25px;
    }
    .footer-left h5{
        font-size: 22px;
    }
    .footer-grid-three{
        grid-template-columns: 1fr;
    }
    .footer-grid-three h5{
        margin-top: 4%;
    }
    .team-grid{
        grid-template-columns: 1fr;
        width:80%;
        gap:35px;
    }
    .common h4{
        margin-bottom: 4%!important;
    }
    .media-grid , .contact-grid{
        grid-template-columns: 1fr;
    }
    .member-grid{
        width:88%;
    }
    .map{
        height: 250px;
    }
    .donation-flex{
        width:88%;
    }
    .donate-grid{
        width: 100%;
    }
    .margin-bottom{
        margin-bottom: 4%;
    }
}

@media (max-width:375px){
    .offcanvas.offcanvas-end {
        width:80%!important;
    }
}