*{
    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 p{
    margin-bottom: 0%;
}
body h1,h2,h3,h4,h5{
    font-family: "Quicksand", sans-serif;
}
:root{
    --primary:#012f65;
    --secondary:#55b3e1;
    --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:30px;
}
.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-color: var(--primary)!important;
    color:var(--white);
    border-radius: 3px;
}
.gap{
    margin-top: 5%;
}
.common{
    height:170px;
    background-color: var(--black);
    color: var(--white);
    display: flex;
}
.common a{
    color:var(--white);
}
.common h4{
    margin-bottom: 1%!important;
    font-weight: 700;
}
.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;
}
.whatsapp,.pulse {
    background: #1ab744;
    position: fixed;
    right:2%;
    bottom:10%;
    font-size: 35px;
    text-align: center;
    padding-top: 3px;
    z-index: 101;
    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);
    padding-block: 3px;
    display: flex;
    justify-content: center;
}
.first-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.first-grid{
    display: flex;
    gap:30px;
    font-size: 14.5px;
    align-items: center;
}
.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;
}
.years{
    font-size: 14.5px;
}
nav{
    --bs-navbar-padding-y: 0rem!important;
    --bs-navbar-brand-padding-y: 0rem!important;
    padding-block: 2px!important;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.wrapper{
    width:88%!important;
    padding:0!important;
}
.logo{
    height:85px;
    width:85px;
    object-fit: contain;
}
.nav-item{
    padding-right: 40px;
}
.nav-item:nth-child(6){
    padding-right: 0px!important;
}
.nav-link{
    font-size: 14px!important;
    font-weight: 500!important;
    color:var(--black)!important;
}
.navbar-nav{
    padding: 0!important;
}
.dropdown-menu{
    border-radius: 0%!important;
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.5s;
}
.dropdown:hover .dropdown-menu{
    transform: translateY(23px);
    opacity: 1;
}
.dropdown-item:focus{
    background-color: var(--white)!important;
    color:var(--black)!important;
}
.offcanvas-body{
    align-items: center;
}
.donate-btn{
    font-size: 14px;
    font-weight: 500;
    color:var(--white);
    padding: 11px 27px;
    background-color: var(--primary);
    border-radius: 3px;
}
.hide-nav{
    display: none;
}
.hide-nav a{
    font-size: 15.5px!important;
}
.mob-icon{
    height:32px!important;
    width:32px!important;
    border: 2px solid var(--black);
    color:var(--black);
    padding-top: 7px;
    border-radius: 5px;
    margin-right: 5px;
}

/*index page */
header{
    height:84vh;
    overflow:hidden;
    position: relative;
    width:100vw;
}
.header-image{
    height:84vh;
    width:100vw;
    object-fit: cover;
    animation:zoom 5s linear infinite alternate-reverse;
}
@keyframes zoom {
    0% {
    transform: scale(1.1);
    }
    100% {
    transform: scale(1);
    }
}
.header-content{
    position: absolute;
    content: "";
    bottom:2%;
    left:50%;
    transform: translateX(-50%);
    z-index: 100;
    width:75%;
    text-align: center;
    color:var(--white);
    padding: 20px;
    padding-bottom: 35px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}
.header-content h1{
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 800;
}
.color{
    color: var(--primary);
}
.sub-heading{
    font-weight: 700;
    font-size: 25px; 
}
.service-grid{
    display: grid;
    grid-template-columns: 0.5fr 0.7fr 0.5fr;
    border:1px solid var(--lightgray);
    border-left: none;
    border-right: none;
    height:120px;
    align-items:center;
    padding-inline: 25px;
    transition: all .5s;
}
.service-grid:hover{
    background: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)),url('images/5.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color:var(--white);
}
.service-grid h5{
    font-weight: 700;
    font-size: 27px;
}
.service-last{
    display: flex;
    justify-content: end;
}
.arrow-icon{
    height: 30px;
    width:30px;
    background-color: var(--lightgray);
    padding:15px;
    border-radius: 50%;
    color:var(--black);
    transform: rotate(-45deg);
    transition: 0.1s;
}
.arrow-icon:hover{
    height: 32px;
    width:32px;
    padding:16px;
}
.service-grid-one{
    border-top: none;
}
.work-grid{
    width:77%;
    margin: auto;
    margin-top: 4%;
}
.work-box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:12px;
    padding-inline: 15px;
    height:375px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.work-box-one{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:12px;
    padding-inline: 15px;
    height:375px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: var(--primary);
    color:var(--white);
}
.work-box h5{
    font-weight: 700;
}
.work-box-one h5{
    font-weight: 700;
}
.work-icon{
    height:35px;
    width:35px;
    background-color: var(--primary);
    padding:15px;
    border-radius: 50%;
    color:var(--white);
}
.work-icons{
    height:35px;
    width:35px;
    background-color: var(--white);
    color:var(--black);
    padding:15px;
    border-radius: 50%;
}
.work-top{
    margin-top: 15%;
}
.work-tops{
    margin-top: 30%;
}
.join{
    background: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)),url('images/6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color:var(--white);
    padding-block: 80px;
}
.join-one{
    width:70%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:15px;
}
.join-one h2{
    font-weight: 700;
    font-size: 40px;
}
.join-btn{
    margin-top: 3%;
}
.star-icon{
    color:var(--secondary);
}
.testimonial-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:50px;
}
.testimonial-box{
    border: 1px solid var(--lightgray);
    display: flex;
    flex-direction: column;
    gap:20px;
    padding-block: 20px;
    padding-inline: 20px;
    border-radius: 7px;
}
.fa-star{
    color:rgb(255, 145, 0);
}
.justify{
    text-align: justify;
}
.testimonial-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonial-flex-one{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px;
    gap:20px;
}
.user-img{
    height:60px;
    width:60px;
    background-color: var(--gray);
    border-radius: 5px;
}
.testimonial-content h5{
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 4%!important;
}
.fa-quote-right{
    font-size: 40px;
}


/*footer part */
footer{
    background-color: var(--black);
    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: 600;
    font-size: 30px;
}
.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:30px;
    margin-top: 2%;
}
.footer-grid-one h5{
    margin-bottom: 8%;
    font-weight: 800;
}
.footer-grid-one 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;
}
.footer-bottom{
    background-color: var(--primary);
    padding-block: 10px;
}
.footer-bottom p{
    margin-bottom: 0%;
}

/*about page */
.about-page-image{
    height:100%;
    width:100%;
    object-fit: cover;
    border-radius: 5px;
}
.team-box{
    text-align: center;
}
.team{
    height:210px;
    width:210px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding:5px;
    margin-bottom: 5%;
    border-radius: 7px;
    object-fit: cover;
}
.president-grid{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap:50px;
}
.president-image{
    height:460px;
    width:100%;
    object-fit: cover;
    background-color: var(--lightgray);
    border-radius: 5px;
}
.justify{
    text-align: justify;
}

/*education part start */
.font-bold{
    font-weight: 700;
}

/*member part start */
.member-grid{
    width:40%;
    margin: auto;
    margin-top: 5%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-block: 15px;
    padding-inline: 10px;
}
.member-grid h5{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 4%;
}
.form-group{
    margin-top: 3%;
}
.form-control{
    border-radius: 0%!important;
    margin-top: 1%;
}
.form-control:focus{
    outline: none!important;
    border: 1px solid var(--lightgray)!important;
    box-shadow: none!important;
}
.submit-btn{
    background-color: var(--primary)!important;
    color:var(--white)!important;
}

/*contact us part */
.contact{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    justify-content: space-between;
    padding-block: 20px;
    padding-inline: 20px;
    border-radius: 7px;
    gap:20px;
}
.contact-text{
    display: flex;
    flex-direction: column;
    gap:10px;
}
.contact-text h5{
    font-weight: 700;
}
.contact-icon{
    height:60px!important;
    width: 60px!important;
    background-color: var(--secondary);
    color:var(--white);
    border-radius: 50%;
    font-size: 25px;
    padding-top: 17px;
}
.map{
    height:400px;
    width:100%;
    border-radius: 5px;
}

/*donate part */
.grid-donate{
    width: 30%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-block: 20px;
    padding-left: 10px;
}
.grid-donate h5{
    margin-bottom: 4%;
    font-weight: 700;
}

/*reponsive part start */
@media (max-width:1024px){
html{
    overflow-x: clip!important;
}
.grid{
    width:90%;
}
.wrapper{
    width:90%!important;
}
.nav-item{
    padding-right: 25px;
}
header{
    height:78vh;
}
.header-image{
    height:78vh;
}
.header-content{
    width:88%;
}
.header-content h1{
    font-size: 30px;
}
.about-page-image{
    object-fit: contain;
}
.service-grid{
    height:100%;
    padding-block: 20px;
    grid-template-columns: 0.6fr 1fr 0.3fr;
}
.service-grid h5{
    font-size: 20px;
}
.work-grid{
    width:90%;
}
.work-box,.work-box-one{
    height:400px;
}
.testimonial-grid{
    gap:20px;
}
.res-f{
    grid-template-columns: 0.6fr 0.6fr 1fr;
}
.res-sub-f h5{
    margin-bottom: 13%!important;
}
.president-grid{
    grid-template-columns: 0.6fr 1fr;
    gap:30px;
}
.president-image{
    height:350px;
}
.team{
    height:190px;
    width:190px;
}
.member-grid{
    width:50%;
}
.grid-donate{
    width:40%;
}
}

@media (max-width:768px){
.whatsapp,.pulse {
    right:2%;
}
.arrow-up{
    right:3%;
}
.navbar-toggler{
    border-radius: 0%!important;
}
.navbar-toggler:focus{
    box-shadow: none!important;
}
.offcanvas-header{
    height:100px;
}
.dropdown-menu{
    transform: translateY(3px)!important;
}
.res-donate-btn{
    margin-top: 7%;
}
header{
    height:80vh;
}
.header-image{
    height:80vh;
}
.header-content h1{
    font-size: 22px;
}
.res-about-grid{
    grid-template-columns: 1fr;
}
.order-2{
    order: 2;
}
.service-grid{
    grid-template-columns: 0.6fr 0.9fr 0.2fr;
}
.service-grid h5{
    font-size: 18px;
}
.work-grid, .testimonial-grid, .president-grid{
    grid-template-columns: 1fr;
}
.work-box,.work-box-one{
    height:100%;
    padding-block: 20px;
}
.work-top,.work-tops{
    margin-top: 2%;
}
.footer-grid{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height:150px;
    text-align: center;
}
.subscribe{
    margin-top: 5%;
}
.footer-grid-one{
    grid-template-columns: 1fr;
    margin-top: 4%;
}
.common h4{
    margin-bottom: 2.5%!important;
}
.res-team-grid{
    grid-template-columns: 1fr 1fr 1fr;
    gap:25px;
}
.president-image{
    height:100%;
}
.member-grid{
    width:60%;
}
.res-contact-grid{
    grid-template-columns: 1fr;
}
.contact{
    height:100%;
    padding-block: 30px;
}
.map{
    height:300px;
}
.grid-donate{
    width:70%;
}
}

@media (max-width:425px){
.whatsapp,.pulse {
    right:3%;
}
.arrow-up{
    right:5%;
}
.first{
    display: none;
}
.hide-nav{
    display: block;
}
header{
    height:40vh;
}
.header-content{
    display: none;
}
.header-image{
    height:40vh;
}
.service-grid{
    grid-template-columns: 1fr;
    gap:20px;
}
.service-last{
    justify-content: start;
}
.service-grid h5{
    font-size: 20px;
}
.work-box,.work-box-one{
    height:100%;
    padding-block: 30px;
}
.join{
    padding-block: 40px;
}
.join-one h2{
    font-size: 30px;
}
.footer-grid,.hr{
    display: none!important;
}
.res-f{
    grid-template-columns: 1fr;
}
.res-sub-f h5{
    margin-bottom: 9%!important;
}
.gap{
    margin-top: 7%;
}
.res-team-grid{
    grid-template-columns: 1fr;
}
.team{
    height:250px;
    width:250px;
}
.president-image{
    height:100%;
    width:100%;
}
.member-grid{
    width:90%;
}
.map{
    height:250px;
}
.grid-donate{
    width:90%;
}
.common h4{
    margin-bottom: 3.5%!important;
}
}