*{
    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-type: none;
}
body h1,h2,h3,h4,h5{
    font-family: "Varela Round", sans-serif;
}
:root{
    --primary:#df3e3c;
    --secondary:#884133;
    --red:red;
    --white:white;
    --gray:gray;
    --lightgray:lightgray;
    --black:#333;
}
::-webkit-scrollbar{
    width:8px;
}
::-webkit-scrollbar-track{
    background-color: var(--white);
}
::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--primary),var(--secondary));
}
.loader{
    height:100vh;
    width:100vw;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
}
.loading-image{
    height:200px;
    width:200px;
    object-fit: cover;
}
.grid{
    width:90%;
    margin:auto;
}
.grid-one-column{
    display: grid;
    grid-template-columns: 1fr;
}
.grid-two-columns{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.grid-three-columns{
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.grid-four-columns{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:15px;
}
.color{
    background: linear-gradient(to right,var(--primary), var(--secondary));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Varela Round", sans-serif;
}
.whatsapp{
    position: absolute;
    content:"";
    position: fixed;
    bottom:9%;
    right:0.8%;
    height:80px;
    width:80px;
    z-index: 500;
}
.cheveron{
    position: absolute;
    content: "";
    right:2%;
    bottom:4%;
    border:none;
    height:40px;
    width:40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background-color: var(--white);
    color:var(--primary);
    position: fixed;
    z-index: 10;
}
.common{
    background-color: var(--black);
    height:150px;
    color:var(--white);
    display: flex;
    align-items: center;
}
.common h4{
    font-weight: 700;
}
.common a{
    color:var(--white);
}

/* navbar part start  */
nav{
    height:90px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.logo{
    height: 85px;
    width:85px;
    object-fit: contain;
}
.nav-item{
    margin-right: 35px;
}
.nav-item:nth-child(6){
    margin-right: 0px;
}
.nav-link{
    font-size: 14px!important;
    font-weight: 500!important;
}
.dropdown-menu{
    border-radius: 0%!important;
    transform: translateY(60px);
    transition: all 0.4s;
    opacity: 0;
}
.dropdown:hover .dropdown-menu{
    transform: translateY(25px);
    opacity: 1;
}
.dropdown-item:hover{
    background-color: var(--white)!important;
}
.dropdown-item:focus{
    background-color: var(--white)!important;
    color:var(--black)!important;
}
.donate-top{
    margin-top: 0.4%!important;
}
.donate-btn{
    padding:11px 27px;
    border:2px solid;
    border-image: linear-gradient(to right, var(--primary), var(--secondary)) 1;
    color:var(--black);
    font-size: 14.5px;
    font-weight: 500;
    transition: all 1s;
}
.donate-btn:hover{
    box-shadow: inset 0px 0px 2rem var(--primary);
}
.mobile-icon{
    display: none;
}

/* index page  */
header{
    text-align: center;
    margin-top: 2%!important;
}
header h1{
    text-transform: uppercase;
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 1.5%;
}
.header-one{
    display: grid;
    grid-template-columns: 0.2fr 1fr 0.2fr;
    gap:15px;
    margin-bottom: 2%;
}
.header-image{
    height:570px;
    width:100%;
    border-radius: 5px;
    object-fit: cover;
}
.line{
    height:50px;
    width:100%;
    object-fit: contain;
}
.line-one{
    height:50px;
    width:100%;
    object-fit: contain;
    transform: rotate(190deg);
}
.gap{
    margin-top: 4%!important;
}
.counter-box{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding-block: 20px;
    padding-inline: 10px;
}
.counter-grid{
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    height:100px;
    align-items: center;
}
.counter-icon{
    font-size: 60px;
    background: -webkit-linear-gradient(var(--primary), var(--secondary));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.counter-text h3{
    font-weight: 600;
}
.counter-text h6{
    margin-bottom: 0%;
}
.heading{
    text-align: center;
    font-weight: 700;
}
.work-grid{
    display: grid;
    grid-template-columns: 0.5fr 1fr 2fr 0.5fr;
    height:125px;
    border-bottom: 2px solid var(--lightgray);
}
.work-text{
    display: flex;
    align-items: center;
}
.work-text-first{
    position: relative;
    display: flex;
    align-items: center;
}
.work-image{
    position: absolute;
    content:"";
    height:80px;
    width:120px;
    object-fit: cover;
    opacity:0;
    transition: all 1s;
}
.work-text p{
    margin-bottom: 0%;
}
.work-text h3{
    margin-bottom: 0%;
}
.arrow-circle{
    height:50px;
    width:50px;
    border:2px solid;
    border-image: linear-gradient(var(--primary), var(--secondary)) 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color:var(--black);
    transition: all 1s;
}
.arrow-circle-one{
    height:60px;
    width:60px;
    background:linear-gradient(var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color:var(--white);
    font-size: 25px;
    transition: all 1s;
}
.text-last{
   display: flex;
   justify-content: end;
   align-items: center;
}
.work-grid:hover .work-image{
    opacity: 1;
}
.work-grid:hover .arrow-circle-one{
    opacity: 0;
}
.work-grid:hover .work-text h4{
    color:var(--primary);
}
.work-grid:hover .arrow-circle{
    background:linear-gradient(var(--primary), var(--secondary));
    color:var(--white);
}
.aim-grid{
    width:85%;
    margin:auto;
    gap:30px;
}
.aim-grid-one{
    display: grid;
    grid-template-columns: 0.2fr 1fr;
    gap:20px;
    margin-top: 8%;
}
.aim-grid-one:first-child{
    margin-top: 0%;
}
.aim-grid-one p{
    margin-bottom: 0%;
}
.aim-icon{
    font-size: 70px;
}
.aim-left{
    display: flex;
    align-items: center;
}
.about-image{
    height:450px;
    width:100%;
    object-fit: cover;
}
.about-lefts-side{
    display: grid;
    padding-right: 45px;
}
.about-lefts-side h4{
    font-weight: 700;
}
.get-grid{
    display: grid;
    grid-template-columns: 0.4fr 1fr 0.4fr;
}
.get-image{
    height:100%;
    width:100%;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}
.get-image-one{
    height:100%;
    width:100%;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.get-third-side{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-inline: 50px;
    gap:20px;
}
.get-flex{
    display: flex;
    gap:25px;
}
.read-more-btn{
    padding:11px 27px;
    border:2px solid;
    border-image: linear-gradient(to right, var(--primary), var(--secondary)) 1;
    color:var(--black);
    font-weight: 500;
    transition: all 1s;
}
.read-more-btn:hover{
    box-shadow: inset 0px 0px 2rem var(--primary);
}
.volunteer-one{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 100px!important;
    padding-right: 70px!important;
}
.index-volunteer{
    background-color: #f1f1f1;
    height: 400px;
}
.volunterr-image{
    background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)),url('images/e7.jfif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 400px;
    width: 100%;
    clip-path: polygon(100% 0, 100% 19%, 100% 60%, 100% 100%, 0 100%, 18% 54%, 0 0);
}

/* footer part  */
footer{
    position: relative;
    background-color: var(--black);
    margin-top: 2%;
    padding-top: 80px;
    padding-bottom: 1px;
    color:var(--white);
}
footer::before{
    position: absolute;
    content: "";
    height:50px;
    width:100%;
    background-color: var(--white);
    top:0;
    left:0;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
}
footer a{
    color:var(--white);
}
footer h5{
    margin-bottom: 10%;
    font-weight: 600;
}
.footer-top{
    margin-top: 5%;
}
.footer-grid{
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap:20px;
}
.footer-left{
    display: grid;
    gap:15px;
    border-right: 1px dotted var(--lightgray);
    padding-right: 20px;
}
.footer-icon{
    border:2px solid var(--white);
    border-radius: 50%;
    color:var(--white);
    padding: 7px;
    margin-left: 2%;
}
.footer-icon:nth-child(1){
    margin-left: 0%;
}
.footer-right{
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 2fr;
}
.footer-icon-one{
    height:36px!important;
    width:36px!important;
    border:2px solid var(--white);
    border-radius: 50%;
    color:var(--white);
    padding-top: 8px;
}
.footer-last{
    margin-bottom: 5%;
}

/* about page  */
.team-position{
    position: relative;
}
.team-image{
    height:350px;
    width: 100%;
    object-fit: cover;
    border-radius: 7px;
}
.member-box{
    position: absolute;
    content:"";
    background-color: var(--black);
    color:var(--white);
    border-radius: 7px;
    width:80%;
    text-align: center;
    padding-top: 13px;
    padding-bottom: 6px;
    bottom:2%;
    left:10%;
}
.president-image{
    height:390px;
    width:100%;
    object-fit: cover;
}
.president-grid{
    width:65%;
    margin: auto;
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap:20px;
}
.about-section-grid{
    width:75%;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap:20px;
}
.about-right-image{
    height: 450px;
    width:100%;
    object-fit: contain;
}

/* donate part */
.donate-grid{
    width:60%;
    margin: auto;
}
.donate-image{
    height:500px;
    width:100%;
    object-fit: contain;
}
.donate-box{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding-inline: 10px;
    padding-block: 20px;
}
.donate-box h5{
    margin-bottom: 4%;
}

/* contact page  */
.contact-grid{
    width:70%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.contact-left-side,.contact-right-side{
    padding-inline: 20px;
    padding-block: 30px;
}
.contact-left-side{
    background:linear-gradient(var(--primary), var(--secondary));
    color:var(--white);
}
.contact-left-grid{
    display: grid;
    grid-template-columns: 0.2fr 1.3fr;
    height:90px;
    align-items: center;
}
.contact-icon-list{
    font-size: 40px;
    padding-top: 5px;
}
.contact-icon-one h6{
    margin-bottom: 0%;
}
.form-group{
    margin-top: 3%;
}
.form-control{
    border-radius: 0%!important;
    height:42px;
}
.form-control:focus{
    box-shadow: none!important;
    outline: none!important;
    border:1px solid var(--lightgray)!important;
}
.submit-btn{
    height:42px;
    width:25%;
    background:linear-gradient(to right, var(--primary),var(--secondary));
    border:none;
    color:var(--white);
}
.btn-right{
    display: flex;
    justify-content: end;
}
.map{
    height:400px;
    width:100%;
}

/* member page */
.member-grid{
    width:40%;
    margin: auto;
}
.member-form{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding-inline: 20px;
    padding-block: 30px;
}

/* admin area part start  */
.login{
    display: flex;
    justify-content: center;
    align-items: center;
    height:770px;
}
.login-form{
    width:35%;
}
.dashboard{
    display:grid;
    grid-template-columns: 0.2fr 1fr;
    height:70px;
    border-bottom: 2px solid var(--lightgray);
}
.dashboard:nth-child(2){
    border-bottom: none;
}
.dashboard-left{
    display: flex;
    align-items: center;
    border-right:2px solid var(--lightgray);
    padding-left: 18px;
}
.dashboard-left h5{
    margin-bottom: 0%;
    font-weight: 700;
    font-size: 30px;
}
.dashboard-right{
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 18px;
}
.logout-btn{
    padding:7px 27px;
    border:2px solid;
    border-image: linear-gradient(to right, var(--primary), var(--secondary)) 1;
    color:var(--black);
    transition: all 1s;
}
.logout-btn:hover{
    box-shadow: inset 0px 0px 2rem var(--primary);
}
.admin{
    height:700px;
}
.admin-left{
    border-right:2px solid var(--lightgray);
    padding-left: 18px;
}
.admin-box{
    background:linear-gradient(to right, var(--primary), var(--secondary));
    margin-right: 15px;
    padding:8px 12px;
    margin-top: 5%;
}
.admin-box a{
    color:var(--white);
}
.admin-sub{
    width:90%;
    margin: auto;
    margin-top: 2%;
}
.admin-form{
    width:50%;
    margin: auto;
}
.bx-trash{
    color:var(--red);
}

/* animation part start  */
.left-animation{
    animation: leftanimation both;
    animation-timeline: view(80% 10%);
}
@keyframes leftanimation{
    0%{
        opacity:0;
        transform: translateX(-200px);
    }
    100%{
        opacity:1;
        transform: translateX(0px);
    }
}
.right-animation{
    animation: rightanimation both;
    animation-timeline: view(80% 10%);
}
@keyframes rightanimation{
    0%{
        opacity:0;
        transform: translateX(200px);
    }
    100%{
        opacity:1;
        transform: translateX(0px);
    }
}
.zoom-animation{
    animation: zoomanimation both;
    animation-timeline: view(80% 10%);
}
@keyframes zoomanimation{
    0%{
        opacity:0;
        transform: scale(0.4);
    }
    100%{
        opacity:1;
        transform: scale(1);
    }
}
.top-animation{
    animation: topanimation both;
    animation-timeline: view(70% 10%);
}
@keyframes topanimation{
    0%{
        opacity:0;
        transform: translateY(200px) scale(0.6);
    }
    100%{
        opacity:1;
        transform: translateY(0px) scale(1);
    }
}

/* responsive part start  */
@media (max-width:1024px){
.over-clip{
    overflow-x: clip!important;
}
.whatsapp{
    right:0.6%;
}
.logo{
    height: 80px;
    width:80px;
}
.nav-item{
    margin-right: 25px;
}
.donate-top{
    margin-top: 0.8%!important;
}
header h1{
    font-size: 40px;
    margin-bottom: 2%;
}
.header-one h5{
    font-size: 14px;
}
.counter-box{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding-block: 20px;
    padding-inline: 10px;
}
.counter-grid{
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    height:100px;
    align-items: center;
}
.counter-icon{
    font-size: 40px;
}
.about-image{
    height:500px;
    width:500px;
    object-fit: cover;
}
.work-grid{
    grid-template-columns: 0.6fr 1fr 2fr 0.4fr;
}
.footer-grid{
    grid-template-columns: 0.7fr 2fr;
}
.team-image{
    height:260px;
    width: 100%;
}
.member-box{
    width:90%;
    left:5%;
}
.president-image{
    height:380px;
}
.about-section-grid,.president-grid{
    width:90%;
}
.about-right-image{
    height: 430px;
}
.contact-grid{
    width:90%;
}
.donate-grid{
    width:80%;
}
.login{
    height:660px;
}
.login-form{
    width:45%;
}
.dashboard-left h5{
    font-size: 20px;
}
.admin{
    height:590px;
}
}

@media (max-width:768px){
.whatsapp{
    right:0.1%;
}
.res-nav{
    margin-top: -1%!important;
}
.nav-item{
    margin-right: 0px;
}
.donate-top{
    margin-top: 8%!important;
}
.navbar-toggler{
    border-radius: 0%!important;
}
.navbar-toggler:focus{
    box-shadow: none!important;
    outline: none!important;
}
.btn-close{
    border: 2px solid var(--primary)!important;
    padding:10px!important;
}
.btn-close:focus{
    box-shadow: none!important;
    outline: none!important;
}
.mobile-icon{
    display: block;
}
.mobile-icon a{
    font-size: 16px!important;
}
.nav-icon{
    height:35px!important;
    width:35px!important;
    padding-top: 9px;
    border-radius: 5px;
    background:linear-gradient(to right, var(--primary), var(--secondary));
    color:var(--white);
}
.nav-item{
    margin-top: 1%;
}
.dropdown-menu{
    transform: translateY(0px)!important;
}
header h1{
    font-size: 30px;
    margin-bottom: 2%;
}
.header-one h5{
    font-size: 16px;
}
.line{
    height:40px;
}
.line-one{
    height:40px;
}
.header-image{
    height:430px;
}
.counter-box{
    grid-template-columns: 1fr 1fr;
}
.counter-icon{
    font-size: 50px;
}
.about-lefts-side{
    text-align: center;
    gap:20px;
}
.res-about-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap:25px;
}
.about-image{
    height:400px;
    width:100%;
}
.work-grid{
    grid-template-columns: 0.3fr 1fr 2fr 0.3fr;
}
.work-text h4{
    font-size: 18px;
}
.arrow-circle-one{
    height:40px;
    width: 40px;
    padding:10px;
    font-size: 15px;
}
.get-third-side{
    padding-inline: 10px;
}
.read-more-btn{
    padding:11px 15px;
}
.volunteer-one{
    padding-left: 40px!important;
    padding-right: 40px!important;
}
footer{
    margin-top: 3%;
}
.footer-left{
    border-right: none;
    margin-bottom: 4%;
}
.footer-right{
    grid-template-columns: 1fr 1fr 1.5fr;
}
.about-section-grid, .president-grid ,.footer-grid,.aim-grid{
    grid-template-columns: 1fr;
}
.res-team-grid{
    grid-template-columns: 1fr 1fr;
}
.team-image{
    height:370px;
}
.president-image{
    height:100%;
    width:100%;
    object-fit: contain;
}
.member-grid{
    width:60%;
}
.contact-icon-list{
    font-size: 30px;
}
.submit-btn{
    width:35%;
}
.login-form{
    width:55%;
}
.dashboard{
    grid-template-columns: 0.3fr 1fr;
}
.admin-form{
    width:80%;
}
}

@media (max-width:425px){
    .cheveron{
        right:4%;
    }
    .res-nav{
        margin-top: -2%!important;
    }
    .grid{
        width:90%;
    }
    .header-one{
        grid-template-columns: 1fr;
    } 
    .header-one h1{
        font-size: 35px;
        margin-bottom: 6%;
        margin-top: 4%;
    }
    .line,.line-one{
        display: none;
    }
    .header-image{
        height:300px;
    }
    .counter-box{
        grid-template-columns: 1fr;
    }
    .counter-grid{
        border-bottom: 1px solid var(--lightgray);
    }
    .counter-grid:last-child{
        border-bottom: none;
    }
    .about-lefts-side{
        padding-right: 0%;
    }
    .about-image{
        height:300px;
    }
    .work-grid{
        grid-template-columns: 1fr;
        height:280px;
        text-align: center;
    }
    .work-grid:last-child{
        border-bottom: none;
    }
    .work-text-first ,.work-text,.text-last{
        justify-content: center;
    }
    .gap{
        margin-top: 7%!important;
    }
    .get-grid,.footer-right,.res-team-grid,.res-media-grid,.donate-grid{
        grid-template-columns: 1fr;
    }
    .get-image,.get-image-one{
        display: none;
    }
    .res-footer-top{
        margin-top: 8%;
    }
    footer h5{
        margin-bottom: 5%;
    }
    footer{
        padding-top: 60px;
    }
    .index-volunteer{
        height:639px;
    }
    .volunteer-one{
        padding-top: 40px;
        padding-bottom: 20px;
        text-align: center;
    }
    .volunterr-image{
        height: 300px;
        clip-path: polygon(50% 8%, 100% 0, 100% 100%, 0 100%, 0 0);
    }
    .team-image{
        height:420px;
    }
    .president-image{
        height:500px;
    }
    .member-grid{
        width:90%;
    }
    .contact-grid{
        grid-template-columns: 1fr;
    }
    .map{
        height:250px;
    }
    .donate-image{
        margin-top: 6%;
    }
    .login-form{
        width:90%;
    }
    .dashboard-left{
        border-right:none;
    }
    .dashboard-left h5{
        font-size: 25px;
    }
    .admin{
        grid-template-columns: 1fr;
    }
    .admin-left{
        border-right:none;
        padding-right: 18px;
    }
    .admin-box{
        width:100%;
        margin-top: 3%;
        text-align: center;
    }
    .admin-sub{
        margin-bottom: 4%;
    }
    .admin-form{
        width:95%;
    }
    .work-image{
        position: absolute;
        content:"";
        height:40px;
        width:100px;
        object-fit: cover;
        opacity:0;
        transition: all 1s;
    }
}

@media (max-width:375px){
    .res-nav{
        margin-top: -2.3%!important;
    }
    .header-image{
        height:250px;
    }
    .about-image{
        height:200px;
    }
    .get-flex{
        gap:5px!important;
    }
    .res-btn{
        font-size: 14px;
    }
    footer{
        margin-top: 4%;
    }
    .font-size{
        font-size: 14px;
    }
    .volunterr-image{   
        height: 277px;
    }
}