*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif!important;
}
html,body{
    scroll-behavior: smooth;
    overflow-x: clip!important;
}
body a{
    text-decoration: none;
}
body li{
    list-style-type: none;
}
body h1,h2,h3,h4,h5{
    font-family: "Quicksand", sans-serif!important;
}
body h1,h2,h3,h4,h5,h6,p{
    margin-bottom: 0%!important;
}
:root{
    --primary:#D86F1E;
    --secondary:#7DA61F;
    --black:#222;
    --lightgray:lightgray;
    --white:white;
    --red:red;
    --blue:blue;
}
.grid{
    width:90%;
    margin: auto;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center-column{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.gap{
    margin-top: 5%;
}
.common{
    background:repeating-conic-gradient(#000 13deg 26deg, #222 26deg 52deg);
    background-size: 15px 15px;
    height:150px;
    color: var(--white);
    display: flex;
    justify-content: center;
}
.common a{
    color:var(--white);
}
.whatsapp{
    height:80px;
    width:80px;
    position: fixed;
    bottom: 7%;
    right:1%;
    object-fit: cover;
    z-index: 1000;
}
.arrow{
    position: fixed;
    bottom:2%;
    right:2.5%;
    height:35px;
    width:35px;
    background-color: var(--white);
    border: 2px solid var(--primary);
    outline: none;
    border-radius: 50%;
    color:var(--primary);
    z-index: 1001;
}

/* navbar part  */
.first-nav{
    background-color: var(--black);
    color:var(--white);
    padding-block: 3px;
    font-size: 15px;
}
.first-nav a{
    color: var(--white);
}
.first-nav-grid{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.first-nav-left{
    display: flex;
    gap:30px;
}
nav{
    --bs-navbar-padding-y:0%!important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.logo{
    height:80px;
    width:80px;
    object-fit: contain;
}
.nav-item{
    padding-right: 40px;
}
.nav-item:last-child{
    padding-right: 0px;
}
.nav-link{
    font-size: 14.5px!important;
    font-weight: 500!important;
}
.offcanvas-body{
    align-items: center;
}
.nav-btn{
    font-size: 14.5px;
    padding:11px 27px;
    background-color: var(--primary);
    color: var(--white);
}

/* index page  */
.header{
    background: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)),url('images/1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:660px;
}
.heading h4{
    font-weight: 900;
}
.about{
    width:70%;
    margin: auto;
}
.color{
    color:var(--primary)!important;
}
.work-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}
.wrks{
    height:250px;
    border-radius: 3px;
}
.work-first{
    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;
}
.work-two{
    background: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.9)),url('images/3.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.work-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;
}
.work-four{
    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;
}
.work-content{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    color:var(--white);
    padding-bottom: 20px;
}
.work-content h4{
    font-size: 23px;
    font-weight: 600;
}
.dot{
    position: relative;
    height: 15px;
    width: 15px;
    background-color: var(--white);
    border-radius: 50%;
    margin-top: 4%;
}
.dot:before{
    position: absolute;
    content:"";
    height: 5px;
    width: 70px;
    background-color: var(--white);
    clip-path: polygon(0 49%, 100% 94%, 100% 6%);
    top:5px;
    left:-75px;
}
.dot:after{
    position: absolute;
    content:"";
    height: 5px;
    width: 70px;
    background-color: var(--white);
    clip-path: polygon(100% 49%, 0% 94%, 0 6%);
    top:5px;
    left:20px;
}
.team-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}
.team-box{
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    height:300px;
    border-radius: 3px;
    padding-block: 5px;
}
.team-img{
    height:180px;
    width:180px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--lightgray);
}
.team-content{
    text-align: center;
    margin-top: 8%;
}
.team-content h5{
    color:var(--primary);
    font-weight: 700;
    font-size: 18px;
}


/* footer part  */
footer{
    background: repeating-conic-gradient(#000 12deg 24deg, #111 24deg 48deg);
    background-size: 15px 15px;
    color:var(--white);
    margin-top: 1%;
    padding-top: 40px;
    padding-bottom: 20px!important;
}
footer a{
    color:var(--white);
}
.footer-box{
    width:75%;
    margin: auto;
    margin-bottom: 4%;
    background-color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 15px;
    padding-inline: 15px;
}
.footer-box-right{
    display: flex;
    gap:10px;
}
.footer-icons{
    height:20px;
    width:20px;
    background-color: var(--white);
    color: var(--black);
    padding:8px;
    border-radius: 50%;
}
.footer{
    display: grid;
    grid-template-columns: 1fr 0.6fr 0.6fr 1fr;
    gap:30px;
}
.footer h5{
    font-weight: 700;
}
.footer-one{
    margin-bottom: 7%!important;
}
.footer-two{
    margin-bottom: 10.5%!important;
}
.footer-three{
    margin-bottom: 6%!important;
}
.footer-left{
    display: flex;
    align-items: center;
    gap:25px;
    margin-top: 5%;
}
.footer-icon{
    height:20px;
    width:20px;
    background-color: var(--white);
    color: var(--black);
    padding:8px;
    border-radius: 4px;
}
.icon-center{
    display: flex;
    justify-content: center;
}
.footer-link{
    margin-top: 4%;
}
.newsletter{
    margin-top: 6%;
}
.form-control{
    border-radius: 0%!important;
}
.footer-btn{
    background-color: var(--primary)!important;
    color:var(--white)!important;
}

/* about us page start  */
.aboutPage_grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:40px;
}
.about-image{
    height:100%;
    width:100%;
    border-radius: 5px;
}
.justify{
    text-align: justify;
}

/* contact page  */
.contact-grid{
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap:70px;
}
.map{
    height: 400px;
    width: 100%;
}

/* donate page  */
.donate-grid{
    width:30%;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-top: 4%;
    padding-inline: 15px;
    padding-block: 20px;
}

/* responsive part start  */
@media (max-width:1024px){
    html,body{
        overflow-x: clip!important;
    }
    .nav-link{
        font-size: 13px!important;
    }
    .nav-item{
        padding-right: 30px;
    }
    .header{
        height:580px;
    }
    .about{
        width:80%;
    }
    .work-grid,.team-grid{
        gap:10px;
    }
    .work-first{
        height:270px;
    }
    .work-content h4{
        font-size: 17px;
    }
    footer h5{
        font-size: 15px;
    }
    .footer{
        grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
        gap:10px;
    }
    .donate-grid{
        width:40%;
    }
}

@media (max-width:768px){
    .whatsapp{
        right:0.5%;
    }
    .navbar-toggler{
        border-radius: 0%!important;
    }
    .navbar-toggler:focus{
        box-shadow: none!important;
    }
    .nav-link{
        font-size: 13.5px!important;
        font-weight: 600!important;
    }
    .nav-btn{
        margin-left: 10px;
    }
    .nav-item{
        padding-left: 10px;
        padding-right: 0px;
        padding-top: 4px;
    }
    .nav-item:first-child{
        padding-top: 0px;
    }
    .navbar-nav{
        margin-bottom: 8%!important;
    }
    .work-grid,.team-grid{
        grid-template-columns: 1fr 1fr;
        gap:30px;
    }
    .work-first{
        height:320px;
    }
    .work-content h4{
        font-size: 23px;
    }
    .footer-box{
        width:85%;
    }
    .footer{
        grid-template-columns: 1fr 1fr;
        gap:30px;
    }
    .footer h5{
        font-size: 20px;
    }
    .footer-two{
        margin-bottom: 7%!important;
    }
    .media-grid{
        grid-template-columns: repeat(3,1fr);
    }
    .donate-grid{
        width:50%;
    }
}

@media (max-width:425px){
    .whatsapp{
        right:0.3%;
    }
    .arrow{
        right:4.5%;
    }
    .first-nav{
        display: none;
    }
    .offcanvas{
        width:75%!important;
    }
    .header{
        height:350px;
    }
    .about{
        width:90%;
    }
    .work-grid,.team-grid,.contact-grid,.aboutPage_grid{
        grid-template-columns: 1fr;
    }
    .team-box{
        width:75%;
        height:280px;
        margin: auto;
    }
    .contact-grid{
        gap:30px;
    }
    .map{
        height: 300px;
    }
    .footer-box{
        flex-direction: column;
        gap:20px;
        margin-bottom: 8%;
    }
    .footer-box h4{
        font-size: 18px;
    }
    .footer{
        grid-template-columns: 1fr;
    }
    .footer-last{
        text-align: center;
    }
    .media-grid{
        grid-template-columns: 1fr;
    }
    .donate-grid{
        width:90%;
    }
    .gap{
        margin-top: 8%;
    }
}

@media (max-width:375px){
    .offcanvas{
        width:85%!important;
    }
    .header{
        height:300px;
    }
}