*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: clip;
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif!important;
}
body h1,h2,h3,h4,h5{
    font-family: "Momo Trust Display", sans-serif!important;
    font-weight: 400!important;
}
body a{
    text-decoration: none;
}
body li{
    list-style: none;
}
:root{
    --primary:#f07b00;
    --secondary:#000000;
    --white:white;
    --gray:gray;
    --lightgray:lightgray;
    --black:#222;
    --red:red;
}
.grid{
    width:90%;
    margin: auto;
}
.grid-four-column{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:15px;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center-column{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.btn-one{
    padding:12px 25px!important;
    background-color: var(--primary);
    color:var(--white)!important;
    border-radius: 2px;
}
.gap{
    margin-top: 4%;
}
.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%;
    position: fixed;
    z-index: 99;
}
.whatsapp{
    position: absolute;
    content:"";
    height:80px;
    width:80px;
    bottom:7%;
    right:0.6%;
    z-index: 100;
    position: fixed;
}
.common{
    height:150px;
    background-color: var(--black);
    color:var(--white);
    display: flex;
    justify-content: center;
}
.common a{
    color:var(--white);
}

/* navbar part  */
.first{
    background-color: var(--black);
    color:var(--white);
    height:34px;
    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;
    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;
}
.donate{
    padding: 4px 20px;
    background-color: var(--primary);
}
.year{
    font-size: 14px;
}
nav{
    height: 90px;
    border-bottom: 1px solid lightgray;
}
.logo {
    height:80px;
    width:100%;
    object-fit: cover;
}
.nav-link {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color:var(--black)!important;
}
.nav-link:hover{
    color:var(--primary)!important;
}
.nav-item {
    padding-right: 50px;
}
.nav-item:last-child {
    padding-right: 0px;
}
.dropdown{
    transition: 3s!important;
}
.dropdown-menu{
    border-radius: 0%!important;
    transform: translateY(45px);
    opacity: 0;
    visibility: hidden;
    transition: .5s!important;
}
.dropdown:hover .dropdown-menu{
    transform: translateY(24px);
    opacity: 1;
    visibility: visible;
}
.dropdown-item{
    font-size: 15px;
}
.dropdown-item:hover{
    background-color: transparent!important;
}
.mobile-icon{
    display: none;
}

/*index part start */
header{
    background: linear-gradient(to top,rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.1)),url('images/35.jfif');
    background-repeat: no-repeat;
    background-size: cover;
    height:650px;
}
.about-grid{
    width:60%;
    margin:auto;
    text-align: center;
}
.work-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:15px;
}
.services{
    background:linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.9)),url(images/33.jfif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:270px;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    color:var(--white);
    padding-bottom:20px;
    border-radius: 5px;
}
.services-one{
    background:linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.9)),url(images/37.jfif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.services-two{
    background:linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.9)),url(images/36.jfif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.services-three{
    background:linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.9)),url(images/2.jfif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.dot{
    position: relative;
    height:10px;
    width:10px;
    background-color: var(--white);
    border-radius: 50%;
    margin-top: 3%;
    margin-bottom: 5%;
}
.dot::before{
    position: absolute;
    content: "";
    height: 4px;
    width:70px;
    background-color:var(--white);
    clip-path: polygon(0 49%, 100% 94%, 100% 6%);
    left:-75px;
    top:3px;
    border-radius:50px;
}
.dot::after{
    position: absolute;
    content: "";
    height: 4px;
    width:70px;
    background-color:var(--white);
    clip-path: polygon(100% 49%, 0% 94%, 0 6%);
    left:15px;
    top:3px;
    border-radius:50px;
}
.read-more{
    padding:9px 25px;
    border:1.5px solid var(--white);
    color:var(--white);
    transition: 0.3s;
}
.read-more:hover{
    background-color: var(--white);
    color:var(--black);
}
.aim-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:25px;
}
.aim-box{
    text-align: center;
    padding-block: 25px;
    padding-inline: 20px;
    padding-bottom: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.aim-box-one{
    background-color: var(--primary);
    text-align: center;
    padding-block: 25px;
    padding-inline: 20px;
    padding-bottom: 5px;
    color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.aim-icon{
    font-size: 45px;
}
.team-img{
    height:200px;
    width:200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 7%;
    background-color: var(--lightgray);
}
.btn-one{
    padding:11px 27px;
    background-color: var(--primary);
}
.all{
    background-color: var(--black);
    color:var(--white);
    padding-block: 50px;
    margin-top: 4%;
}
.all-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.all-grid a{
    color:var(--white);
}
.border-one{
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    padding:25px 30px 25px 30px;
}
.border-two{
    border-bottom: 2px solid var(--primary);
    padding:25px 30px 25px 30px;
}
.border-three{
    border-right: 2px solid var(--primary);
    padding:25px 30px 25px 30px;
}
.border-four{
    padding:25px 30px 25px 30px;
}
.test-grid{
    width:88%;
    margin: auto;
    margin-top: 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
}
.fa-quote-right{
    font-size: 45px;
}
.testi-box{
    padding-block: 20px;
    padding-inline: 20px;
}
.text-text{
    margin-top: 6%;
    margin-bottom: 6%;
}



/*footer part start */
footer{
    background-color: var(--black);
    color:var(--white);
    margin-top: 2%;
    padding-top: 40px;
    padding-bottom: 15px;
}
footer a{
    color:var(--white);
}
footer h5{
    font-size: 19px;
}
.footer-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr 1.5fr ;
    gap:10px;
    border-bottom: 1px dashed var(--white);
    padding-bottom: 30px;
}
.footer-top{
    margin-top: 10%;
}
.footer-tops{
    margin-top: 7.5%;
}
.footer-topss{
    margin-top: 6%;
}
.footer-text{
    margin-top: 3%;
}
.footer-flex{
    display: flex;
    justify-content: space-between;
    margin-top: 1%;
}
.footer-icon{
    height:35px!important;
    width:35px!important;
    border:2px solid var(--white);
    border-radius: 50%;
    padding-top: 7px;
}

/*about page */
.a-page-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:50px;
}
.president-grid{
    width:80%;
    margin: auto;
    margin-top: 4%;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap:40px;
}

/*media part */
.media-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:15px;
}

/*member page */
.member-grid{
    width:40%;
    margin: auto;
    margin-top: 4%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-block: 20px;
    padding-inline: 20px;
}
.form-group{
    margin-top: 3%;
}
.form-control{
    border-radius: 0%!important;
    margin-top: 1%;
}
.form-control:focus{
    box-shadow: none!important;
    outline: none!important;
    border:1px solid var(--lightgray)!important;
}
.submit-btn{
    background-color: var(--primary)!important;
}


/*contact part */
.contact-grid{
    width:70%;
    margin: auto;
    margin-top: 4%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:40px;
}
.contact-left{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:10px;
}
.contact-left h6{
    font-size: 18px;
    font-weight: 600;
}
.contact-icon{
    height:35px!important;
    width:35px!important;
    border:2px solid var(--black);
    color:var(--black);
    border-radius: 50%;
    padding-top: 7px;
}
.map{
    height:350px;
    width:100%;
}

/*donate part */
.grid-donate{
    width: 35%;
    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;
}

/* admin area part start  */
.login{
    height:770px;
}
.login-form{
    width:35%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding:25px;
}
.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: 900;
    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;
    display:grid;
    grid-template-columns: 0.2fr 1fr;
}
.admin-left{
    border-right:2px solid var(--lightgray);
    padding-left: 18px;
}
.admin-box{
    background-color: var(--primary);
    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;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding:15px;
}
.bx-trash{
    color:var(--red);
    height:20px;
    width:20px;
}
.bx-edit{
    color:blue!important;
    height:20px;
    width:20px;
}

/*responsive part start */
@media(max-width:1024px){
body , html{
    overflow-x: clip!important;
}
.first a{
    font-size: 13px!important;
}
.year{
    font-size: 13px!important;
}
.nav-item {
    padding-right: 40px;
}
.work-grid{
    grid-template-columns: 1fr 1fr;
}
.contact-grid{
    width:75%;
}
.login{
    height:688px;
    background-color: var(--primary);
}
.login-form{
    width:45%;
}
.dashboard{
    grid-template-columns: 0.3fr 1fr;
}
.admin{
    height:615px;
    grid-template-columns: 0.3fr 1fr;
}
.admin-form{
    width:60%;
}
}

@media(max-width:768px){
body, html{
    overflow-x: clip!important;
}
.arrow-up{
    right:3.5%;
}
.offcanvas-header{
    height: 90px;
}
.first{
    display: none;
}
.logo{
    height: 80px;
}
.res-nav{
    margin-top: -1.2%;
}
.navbar-toggler{
    border-radius: 0%!important;
}
.navbar-toggler:focus{
    box-shadow: none!important;
}
.nav-item {
    padding-right: 0px;
    padding-top: 10px;
}
.nav-item:first-child{
    padding-top: 0px;
}
.dropdown:hover .dropdown-menu{
    transform: translateY(10px);
}
.mobile-icon{
    display: block;
}
.mobile-icon a{
    color:var(--black);
    font-weight: 500;
}
.mobile-call{
    height:40px!important;
    width:40px!important;
    background-color: var(--primary);
    padding-top: 12px;
    border-radius: 5px;
    color:var(--white);
    margin-right: 7px;
}
header{
    height:500px;
}
.about-grid{
    width:80%;
}
.team-grid{
    grid-template-columns: 1fr 1fr;
}
.aim-grid,.test-grid{
    grid-template-columns: 1fr;
}
.footer-grid{
    grid-template-columns: 1fr 1fr ;
}
.res-footer-top{
    margin-top: 5%;
}
.a-page-grid,.president-grid{
    grid-template-columns: 1fr;
}
.media-grid{
    grid-template-columns: 1fr 1fr 1fr;
}
.member-grid{
    width:50%;
}
.contact-grid{
    width:90%;
    grid-template-columns: 1fr;
}
.dashboard{
    grid-template-columns: 0.3fr 1fr;
}
.dashboard h5{
    font-size: 20px;
}
.admin-form{
    width:80%;
}
.table-right{
    padding-right: 7%;
}
}

@media(max-width:425px){
body, html{
    overflow-x: clip!important;
}
.arrow-up{
    right:5%;
}
.res-nav{
    margin-top: -2.2%;
    width:96%!important;
}
.offcanvas{
    width:75%!important;
}
header{
    height:280px;
}
.about-grid{
    width:90%;
}
.gap{
    margin-top: 10%;
}
.work-grid{
    grid-template-columns: 1fr;
}
.services{
    height:270px;
}
.team-grid{
    grid-template-columns: 1fr;
}
.all-grid{
    grid-template-columns: 1fr;
}
.border-one{
    border-bottom: 2px solid var(--primary);
    border-right: none;
    padding:25px 30px 25px 10px;
}
.border-two{
    border-bottom: 2px solid var(--primary);
    padding:25px 30px 25px 10px;
}
.border-three{
    border-bottom: 2px solid var(--primary);
    border-right: none;
    padding:25px 30px 25px 10px;
}
.border-four{
    padding:25px 30px 25px 10px;
}
.footer-grid{
    grid-template-columns: 1fr;
}
.res-footer-tops{
    margin-top: 5%;
}
.footer-flex{
    display: flex;
    justify-content: left;
    flex-direction: column;
    margin-top: 3%;
}
.footer-top{
    margin-top: 7%;
}
.media-grid{
    grid-template-columns: 1fr;
}
.member-grid{
    width:90%;
}
.contact-grid{
    margin-top: 8%;
}
.map{
    height:250px;
}
.grid-donate{
    width:90%;
}
.login-form{
    width:90%;
}
.dashboard-left{
    border-right: none;
}
.dashboard-left h5{
    font-size: 18px;
}
.admin{
    grid-template-columns: 1fr;
    overflow-x: hidden!important;
    width:80%;
    margin: auto;
    border-bottom: 1px solid var(--lightgray);
}
.admin-box{
    text-align: center;
}
.admin-sub {
    width: 80%;
    margin: 0%;
    margin-top: 2%;
    margin-left: 2.5%;
}
}

@media(max-width:375px){
body, html{
    overflow-x: clip!important;
}
.res-nav{
    margin-top: -2.3%;
    width:97%!important;
}
.offcanvas{
    width:80%!important;
}
header{
    height:250px;
}
}

