*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
body {
    overflow-x: hidden;
}
body li{
    list-style: none;
}
body a{
    text-decoration: none;
}
body h1,h2,h3,h4,h5{
    font-family: "Quicksand", sans-serif;
}
:root{
    --primary:#f95854;
    --secondary:#fb3330;
    --white:white;
    --gray:gray;
    --lightgray:lightgray;
    --red:red;
    --blue:blue;
    --black:#222;
}
.loader{
    position: fixed;
    height:100vh;
    width:100vw;
    background-color: #222;
    z-index: 1000;
}
.loading-image{
    height:200px;
    width:200px;
    object-fit: cover;
}
.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:88%;
    margin:auto;
}
.grid-two-column{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:10px;
}
.grid-three-column{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
}
.grid-four-column{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:10px;
}
.btn-one{
    padding:11px 27px;
    background:linear-gradient(to right,var(--primary),var(--secondary));
    color:var(--white);
    border-radius: 5px;
}
.gap{
    margin-top: 5%;
}
.common{
    height:150px;
    background-color: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
}
.common a{
    color:var(--white);
}
.common h4{
    margin-bottom: 1%!important;
}
/* .custom-navbar {
    background-color: var(--white)!important;  
    position: fixed;
    top:0;
    width:100%;
    z-index: 1002;
} */
.whatsapp{
    position: absolute;
    content:"";
    height:80px;
    width:80px;
    bottom:4%;
    right:0.6%;
    z-index: 100;
    position: fixed;
}
/* navbar part start  */
.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.35) 0px 5px 15px;
}
.wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:88%;
    margin: auto;
    height: 92px;
}
.logo{
    height:89px;
    width:fit-content;
}
.nav-menu{
    padding-left: 0px!important;
    margin-bottom: 0%;
}
.nav-list{
    padding-right: 60px;
    font-size: 14px;
}
.nav-list:last-child{
    padding-right: 0px;
}
.nav-list a{
    color:var(--black);
}
.donate{
    padding:12px 27px;
    background:linear-gradient(to right,var(--primary),var(--secondary));
    font-size: 14px;
    border-radius: 5px;
    color:var(--white);
}
.drop-down-menu{
    position: absolute;
    top:150px;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding:15px;
    transition: 0.5s;
    opacity: 0;
    z-index: 500;
}
.drop-down-menu li, .drop-mega-menu li{
    margin-top: 5%;
}
.drop-down-menu li:nth-child(1){
    margin-top: 0%;
}
.drop-down-menu li a{
    font-size: 15.5px;
}
.drop-down:hover .drop-down-menu{
    top:124px;
    opacity: 1;
}
/* .drop-mega-menu{
    position: absolute;
    top:120px;
    left:6%;
    background-color: yellowgreen;
    padding:15px;
    transition: 0.5s;
    width:88%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:25px;
    opacity: 0;
}
.drop-mega-menu li a{
    font-size: 17px;
}
.mega-down:hover .drop-mega-menu{
    top:90px;
    opacity: 1;
} */
.nav-image{
    height:150px;
    width:100%;
    object-fit: cover;
}
.bar-icon{
    display: none!important; 
    font-size: 25px;
    cursor: pointer;
    border:2px solid #888;
    height:45px!important;
    width:45px!important;
    padding-top: 8px;
    color: #888;
}
.mob-wrapper{
    height:100vh;
    width:350px;
    position: fixed;
    background-color: var(--white);
    top:0;
    z-index: 100;
    left:-350px;
    transition: .7s;
}
.mob-header{
    height:90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 10px;
}
.cut-icon{
    font-size: 30px;
    color:#888!important;
    cursor: pointer;
}
.mob-nav-menu{
    padding-inline: 15px;
}
.mob-nav-menu li{
    margin-top: 5%;
}
.mob-nav-menu li:first-child{
    margin-top: 8%;
}
.mob-nav-menu li a{
    font-size: 14px;
    color:var(--black);
    font-weight: 450;
}
.mob-nav-menu p a{
    color:var(--black);
}
.mob-icon{
    height:33px!important;
    width:33px!important;
    border:2px solid var(--black);
    border-radius: 50%;
    padding-top: 6px;
}
.dropdown-btn{
    border: none!important;
    background-color: transparent!important;
    font-size: 14px;
}
.mob-drop-down-menu{
    display: none;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding-left: 15px;
}
.mob-drop-down-menu li:first-child{
    padding-top: 15px;
}
.mob-drop-down-menu li:last-child{
    padding-bottom: 15px;
}
.mob-drop-down-menu li a{
    color:var(--black)!important;
    font-size: 15px;
}
.show{
    left:0;
}

/* index part start  */
.header{
    position: relative;
    height:85vh;
    width:100vw;
    background-color: var(--black);
}
.header input{
    appearance: none;
}
.header .dots{
    position: absolute;
    bottom:60px;
    z-index: 800;
    display: flex;
    gap:6px;
}
.header .dots label{
    width:20px;
    height: 20px;
    background-color: var(--white);
    cursor: pointer;
    border-radius: 50%;
    opacity: 0.5;
    border: 2px solid var(--primary);
}
.header input:nth-child(1):checked ~ .dots label:nth-child(1),
.header input:nth-child(2):checked ~ .dots label:nth-child(2),
.header input:nth-child(3):checked ~ .dots label:nth-child(3)
{
    opacity: 1;
}
.header .slider{
    position: absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
}
.header .slider .slide{
    position: absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
    background: var(--img);
    background-size: cover;
    background-position: center;
    justify-content: flex-start;
    align-items: flex-end;
    clip-path: circle(0% at 0% 50%);
    transition: 1.5s;
    transition-delay: 0s;
}
.header .slider .slide:nth-child(even){
    clip-path: circle(0% at 100% 50%);
}
.header input:nth-child(1):checked ~ .slider .slide:nth-child(1),
.header input:nth-child(2):checked ~ .slider .slide:nth-child(2),
.header input:nth-child(3):checked ~ .slider .slide:nth-child(3)
{
    opacity: 1;
    clip-path: circle(150% at 50% 50%);
    transition-delay: 1s;
}
.about-grid{
    display: grid;
    grid-template-columns: 0.4fr 0.9fr 1fr;
    gap:30px;
}
.count{
    font-weight: 700;
    font-size: 40px;
}
.about-image{
    height:450px;
    width:100%;
    object-fit: cover;
}
.circle-image{
    height:60px;
    width:60px;
    object-fit: cover;
    background-color: lightgray;
    border-radius: 50%;
    border: 2px solid var(--white);
}
.circle-image-one{
    height:60px;
    width:60px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: lightgray;
    margin-left: -4%;
}
.circle-image-two{
    display: inline-block;
    height: 60px;
    width:60px;
    text-align: center;
    padding-top: 9px;
    font-size: 22px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: var(--primary);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-left: -4%;
    color:var(--white);
}
.about-flex{
    display: flex;
    align-items: center;
}
.color{
    color:var(--secondary);
    font-weight: 500;
}
.about-heading{
    font-size: 58px;
    font-weight: 900;
    margin-top: 4%;
    margin-bottom: 4%;
}
.about-gap{
    margin-top: 5%;
    margin-bottom: 10%;
}
.work-grid{
    width:75%;
    margin: auto;
    margin-top: 4%;
}
.carousel-inner{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height:400px;
}
.work-left{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap:10px;
    padding-inline: 25px;
}
.work-left h4{
    font-weight: 700;
}
.work-img{
    height:400px;
    width:100%;
    object-fit: cover;
}
.work-icon{
    height:70px!important;
    width:70px!important;
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-size: 30px;
    padding-top: 15px;
    color: var(--primary);
    margin-bottom: 3%;
}
.carousel-indicators button{
    color:var(--red);
    background-color: var(--secondary)!important;
}
.heading{
    font-weight: 700;
}
.gallery-image{
    height:250px;
    width:400px;
    border-radius: 5px;
    object-fit: cover;
}
.gallery{
    display: flex;
    gap:10px;
    overflow-x: auto;
}
.gallery::-webkit-scrollbar{
    display: none;
}
.group{
    display: flex;
    gap:10px;
    animation: run 10s linear infinite;
}
@keyframes run{
    0%{
        translate: 0;
    }
    100%{
        translate: -100%;
    }
}
.community-grid{
    display: grid;
    grid-template-columns: 0.4fr 1fr 0.4fr;
    padding-inline: 10px;
    padding-block: 80px;
}
.community-center{
    text-align: center;
    gap:20px;
}
.community-center h2{
    font-size: 170px;
    color:var(--secondary);
}
.community-center h3{
    font-size: 30px;
}
.community-left{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-inline: 20px;
}
.community-img{
    height:130px;
    width:130px;
    border-radius: 50%;
    object-fit: cover;
}
.community-img-one{
    height:150px;
    width:100px;
    border-radius: 50px;
    object-fit: cover;
}
.image-left{
    display: flex;
    justify-content: end;
}
.aim-height{
    height:500px;
}
.aim-image{
    display: grid;
    place-items: center;
}
.aim-right-side{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.mission{
    display: grid;
    grid-template-columns: 0.3fr 2fr;
    gap:20px;
}
.vision{
    display: grid;
    grid-template-columns: 2fr 0.3fr;
    gap:20px;
}
.mission-icon{
    font-size: 40px;
    height:80px;
    width:80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(165, 224, 27);
    color:var(--white);
    border-radius: 5px;
}
.value-icon{
    background-color: rgb(73, 71, 241);
}
.vision-icon{
    background-color: rgb(207, 16, 112);
}
.core-icon{
    background-color: rgb(11, 214, 197);
}
.mission-color{
    color: rgb(165, 224, 27);
    font-weight: 600;
}
.value-color{
    color: rgb(73, 71, 241);
    font-weight: 600;
}
.vision-color{
    color: rgb(207, 16, 112);
    font-weight: 600;
}
.core-color{
    color: rgb(11, 214, 197);
    font-weight: 600;
}
.aim-text{
    text-align: right;
}
.line-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.line{
    height:100px;
    width:60%;
    transform: rotate(-90deg);
    object-fit: contain;
}
.line-one{
    height:100px;
    width:60%;
    transform: rotate(90deg);
    object-fit: contain;
}
.aim-image-one{
    height:350px;
    width:fit-content;
}

/* footer part  */
footer{
    background-color: var(--black);
    color:var(--white);
    padding-top: 40px;
    padding-bottom: 5px;
    margin-top: 1%;
}
footer a{
    color:var(--white);
}
.footer-grid{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap:20px;
}
footer h5{
    margin-bottom: 10%;
    color:var(--primary);
    font-weight: 700;
}
.footer-top{
    margin-top: 5%;
}

/* about part  */
.aboutPage-image{
    height:400px;
    width:100%;
    object-fit: contain;
}
.team-grid{
    width:70%;
    margin: auto;
    margin-top: 4%;
}
.team-image{
    height:330px;
    width:100%;
    object-fit: cover;
    background-color: rgb(212, 212, 191);
    margin-bottom: 4%;
}
.president-grid{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap:30px;
    width:70%;
    margin: auto;
    margin-top: 4%;
}
.president-image{
    height:380px;
    width:100%;
    object-fit: cover;
    background-color: rgb(212, 212, 191);
}

/* media part  */
.media-image{
    height:200px;
    width: 100%;
    object-fit: cover;
}

/* member part start  */
.member-grid{
    width:45%;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding:25px;
}
.form-group{
    margin-top: 2%;
}
.form-control{
    border-radius: 0%!important;
    margin-top: 2%;
}
.form-control:focus{
    box-shadow: none!important;
    border:1px solid var(--lightgray)!important;
}
.submit-btn{
    background-color: var(--secondary)!important;
    color:var(--white)!important;
}

/* contact part  */
.contact-grid{
    width:65%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 4%;
    height:400px;
    gap:20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.map{
    height:400px;
    width:100%;
}
.contact-icon{
    height: 35px!important;
    width: 35px!important;
    border:2px solid var(--black);
    border-radius: 50%;
    color:var(--black);
    padding-top: 7px;
}
.contact-right{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:10px;
    padding-inline: 10px;
}
.contact-right h4{
    font-weight: 800;
}

/* donate part start  */
.donate-grid{
    width:35%;
    margin: auto;
    margin-top: 4%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-inline: 20px;
    padding-block: 25px;
}
.donate-grid h4{
    font-weight: 700;
    margin-bottom: 5%;
}

/* admin part start  */
.admin{
    background-color: var(--black);
    color:var(--white);
    height:50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 10px!important;
}
.admin h5{
    margin-bottom: 0%;
    font-size: 37.5px;
}
.admin-one{
    text-align: right;
}
.admin-left{
    background-color: var(--secondary);
    height:723px;
    display: flex;
    flex-direction: column;
    gap:7px;
}
.admin-left-one{
    margin-top: 5%;
    background-color: var(--black);
    color:var(--white);
    height:40px;
    width:90%;
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.admin-left-one a{
    color:var(--white);
}
.admin-text{
    font-weight: 800;
    text-align: center;
    font-size: 25px;
    margin-bottom: 2%;
}
.fa-circle-xmark{
    color:var(--red);
}
.login{
    height:773px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* responsive part start  */
@media (max-width: 1024px){
.grid{
    width:90%;
}
.wrapper{
    width: 90%;
}
.nav-list{
    padding-right: 40px;
    font-size: 14px;
}
.nav-list a{
    font-size: 12.5px!important;
}
.count-text{
    font-size: 17px;
    font-weight: 600;
}
.circle-image{
    height:45px;
    width:45px;
}
.circle-image-one{
    height:45px;
    width:45px;
}
.circle-image-two{
    height: 45px;
    width:45px;
    padding-top: 1px;
}
.about-flex h5{
    font-size: 18px;
}
.about-heading{
    font-size: 45px;
}
.work-grid{
    width:85%;
}
.community-grid{
    padding-block: 50px;
}
.community-center h2{
    font-size: 130px;
}
.team-grid{
    width:85%;
}
.team-image{
    height:250px;
    width:100%;
}
.team-image{
    height:320px;
}
.president-grid{
    width:88%;
}
.contact-grid{
    width:88%;
}
.login{
    height:680px;
}
.admin h5{
    font-size: 35px;
}
.admin-left{
    height:630px;
}
.admin-form{
    width:70%;
}
.res-grid-three-columns{
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
}
.aim-image-one{
    height:250px;
}
}

@media (max-width: 768px){
nav{
    position: relative!important;
    z-index: 1000!important;
}
.bar-icon{
    display: block!important; 
}
.nav-menu,.donate{
    display: none;
}
.logo{
    height:85px;
    width:fit-content;
}
.header{
    height:60vh;
}
.about-grid{
    grid-template-columns: 1fr;
}
.count{
    font-size: 30px;
}
.res-about-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:70px;
}
.line-none{
    display: none;
}
.about-image{
    height:400px;
}
.circle-image{
    height:55px;
    width:55px;
}
.circle-image-one{
    margin-left: -3%;
    height:55px;
    width:55px;
}
.circle-image-two{
    margin-left: -3%;
    height:55px;
    width:55px;
    padding-top: 7px;
}
.about-gap{
    margin-top: 4%;
    margin-bottom: 5%;
}
.work-grid{
    width:88%;
}
.work-left{
    padding-inline: 15px;
}
.community-grid{
    padding-inline: 15px;
    padding-block: 50px;
}
.community-center h2{
    font-size: 90px;
}
.community-center h3{
    font-size: 25px;
}
.community-img{
    height:110px;
    width:110px;
}
.community-img-one{
    height:130px;
    width:80px;
}
.community-left{
    padding-inline: 5px;
}
.footer-grid{
    grid-template-columns: 1fr;
}
.team-grid{
    width: 90%;
}
.team-image{
    height:220px;
}
.team-member-name h5{
    font-size: 16px;
}
.media{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.member-grid{
    width:70%;
}
.donate-grid{
    width:60%;
}
.common h4{
    margin-bottom: 2%!important;
}
.admin h5{
    font-size: 28px;
}
.res-grid-three-columns{
    display: grid;
    grid-template-columns: 2fr 1.2fr 2fr;
    gap:5px;
}
.aim-image-one{
    height:140px;
}
.mission-icon{
    font-size: 30px;
    height:60px;
    width:60px;
}
}

@media (max-width: 425px){
.first{
    display: none;
}
.header{
    height:40vh;
}
.header .dots{
    bottom:25px;
}
.res-about-flex{
    display: block;
    text-align: center;
    padding-inline: 50px;
}
.line-none{
    display: block;
}
.circle-image-one{
    margin-left: -4%;
}
.circle-image-two{
    margin-left: -4%;
}
.about-image{
    height:100%;
}
.text-none{
    display: none;
}
.about-gap{
    margin-top: 5%;
    margin-bottom: 10%;
    display: grid;
    grid-template-columns: 1fr;
}
.about-heading{
    font-size: 40px;
}
.gap{
    margin-top: 8%;
}
.res-work-grid{
    grid-template-columns: 1fr;
}
.carousel-inner{
    height:655px;
}
.work-left{
    align-items: center;
    text-align: center;
    gap:10px;
    padding-inline: 10px;
    padding-block: 20px;
}
.work-img{
    height:300px;
}
.gallery-image{
    height:150px;
    width:300px;
}
.community-grid{
    grid-template-columns: 1fr;
}
.community-center{
    padding-inline: 20px;
}
.community-center h2{
    font-size: 80px;
}
.community-img{
    display: none;
}
.community-img-one{
    display: none;
}
footer{
    margin-top: 2%;
}
.footer-grid-one{
    display: grid;
    grid-template-columns: 1fr;
}
footer h5{
    margin-bottom: 5%;
}
.common h4{
    margin-bottom: 4%!important;
}
.res-aboutPage-grid,.president-grid{
    grid-template-columns: 1fr;
}
.team-grid{
    grid-template-columns: 1fr;
    width: 70%;
}
.team-image{
    height:380px;
}
.team-member-name h5{
    font-size: 18px;
}
.president-image{
    height:430px;
}
.media{
    grid-template-columns: 1fr;
}
.member-grid{
    width:100%;
}
.contact-grid{
    width:90%;
    grid-template-columns: 1fr;
    height:720px;
}
.map{
    height:300px;
}
.donate-grid{
    width:80%;
}
.admin-left{
    height:285px;
}
.admin-left-one{
    height:40px;
    width:100%;
}
.admin-bottom{
    margin-bottom: 7%;
}
.res-grid-three-columns{
    grid-template-columns: 1fr;
    gap:5px;
}
.mission-icon{
    font-size: 40px;
    height:80px;
    width:80px;
}
.aim-image-one{
    height:350px;
}
.aim-height{
    height:1200px;
}
.vision{
    grid-template-columns: 0.3fr 2fr;
}
.order1{
    order: 2;
}
.aim-text {
    text-align: left;
}
.line{
    height:60px;
    width:30%;
}
.line-one{
    height:60px;
    width:30%;
}
}

@media (max-width: 375px){
    .carousel-inner{
        height:655px;
    }
    .community-center h2{
        font-size: 60px;
    }
    .contact-grid{
        height:730px;
    }
    .donate-grid{
        width:90%;
    }
    .team-image{
        height:310px;
    }
    .aim-image-one{
        height:300px;
    }
}

