*{
margin: 0;
padding:0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
body{
overflow-x: hidden;
}
body a{
text-decoration: none;
}
body li{
list-style: none;
}
body h1,h2,h3,h4,h5{
    font-family: "Momo Trust Display", sans-serif;
}
:root{
--primary:#339020;
--secondary:#c6951b;
--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;
}
.align-center{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.grid{
    width:90%;
    margin: auto;
}
.grid-two-column{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:20px;
}
.grid-three-column{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px;
}
.grid-four-column{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:20px;
}
.gap{
    margin-top: 4%;
}
.color{
    color:var(--primary);
}
.arrow{
    display: none;
    position: absolute;
    content:"";
    height:40px;
    width:40px;
    border-radius: 50%;
    border:2px solid var(--primary);
    background-color: var(--white);
    color:var(--primary);
    position: fixed;
    bottom:3%;
    left:2%;
    z-index: 100;
}
.whatsapp,.pulse {
    background: #1ab744;
    position: fixed;
    right:2.5%;
    bottom:6%;
    font-size: 35px;
    text-align: center;
    padding-top: 3px;
    z-index: 99;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    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;
}
}

/* navbar part  */
.first{
    background-color: var(--black);
    color:var(--white);
    height:32px;
    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;
}
nav{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    height:94px;
}
.logo{
    height:90px;
    width:90px;
    object-fit: cover;
}
.nav-item{
    margin-right: 35px;
}
.nav-item:last-child{
    margin-right: 0px;
}
.nav-link{
    font-size: 13.5px!important;
    font-weight: 500!important;
}
.dropdown-menu{
    border-radius: 0%!important;
    transform: translateY(70px);
    opacity: 0;
    transition: all 0.5s;
}
.dropdown:hover .dropdown-menu{
    transform: translateY(25px);
    opacity: 1;
}
.dropdown-item:focus{
    background-color: var(--white)!important;
    color:var(--black)!important;
}
.donate{
    padding:12px 25px;
    background-color: var(--primary);
    color:var(--white);
    font-size: 14px!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/m7.jpg');
}
.header-2{
    background:linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.0)),url('images/m12.jpg');
}
.header-3{
    background:linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.0)),url('images/m10.jpg');
}
.header{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:647px;
}
.btn-one{
    padding:10px 25px;
    background-color: var(--primary);
    color:var(--white);
}
.aim-bg{
    position: relative;
    background-color: #dddcdc;
    padding-inline: 50px;
    padding-block: 50px;
}
.aim-bg-primary{
    position: absolute!important;
    content:""!important;
    height:610px;
    width:100%!important;
    background-color: var(--primary);
    left:0;
    bottom:0;
    clip-path: polygon(5% 55%, 95% 55%, 100% 70%, 100% 100%, 0 100%, 0 70%);
}
.aim-box{
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: var(--white);
    height:200px;
    padding-inline: 50px;
    padding-top: 15px;
    gap:10px;
}
.grid-second-three-column{
    display: grid;
    row-gap: 50px;
    column-gap: 35px;
}
.gallery-grid{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap:20px;
    margin-bottom: 5%;
}
.gallery-grid-one{
    display: grid;
    row-gap:20px;
}
.img-1{
    height:250px;
    width:100%;
    object-fit: cover;
}
.img-2{
    height:300px;
    width:100%;
    object-fit: cover;
}
.img-3{
    height:100%;
    width:100%;
    object-fit: cover;
}
.join-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:30px;
    background:linear-gradient(to left,var(--primary) 20%,var(--secondary));
    height:270px;
    padding-inline: 15px;
    border-left: 1px solid #f2f2f2;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.join-data{
    display: flex;
    align-items: start;
    flex-direction: column;
    gap:10px;
}
.join-img{
    height:250px;
    width:250px;
}
#horizontal{
    display: flex;
    overflow-x: hidden;
}
#horizontal .content{
    height:100vh;
    width:100vw;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}
#horizontal .content:nth-child(1){
    background-color: #f35b5b;
}
#horizontal .content:nth-child(2){
    background-color: #64da4c;
}
#horizontal .content:nth-child(3){
    background-color: #3d9ab1;
}
#horizontal .content:nth-child(4){
    background-color: #dadcdd;
}
#horizontal .content:nth-child(5){
    background-color: #d4d244;
}
.content h2{
    font-size: 100px;
    text-align: center;
}
.work-grid{
    display: grid;
    width: 85%;
    margin: auto;
    grid-template-columns: 1.3fr 1fr;
    gap:20px;
}
.work-image{
    height:330px;
    width:100%;
    object-fit: cover;
}
.work-left{
    display: flex;
    justify-content: center;
    align-items: start;
    gap:15px;
}
.icon{
    height:40px;
    width:40px;
    background-color: var(--white);
    border-radius: 50%;
    padding:20px;
    margin-bottom: 5%;
}

/* footer part start  */
footer{
    background: var(--black);
    color:var(--white);
    padding-top: 30px;
    padding-bottom: 2px;
}
.footer-grid{
    display: grid;
    grid-template-columns: 0.9fr 2fr;
    gap:30px;
}
footer h5{
    margin-bottom: 8%;
}
footer a{
    color: var(--white);
}
.footer-one{
    border-top: 1px dotted var(--lightgray);
    padding-top: 8.5px;
    padding-bottom: 8.5px;
}
.footer-two{
    padding-bottom: 8.5px;
}
.footer-icon{
    height: 33px!important;
    width:33px!important;
    border:2px solid var(--lightgray);
    border-radius: 50%;
    padding-top: 6px;
}

/* about us part  */
.common{
    height:150px;
    background: repeating-conic-gradient(#333 0deg 5deg ,#111 5deg 10deg);
    background-size: 15px 15px;
    color:var(--white);
}
.common a{
    color:var(--white);
}
.common h4{
    margin-bottom: 1%;
}
.about-image{
    height:85%;
    width:100%;
    object-fit: cover;
    border-radius: 7px;
}
.team-position{
    position: relative;
    height:240px;
    width:210px;
    background: linear-gradient(var(--primary),lightgray);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 50% 100%, 0 75%, 0 25%);
    border-radius: 15px;
}
.team-img{
    position: absolute;
    content:"";
    height:210px;
    width:210px;
    object-fit: cover;
    bottom:0;
    z-index: 10;
}
.president-image{
    height:400px;
    width:100%;
    object-fit: cover;
    background-color: #3f3097;
}
.president-grid{
    width:70%;
    margin: auto;
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap:40px;
    margin-top: 5%;
}

/* our work part start  */
.education-grid{
    width:70%;
    margin: auto;
    text-align: center;
    margin-top: 2.5%;
}

/* contact part start  */
.contact-grid{
    display:grid;
    grid-template-columns: 1.5fr 2fr;
    gap:40px;
}
.touch{
    color:var(--secondary);
}
.input-group,.input-group-text,.form-control{
    border-radius: 0%!important;
}
.form-control:focus{
    border:1px solid var(--lightgray)!important;
    outline: none!important;
    box-shadow: none!important;
}
.submit-btn{
    background-color: var(--primary)!important;
    width:100%!important;
    height:45px!important;
    color:var(--white)!important;
}
.map{
    width:100%;
    height:400px;
    margin-top: 5px;
}

/* member part start  */
.member-grid{
    width:40%;
    margin:auto;
    margin-top: 4%;
}

/* donate page start  */
.donate-grid{
    width: 30%;
    margin: auto;
    margin-top: 4%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-block: 30px;
    padding-inline: 15px;
}

/* admin part  */
.login{
    height:770px;
}
.login-form{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding:25px;
    width:35%;
}
.dashboard{
    height:50px;
    background-color: var(--primary);
    color:var(--white);
    display: flex;
    align-items: center;
    padding-inline: 15px;
}
.dashboard h3{
    margin-bottom: 0%;
    letter-spacing: 1px;
}
.admin-left{
    background-color: var(--black);
    height:720px;
}
.admin-box{
    padding:8px 21px;
    background-color: var(--white);
    margin-top: 4%;
}
.admin-box a{
    color:var(--black);
}
.admin-margin{
    margin-block: 25px;
}
.fa-ban{
    color:red;
}
.admin-form{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding:15px;
}

/* animation  */
.animationZoomUp{
    animation: animationzoomup both;
    animation-timeline: view(80% 10%);
}
@keyframes animationzoomup{
    0%{
    opacity: 0;
    transform: translateY(200px) scale(0.3);
}
100%{
    opacity: 1;
    transform: translateY(0px) scale(1);
}
}

/* responsive part start  */
@media (max-width:1024px){
body , html{
    overflow-x: clip!important;
}
nav{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    height:94px;
}
.logo{
    height:90px;
    width:90px;
    object-fit: cover;
}
.nav-item{
    margin-right: 15px;
}
.nav-item:last-child{
    margin-right: 0px;
}
.nav-link{
    font-size: 12px!important;
    font-weight: 500!important;
}
.dropdown-menu{
    border-radius: 0%!important;
    transform: translateY(70px);
    opacity: 0;
    transition: all 0.5s;
}
.dropdown:hover .dropdown-menu{
    transform: translateY(25px);
    opacity: 1;
}
.dropdown-item:focus{
    background-color: var(--white)!important;
    color:var(--black)!important;
}
.donate{
    padding:12px 25px;
    background-color: var(--primary);
    color:var(--white);
    font-size: 14px!important;
}
.header{
    height:560px;
}
.work-image{
    height:250px;
    object-fit: cover;
}
.work-image-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.aim-bg{
    padding-inline: 30px;
    padding-block: 30px;
}
.aim-bg-primary{
    height:570px;
}
.aim-box{
    padding-inline: 20px;
}
.about-image{
    height:300px;
}
.join-flex{
    gap:10px;
    padding-inline: 10px;
}
.join-data{
    gap:10px;
}
.join-img{
    height:150px;
    width:150px;
}
.president-grid{
    width:90%;
}
.donate-grid{
    width:40%;
}
.login{
    height:685px;
}
.login-form{
    width:40%;
}
.admin-left{
    height:630px;
}
}

@media (max-width:768px){
.res-nav{
    margin-top: -1.4%;
}
.navbar-toggler{
    border-radius: 0%!important;
}
.navbar-toggler:focus{
    box-shadow: none!important;
    outline:none!important;
}
.offcanvas-body{
    align-items: start;
    flex-direction: column;
    flex-grow: 0!important;
    gap:25px;
}
.nav-item{
    margin-right: 0px;
    margin-bottom: 7px;
}
.nav-item:last-child{
    margin-bottom: 0px;
}
.nav-link{
    font-size: 13.5px!important;
}
.dropdown-menu{
    transform: translateY(0px)!important;
    opacity:1!important;
}
.btn-close:focus{
    border:none!important;
    outline: none!important;
}
.res-team-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.header{
    height:410px;
}
.content h2{
    font-size: 90px;
}
.work-grid{
    width: 88%;
    grid-template-columns: 1.6fr 1fr;
}
.work-image{
    height:150px;
}
.icon{
    height:30px;
    width:30px;
    padding:15px;
}
.aim-bg{
    padding-inline: 10px;
}
.aim-box h5{
    font-size: 18px;
}
.img-1{
    height:200px;
}
.img-2{
    height:250px;
}
.footer-grid{
    grid-template-columns: 1fr;
}
.res-about-page,.res-join-us{
    grid-template-columns: 1fr;
}
.join-img{
    height:250px;
    width:250px;
}
.join-flex{
    padding-inline: 20px;
}
.president-image{
    height:280px;
}
.res-media{
    grid-template-columns: repeat(3,1fr);
}
.member-grid{
    width:60%;
}
.common h4{
    margin-bottom: 2%;
}
.map{
    height:300px;
}
.donate-grid{
    width:50%;
}
.login-form{
    width:50%;
}
}

@media (max-width:425px){
.first{
    display: none;
}
.res-nav{
    margin-top: -2.4%;
}
.mobile-show{
    display: block;
}
.mobile-show a{
    font-size: 16px!important;
}
.mob-icon{
    height:30px!important;
    width:30px!important;
    border-radius: 50%;
    border:2px solid var(--primary);
    padding-top: 5px;
    color:var(--primary);
}
.logo{
    height:88px;
    width:88px;
}
.header{
    height:225px;
}
.content h2{
    font-size: 70px;
}
.work-grid{
    grid-template-columns: 1fr;
}
.work-left h4{
    font-size: 17px;
}
.work-image{
    height:230px;
}
.icon{
    height:28px;
    width:28px;
    padding:14px;
}
.grid-second-three-column{
    grid-template-columns: 1fr;
    gap:15px;
}
.aim-bg-primary{
    display: none;
}
.aim-box h5{
    font-size: 20px;
}
.gap{
    margin-top: 7%;
}
.gallery-grid , .res-team-grid , .gallery-one-column{
    grid-template-columns: 1fr;
}
.img-1{
    height:250px;
}
.footer-res-grid{
    grid-template-columns: 1fr;
}
.about-image{
    height:200px;
}
.join-flex{
    flex-direction: column;
    background:linear-gradient(to bottom,var(--primary) 20%,var(--secondary));
    height:100%;
    padding-inline: 15px;
    padding-block: 15px;
    gap:40px;
}
.join-data {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.join-img{
    height:200px;
    width:200px;
}
.common h4{
    margin-bottom: 4%;
}
.president-grid{
    grid-template-columns: 1fr;
}
.president-image{
    height:400px;
}
.education-grid{
    width:85%;
}
.res-media{
    grid-template-columns: 1fr;
}
.member-grid{
    width:88%;
}
.map{
    height:250px;
}
.contact-grid{
    grid-template-columns: 1fr;
}
.donate-grid{
    width:88%;
}
.common{
    height:160px;
}
.login-form{
    width:90%;
}
.dashboard{
    justify-content: center;
}
.admin-left{
    background-color: var(--black);
    height:240px;
}
.admin-box{
    text-align: center;
}
}

@media (max-width:375px){
.res-nav{
    margin-top: -2.7%;
}
.dropdown-item{
    font-size: 15px;
}
.header{
    height:200px;
}
.president-image{
    height:350px;
}
}

