
@font-face {
    font-family: 'Inter-Regular';
    src: url('../fonts/Inter-Regular.ttf');
}

@font-face {
    font-family: 'Inter-Medium';
    src: url('../fonts/Inter-Medium.ttf');
}

@font-face {
    font-family: 'Inter-SemiBold';
    src: url('../fonts/Inter-SemiBold.ttf');
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('../fonts/Inter-Bold.ttf');
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Inter-Regular', sans-serif;
    line-height: 1.5;
    font-size: 14px;
    color: var(--font-color);
    position: relative;
}

:root{
    --theme-color1: #442980;
    --theme-color2: #ff772e;
    --theme-color3: #f9f2f2;
    --theme-color4: #bd158d;
    --font-color: #56546c;
    --font-white: #ffffff;
    --heading-color: #000000;
    --border-color: #f4f4f4;
    --heading-color: #1d1d1d;

    --theme-color1-hover: #2e1269;
    --theme-color2-hover: #e25c13;
}

*{
    transition: ease-in 0.3s;
}

.theme-btn{
    position: relative;
    min-width: 110px;
    width: fit-content;
    padding: 10px 15px;
    border-radius: 6px;
    transition: ease-in 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-decoration: none;
    height: 48px;
}

.btn-main{
    background-color: var(--theme-color1);
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.btn-main:hover{
    background-color: var(--theme-color1-hover);
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.btn-secondary{
    background-color: var(--theme-color2);
    color: var(--font-white);
}

.btn-secondary:hover{
    background-color: var(--theme-color2-hover);
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

h1, h2{
    font-family: 'Inter-Bold', sans-serif;
}

h3, h4{
    font-family: 'Inter-SemiBold', sans-serif;
}

h5{
    font-family: 'Inter-Medium', sans-serif;
}

/* Header styles starts */

.navbar{
    height: 80px;
    background-color: var(--font-white);
}

.navbar-nav .nav-link{
    padding-left: 12px !important;
    padding-right: 12px !important; 
    font-family: 'Inter-Medium', sans-serif !important;
    color: var(--font-color) !important;
}

.header-icons-list{
    display: flex;
}

.header-icons-item{
    padding: 10px;
    color: var(--font-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    text-decoration: none;
}

.navbar-brand h2{
    margin-bottom: 0;
}

.navbar-brand img{
    width: 180px;
}

.topbar{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--theme-color1);
}

.topbar-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
}

.topbar-social{
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-social li{
    display: inline-block;
    margin-right: 2px;
}

.topbar-social li a{
    background-color: transparent;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--font-white);
    transition: ease-in 0.3s;
    border: 1px solid var(--font-color);
}

.topbar-social li a:hover{
    transition: ease-in 0.3s;
    background-color: var(--theme-color2);
    color: var(--font-white);
}

.topbar-contact{
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-contact li{
    display: inline-block;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #ddd;
}

.topbar-contact li:last-child{
    margin-right: 0px;
    padding-right: 0px;
    border-right: none;
}

.topbar-contact li a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--font-color);
}

.topbar-contact li a i{
    margin-right: 6px;
    color: var(--theme-color2);
}

.topbar-contact li a p{
    margin-bottom: 0px;
    color: var(--font-white);
}

.join-now-btn{
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 15px;
}

.join-text{
    margin-left: 10px;
}

.join-text p{
    color: var(--font-color);
    font-size: 12px;
    margin-bottom: 0px;
}

.join-text h3{
    color: var(--heading-color);
    font-size: 15px;
    margin-bottom: 0px;
}

.join-icon img{
    width: 40px;
}

/* Header styles ends */

/* Footer styles starts */
footer{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 3rem;
    height: 100%;
    background-color: var(--heading-color);
    padding-bottom: 3rem;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("../images/footer-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-top{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo{
    text-decoration: none;
}

.footer-logo h3{
    color: var(--theme-color1);
    color: var(--font-white);
}

.footer-menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu ul li{
    display: inline-block;
}

.footer-menu ul li a{
    margin-left: 15px;
    color: var(--font-white);
    text-decoration: none;
}

.footer-bottom{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #232323;
}

.footer-bottom p{
    color: var(--font-white);
    margin-bottom: 0px;
}

.footer-social{
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social li{
    display: inline-block;
    margin-right: 2px;
}

.footer-social li a{
    background-color: #464646;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--font-white);
    transition: ease-in 0.3s;
}

.footer-social li a:hover{
    background-color: var(--theme-color2);
    transition: ease-in 0.3s;
}

/* Footer styles ends */

.main-container{
    width: 100%;
    position: relative;
    display: inline-block;
}

.main-banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 90vh;
    background-image: url("../images/banner-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.main-banner-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: center;
}

.banner-small-heading{
    font-size: 14px;
    color: var(--font-white);
    text-transform: uppercase;
    margin-bottom: 10px;
    width: 100%;
    display: inline-block;
}

.banner-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--font-white);
    margin-bottom: 10px;
}

.banner-description{
    color: var(--font-white);
}

.banner-image-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.banner-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 60px 0px;
}

.bannerbottom-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 15px;
}

.bannerbottom-info h3{
    font-size: 18px;
    color: var(--heading-color);
    text-align: center;
}

.bannerbottom-info p{
    margin-bottom: 0px;
    text-align: center;
}

.bannerbottom-icon{
    min-width: 60px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme-color2);
    border-radius: 6px;
    padding: 10px;
    overflow: hidden;
    position: relative;
}

.bannerbottom-icon::before{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--theme-color2);
    content: '';
    position: absolute;
    display: inline-block;
    z-index: 10;
    top: -6px;
    left: -6px;
}

.bannerbottom-icon img{
    width: 40px;
    position: relative;
    z-index: 11;
}

.about-contant-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.about-contant-wrapper h4{
    text-transform: uppercase;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-size: 14px;
}

.about-contant-wrapper h3{
    font-size: 32px;
    color: var(--heading-color);
}

.about-contant-wrapper ul{
    margin-bottom: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.about-contant-wrapper ul li{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-contant-wrapper ul li:last-child{
    margin-bottom: 0px;
}

.about-contant-wrapper ul li div {
    display: flex;
    align-items: center;
    background-color: var(--font-white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}

.about-contant-wrapper ul li div span{
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    margin-right: 10px;
}

.about-contant-wrapper ul li div span img{
    width: 35px;
}

.about-contant-wrapper ul li div p{
    margin-bottom: 0px;
}

.about{
    background-color: #f4f4f4;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.section-small-heading{
    text-transform: uppercase;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-size: 14px;
}

.section-heading{
    font-size: 32px;
    color: var(--heading-color);
}

.services-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.services-card-wrapper img{
    width: 50px;
}

.services-card-wrapper h3{
    font-size: 20px;
    margin: 15px 0px;
    color: var(--heading-color);
}

.services-card-wrapper:hover{
    box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.1);
}

.services-card-wrapper:hover h3{
    color: var(--theme-color1);
}

.chooseus{
    background-color: #fffbef;
}

.chooseus-list{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.chooseus-item{
    display: flex;
    align-items: center;
    background-color: var(--font-white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.chooseus-item:last-child{
    margin-bottom: 0px;
}

.chooseus-info h3{
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--heading-color);
}

.chooseus-info p{
    margin-bottom: 0px;
}

.chooseus-icon{
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    margin-right: 10px;
}

.donation-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--font-white);
}

.donation-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 220px;
}

.donation-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.donation-content{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
}

.donation-content a{
    width: 100%;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--heading-color);
    margin-bottom: 5px;
    transition: ease-in 0.3s;
}

.donation-content a:hover{
    color: var(--theme-color1);
    transition: ease-in 0.3s;
}

.donation-content a h3{
    font-size: 18px;
}

.donation-count-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.donatepercentage{
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--theme-color1);
    color: var(--font-white);
    margin-right: 15px;
    font-weight: 600;
}

.donationinfo{
    width: 100%;
}

.donation-count-wrapper p{
    text-align: center;
    line-height: 14px;
    margin-bottom: 0px;
}

.donation-process{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 12px;
}

.donation-process-inner{
    position: absolute;
    background-color: var(--theme-color2);
    left: 0;
    top: 0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    height: 8px;
}

.donation-counts{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.donation-counts h3{
    font-size: 14px;
    color: var(--heading-color);
}

.donation-counts h3 span{
    font-size: 12px;
    color: var(--font-color);
    font-family: 'Inter-Regular', sans-serif;
}

.donation-badge{
    padding: 5px 10px;
    background-color: var(--font-color);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: var(--font-white);
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0px);
}

.volunteer .section-heading-wrapper h4{
    color: var(--theme-color2);
}

.volunteer .section-heading-wrapper h3{
    color: var(--font-white);
}

.volunteer{
    background: linear-gradient(
        to bottom right, 
        rgba(86, 84, 108, 0.8), 
        rgba(86, 84, 108, 0.8)
    ), 
    url('../images/footer-bg.jpg');
    background-color: var(--font-color);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events{
    background-color: #f7f7f7;
}

.events-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    gap: 20px;
}

.events-list{
    flex: 50%;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.events-item{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    border-radius: 12px;
}

.events-image{
    width: 100%;
    height: 150px;
    position: relative;
    display: inline-block;
}

.events-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.events-info{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
}

.events-info-top{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.events-info-top span{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.events-info-top span i{
    color: var(--theme-color2);
}

.events-info-top span p{
    margin-bottom: 0px;
}

.events-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--heading-color);
    margin: 10px 0px;
    transition: ease-in 0.3s;
}

.events-heading:hover{
    transition: ease-in 0.3s;
    color: var(--theme-color1);
}

.events-heading h3{
    font-size: 18px;
}

.events-read-more{
    width: 100%;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--theme-color1);
}

.events-read-more i{
    margin-left: 10px;
}

.events-list.first .events-item:first-of-type{
    margin-top: 3rem;
}

.event-badge{
    padding: 5px 10px;
    background-color: var(--font-color);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: var(--font-white);
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0px);
}

.team-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 300px;
}

.team-card-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
}

.team-info{
    padding: 12px;
    border-radius: 12px;
    background-color: #f7f7f7;
    width: 180px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.team-info h3{
    text-align: center;
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.team-info p{
    text-align: center;
    margin-bottom: 0px;
}

.team-card-wrapper:hover .team-info{
    background-color: var(--theme-color1);
}

.team-card-wrapper:hover .team-info h3{
    color: var(--theme-color2);
}

.team-card-wrapper:hover .team-info p{
    color: var(--font-white);
}

.teamsocial{
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 1;
    bottom: 50px;
    left: 15px;
}

.about-image-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.teamsocial li{
    margin-bottom: 5px;
}

.teamsocial li:last-child{
    margin-bottom: 0px;
}

.teamsocial li a{
    width: 30px;
    height: 30px;
    background-color: var(--theme-color2);
    color: var(--heading-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.testimonial{
    background-color: #f4f4f4;
    overflow: hidden;
}

.testimonial-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.testimonial-wrapper img{
    margin: auto;
    margin-bottom: 25px;
    width: 50px;
}

.testimonial-wrapper p{
    text-align: center;
}

.testiauthor-info{
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
}

.testiauthor-info img{
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0;
    margin-right: 15px;
}

.testiauthor-info h3{
    text-align: left;
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.testiauthor-info p{
    text-align: left;
    margin-bottom: 0px;
}

/* the slides */
.testimonial .slick-slide {
    margin: 0 18px;
}

/* the parent */
.testimonial .slick-list {
    margin: 0 -18px;
}

/* the parent */
.testimonial .slick-dots{
    display: none !important;
}

.blog-card-wrapper{
    width: 100%;
}

.events-image.blog img{
    height: 250px;
}

.blog-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.contact{
    background-color: #fffbef;
}

.contact-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.contact-content-wrapper img{
    width: 100%;
    height: 420px;
    border-radius: 12px;
    object-fit: cover;
}

.contact-content-wrapper::after{
    content: '';
    z-index: 10;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    border-radius: 12px;
}

.contact-content-wrapper p{
    text-align: left;
    color: var(--font-white);
}

.contact-list-item a{
    color: var(--font-white) !important;
}

.contact-list-item h3{
    color: var(--font-white) !important;
}

.contact-layer{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 11;
}

.contact-lists{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 25px;
}

.contact-list-item{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-list-item span{
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme-color2);
    color: var(--heading-color);
    margin-right: 15px;
    background-color: var(--theme-color2);
    font-size: 24px;
}

.contact-list-item div h3{
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.contact-list-item div a{
    text-decoration: none;
    color: var(--font-color);
}

.contact-form-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--font-white);
}

.form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 12px 15px;
    background-color: #f4f4f4;
    border-radius: 6px;
    border: none;
}

.events-image.blog{
    height: 100%;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}

.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 13px;
    background: var(--theme-color1);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 0;
    left: 50%;
    padding-left: 3px;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    transform: translate(-50%, -50%);
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
  
.check-success-icon{
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color2);
    border-radius: 50%;    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}

.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

.footer-logo img{
    width: 180px;
}

.layrbg{
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.1;
    width: 100px !important;
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color1);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color1-hover);
}