/* GOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background: #FFFFFF;
    background-image: url(../images/body-bg.png);
    background-size: cover;
    background-position: top;
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input {
    outline: none !important;
}
/* GOBAL_CSS_CHANGES_END_HERE */
/* GOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --green: #BFDA3C;
    --black: #000000;
    --paragraph: #565656;
    --btn-color: #064459;
    --blue: #201C44;
    --white: #ffffff;
    --gilroy-bold: "Gilroy-Bold";
    --gilroy-regular: "Gilroy-Regular";
    --gilroy-semiBold: "Gilroy-SemiBold";
    --manrope-bold: "Manrope-Bold";
    --manrope-medium: "Manrope-Medium";
    --manrope-regular: "Manrope-Regular";
    --manrope-extraBold: "Manrope-ExtraBold";
    --manrope-semiBold: "Manrope-SemiBold";
    --montserrat-semiBold: "Montserrat-SemiBold";
    --playfairDisplay-bold: "PlayfairDisplay-Bold";
    --plusJakartaSans-bold: "PlusJakartaSans-Bold";
    --inter-regular: "Inter-Regular";
    --mulish-bold: "Mulish-Bold";
    --mulish-regular: "Mulish-Regular";
}
/* GOBAL_VAR_CSS_CSS_HERE */
/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Gilroy-Bold";
    src: url("../webfonts/Gilroy-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy-Regular";
    src: url("../webfonts/Gilroy-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Poppins-Regular";
    src: url("../webfonts/Poppins-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-Bold";
    src: url("../webfonts/Manrope-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-Medium";
    src: url("../webfonts/Manrope-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-Regular";
    src: url("../webfonts/Manrope-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-ExtraBold";
    src: url("../webfonts/Manrope-ExtraBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-SemiBold";
    src: url("../webfonts/Manrope-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat-SemiBold";
    src: url("../webfonts/Montserrat-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "PlayfairDisplay-Bold";
    src: url("../webfonts/PlayfairDisplay-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "PlusJakartaSans-Bold";
    src: url("../webfonts/PlusJakartaSans-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Inter-Regular";
    src: url("../webfonts/Inter-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Mulish-Bold";
    src: url("../webfonts/Mulish-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Mulish-Regular";
    src: url("../webfonts/Mulish-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
/* FONT-CSS-END-HERE */
/* HEADER-CSS-START-FROM-HERE */
.header-main-wrapper{
    background: #FFFFFF;
    box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.15);
    padding: 10px 0px 10px 0px;
    z-index: 99999999;
    position: fixed;
    width: 100%;
}
.header-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-nav-flex{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 80%;
    gap: 50px;
}
.header-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-nav ul li a{
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--black);
}
.header-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    background-color: var(--green);
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border-radius: 5px;
    transition: 0.5s all;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.header-btn a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: translate(-150px , 0px);
    transition: 0.5s all;
    transform-origin: left;
    z-index: -1;
}
.header-btn a:hover::before{
    transform: translate(0px , 0px);
}
.header-btn a:hover{
    color: var(--green);
    border: 1px solid var(--green);
}


/* HEADER-CSS-END-HERE */
.index-banner-wrapper .item{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 85vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    position: relative;
}
.index-banner-wrap-text h6{
    font-size: 65px;
    font-family: var(--manrope-regular);
    color: var(--black);
    margin: 0px 0px 20px 0px;
}
.index-banner-wrap-text h6 span{
    font-family: var(--manrope-extraBold);
    color: var(--green);
}
.index-banner-wrap-text p{
    font-size: 22px;
    font-family: var(--manrope-medium);
    color: var(--black);
    margin: 0px 0px 20px 0px;
}
.index-banner-wrap-btn a{
    display: flex;
    align-items: center;
    width: 240px;
    height: 60px;
    background-color: transparent;
    border: 1px solid var(--black);
    font-size: 18px;
    font-family: var(--manrope-bold);
    color: var(--black);
    padding: 0px 0px 0px 20px;
    gap: 50px;
    transition: 0.5s all;
    border-radius: 5px;
}
.index-banner-wrap-btn a:hover{
    gap: 70px;
    background-color: var(--black);
    color: var(--white);
}
.index-banner-wrap-arrow{
    position: absolute;
    bottom: 3%;
    right: 50%;
    z-index: 9999;
}
.index-banner-wrap-arrow i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    background-color: #E1EEA3;
    color: var(--black);
    border-radius: 50px;
    font-size: 25px;
}
.index-first-wrapper {
    padding: 150px 0px;
    position: relative;
}
.index-first-wrap-text h6{
    font-size: 50px;
    font-family: var(--manrope-extraBold);
    color: var(--black);
    width: 80%;
    margin: 0px 0px 20px 0px;
}
.index-first-wrap-text p{
    font-size: 18px;
    font-family: var(--manrope-regular);
    color: var(--paragraph);
    margin: 0px 0px 20px 0px;
}
.index-first-wrap-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    background-color: var(--btn-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--gilroy-bold);
    color: var(--white);
    transition: 0.5s all;
}
.index-first-wrap-btn a:hover{
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    background-color: transparent;
}
.index-first-wrap-box-1 {
    position: absolute;
    top: 0;
    left: 0;
}
.index-first-wrap-box-2 {
    position: absolute;
    top: 0;
    right: 0;
}
.index-first-wrap-btn{
    position: relative;
}
.index-first-wrap-line{
    position: absolute;
    bottom: -250%;
    right: 40%;
}
.index-first-wrap-bottom-line {
    position: absolute;
    bottom: 0;
}
.index-second-wrapper {
    padding: 0px 0px 100px 0px;
}
.index-second-wrap-text{
    text-align: center;
}
.index-second-wrap-text h6{
    font-size: 38px;
    font-family: var(--plusJakartaSans-bold);
    color: var(--blue);
    margin: 0px 0px 10px 0px;
}
.index-second-wrap-text p{
    font-size: 16px;
    font-family: var(--inter-regular);
    color: var(--blue);
    margin: 0px 0px 50px 0px;
}
.index-second-wrap-box-text p{
    font-size: 16px;
    font-family: var(--inter-regular);
    color: #131126;
    margin: 10px 0px 10px 0px;
    transition: 0.5s all;
}
.index-second-wrap-box-text h6{
    font-size: 22px;
    font-family: var(--plusJakartaSans-bold);
    color: var(--blue);
    margin: 0px 0px 40px 0px;
    transition: 0.5s all;
}
.index-second-wrap-box-text-icon i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: transparent;
    border: 1px solid var(--btn-color);
    border-radius: 50px;
    transition: 0.5s all;
}
.index-second-wrap-box-img{
    overflow: hidden;
    border-radius: 20px 20px 0px 0px;
}
.index-second-wrap-box-img img{
    transition: 0.5s all;
}
.index-second-wrap-box:hover .index-second-wrap-box-text-icon i{
    background-color: var(--green);
    border: none;
    transform: translate(20px, 0px);
}
.index-second-wrap-box:hover .index-second-wrap-box-text p{
    transform: translate(0px , -5px);
}
.index-second-wrap-box:hover .index-second-wrap-box-text h6{
    transform: translate(0px , -5px);
}
.index-second-wrap-box:hover .index-second-wrap-box-img img{
    transform: scale(1.1);
}
.index-third-wrapper{
    background-color: var(--btn-color);
    padding: 50px 0px;
}
.index-third-wrap-text{
    text-align: center;
}
.index-third-wrap-text h2{
    font-size: 14px;
    font-family: var(--montserrat-semiBold);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.index-third-wrap-text h6{
    font-size: 30px;
    font-family: var(--playfairDisplay-bold);
    color: var(--white);
    margin: 0px 0px 30px 0px;
}
.index-third-wrap-testimonials{
    text-align: center;
}
.index-third-wrap-testimonials-headings h4{
    font-size: 15px;
    font-family: var(--playfairDisplay-bold);
    color: var(--white);
    margin: 30px 0px 0px 0px;
}
.index-third-wrap-testimonials-headings h2{
    font-size: 12px;
    font-family: var(--manrope-semiBold);
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.index-third-wrap-testimonials-text p{
    font-size: 15px;
    font-family: var(--montserrat-semiBold);
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.index-third-slider{
    position: relative;
}
.index-third-slider .owl-nav button.owl-prev{
    position: absolute;
    left: -10%;
    top: 20%;
}
.index-third-slider .owl-nav button.owl-next{
    position: absolute;
    right: -10%;
    top: 20%;
}
.index-third-slider .owl-nav button.owl-prev:hover{
    background-color: transparent;
}
.index-third-slider .owl-nav button.owl-next:hover{
    background-color: transparent;
}
.index-third-slider .owl-nav button.owl-prev i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: var(--green);
    border-radius: 50px;
    border-radius: 50px;
    color: var(--btn-color);
    font-size: 18px;
    transition: 0.5s all;
}
.index-third-slider .owl-nav button.owl-prev i:hover {
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.index-third-slider .owl-nav button.owl-next i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: var(--green);
    border-radius: 50px;
    border-radius: 50px;
    color: var(--btn-color);
    font-size: 18px;
    transition: 0.5s all;
}
.index-third-slider .owl-nav button.owl-next i:hover {
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.index-third-slider .owl-dots .owl-dot span{
    width: 20px;
    height: 5px;
    border-radius: 5px;
    background-color: #FFFFFF4D;
    transition: 0.5s all;
}
.index-third-slider .owl-dot:hover span{
    background-color: var(--white) !important;
}
.index-third-slider .owl-dots .owl-dot.active span{
    background-color: var(--white) !important;
}
.index-fourth-wrapper {
    padding: 100px 0px 100px 0px;
}
.index-fourth-wrap-text h6{
    font-size: 44px;
    font-family: var(--manrope-semiBold);
    color: var(--black);
    margin: 0px 0px 20px 0px;
}
.index-fourth-wrap-text p{
    font-size: 18px;
    font-family: var(--manrope-regular);
    color: var(--paragraph);
    margin: 0px 0px 20px 0px;
}
.index-fourth-wrap-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 155px;
    height: 60px;
    background-color: var(--btn-color);
    border-radius: 5px;
    font-size: 17px;
    font-family: var(--gilroy-bold);
    color: var(--white);
    transition: 0.5s all;
}
.index-fourth-wrap-btn a:hover{
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    background-color: transparent;
}
.index-fifth-wrapper {
    padding: 100px 0px 100px 0px;
}
.index-fifth-wrap-text{
    text-align: center;
}
.index-fifth-wrap-text h6{
    font-size: 52px;
    font-family: var(--manrope-extraBold);
    color: var(--black);
    margin: 0px 0px 50px 0px;
}
.index-fifth-wrap-logo ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index-sixth-wrapper{
    background-image: url(../images/sixth-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index-sixth-wrap-box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 590px;
    background-color: var(--green);
    height: 310px;
    padding: 0px 0px 0px 50px;
    border-radius: 15px;
}
.index-sixth-wrap-box-text h2{
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.index-sixth-wrap-box-text h6{
    font-size: 30px;
    font-family: var(--manrope-extraBold);
    color: var(--black);
    width: 60%;
    margin: 0px 0px 20px 0px;
}
.index-sixth-wrap-box-input{
    display: flex;
    align-items: center;
}
.index-sixth-wrap-box-input input{
    display: flex;
    align-items: center;
    width: 355px;
    height: 55px;
    background-color: var(--white);
    border: none;
    padding: 0px 20px 0px 20px;
    font-size: 14px;
    font-family: var(--gilroy-regular);
    color: #1B1C31;
}
.index-sixth-wrap-box-input a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 135px;
    height: 55px;
    background-color: var(--btn-color);
    font-size: 14px;
    font-family: var(--gilroy-semiBold);
    color: #E8F2FF;
    transition: 0.5s all;
}
.index-sixth-wrap-box-input a:hover {
    background-color: transparent;
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
}
.contact-first-wrapper {
    padding: 100px 0px;
}
.contact-first-wrap-text h2{
    font-size: 50px;
    font-family: var(--gilroy-bold);
    color: var(--black);
}
.contact-first-wrap-text h6{
    font-size: 30px;
    font-family: var(--manrope-regular);
    color: var(--green);
}
.contact-first-input input{
    width: 100%;
    height: 50px;
    padding: 0px 20px;
    background-color: transparent;
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    font-size: 16px;
    font-family: var(--gilroy-regular);
    margin: 0px 0px 20px 0px;
    border-radius: 5px;
    transition: 0.3s all;
}
.contact-first-input input:focus{
    border: 1px solid var(--green);
}
.contact-first-input textarea{
    width: 100%;
    height: 150px;
    padding:15px 20px;
    background-color: transparent;
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    font-size: 16px;
    font-family: var(--gilroy-regular);
    margin: 0px 0px 20px 0px;
    border-radius: 5px;
    transition: 0.3s all;
    resize: none;
    outline: none;
}
.contact-first-input textarea:focus{
    border: 1px solid var(--green);
}
.contact-first-input button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    background-color: var(--green);
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border: none;
    border-radius: 5px;
    transition: 0.5s all;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.contact-first-input button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: translate(-150px , 0px);
    transition: 0.5s all;
    transform-origin: left;
    z-index: -1;
}
.contact-first-input button:hover::before {
   transform: translate(0);
}
.contact-first-input button:hover{
    color: var(--green);
    border: 1px solid var(--green);
}
.contact-first-wrap-text {
    margin: 0px 0px 30px 0px;
}
.contact-second-text h6{
    font-size: 30px;
    font-family: var(--gilroy-bold);
    color: var(--black);
    margin: 0px 0px 50px 0px;
}
.contact-second-text h2{
    font-size: 16px;
    font-family: var(--gilroy-bold);
    color: var(--blue);
}
.contact-second-text p{
    font-size: 16px;
    font-family: var(--gilroy-regular);
    color: var(--btn-color);
    margin: 0px 0px 30px 0px;
}
.contact-second-text ul li{
    font-size: 16px;
    font-family: var(--gilroy-regular);
    color: var(--btn-color);
}
.about-banner-wrapper{
    background-image: url(../images/new-img-5.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}
.copy-banner-wrapper{
    background-image: url(../images/home.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}
.contact-banner-wrapper{
    background-image: url(../images/hi-1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}
.fin-banner-wrapper{
    background-image: url(../images/new-img-3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}
.donate-banner-wrapper{
    background-image: url(../images/new-img-4.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}
.common-banner-warp-text h6{
    font-size: 65px;
    font-family: var(--manrope-regular);
    color: var(--black);
}
.common-banner-warp-text span{
    font-family: var(--manrope-extraBold);
    color: var(--green);
}
.about-second-wrapper{
    padding: 100px 0px;
}
.about-fisrt-wrap-text h6{
    font-family: var(--manrope-extraBold);
    color: var(--black);
    font-size: 65px;
    margin: 0px 0px 10px 0px;
}
.about-first-wapper{
    padding: 100px 0px;
}
.about-fisrt-wrap-text p{
    font-size: 18px;
    font-family: var(--manrope-regular);
    color: var(--paragraph);
    margin: 0px 0px 20px 0px;
    width: 80%;
}
.about-second-wrap-img img{
    transition: 0.5s all;
}
.about-second-wrap-box:hover .about-second-wrap-img img{
    transform: scale(1.1);
}
.about-second-wrap-img{
    text-align: center;
    overflow: hidden;
}
.about-second-wrap-text{
    text-align: center;
}
.about-second-wrap-text h4{
    font-size: 20px;
    font-family: var(--playfairDisplay-bold);
    color: var(--black);
    margin: 10px 0px 10px 0px;
}
.about-second-wrap-text p{
    font-size: 16px;
    font-family: var(--inter-regular);
    color: #131126;
    margin: 10px 0px 10px 0px;
}
.about-top-text {
    text-align: center;
}
.about-top-text h6{
    font-family: var(--manrope-extraBold);
    color: var(--black);
    font-size: 50px;
    margin: 0px 0px 50px 0px ;
}
.home-first-wrap-box{
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}
.home-first-wrapper{
    padding: 100px 0px;
}
.home-first-wrap-box a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    background-color: var(--green);
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border-radius: 5px;
    transition: 0.5s all;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.home-first-wrap-box a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: translate(-150px , 0px);
    transition: 0.5s all;
    transform-origin: left;
    z-index: -1;
}
.fin-first-wrapper{
    padding: 100px 0px;
}
.fin-first-wrap-text{
    text-align: center;
}
.fin-first-wrap-text h6{
    font-size: 55px;
    font-family: var(--gilroy-bold);
    color: var(--black);
    margin: 0px 0px 30px 0px;
}
.fin-first-wrap-text p{
    font-size: 20px;
    font-family: var(--manrope-bold);
    color: var(--btn-color);
    margin: 0px 0px 30px 0px;
}
.fin-first-wrap-img-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.index-seventh-wrapper {
    padding: 100px 0px;
}
.index-seventh-wrap-text{
    text-align: center;
    box-shadow: 0px 1px 11px 0px #0000004a;
    padding: 50px 20px 50px 20px;
    backdrop-filter: blur(10px);
    background-color: #bfda3c;
    border-radius: 5px;
}
.index-seventh-wrap-text h6{
    font-size: 22px;
    font-family: var(--manrope-bold);
    color: var(--blue);
    width: 60%;
    margin: 0 auto 40px auto;
}
.index-seventh-wrap-text p{
    font-size: 22px;
    font-family: var(--manrope-regular);
    color: var(--btn-color);
    margin: 0 auto;
    width: 70%;
}
.index-eighth-wrapper{
    background-image: url(../images/index-eighth-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.index-eighth-wrapper::before{
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgb(0 0 0 / 30%) 0%, rgba(0,0,0,0) 140%);
    width: 100%;
    height: 100%;
    left: 0%;
    bottom: 0%;
}
.index-eighth-wrap-slider-text{
    text-align: center;
}
.index-eighth-wrap-slider-text h6{
    font-size: 55px;
    font-family: var(--manrope-bold);
    color: var(--white);
    margin: 0 auto;
    width: 70%;
}
.index-eight-slider .owl-dots .owl-dot span{
    background-color: var(--white);
    transition: 0.5s all;
}
.index-eight-slider .owl-dots .owl-dot.active span,
.index-eight-slider .owl-dots .owl-dot:hover span{
    background-color: transparent;
    border: 2px solid var(--green);
}
.index-eight-slider{
    position: relative;
}
.index-eight-slider .owl-nav button.owl-prev:hover,
.index-eight-slider .owl-nav button.owl-next:hover{
    background-color: transparent;
}
.index-eight-slider .owl-nav button.owl-next{
    position: absolute;
    right: 0;
    top: 35%;
    font-size: 100px;
    color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: #fff;
    transition: 0.5s all;
    border-radius: 50px;
}
.index-eight-slider .owl-nav button.owl-next:hover{
    background: #ffffff56 !important;
    box-shadow: -5px -5px 30px 5px #ffffff;
}
.index-eight-slider .owl-nav button.owl-next i {
    font-size: 24px;
}
.index-eight-slider .owl-nav button.owl-prev{
    position: absolute;
    left: 0;
    top: 35%;
    font-size: 100px;
    color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: #fff;
    transition: 0.5s all;
    border-radius: 50px;
}
.index-eight-slider .owl-nav button.owl-prev i {
    font-size: 24px;
}
.index-eight-slider .owl-nav button.owl-prev:hover{
    background: #ffffff56 !important;
    box-shadow: -5px -5px 30px 5px #ffffff;
}
.index-eight-slider .owl-dots{
    transform: translate(0px, 30px);
}
.donate-first-wrapper{
    padding: 100px 0px;
}
.donate-first-wrap-text{
    text-align: center;
}
.donate-first-wrap-text h6{
    font-size: 55px;
    font-family: var(--gilroy-bold);
    color: var(--black);
    margin: 0px 0px 30px 0px;
}
.donate-first-wrap-text p{
    font-size: 18px;
    font-family: var(--manrope-medium);
    color: var(--blue);
    width: 70%;
    margin: 0px auto 30px auto;
}
.donate-first-wrap-heading-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--blue);
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 30px 0px;
}
.donate-first-wrap-heading h6{
    font-size: 30px;
    font-family: var(--manrope-bold);
    color: var(--btn-color);
}
.donate-first-wrap-icon ul{
    display: flex;
    align-items: center;
    gap: 10px;   
}
.donate-first-wrap-box-text h6{
    font-size: 60px;
    font-family: var(--manrope-bold);
    color: var(--btn-color);
}
.donate-first-wrap-box-text span{
    font-size: 22px;
    font-family: var(--manrope-bold);
    color: var(--btn-color);
}
.donate-first-wrap-box-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 60px;
    background-color: var(--green);
    font-size: 18px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border-radius: 5px;
    transition: 0.5s all;
}
.donate-first-wrap-box-btn a:hover{
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.donate-first-wrap-box-text-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.footer-wrapper{
    background-color: var(--btn-color);
    padding: 100px 0px 0px 0px;
}
.footer-text h6{
    font-size: 20px;
    font-family: var(--manrope-bold);
    color: var(--white);
    margin: 0px 0px 30px 0px;
}
.footer-text p{
    font-size: 16px;
    font-family: var(--manrope-regular);
    color: var(--white);
    width: 80%;
}
.footer-link h6{
    font-size: 22px;
    font-family: var(--manrope-bold);
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.footer-link ul li a{
    font-size: 16px;
    font-family: var(--manrope-regular);
    color: var(--white);
    line-height: 40px;
}
.f_logo {
    background: #fff;
    padding: 3px 15px;
    width: fit-content;
    border-radius: 5px;
    overflow: hidden;
}
.f_logo img {
    max-width: 110px;
}
.copyright{
    background-color: var(--green);
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0px 0px 0px;
}
.copyright-text{
    text-align: center;
}
.copyright-text p{
    font-size: 12px;
    font-family: var(--manrope-semiBold);
    color: var(--btn-color);
}




.card-1 {
    width: 90%;
    height: 300px;
    transition: all 0.2s;
    position: relative;
    cursor: pointer;
    margin: 0 auto;
}
.card-inner {
    width: inherit;
    height: inherit;
    background: rgba(255,255,255,.05);
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}
.card-1:hover {
    transform: scale(1.04) rotate(1deg);
}
.card-1:hover .home-first-wrap-box a {
    color: var(--green);
    border: 1px solid var(--green);
}
.card-1:hover .home-first-wrap-box a::before {
    transform: translate(0px , 0px);
}
.circle {
    width: 100px;
    height: 100px;
    background: radial-gradient(#b0e633, #53ef7d);
    border-radius: 50%;
    position: absolute;
    animation: move-up6 2s ease-in infinite alternate-reverse;
    }
.circle:nth-child(1) {
    top: -25px;
    left: -25px;
}
.circle:nth-child(2) {
    bottom: -25px;
    right: -25px;
    animation-name: move-down1;
}

@keyframes move-up6 {
to {
    transform: translateY(-10px);
}
}
@keyframes move-down1 {
to {
    transform: translateY(10px);
}
}


/* PRELOADER-CSS */
.preloader {
    position: absolute;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999999999999999999999;
    background: #000000;
}

.preloader .step-1 {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.preloader .step-1 .lines {
    height: 100%;
    width: 0%;
    top: 0;
    left: 0;
    position: relative;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader .step-1 .lines .line-1 {
    width: 50%;
    border-radius: 50%;
    /* z-index: 999999999999999999; */
    position: absolute;
    border: 1px solid var(--green);
    aspect-ratio: 1 / 1;
}


.preloader .step-1 .lines .line-2 {
    width: 35%;
    border-radius: 50%;
    /* z-index: 999999999999999999; */
    position: absolute;
    border: 1px solid var(--green);
    aspect-ratio: 1 / 1;
}

.preloader .step-1 .lines .line-3 {
    width: 20%;
    border-radius: 50%;
    /* z-index: 999999999999999999; */
    position: absolute;
    border: 1px solid var(--green);
    aspect-ratio: 1 / 1;
}

/* .preloader-active{
    overflow-y: hidden;
} */

.preloader .step-2 {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    zoom: 0.1;
}

.preloader .step-3 {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}   
.preloader .step-3 .bg {
    background: #BFDA3C;
    position: absolute;
    z-index: 1;
    height: 0%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.preloader .step-3 img {
    position: relative;
    z-index: 99999;
}

.preloader .step-3 .frame-logo-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.frame-logo{
    text-align: center;
}
.frame-logo-2{
   text-align: center;
}
.frame-logo-2 img{
    filter: brightness(0) invert(1);
}    
/* PRELOADER-CSS */

/* NEW-PAGES-CSS */
.login-first-wrapper{
    background-image: url(../images/login-bg.png);
    background-position: top;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.login-first-wrapper::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0000008a;
    z-index: -1;
}
.login-first-wrap-logo {
    margin: 0px 0px 30px 0px;
}
.login-first-wrap-text h6{
    font-size: 40px;
    font-family: var(--mulish-bold);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.login-first-wrap-text p{
    font-size: 26px;
    font-family: var(--mulish-regular);
    color: var(--white);
}
.login-main-box{
    position: relative;
    min-height: 700px;
    width: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #DFE0EB;
    border-radius: 8px;
    flex-direction: column;
}
.login-main-box-text{
    text-align: center;
}
.login-main-box-text h6{
    font-size: 24px;
    font-family: var(--mulish-bold);
    color: #252733;
    margin: 0px 0px 10px 0px;
}
.login-main-box-text p{
    font-size: 14px;
    font-family: var(--mulish-regular);
    color: var(--black);
    margin: 0px 0px 20px 0px;
}
.login-main-box-cards-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.login-main-box-card{
    background: #F5F5F5;
    border-radius: 20px;
    width: 240px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.5s all;
    cursor: pointer;
}
.login-main-box-card:hover{
    background-color: transparent;
    border: 1px solid var(--green);
}
.login-main-box-card:hover .login-main-box-check{
    visibility: visible;
    opacity: 1;
}
.login-main-box-check {
    position: absolute;
    right: 4%;
    top: 4%;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s all;
}
.login-main-box-card-icon {
    margin: 0px 0px 10px 0px;
}
.login-main-box-card-text{
    text-align: center;
}
.login-main-box-card-text h2{
    font-size: 18px;
    font-family: var(--mulish-bold);
    color: var(--black);
    width: 60%;
    margin: 0 auto;
}
.login-main-box-fields {
    width: 80%;
}
.login-main-box-field{
    position: relative;
}
.login-main-box-field span{
    position: absolute;
    bottom: 38%;
    right: 3%;
    color: #9FA2B4;
    font-size: 14px;
    cursor: pointer;
}
.login-main-box-field-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 10px 0px;
}
.login-main-box-field-text p{
    font-size: 12px;
    font-family: var(--mulish-bold);
    color: var(--black);
}
.login-main-box-field-text p label{
    color: #FF0303;
}
.login-main-box-field-text a{
    font-size: 10px;
    font-family: var(--mulish-regular);
    color: var(--black);
}
.login-main-box-field input{
    width: 100%;
    height: 45px;
    background-color: #FCFDFE;
    border: 1px solid #F0F1F7;
    border-radius: 8px;
    padding: 0px 15px;
    font-size: 14px;
    font-family: var(--mulish-regular);
    color: var(--black);
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.login-main-box-field input:focus{
    border: 1px solid var(--green);
}
.login-main-box-btn input{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: var(--green);
    box-shadow: 0px 4px 12px rgba(55, 81, 255, 0.24);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--white);
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
    border: none;
}
.login-main-box-btn input:hover{
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.login-main-box-btn button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: var(--green);
    box-shadow: 0px 4px 12px rgba(55, 81, 255, 0.24);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--white);
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
    border: none;
}
.login-main-box-btn button:hover{
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.login-main-box-bottom-text p{
    font-size: 14px;
    font-family: var(--mulish-regular);
    color: var(--black);
}
.login-main-box-bottom-text a{
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--black);
}
.login-modal .modal-dialog {
    height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
}
.login-modal .modal-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login-modal .modal-content {
    border-radius: 30px;
    min-height: 350px;
}
.login-modal-img {
    margin: 0px 0px 10px 0px;
}
.login-modal-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 50px;
    background-color: var(--green);
    box-shadow: 0px 4px 12px rgba(55, 81, 255, 0.24);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--white);
    transition: 0.5s all;
    margin: 0px auto 0px auto;
}
.login-modal-btn a:hover{
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.login-modal-text {
    text-align: center;
}
.login-modal-text h6{
    font-size: 30px;
    font-family: var(--mulish-bold);
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.login-modal-text p{
    font-size: 16px;
    font-family: var(--mulish-regular);
    color: #383838;
    margin: 0px 0px 20px 0px;
}
.side-bar-main{
    background: rgba(236, 236, 235, 0.3);
    height: 100vh;
    width: 10%;
    position: absolute;
    left: 0%;
    top: 0%;
}

.sidebar {
    height: 100vh;
    width: 300px;
    background: #6d6d73;
    transition: all 0.5s ease-in-out;
    position: fixed;
}
.content {
    transition: all 0.5s ease-in-out;
    padding: 20px 40px;
    margin: 0px 0px 0px 300px;
}

.content header {
    background: #000;
    padding: 10px;
    display: flex;
    align-items: center;
}
.content header i.fa-bars {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.header-logo {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    margin-left: 30px;
}

.main.close .sidebar {
    width: 0px;
}
.main.close .content {
    width: 100%;
}
.sidebar-logo {
    text-align: center;
    padding: 60px 0px 50px 0px;
}
.side-custom-tab .nav-link{
    background: transparent;
    color: #F1F1F1;
    text-align: start;
    padding: 15px 40px;
    font-family: var(--mulish-regular);
    font-size: 16px;
    transition: 0.3s linear;
    border-bottom: 1px solid #f1f1f124;
}
.side-custom-tab .nav-link:hover {
    background: gray;
}
.side-custom-tab .nav-link.active, .side-custom-tab .show>.nav-link {
    color: #fff;
    background-color: #BFD841;
    border-radius: 0;
    border-left: 4px solid #ffffff;
}
.side-custom-tab .nav {
    width: 100%;
}
.side-custom-tab .nav-link i {
    margin: 0px 10px 0px 0px;
    width: 20px;
    color: #F1F1F1;
}
.side-custom-tab .nav-link img{
    margin: 0px 10px 0px 0px;
}
.header-heding h6{
    font-family: var(--mulish-bold);
    font-size: 35px;
    color: var(--black);
}
.header-dash-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    margin: 0px auto 50px auto;
}
.header-right-d{
    display: flex;
    align-items: center;
    gap: 60px;
}
.header-userimg{
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}
.header-userimg h2{
    font-family: var(--mulish-bold);
    font-size: 18px;
    color: #252733;
}
.header-icons{
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 20px;
}
.header-icons a{
    color: #C5C7CD;
}
.header-icons img{
    width: 25px;
}
.header-userimg::before{
    content: '';
    width: 2px;
    height: 30px;
    background: #DFE0EB;
    position: absolute;
    left: -17%;
    top: 18%;
}
.dash-card-main h5{
    font-family: var(--mulish-bold);
    font-size: 20px;
    color: #9FA2B4;
    margin: 0px 0px 10px 0px;
    transition: 0.5s all;
}
.dash-card-main h6{
    font-family: var(--mulish-bold);
    font-size: 40px;
    color: var(--black);
    transition: 0.5s all;
}
.dash-card-main {
    border: 1px solid #DFE0EB;
    background: var(--white);
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
}
.dash-card-main:hover{
    border: 1px solid #BFD841;
    box-shadow: 1px 3px 8px 3px #bfd84152;
}
.dash-card-main:hover h6, .dash-card-main:hover h5{
    color: #BFD841;
}
.dash-graph-box-text h6{
    font-family: var(--mulish-bold);
    font-size: 30px;
    color: #252733;
    margin: 0px 0px 10px 0px;
}
.dash-garph-box-text-1 p{
    font-family: var(--mulish-regular);
    font-size: 16px;
    color: #9FA2B4;
}
.dash-graph-box-btns{
    display: flex;
    gap: 40px;
}
.dash-graph-box-btns  a{
    font-family: var(--mulish-regular);
    font-size: 16px;
    color: #9FA2B4;
}
.dash-graph-box-btns a i{
    color: #BFD841;
}
.dash-garph-box-text-1{
    display: flex;
    justify-content: space-between;
    margin: 0px 0px 10px 0px;
}
.dash-graph-right-box-1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 2px solid #9fa2b42e;
    padding: 20px;
}
.dash-graph-right-box-1 h5{
    font-family: var(--mulish-bold);
    font-size: 18px;
    color: #9FA2B4;
    margin: 0px 0px 10px 0px;
}
.dash-graph-right-box-1 h6{
    font-family: var(--mulish-bold);
    font-size: 30px;
    color: var(--black);
}
.dash-graph-main-box-f{
    display: flex;
    background-color: var(--white);
    border-radius: 10px;
    width: 95%;
    margin: 0 auto;
    border: 2px solid #9fa2b42e;
}
.dash-graph-right-boxs {
    width: 40%;
    border-left: 2px solid #9fa2b42e;
}
.dash-graph-box {
    width: 70%;
    padding: 20px;
}
.dash-graph-box-img img {
    width: 840px;
}
.dash-booki-list-text h5{
    font-family: var(--mulish-bold);
    font-size: 30px;
    color: var(--black);
}
.dash-booki-list-text-1{
    display: flex;
    gap: 40px;
}
.dash-booki-list-text-1 a{
    font-family: var(--mulish-regular);
    font-size: 17px;
    color: #4B506D;
}
.dash-booki-list-text-1 a i{
    color: #9FA2B4;
}
.dash-booki-list-f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0px 40px 0px;
    padding: 10px 20px 0px 10px;
}
.dash-booki-tasktable table {
    width: 100%;
}
.dash-booki-tasktable .tablep{
    font-family: var(--mulish-regular);
    font-size: 18px;
    color: #9FA2B4;
}
.dash-booki-tasktable thead{
    border-bottom: 2px solid #DFE0EB;
}
.dash-table-text h5{
    font-family: var(--manrope-bold);
    font-size: 12px;
    color: #252733;
}
.dash-table-text p{
    font-family: var(--mulish-regular);
    font-size: 12px;
    color: #C5C7CD;
}
.dash-table-img-f{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0px 10px;
}
.rejected span{
    font-family: var(--manrope-extraBold);
    font-size: 12px;
    color: var(--white);
    background: #F12B2C;
    border-radius: 30px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    transition: 0.3s all;
}
.dash-booki-tasktable table tbody td{
    padding: 0px 10px;
    text-align: start;
    font-family: var(--mulish-bold);
    font-size: 15px;
    color: #252733;
}
.dash-booki-tasktable table tbody td p{
    font-family: var(--mulish-regular);
    font-size: 13px;
    color: #C5C7CD;
}
.dash-booki-tasktable table tbody tr{
    border-bottom: 2px solid #DFE0EB;
    transition: 0.3s linear;
    height: 90px;
}
.dash-booki-tasktable table tbody tr:hover {
    background: #8080801a;
}
.pending span{
    font-family: var(--manrope-extraBold);
    font-size: 12px;
    color: var(--white);
    background: #FEC400;
    border-radius: 30px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}
.dash-booki-tasktable thead tr th{
    padding: 0px 10px 20px 10px;
}
.approve span{
    font-family: var(--manrope-extraBold);
    font-size: 12px;
    color: var(--white);
    background: #29CC97;
    border-radius: 30px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}
.dash-booki-last-text{
    display: flex;
    gap: 20px;
    justify-content: end;
    padding: 30px 0px 0px 0px;
}
.dash-booki-last-text select{
    outline: none;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #9FA2B4;
}
.dash-booki-box-main {
    padding: 20px 20px 20px 20px;
    background-color: var(--white);
    border: 2px solid #9fa2b42e;
    border-radius: 10px;
}
.dash-booki-last-text p{
    font-family: var(--mulish-regular);
    font-size: 14px;
    color: #9FA2B4;
}
.dash-booki-last-icons i{
    color: #9FA2B4;
}
.disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
.dash-job-box-main {
    padding: 20px 20px 20px 20px;
    background-color: var(--white);
    border: 2px solid #9fa2b42e;
    border-radius: 10px;
    width: 50%;
    margin: 0 auto;
}
 /*NEW-PAGES-CSS GOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background: #FFFFFF;
    background-image: url(../images/body-bg.png);
    background-size: cover;
    background-position: top;
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input {
    outline: none !important;
}
 GOBAL_CSS_CHANGES_END_HERE 
 GOBAL_VAR_CSS_START_FROM_HERE 
:root {
    --green: #BFDA3C;
    --black: #000000;
    --paragraph: #565656;
    --btn-color: #064459;
    --blue: #201C44;
    --white: #ffffff;
    --gilroy-bold: "Gilroy-Bold";
    --gilroy-regular: "Gilroy-Regular";
    --gilroy-semiBold: "Gilroy-SemiBold";
    --manrope-bold: "Manrope-Bold";
    --manrope-medium: "Manrope-Medium";
    --manrope-regular: "Manrope-Regular";
    --manrope-extraBold: "Manrope-ExtraBold";
    --manrope-semiBold: "Manrope-SemiBold";
    --montserrat-semiBold: "Montserrat-SemiBold";
    --playfairDisplay-bold: "PlayfairDisplay-Bold";
    --plusJakartaSans-bold: "PlusJakartaSans-Bold";
    --inter-regular: "Inter-Regular";
    --mulish-bold: "Mulish-Bold";
    --mulish-regular: "Mulish-Regular";
}
 GOBAL_VAR_CSS_CSS_HERE 
 FONT_CSS_START_FROM_HERE 
@font-face {
    font-family: "Gilroy-Bold";
    src: url("../webfonts/Gilroy-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy-Regular";
    src: url("../webfonts/Gilroy-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Poppins-Regular";
    src: url("../webfonts/Poppins-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-Bold";
    src: url("../webfonts/Manrope-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-Medium";
    src: url("../webfonts/Manrope-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-Regular";
    src: url("../webfonts/Manrope-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-ExtraBold";
    src: url("../webfonts/Manrope-ExtraBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Manrope-SemiBold";
    src: url("../webfonts/Manrope-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat-SemiBold";
    src: url("../webfonts/Montserrat-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "PlayfairDisplay-Bold";
    src: url("../webfonts/PlayfairDisplay-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "PlusJakartaSans-Bold";
    src: url("../webfonts/PlusJakartaSans-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Inter-Regular";
    src: url("../webfonts/Inter-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Mulish-Bold";
    src: url("../webfonts/Mulish-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Mulish-Regular";
    src: url("../webfonts/Mulish-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
 FONT-CSS-END-HERE 
 HEADER-CSS-START-FROM-HERE 
.header-main-wrapper{
    background: #FFFFFF;
    box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.15);
    padding: 10px 0px 10px 0px;
    z-index: 99999999;
    position: fixed;
    width: 100%;
}
.header-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-nav-flex{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 80%;
    gap: 50px;
}
.header-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-nav ul li a{
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--black);
}
.header-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    background-color: var(--green);
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border-radius: 5px;
    transition: 0.5s all;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.header-btn a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: translate(-150px , 0px);
    transition: 0.5s all;
    transform-origin: left;
    z-index: -1;
}
.header-btn a:hover::before{
    transform: translate(0px , 0px);
}
.header-btn a:hover{
    color: var(--green);
    border: 1px solid var(--green);
}
 HEADER-CSS-END-HERE 
.index-banner-wrapper .item{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 85vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    position: relative;
}
.index-banner-wrap-text h6{
    font-size: 65px;
    font-family: var(--manrope-regular);
    color: var(--black);
    margin: 0px 0px 20px 0px;
}
.index-banner-wrap-text h6 span{
    font-family: var(--manrope-extraBold);
    color: var(--green);
}
.index-banner-wrap-text p{
    font-size: 22px;
    font-family: var(--manrope-medium);
    color: var(--black);
    margin: 0px 0px 20px 0px;
}
.index-banner-wrap-btn a{
    display: flex;
    align-items: center;
    width: 240px;
    height: 60px;
    background-color: transparent;
    border: 1px solid var(--black);
    font-size: 18px;
    font-family: var(--manrope-bold);
    color: var(--black);
    padding: 0px 0px 0px 20px;
    gap: 50px;
    transition: 0.5s all;
    border-radius: 5px;
}
.index-banner-wrap-btn a:hover{
    gap: 70px;
    background-color: var(--black);
    color: var(--white);
}
.index-banner-wrap-arrow{
    position: absolute;
    bottom: 3%;
    right: 50%;
    z-index: 9999;
}
.index-banner-wrap-arrow i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    background-color: #E1EEA3;
    color: var(--black);
    border-radius: 50px;
    font-size: 25px;
}
.index-first-wrapper {
    padding: 150px 0px;
    position: relative;
}
.index-first-wrap-text h6{
    font-size: 50px;
    font-family: var(--manrope-extraBold);
    color: var(--black);
    width: 80%;
    margin: 0px 0px 20px 0px;
}
.index-first-wrap-text p{
    font-size: 18px;
    font-family: var(--manrope-regular);
    color: var(--paragraph);
    margin: 0px 0px 20px 0px;
}
.index-first-wrap-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    background-color: var(--btn-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--gilroy-bold);
    color: var(--white);
    transition: 0.5s all;
}
.index-first-wrap-btn a:hover{
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    background-color: transparent;
}
.index-first-wrap-box-1 {
    position: absolute;
    top: 0;
    left: 0;
}
.index-first-wrap-box-2 {
    position: absolute;
    top: 0;
    right: 0;
}
.index-first-wrap-btn{
    position: relative;
}
.index-first-wrap-line{
    position: absolute;
    bottom: -250%;
    right: 40%;
}
.index-first-wrap-bottom-line {
    position: absolute;
    bottom: 0;
}
.index-second-wrapper {
    padding: 0px 0px 100px 0px;
}
.index-second-wrap-text{
    text-align: center;
}
.index-second-wrap-text h6{
    font-size: 38px;
    font-family: var(--plusJakartaSans-bold);
    color: var(--blue);
    margin: 0px 0px 10px 0px;
}
.index-second-wrap-text p{
    font-size: 16px;
    font-family: var(--inter-regular);
    color: var(--blue);
    margin: 0px 0px 50px 0px;
}
.index-second-wrap-box-text p{
    font-size: 16px;
    font-family: var(--inter-regular);
    color: #131126;
    margin: 10px 0px 10px 0px;
    transition: 0.5s all;
}
.index-second-wrap-box-text h6{
    font-size: 22px;
    font-family: var(--plusJakartaSans-bold);
    color: var(--blue);
    margin: 0px 0px 40px 0px;
    transition: 0.5s all;
}
.index-second-wrap-box-text-icon i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: transparent;
    border: 1px solid var(--btn-color);
    border-radius: 50px;
    transition: 0.5s all;
}
.index-second-wrap-box-img{
    overflow: hidden;
    border-radius: 20px 20px 0px 0px;
}
.index-second-wrap-box-img img{
    transition: 0.5s all;
}
.index-second-wrap-box:hover .index-second-wrap-box-text-icon i{
    background-color: var(--green);
    border: none;
    transform: translate(20px, 0px);
}
.index-second-wrap-box:hover .index-second-wrap-box-text p{
    transform: translate(0px , -5px);
}
.index-second-wrap-box:hover .index-second-wrap-box-text h6{
    transform: translate(0px , -5px);
}
.index-second-wrap-box:hover .index-second-wrap-box-img img{
    transform: scale(1.1);
}
.index-third-wrapper{
    background-color: var(--btn-color);
    padding: 50px 0px;
}
.index-third-wrap-text{
    text-align: center;
}
.index-third-wrap-text h2{
    font-size: 14px;
    font-family: var(--montserrat-semiBold);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.index-third-wrap-text h6{
    font-size: 30px;
    font-family: var(--playfairDisplay-bold);
    color: var(--white);
    margin: 0px 0px 30px 0px;
}
.index-third-wrap-testimonials{
    text-align: center;
}
.index-third-wrap-testimonials-headings h4{
    font-size: 15px;
    font-family: var(--playfairDisplay-bold);
    color: var(--white);
    margin: 30px 0px 0px 0px;
}
.index-third-wrap-testimonials-headings h2{
    font-size: 12px;
    font-family: var(--manrope-semiBold);
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.index-third-wrap-testimonials-text p{
    font-size: 15px;
    font-family: var(--montserrat-semiBold);
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.index-third-slider{
    position: relative;
}
.index-third-slider .owl-nav button.owl-prev{
    position: absolute;
    left: -10%;
    top: 20%;
}
.index-third-slider .owl-nav button.owl-next{
    position: absolute;
    right: -10%;
    top: 20%;
}
.index-third-slider .owl-nav button.owl-prev:hover{
    background-color: transparent;
}
.index-third-slider .owl-nav button.owl-next:hover{
    background-color: transparent;
}
.index-third-slider .owl-nav button.owl-prev i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: var(--green);
    border-radius: 50px;
    border-radius: 50px;
    color: var(--btn-color);
    font-size: 18px;
    transition: 0.5s all;
}
.index-third-slider .owl-nav button.owl-prev i:hover {
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.index-third-slider .owl-nav button.owl-next i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: var(--green);
    border-radius: 50px;
    border-radius: 50px;
    color: var(--btn-color);
    font-size: 18px;
    transition: 0.5s all;
}
.index-third-slider .owl-nav button.owl-next i:hover {
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.index-third-slider .owl-dots .owl-dot span{
    width: 20px;
    height: 5px;
    border-radius: 5px;
    background-color: #FFFFFF4D;
    transition: 0.5s all;
}
.index-third-slider .owl-dot:hover span{
    background-color: var(--white) !important;
}
.index-third-slider .owl-dots .owl-dot.active span{
    background-color: var(--white) !important;
}
.index-fourth-wrapper {
    padding: 100px 0px 100px 0px;
}
.index-fourth-wrap-text h6{
    font-size: 44px;
    font-family: var(--manrope-semiBold);
    color: var(--black);
    margin: 0px 0px 20px 0px;
}
.index-fourth-wrap-text p{
    font-size: 18px;
    font-family: var(--manrope-regular);
    color: var(--paragraph);
    margin: 0px 0px 20px 0px;
}
.index-fourth-wrap-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 155px;
    height: 60px;
    background-color: var(--btn-color);
    border-radius: 5px;
    font-size: 17px;
    font-family: var(--gilroy-bold);
    color: var(--white);
    transition: 0.5s all;
}
.index-fourth-wrap-btn a:hover{
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    background-color: transparent;
}
.index-fifth-wrapper {
    padding: 100px 0px 100px 0px;
}
.index-fifth-wrap-text{
    text-align: center;
}
.index-fifth-wrap-text h6{
    font-size: 52px;
    font-family: var(--manrope-extraBold);
    color: var(--black);
    margin: 0px 0px 50px 0px;
}
.index-fifth-wrap-logo ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index-sixth-wrapper{
    background-image: url(../images/sixth-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index-sixth-wrap-box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 590px;
    background-color: var(--green);
    height: 310px;
    padding: 0px 0px 0px 50px;
    border-radius: 15px;
}
.index-sixth-wrap-box-text h2{
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.index-sixth-wrap-box-text h6{
    font-size: 30px;
    font-family: var(--manrope-extraBold);
    color: var(--black);
    width: 60%;
    margin: 0px 0px 20px 0px;
}
.index-sixth-wrap-box-input{
    display: flex;
    align-items: center;
}
.index-sixth-wrap-box-input input{
    display: flex;
    align-items: center;
    width: 355px;
    height: 55px;
    background-color: var(--white);
    border: none;
    padding: 0px 20px 0px 20px;
    font-size: 14px;
    font-family: var(--gilroy-regular);
    color: #1B1C31;
}
.index-sixth-wrap-box-input a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 135px;
    height: 55px;
    background-color: var(--btn-color);
    font-size: 14px;
    font-family: var(--gilroy-semiBold);
    color: #E8F2FF;
    transition: 0.5s all;
}
.index-sixth-wrap-box-input a:hover {
    background-color: transparent;
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
}
.contact-first-wrapper {
    padding: 100px 0px;
}
.contact-first-wrap-text h2{
    font-size: 50px;
    font-family: var(--gilroy-bold);
    color: var(--black);
}
.contact-first-wrap-text h6{
    font-size: 30px;
    font-family: var(--manrope-regular);
    color: var(--green);
}
.contact-first-input input{
    width: 100%;
    height: 50px;
    padding: 0px 20px;
    background-color: transparent;
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    font-size: 16px;
    font-family: var(--gilroy-regular);
    margin: 0px 0px 20px 0px;
    border-radius: 5px;
    transition: 0.3s all;
}
.contact-first-input input:focus{
    border: 1px solid var(--green);
}
.contact-first-input textarea{
    width: 100%;
    height: 150px;
    padding:15px 20px;
    background-color: transparent;
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    font-size: 16px;
    font-family: var(--gilroy-regular);
    margin: 0px 0px 20px 0px;
    border-radius: 5px;
    transition: 0.3s all;
    resize: none;
    outline: none;
}
.contact-first-input textarea:focus{
    border: 1px solid var(--green);
}
.contact-first-input button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    background-color: var(--green);
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border: none;
    border-radius: 5px;
    transition: 0.5s all;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.contact-first-input button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: translate(-150px , 0px);
    transition: 0.5s all;
    transform-origin: left;
    z-index: -1;
}
.contact-first-input button:hover::before {
   transform: translate(0);
}
.contact-first-input button:hover{
    color: var(--green);
    border: 1px solid var(--green);
}
.contact-first-wrap-text {
    margin: 0px 0px 30px 0px;
}
.contact-second-text h6{
    font-size: 30px;
    font-family: var(--gilroy-bold);
    color: var(--black);
    margin: 0px 0px 50px 0px;
}
.contact-second-text h2{
    font-size: 16px;
    font-family: var(--gilroy-bold);
    color: var(--blue);
}
.contact-second-text p{
    font-size: 16px;
    font-family: var(--gilroy-regular);
    color: var(--btn-color);
    margin: 0px 0px 30px 0px;
}
.contact-second-text ul li{
    font-size: 16px;
    font-family: var(--gilroy-regular);
    color: var(--btn-color);
}
.about-banner-wrapper{
    background-image: url(../images/new-img-5.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}
.copy-banner-wrapper {
    background-image: url(../images/home.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    display: none;
}
.contact-banner-wrapper{
    background-image: url(../images/hi-1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}
.fin-banner-wrapper{
    background-image: url(../images/happy-male-doctor.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}
.donate-banner-wrapper{
    background-image: url(../images/new-img-4.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}
.common-banner-warp-text h6{
    font-size: 65px;
    font-family: var(--manrope-regular);
    color: var(--black);
}
.common-banner-warp-text span{
    font-family: var(--manrope-extraBold);
    color: var(--green);
}
.about-second-wrapper{
    padding: 100px 0px;
}
.about-fisrt-wrap-text h6{
    font-family: var(--manrope-extraBold);
    color: var(--black);
    font-size: 65px;
    margin: 0px 0px 10px 0px;
}
.about-first-wapper{
    padding: 100px 0px;
}
.about-fisrt-wrap-text p{
    font-size: 18px;
    font-family: var(--manrope-regular);
    color: var(--paragraph);
    margin: 0px 0px 20px 0px;
    width: 80%;
}
.about-second-wrap-img img{
    transition: 0.5s all;
}
.about-second-wrap-box:hover .about-second-wrap-img img{
    transform: scale(1.1);
}
.about-second-wrap-img{
    text-align: center;
    overflow: hidden;
}
.about-second-wrap-text{
    text-align: center;
}
.about-second-wrap-text h4{
    font-size: 20px;
    font-family: var(--playfairDisplay-bold);
    color: var(--black);
    margin: 10px 0px 10px 0px;
}
.about-second-wrap-text p{
    font-size: 16px;
    font-family: var(--inter-regular);
    color: #131126;
    margin: 10px 0px 10px 0px;
}
.about-top-text {
    text-align: center;
}
.about-top-text h6{
    font-family: var(--manrope-extraBold);
    color: var(--black);
    font-size: 50px;
    margin: 0px 0px 50px 0px ;
}
.home-first-wrap-box h6 {
    font-family: var(--manrope-extraBold);
    color: var(--white);
    font-size: 30px;
}
.home-first-wrap-box{
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: #10445a;
    border-radius: 10px;
}
.home-first-wrapper {
    background-image: url(../images/home.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}
.home-first-wrapper::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #00000014;
    backdrop-filter: blur(5px);
}
.home-first-wrap-box a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    background-color: var(--green);
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border-radius: 5px;
    transition: 0.5s all;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.home-first-wrap-box a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: translate(-150px , 0px);
    transition: 0.5s all;
    transform-origin: left;
    z-index: -1;
}
.fin-first-wrapper{
    padding: 100px 0px;
}
.fin-first-wrap-text{
    text-align: center;
}
.fin-first-wrap-text h6{
    font-size: 55px;
    font-family: var(--gilroy-bold);
    color: var(--black);
    margin: 0px 0px 30px 0px;
}
.fin-first-wrap-text p{
    font-size: 20px;
    font-family: var(--manrope-bold);
    color: var(--btn-color);
    margin: 0px 0px 30px 0px;
}
.fin-first-wrap-img-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.index-seventh-wrapper {
    padding: 100px 0px;
}
.index-seventh-wrap-text{
    text-align: center;
    box-shadow: 0px 1px 11px 0px #0000004a;
    padding: 50px 20px 50px 20px;
    backdrop-filter: blur(10px);
    background-color: #bfda3c;
    border-radius: 5px;
}
.index-seventh-wrap-text h6{
    font-size: 22px;
    font-family: var(--manrope-bold);
    color: var(--blue);
    width: 60%;
    margin: 0 auto 40px auto;
}
.index-seventh-wrap-text p{
    font-size: 22px;
    font-family: var(--manrope-regular);
    color: var(--btn-color);
    margin: 0 auto;
    width: 70%;
}
.index-eighth-wrapper{
    background-image: url(../images/index-eighth-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.index-eighth-wrapper::before{
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgb(0 0 0 / 30%) 0%, rgba(0,0,0,0) 140%);
    width: 100%;
    height: 100%;
    left: 0%;
    bottom: 0%;
}
.index-eighth-wrap-slider-text{
    text-align: center;
}
.index-eighth-wrap-slider-text h6{
    font-size: 55px;
    font-family: var(--manrope-bold);
    color: var(--white);
    margin: 0 auto;
    width: 70%;
}
.index-eight-slider .owl-dots .owl-dot span{
    background-color: var(--white);
    transition: 0.5s all;
}
.index-eight-slider .owl-dots .owl-dot.active span,
.index-eight-slider .owl-dots .owl-dot:hover span{
    background-color: transparent;
    border: 2px solid var(--green);
}
.index-eight-slider{
    position: relative;
}
.index-eight-slider .owl-nav button.owl-prev:hover,
.index-eight-slider .owl-nav button.owl-next:hover{
    background-color: transparent;
}
.index-eight-slider .owl-nav button.owl-next{
    position: absolute;
    right: 0;
    top: 35%;
    font-size: 100px;
    color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: #fff;
    transition: 0.5s all;
    border-radius: 50px;
}
.index-eight-slider .owl-nav button.owl-next:hover{
    background: #ffffff56 !important;
    box-shadow: -5px -5px 30px 5px #ffffff;
}
.index-eight-slider .owl-nav button.owl-next i {
    font-size: 24px;
}
.index-eight-slider .owl-nav button.owl-prev{
    position: absolute;
    left: 0;
    top: 35%;
    font-size: 100px;
    color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: #fff;
    transition: 0.5s all;
    border-radius: 50px;
}
.index-eight-slider .owl-nav button.owl-prev i {
    font-size: 24px;
}
.index-eight-slider .owl-nav button.owl-prev:hover{
    background: #ffffff56 !important;
    box-shadow: -5px -5px 30px 5px #ffffff;
}
.index-eight-slider .owl-dots{
    transform: translate(0px, 30px);
}
.donate-first-wrapper{
    padding: 100px 0px;
}
.donate-first-wrap-text{
    text-align: center;
}
.donate-first-wrap-text h6{
    font-size: 55px;
    font-family: var(--gilroy-bold);
    color: var(--black);
    margin: 0px 0px 30px 0px;
}
.donate-first-wrap-text p{
    font-size: 18px;
    font-family: var(--manrope-medium);
    color: var(--blue);
    width: 70%;
    margin: 0px auto 30px auto;
}
.donate-first-wrap-heading-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--blue);
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 30px 0px;
}
.donate-first-wrap-heading h6{
    font-size: 30px;
    font-family: var(--manrope-bold);
    color: var(--btn-color);
}
.donate-first-wrap-icon ul{
    display: flex;
    align-items: center;
    gap: 10px;   
}
.donate-first-wrap-box-text h6{
    font-size: 60px;
    font-family: var(--manrope-bold);
    color: var(--btn-color);
}
.donate-first-wrap-box-text span{
    font-size: 22px;
    font-family: var(--manrope-bold);
    color: var(--btn-color);
}
.donate-first-wrap-box-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 60px;
    background-color: var(--green);
    font-size: 18px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border-radius: 5px;
    transition: 0.5s all;
}
.donate-first-wrap-box-btn a:hover{
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.donate-first-wrap-box-text-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.footer-wrapper{
    background-color: var(--btn-color);
    padding: 100px 0px 0px 0px;
}
.footer-text h6{
    font-size: 20px;
    font-family: var(--manrope-bold);
    color: var(--white);
    margin: 0px 0px 30px 0px;
}
.footer-text p{
    font-size: 16px;
    font-family: var(--manrope-regular);
    color: var(--white);
    width: 80%;
}
.footer-link h6{
    font-size: 22px;
    font-family: var(--manrope-bold);
    color: var(--white);
    margin: 0px 0px 20px 0px;
}
.footer-link ul li a{
    font-size: 16px;
    font-family: var(--manrope-regular);
    color: var(--white);
    line-height: 40px;
}
.copyright{
    background-color: var(--green);
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0px 0px 0px;
}
.copyright-text{
    text-align: center;
}
.copyright-text p{
    font-size: 12px;
    font-family: var(--manrope-semiBold);
    color: var(--btn-color);
}




.card-1 {
    width: 90%;
    height: 300px;
    transition: all 0.2s;
    position: relative;
    cursor: pointer;
    margin: 0 auto;
}
.card-inner {
    width: inherit;
    height: inherit;
    background: rgba(255,255,255,.05);
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}
.card-1:hover {
    transform: scale(1.04) rotate(1deg);
}
.card-1:hover .home-first-wrap-box a {
    color: var(--green);
    border: 1px solid var(--green);
}
.card-1:hover .home-first-wrap-box a::before {
    transform: translate(0px , 0px);
}
.circle {
    width: 100px;
    height: 100px;
    background: radial-gradient(#b0e633, #53ef7d);
    border-radius: 50%;
    position: absolute;
    animation: move-up6 2s ease-in infinite alternate-reverse;
    }
.circle:nth-child(1) {
    top: -25px;
    left: -25px;
}
.circle:nth-child(2) {
    bottom: -25px;
    right: -25px;
    animation-name: move-down1;
}

@keyframes move-up6 {
to {
    transform: translateY(-10px);
}
}
@keyframes move-down1 {
to {
    transform: translateY(10px);
}
}


 PRELOADER-CSS 
.preloader {
    position: absolute;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999999999999999999999;
    background: #000000;
}

.preloader .step-1 {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.preloader .step-1 .lines {
    height: 100%;
    width: 0%;
    top: 0;
    left: 0;
    position: relative;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader .step-1 .lines .line-1 {
    width: 50%;
    border-radius: 50%;
     z-index: 999999999999999999; 
    position: absolute;
    border: 1px solid var(--green);
    aspect-ratio: 1 / 1;
}


.preloader .step-1 .lines .line-2 {
    width: 35%;
    border-radius: 50%;
     z-index: 999999999999999999; 
    position: absolute;
    border: 1px solid var(--green);
    aspect-ratio: 1 / 1;
}

.preloader .step-1 .lines .line-3 {
    width: 20%;
    border-radius: 50%;
     z-index: 999999999999999999; 
    position: absolute;
    border: 1px solid var(--green);
    aspect-ratio: 1 / 1;
}

 .preloader-active{
    overflow-y: hidden;
} 

.preloader .step-2 {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    zoom: 0.1;
}

.preloader .step-3 {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}   
.preloader .step-3 .bg {
    background: #BFDA3C;
    position: absolute;
    z-index: 1;
    height: 0%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.preloader .step-3 img {
    position: relative;
    z-index: 99999;
}

.preloader .step-3 .frame-logo-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.frame-logo{
    text-align: center;
}
.frame-logo-2{
   text-align: center;
}
.frame-logo-2 img{
    filter: brightness(0) invert(1);
}    
 PRELOADER-CSS 

 NEW-PAGES-CSS 
.login-first-wrapper{
    background-image: url(../images/login-bg.png);
    background-position: top;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.login-first-wrapper::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0000008a;
    z-index: -1;
}
.login-first-wrap-logo {
    margin: 0px 0px 30px 0px;
}
.login-first-wrap-text h6{
    font-size: 40px;
    font-family: var(--mulish-bold);
    color: var(--white);
    margin: 0px 0px 10px 0px;
}
.login-first-wrap-text p{
    font-size: 26px;
    font-family: var(--mulish-regular);
    color: var(--white);
}
.login-main-box-text{
    text-align: center;
}
.login-main-box-text h6{
    font-size: 24px;
    font-family: var(--mulish-bold);
    color: #252733;
    margin: 0px 0px 10px 0px;
}
.login-main-box-text p{
    font-size: 14px;
    font-family: var(--mulish-regular);
    color: var(--black);
    margin: 0px 0px 20px 0px;
}
.login-main-box-cards-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.login-main-box-card{
    background: var(--green);
    border-radius: 20px;
    width: 240px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.5s all;
    cursor: pointer;
}
.login-main-box-card:hover{
    background-color: transparent;
    border: 1px solid var(--green);
}
.login-main-box-card:hover .login-main-box-check{
    visibility: visible;
    opacity: 1;
}
.login-main-box-check {
    position: absolute;
    right: 4%;
    top: 4%;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s all;
}
.login-main-box-card-icon {
    margin: 0px 0px 10px 0px;
}
.login-main-box-card-text{
    text-align: center;
}
.login-main-box-card-text h2{
    font-size: 18px;
    font-family: var(--mulish-bold);
    color: var(--black);
    width: 60%;
    margin: 0 auto;
}
.login-main-box-fields {
    width: 80%;
}
.login-main-box-field{
    position: relative;
}
.login-main-box-field span{
    position: absolute;
    bottom: 38%;
    right: 3%;
    color: #9FA2B4;
    font-size: 14px;
    cursor: pointer;
}
.login-main-box-field-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0px 10px 0px;
}
.login-main-box-field-text p {
    font-size: 12px;
    font-family: var(--mulish-bold);
    color: var(--black);
}
.login-main-box-field-text p label{
    color: #FF0303;
}
.login-main-box-field-text a{
    font-size: 10px;
    font-family: var(--mulish-regular);
    color: var(--black);
}
.login-main-box-field input{
    width: 100%;
    height: 45px;
    background-color: #FCFDFE;
    border: 1px solid #F0F1F7;
    border-radius: 8px;
    padding: 0px 15px;
    font-size: 16px;
    font-family: var(--mulish-regular);
    color: var(--black);
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.login-main-box-field input:focus{
    border: 1px solid var(--green);
}
.login-main-box-field select{
    width: 100%;
    height: 45px;
    background-color: #FCFDFE;
    border: 1px solid #F0F1F7;
    border-radius: 8px;
    padding: 0px 15px;
    outline: none;
    font-size: 16px;
    font-family: var(--mulish-regular);
    color: var(--black);
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.login-main-box-field select:focus{
    border: 1px solid var(--green);
}
.login-main-box-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: var(--green);
    box-shadow: 0px 4px 12px rgba(55, 81, 255, 0.24);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--white);
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.login-main-box-btn a:hover{
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.login-main-box-btn button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: var(--green);
    box-shadow: 0px 4px 12px rgba(55, 81, 255, 0.24);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--white);
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
    border: none;
}
.login-main-box-btn button:hover{
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.login-main-box-bottom-text p{
    font-size: 14px;
    font-family: var(--mulish-regular);
    color: var(--black);
}
.login-main-box-bottom-text a{
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--black);
}
.login-modal .modal-dialog {
    height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
}
.login-modal .modal-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login-modal .modal-content {
    border-radius: 30px;
    min-height: 350px;
}
.login-modal-img {
    margin: 0px 0px 10px 0px;
}
.login-modal-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 50px;
    background-color: var(--green);
    box-shadow: 0px 4px 12px rgba(55, 81, 255, 0.24);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--white);
    transition: 0.5s all;
    margin: 0px auto 0px auto;
}
.login-modal-btn a:hover{
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.login-modal-text {
    text-align: center;
}
.login-modal-text h6{
    font-size: 30px;
    font-family: var(--mulish-bold);
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.login-modal-text p{
    font-size: 16px;
    font-family: var(--mulish-regular);
    color: #383838;
    margin: 0px 0px 20px 0px;
}
.side-bar-main{
    background: rgba(236, 236, 235, 0.3);
    height: 100vh;
    width: 10%;
    position: absolute;
    left: 0%;
    top: 0%;
}

.sidebar {
    height: 100vh;
    width: 300px;
    background: #6d6d73;
    transition: all 0.5s ease-in-out;
    position: fixed;
}
.content {
    transition: all 0.5s ease-in-out;
    padding: 20px 40px;
    margin: 0px 0px 0px 300px;
}

.content header {
    background: #000;
    padding: 10px;
    display: flex;
    align-items: center;
}
.content header i.fa-bars {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.header-logo {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    margin-left: 30px;
}

.main.close .sidebar {
    width: 0px;
}
.main.close .content {
    width: 100%;
}
.sidebar-logo {
    text-align: center;
    padding: 60px 0px 50px 0px;
}
.side-custom-tab .nav-link{
    background: transparent;
    color: #F1F1F1;
    text-align: start;
    padding: 15px 40px;
    font-family: var(--mulish-regular);
    font-size: 16px;
    transition: 0.3s linear;
    border-bottom: 1px solid #f1f1f124;
}
.side-custom-tab .nav-link:hover {
    background: gray;
}
.side-custom-tab .nav-link.active, .side-custom-tab .show>.nav-link {
    color: #fff;
    background-color: #BFD841;
    border-radius: 0;
    border-left: 4px solid #ffffff;
}
.side-custom-tab .nav {
    width: 100%;
}
.side-custom-tab .nav-link i {
    margin: 0px 10px 0px 0px;
    width: 20px;
    color: #F1F1F1;
}
.side-custom-tab .nav-link img{
    margin: 0px 10px 0px 0px;
}
.header-heding h6{
    font-family: var(--mulish-bold);
    font-size: 35px;
    color: var(--black);
}
.header-dash-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    margin: 0px auto 50px auto;
}
.header-right-d{
    display: flex;
    align-items: center;
    gap: 60px;
}
.header-userimg{
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}
.header-userimg h2{
    font-family: var(--mulish-bold);
    font-size: 18px;
    color: #252733;
}
.header-icons{
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 20px;
}
.header-icons a{
    color: #C5C7CD;
}
.header-icons img{
    width: 25px;
}
.header-userimg::before{
    content: '';
    width: 2px;
    height: 30px;
    background: #DFE0EB;
    position: absolute;
    left: -17%;
    top: 18%;
}
.dash-card-main h5{
    font-family: var(--mulish-bold);
    font-size: 20px;
    color: #9FA2B4;
    margin: 0px 0px 10px 0px;
    transition: 0.5s all;
}
.dash-card-main h6{
    font-family: var(--mulish-bold);
    font-size: 40px;
    color: var(--black);
    transition: 0.5s all;
}
.dash-card-main {
    border: 1px solid #DFE0EB;
    background: var(--white);
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
}
.dash-card-main:hover{
    border: 1px solid #BFD841;
    box-shadow: 1px 3px 8px 3px #bfd84152;
}
.dash-card-main:hover h6, .dash-card-main:hover h5{
    color: #BFD841;
}
.dash-graph-box-text h6{
    font-family: var(--mulish-bold);
    font-size: 30px;
    color: #252733;
    margin: 0px 0px 10px 0px;
}
.dash-garph-box-text-1 p{
    font-family: var(--mulish-regular);
    font-size: 16px;
    color: #9FA2B4;
}
.dash-graph-box-btns{
    display: flex;
    gap: 40px;
}
.dash-graph-box-btns  a{
    font-family: var(--mulish-regular);
    font-size: 16px;
    color: #9FA2B4;
}
.dash-graph-box-btns a i{
    color: #BFD841;
}
.dash-garph-box-text-1{
    display: flex;
    justify-content: space-between;
    margin: 0px 0px 10px 0px;
}
.dash-graph-right-box-1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 2px solid #9fa2b42e;
    padding: 20px;
}
.dash-graph-right-box-1 h5{
    font-family: var(--mulish-bold);
    font-size: 18px;
    color: #9FA2B4;
    margin: 0px 0px 10px 0px;
}
.dash-graph-right-box-1 h6{
    font-family: var(--mulish-bold);
    font-size: 30px;
    color: var(--black);
}
.dash-graph-main-box-f{
    display: flex;
    background-color: var(--white);
    border-radius: 10px;
    width: 95%;
    margin: 0 auto;
    border: 2px solid #9fa2b42e;
}
.dash-graph-right-boxs {
    width: 40%;
    border-left: 2px solid #9fa2b42e;
}
.dash-graph-box {
    width: 70%;
    padding: 20px;
}
.dash-graph-box-img img {
    width: 840px;
}
.dash-booki-list-text h5{
    font-family: var(--mulish-bold);
    font-size: 30px;
    color: var(--black);
}
.dash-booki-list-text-1{
    display: flex;
    gap: 40px;
}
.dash-booki-list-text-1 a{
    font-family: var(--mulish-regular);
    font-size: 17px;
    color: #4B506D;
}
.dash-booki-list-text-1 a i{
    color: #9FA2B4;
}
.dash-booki-list-f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0px 40px 0px;
    padding: 10px 20px 0px 10px;
}
.dash-booki-tasktable table {
    width: 100%;
}
.dash-booki-tasktable .tablep{
    font-family: var(--mulish-regular);
    font-size: 18px;
    color: #9FA2B4;
}
.dash-booki-tasktable thead{
    border-bottom: 2px solid #DFE0EB;
}
.dash-table-text h5{
    font-family: var(--manrope-bold);
    font-size: 12px;
    color: #252733;
}
.dash-table-text p{
    font-family: var(--mulish-regular);
    font-size: 12px;
    color: #C5C7CD;
}
.dash-table-img-f{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0px 10px;
}
.rejected span{
    font-family: var(--manrope-extraBold);
    font-size: 12px;
    color: var(--white);
    background: #F12B2C;
    border-radius: 30px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    transition: 0.3s all;
}
.dash-booki-tasktable table tbody td{
    padding: 0px 10px;
    text-align: start;
    font-family: var(--mulish-bold);
    font-size: 15px;
    color: #252733;
}
.dash-booki-tasktable table tbody td p{
    font-family: var(--mulish-regular);
    font-size: 13px;
    color: #C5C7CD;
}
.dash-booki-tasktable table tbody tr{
    border-bottom: 2px solid #DFE0EB;
    transition: 0.3s linear;
    height: 90px;
}
.dash-booki-tasktable table tbody tr:hover {
    background: #8080801a;
}
.pending span{
    font-family: var(--manrope-extraBold);
    font-size: 12px;
    color: var(--white);
    background: #FEC400;
    border-radius: 30px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}
.dash-booki-tasktable thead tr th{
    padding: 0px 10px 20px 10px;
}
.approve span{
    font-family: var(--manrope-extraBold);
    font-size: 12px;
    color: var(--white);
    background: #29CC97;
    border-radius: 30px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}
.dash-booki-last-text{
    display: flex;
    gap: 20px;
    justify-content: end;
    padding: 30px 0px 0px 0px;
}
.dash-booki-last-text select{
    outline: none;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #9FA2B4;
}
.dash-booki-box-main {
    padding: 20px 20px 20px 20px;
    background-color: var(--white);
    border: 2px solid #9fa2b42e;
    border-radius: 10px;
}
.dash-booki-last-text p{
    font-family: var(--mulish-regular);
    font-size: 14px;
    color: #9FA2B4;
}
.dash-booki-last-icons i{
    color: #9FA2B4;
}
.disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
.dash-job-box-main {
    padding: 20px 20px 20px 20px;
    background-color: var(--white);
    border: 2px solid #9fa2b42e;
    border-radius: 10px;
    width: 600px;
    margin: 0 auto;
}
.message-main-box-text{
    display: flex;
    gap: 45px;
}
.message-main-box-text h6{
    text-align: start;
    font-family: var(--mulish-bold);
    font-size: 20px;
    color: #252733;
    width: 6%;
}
.message-main-box-text p{
    font-family: var(--manrope-bold);
    font-size: 12px;
    color: #252733;
    width: 45%;
}
.message-main-box-flex{
    border-top: 2px solid #DFE0EB;
    border-bottom: 2px solid #DFE0EB;
    padding: 10px 20px;
    transition: 0.3s all;
}
.message-main-box-flex:hover{
    background: #8080801a;
}
.message-main-box-text a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8%;
    height: 50px;
    background-color: var(--green);
    box-shadow: 0px 4px 12px rgba(55, 81, 255, 0.24);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--white);
    transition: 0.5s all;
}
.login-main-box-field-checkbox input{
    accent-color: #BFD841;
    margin: 0px 3px 0px 5px;
    width: 15px;
    height: 14px;
}
.login-main-box-field-checkbox label{
    font-size: 16px;
    font-family: var(--mulish-bold);
    color: rgb(0 0 0 / 64%);
}
select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 10px) calc(1em + 5px);
    background-repeat: no-repeat;
}
.login-main-box-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.login-main-box-select select{
    width: 100%;
    height: 45px;
    background-color: #FCFDFE;
    border: 1px solid #F0F1F7;
    border-radius: 8px;
    padding: 0px 15px;
    font-size: 16px;
    font-family: var(--mulish-regular);
    color: var(--black);
    transition: 0.5s all;
}
.login-main-box-select select:focus-visible{
    outline: var(--green);
}
/* NEW-PAGES-CSS */


.dropdown {
    position: relative;
    margin-bottom: 20px;
}
.dropdown .dropdown-list {
    padding: 10px 20px 10px 20px;
    background: #fff;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    max-height: 223px;
    overflow-y: auto;
    background: #fff;
    display: none;
    z-index: 10;
}
.dropdown .checkbox {
    opacity: 0;
    transition: opacity 0.2s;
}
.dropdown .dropdown-label {
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 45px;
    background-color: #FCFDFE;
    border: 1px solid #F0F1F7;
    border-radius: 8px;
    padding: 0px 15px;
    font-size: 14px;
    font-family: var(--mulish-regular);
    color: var(--black);
    transition: 0.5s all;
    display: flex;
    align-items: center;
}
.dropdown .dropdown-label:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.25s;
    transform-origin: center center;
    background-image: url(../images/selectArrow.png);
    background-size: cover;
    background-position: center;
    width: 17px;
    height: 10px;
}
.dropdown.open .dropdown-list {
    display: block; 
}
.dropdown.open .checkbox {
    transition: 2s opacity 2s;
    opacity: 1;
}
.dropdown.open .dropdown-label:before {
    transform: translateY(-50%) rotate(-180deg);
}

.checkbox {
    margin-bottom: 20px;
}
.checkbox:last-child {
    margin-bottom: 0;
}
.checkbox .checkbox-custom {
display: none;
}
.checkbox .checkbox-custom-label {
display: inline-block;
position: relative;
vertical-align: middle;
cursor: pointer;
}
.checkbox .checkbox-custom + .checkbox-custom-label:before {content: "";background: transparent;display: inline-block;width: 15px;height: 15px;border: 1px solid rgba(0, 0, 0, 0.3);border-radius: 2px;}
.checkbox .checkbox-custom:checked + .checkbox-custom-label:after {content: "";position: absolute;top: 3px;left: 5px;height: 12px;padding: 2px;transform: rotate(45deg);text-align: center;border: solid #000;border-width: 0 2px 2px 0;}
.checkbox .checkbox-custom-label {font-size: 14px;margin-right: 0;margin-left: 0;color: black;display: flex;align-items: center;gap: 10px;}

.dash-booki-list-box {
    background-color: #d9d9d96e;
    border: 2px solid #9fa2b42e;
    border-radius: 10px;
    width: 100%;
    position: relative;
    padding: 30px;
}
.dash-booki-list-box-trash-icon i {
    position: absolute;
    right: 10px;
    top: 10px;
    color: var(--green);
}
.dash-booki-list-box-text {
    min-height: 380px;
}
.dash-booki-list-textf h6{
    font-family: var(--mulish-bold);
    font-size: 25px;
    color: #BFD841;
}
.dash-booki-list-text-2 h5{
    font-family: var(--mulish-regular);
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
}
.dash-booki-list-text-2 p{
    font-family: var(--mulish-regular);
    font-size: 14px;
    color: #BFD841;
}
.dash-booki-list-textf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 20px 0px;
    flex-wrap: wrap;
}
.dash-booki-listing-text h2{
    font-family: var(--mulish-bold);
    font-size: 16px;
    color: #252733;
}
.dash-booki-listing-text p{
    font-family: var(--mulish-regular);
    font-size: 14px;
    color: #053c52;
}
.dash-booki-listing-text {
    margin: 0px 0px 10px 0px;
}
.dash-booki-listing-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: var(--green);
    box-shadow: 0px 4px 12px rgba(55, 81, 255, 0.24);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--white);
    transition: 0.5s all;
    width: 40%;
    cursor: pointer;
}
.listing-wrapper{
    padding: 100px 0px;
}
.dash-modal-list-box {
    padding: 20px 20px 20px 20px;
    background-color: #d9d9d96e;
    border: 2px solid #9fa2b42e;
    border-radius: 10px;
    width: 100%;
    margin: 0 auto;
}
.custom-dec-modal .modal-dialog {
    max-width: 660px;
    margin: 1.75rem auto;
}
.side-bars-tabs{
    position: relative;
}
.sidebar-log-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    height: 50px;
    background-color: var(--green);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--white);
    transition: 0.5s all;
    margin: 0 auto;
    position: fixed;
    left: 1%;
    bottom: 1%;
    gap: 10px;
}
.alert-success {
    width: 100%;
    background-color: #a7bc39;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 99999999;
}
.close-btn {
    text-align: end;
    margin: 0px 0px 10px 0px;
}
.alert-success h6{
    color: var(--white);
}
.alert-success h4{
    margin: 0px 0px 10px 0px;
}

.dash-booki-list-text-1 select {
    width: 100%;
    height: 45px;
    background-color: #FCFDFE;
    border: 1px solid #F0F1F7;
    border-radius: 8px;
    padding: 0px 15px;
    font-size: 14px;
    outline: none;
    font-family: var(--mulish-regular);
    color: var(--black);
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.dash-booki-list-text-1 select:focus {
    border: 1px solid var(--green);
}
.dash-booki-listing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-booki-list-btn1{
    display: flex;
    justify-content: center;
}
.dash-booki-list-btn1 button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    border: none;
    background-color: var(--green);
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border-radius: 5px;
    transition: 0.5s all;
    position: relative;
    overflow: hidden;
    z-index: 3;
    margin: 0px 0px 30px 0px;
}
.dash-booki-list-btn1 button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: translate(-150px , 0px);
    transition: 0.5s all;
    transform-origin: left;
    z-index: -1;
}
.dash-booki-list-btn1 button:hover {
    color: var(--green);
    border: 1px solid var(--green);
}
.dash-booki-list-btn1 button:hover::before {
    transform: translate(0px , 0px);
}
.dash-booki-list-text-1 select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.dash-booki-listing-btn-2 {
    position: absolute;
    bottom: 3%;
    right: 6%;
}
/* Dropdown Button */
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }

  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    transition: .5s all;
    left: -80%;
    background-color: var(--white);
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: var(--black);
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #f1f1f124;
    background: transparent;
    font-size: 14px;
    font-family: var(--manrope-regular);
    transition: .5s all;
  }
  .dropdown-content a::before{
    display: none;
  }
  
   /*Change color of dropdown links on hover */
  .dropdown-content a:hover {
    background-color: var(--green);
    color: var(--white);
}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}
.dash-myaccount-input input{
    width: 100%;
    height: 45px;
    background-color: #FCFDFE;
    border: 1px solid #F0F1F7;
    border-radius: 8px;
    padding: 0px 15px;
    font-size: 14px;
    font-family: var(--mulish-regular);
    color: var(--black);
    transition: 0.5s all;
    margin: 0px 0px 20px 0px;
}
.dash-myaccount-input input:focus {
    border: 1px solid var(--green);
}
.dash-booki-box-main-heading h6{
    font-size: 30px;
    font-family: var(--manrope-extraBold);
    color: var(--black);
    margin: 0px 0px 20px 0px;
}
.dash-myaccount-btn button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    border: none;
    background-color: var(--green);
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border-radius: 5px;
    transition: 0.5s all;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.header-btn a:hover {
    color: var(--green);
    border: 1px solid var(--green);
}
.dash-myaccount-btn button::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: translate(-150px , 0px);
    transition: 0.5s all;
    transform-origin: left;
    z-index: -1;
}
.dash-myaccount-btn button:hover::before{
    transform: translate(0px , 0px);
}
.dashboard-custom-alert{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}
.login-custom-alert{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.login-main-tbtn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95px;
    height: 55px;
    background-color: var(--green);
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border-radius: 5px;
    transition: 0.5s all;
    position: relative;
    overflow: hidden;
    z-index: 3;
    border: none;
    clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0 50%);
}
.login-main-tbtn a:hover {
    color: var(--green);
    border: 1px solid var(--green);
}
.login-main-tbtn a:hover::before {
    transform: translate(0px , 0px);
}
.login-main-tbtn a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: translate(-150px , 0px);
    transition: 0.5s all;
    transform-origin: left;
    z-index: -1;
}
.login-main-tbtn{
    position: absolute;
    top: 2%;
    left: 2%;
}


.login-main-tbtn2 a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95px;
    height: 55px;
    background-color: var(--green);
    font-size: 14px;
    font-family: var(--gilroy-bold);
    color: var(--btn-color);
    border-radius: 5px;
    transition: 0.5s all;
    position: relative;
    overflow: hidden;
    z-index: 3;
    border: none;
    clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0 50%);
}
.login-main-tbtn2 a:hover {
    color: var(--green);
    border: 1px solid var(--green);
}
.login-main-tbtn2 a:hover::before {
    transform: translate(0px , 0px);
}
.login-main-tbtn2 a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: translate(-150px , 0px);
    transition: 0.5s all;
    transform-origin: left;
    z-index: -1;
}
.login-main-tbtn2{
    position: absolute;
    top: 12%;
    left: 2%;
}


.login-main-box1 {
    min-height: 800px;
    width: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #DFE0EB;
    border-radius: 8px;
    flex-direction: column;
    position: relative;
}
.dash-booki-text-top1 {
    border-bottom: 1px solid var(--black);
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 50px 0px;
    text-align: center;
}
.dash-booki-text-top1 h6 {
    font-size: 30px;
    font-family: var(--mulish-bold);
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.dash-booki-text-top1 p{
    font-size: 18px;
    font-family: var(--mulish-regular);
    color: var(--black);
}
.dash-booki-text-top31 h6{
    font-size: 25px;
    font-family: var(--manrope-bold);
    color: var(--green);
    margin: 0px 0px 20px 0px;
}
.modal-back-btn{
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 10px 10px 0px 0px;
}
.modal-back-btn{
    & button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
    height: 45px;
    background-color: var(--green);
    box-shadow: 0px 4px 12px rgba(55, 81, 255, 0.24);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--white);
    transition: 0.5s all;
    border: none;
}
}
.modal-back-btn button i{
    margin: 0px 10px 0px 0px;
}
.wrap {
    width: 100%;
    position: relative;
}
  
.select {
    display: none;
    background-color: var(--white);
    width: 100%;
    padding: 10px;
    margin: 0px 0px 10px 0px;
    position: absolute;
    z-index: 999999;
    box-shadow: 1px 8px 8px 3px #0000000f;
    border: 1px solid #000;
}
  
.wrap label {
    display: flex;
    cursor: pointer;
    margin-bottom: 10px;
    gap: 10px;
    transition: .5s all;
    align-items: center;
    font-size: 14px;
}
    & input{
        accent-color: var(--main-color);
    }
  
    &:hover,
    &:focus {
      color: var(--main-color);
    }

.wrap .select {
    max-height: 50vh;
    overflow-x: auto;
}

  
.wrap a {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 45px;
    background-color: #FCFDFE;
    border: 1px solid #F0F1F7;
    border-radius: 8px;
    padding: 0px 15px;
    font-size: 16px;
    font-family: var(--mulish-regular);
    color: var(--black);
    transition: 0.5s all;

        &::after {
            font-family: FontAwesome;
            font-size: 12px;
            display: flex;
            width: 25px;
            height: 100%;
            text-align: center;
            content: "\f078";
            position: absolute;
            right: 0px;
            top: 0px;
            align-items: center;
        }

    &.afk-active:after {
        content: '\f106';
    }
}
.listing-end-head p {
    font-family: var(--mulish-bold);
    font-size: 24px;
    color: var(--black);
    text-align: center;
    margin: 50px 0px 0px 0px;
}
.pass-change-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.pass-change-wrap h6 {
    font-size: 60px;
    font-family: var(--montserrat-semiBold);
    color: var(--black);
    margin: 0px 0px 30px 0px;
}
.cities-name {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0px 0px 10px 0px;
}
.cities-name p {
    font-size: 14px;
    font-family: var(--mulish-bold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bfd841;
    height: 30px;
    border-radius: 30px;
    padding: 0px 10px 0px 10px;
    gap: 10px;
}
.cities-name p i {
    font-size: 12px;
    cursor: pointer;
}