@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;700&display=swap');


:root {
    --primary: #2c4993;
    --secondary: #8a9ed8;
    --light: #F6F7FC;
    --dark: #15233C;
    --popping: #f2ba36;
    --background: #3C343D;
    --background-card: #6B626C;
}

.body {
    overflow-y: hidden !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    height: 110vh !important;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
    height: 110vh !important;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover .btn.btn-popping,
.btn.btn-outline-popping:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover::before {
    width: 250%;
}

.btn.btn-secondary:hover {
    background: var(--popping);
    border-color: var(--primary);
    font-weight: 600;
    color: #15233C !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-brand h5 {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 500;
    font-size: 1.1rem !important;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-brand h5 {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel {
    height: 90vh;
}

#header-carousel .carousel-item {
    min-height: 90vh;
}

#header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    /* Make the image width 100% to cover the entire carousel item */
    height: 100%;
    /* Make the image height 100% to cover the entire carousel item */
    object-fit: cover;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    text-align: start;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--white);
    border: 15px solid var(--white);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 90vh;
        height: 90vh;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    #header-carousel {
        height: 90vh;
    }

    #header-carousel .carousel-item {
        min-height: 90vh;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 90vh;
        height: 70vh;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 1.0)), url(../img/Hero_Img_1.avif) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .5)), url(../img/Hero_Img_1.avif) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .9)), url(../img/Hero_Img_2.avif) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.col-img {
    background-image: url(../img/Betty_Images/WhatsApp\ Image\ 2023-11-01\ at\ 10.00.00_e31cf67c.jpg);
    background-position: center;
    background-size: cover;
    max-height: fit-content;
    max-height: -moz-fit-content;
    padding: 60px 0;
}

.col-img-kindergarten {
    background-image: url(../img/Betty_Images/Hero_1.webp);
    background-position: center;
    background-size: cover;
    max-height: fit-content;
    max-height: -moz-fit-content;
    min-height: 50vh;
    padding: 60px 0;
}

.col-img-primary {
    background-image: url(../img/Betty_Images/Gate_Betty_Academy.jpg);
    background-position: center;
    background-size: cover;
    max-height: fit-content;
    max-height: -moz-fit-content;
    min-height: 50vh;
    padding: 60px 0;
}

.col-img-classrooms {
    background-image: url(../img/Betty_Images/6043986255512977370_121.jpg);
    background-position: center;
    background-size: cover;
    max-height: fit-content;
    max-height: -moz-fit-content;
    min-height: 50vh;
    padding: 60px 0;
}

.col-img-comp_lab {
    background-image: url(../img/Betty_Images/classrooms_2.jpg);
    background-position: center;
    background-size: cover;
    max-height: fit-content;
    max-height: -moz-fit-content;
    min-height: 50vh;
    padding: 60px 0;
}

.col-img-music {
    background-image: url(../img/Betty_Images/WhatsApp\ Image\ 2023-11-01\ at\ 10.00.00_0078cdf2.jpg);
    background-position: center;
    background-size: cover;
    max-height: fit-content;
    max-height: -moz-fit-content;
    min-height: 50vh;
    padding: 60px 0;
}

.col-img-sports {
    background-image: url(../img/Betty_Images/field.jpg);
    background-position: center;
    background-size: cover;
    max-height: fit-content;
    max-height: -moz-fit-content;
    min-height: 50vh;
    padding: 60px 0;
}

.cta {
    position: relative;
    overflow: hidden;
    height: fit-content;
    background-attachment: fixed;
    background-image: none;
    display: flex;
    /* Use Flexbox */
    align-items: center;
    /* Center vertically */
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.container-video {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    padding: 4rem;
}

.cta-donate {
    background: var(--green-highlight);
    background-size: cover;
    padding: 120px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    border-radius: 50px;
    border: 2px solid #f6b024;
    color: #fff;
}

.cta .cta-btn:hover {
    background: var(--popping);
    color: var(--dark);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

form input.form-control {
    height: 56px;
}

form .form-control {
    /*border: #21252f;*/
    border-width: 5px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.02);
    color: #ffffff;
}

#footer {
    background: #fff;
    padding: 0 0 30px 0;
    color: #444444;
    font-size: 14px;
    background: #f1f6fe;
}

#footer .footer-newsletter {
    padding: 5rem 1rem;
    background: var(--dark);
    /*text-align: center;*/
    font-size: 15px;
    color: #fff;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: var(--primary);
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
    color: #000 !important;
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--green-highlight);
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #0d58ba;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: #4cacdc;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #777777;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--primary);
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: var(--white);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--primary);
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fba616;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #4cacdc;
    color: #fff;
    text-decoration: none;
}

#footer .copyright {
    text-align: center;
    float: left;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: var(--white) !important;
}

@media (max-width: 768px) {

    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}

.donate-button {
    margin-left: 20px;
}

.parallax-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../img/Betty_Images/Hero_1.webp") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

/* Additional CSS to style the counters on top of the overlay */
.impact-item {
    text-align: center;
    color: #fff;
    padding: 20px;
    /* Adjust padding as needed */
}

.counter {
    font-size: 2em;
    font-weight: bold;
}

.impact-description {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-top: 5px;
    /* Adjust the spacing as needed */
}

.section-title {
    font-size: 36px;
    font-weight: bold;
}

.section-description {
    font-size: 18px;
    margin-top: 10px;
}

.founders-section {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("img/Founders.jpg") no-repeat center center;
    background-size: cover;
}

.founders-image img {
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.years-count {
    position: absolute;
    top: 15%;
    left: 5%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    padding: 15px;
    text-align: center;
    width: 150px;
}

.years-text h1 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

.years-text h2 {
    font-size: 20px;
    color: #fff;
}

.years-text h5 {
    font-size: 14px;
    color: #fff;
}

.founders-description h1 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.founders-description p {
    font-size: 16px;
    color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .founders-section {
        padding: 40px 0;
    }

    .years-count {
        top: 10%;
    }

    .years-text h1 {
        font-size: 32px;
    }

    .years-text h2 {
        font-size: 16px;
    }

    .years-text h5 {
        font-size: 12px;
    }

    .founders-description h1 {
        font-size: 24px;
    }
}

.paypal-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url(../img/Betty_Images/IMG-20231101-WA0008.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
}

/*** Donate ***/
/*.donate {
    background: rgba(0, 29, 35, .8);
}*/

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    border-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    background: var(--dark);
}

.header-content {
    display: flex;
    flex-direction: column;
    /* Stack the elements vertically on small screens */
}

@media (min-width: 992px) {
    .header-content {
        flex-direction: row;
        /* Side-by-side layout on large screens */
    }

    .header-content h1 {
        flex: 1;
        /* Distribute available space equally between h1 and p */
        margin-right: 10px;
        /* Add some space between h1 and p */
    }
}

#needs {
    overflow-x: hidden;
}

.project-wrap {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.single-project {
    max-width: 100%;
    text-align: center;
}

.details {
    padding: 0 15px;
}

.content-image {
    max-width: 100%;
}

.feature {
    margin-top: 0;
}

.project-area {
    background-color: #f9f9ff
}

.project-area .header-text {
    text-align: center
}

.project-area .header-text h1 {
    margin-bottom: 25px
}

.project-wrap .details h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px
}

.project-wrap .details p {
    font-size: 14px;
    font-weight: 300;
    margin-top: 8px
}

.project-wrap .details a {
    font-size: 14px;
    font-weight: 600;
    color: #222
}

@media (max-width: 767px) {
    .project-wrap .details {
        text-align: center
    }
}

@media (max-width: 767px) {
    .project-wrap {
        margin-bottom: 30px
    }
}

.single-project .single-project .title {
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 10px
}

.single-project .content {
    position: relative;
    max-width: 400px;
    margin: auto;
    overflow: hidden
}

.single-project .content .content-overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s
}

@media (max-width: 767px) {
    .single-project .content .content-overlay {
        left: 20px;
        width: 90%
    }
}

@media (max-width: 414px) {
    .single-project .content .content-overlay {
        left: 11px;
        width: 94%
    }
}

@media (max-width: 413px) {
    .single-project .content .content-overlay {
        left: 0;
        width: 100%
    }
}

.single-project .content:hover .content-overlay {
    opacity: .8
}

.single-project .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s
}

.single-project .content-title {
    font-size: 18px;
    color: #fff;
    font-weight: 500
}

.single-project .content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1
}

.single-project .content-details p {
    color: #fff;
    font-size: 0.8em
}

.single-project .fadeIn-bottom {
    top: 80%
}

.content-overlay {
    background-image: -moz-linear-gradient(0deg, #f40f68 0%, #f86e3d 55%, #fbcd11 100%);
    background-image: -webkit-linear-gradient(0deg, #f40f68 0%, #f86e3d 55%, #fbcd11 100%);
    background-image: -ms-linear-gradient(0deg, #f40f68 0%, #f86e3d 55%, #fbcd11 100%)
}

.single-project .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s
}

.single-project .content-title {
    font-size: 18px;
    color: #fff;
    font-weight: 500
}

.single-project .content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1
}

.single-project .content-details p {
    color: #fff;
    font-size: 0.8em
}

.content-image {
    border-radius: 5px !important;
}

.donate-area {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(../img/Betty_Images/Donation_bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover
}

.ThankYou-area {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(../img/Betty_Images/6043986255512977370_121.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover
}

.donate-area .overlay-bg {
    opacity: .9;
    background-color: #000
}

.donate-area .header-text h1 {
    color: #fff;
    margin-bottom: 25px
}

.donate-area .contact-left h4 {
    color: #fff;
    margin-bottom: 10px
}

.donate-area .contact-left .single-info {
    margin-bottom: 30px
}

.donate-area .contact-right .form-control {
    border-radius: 0;
    background-color: transparent;
    border: 1px solid #656463;
    color: #fff;
    font-size: 14px;
    padding: 12px
}

.donate-area .contact-right input, .donate-area .contact-right textarea {
    font-size: 14px;
    font-weight: 200
}

.donate-area .contact-right .option {
    color: #222
}

.donate-area .contact-right .nice-select span {
    color: #ccc;
    font-size: 14px;
    font-weight: 200
}

.donate-area .contact-right textarea {
    height: 150px
}

.donate-area .contact-right .list {
    width: 100%
}

.donate-area .contact-right .payment-method {
    color: #ccc;
    margin-top: 30px
}

.overlay-donate {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Tablet: Display two cards */
@media (min-width: 768px) {

    .project-wrap.active-set,
    .project-wrap.active-set+.project-wrap {
        display: block;
    }
}

#responsive-image {
    max-width: 60%;
    max-height: 60%;
    margin: 2%;
    float: right;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    #responsive-image {
        max-width: 100%;
        max-height: auto;
        float: none;
        /* Remove the float on smaller screens */
        display: block;
        /* Make it span the whole screen horizontally */
        margin: 0;
        /* Remove margin to make it flush with the edges */
    }
}

.bg-gradient {
    background: #141E30;
    background: -webkit-linear-gradient(to right, #243B55, #141E30);
    background: linear-gradient(to right, #243B55, #141E30);

}

.gallery {
    width: 100%;
    position: relative;
}

.gallery:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: rgba(0, 0, 0, 0.2);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    .gallery {
        width: 100%;
    }
}

.gallery.img {
    display: block;
    height: 300px;
    width: 33%;
}

.gallery .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.gallery .icon span {
    color: #f86f2d;
}

.gallery:hover .icon {
    opacity: 1;
}

.gallery:hover:after {
    opacity: 0;
}

.image-popup {
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.hero-wrap {
    width: 100%;
    height: calc(100vh - 117px);
    min-height: 700px;
    position: relative;
}

.hero-wrap.hero-wrap-2 {
    height: 600px;
}

.hero-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: 0;
    background: #000;
}

/* Style for the Needs Section */
.needs-section {
    background-color: #f5f5f5;
    /* Background color */
    padding: 40px;
    /* Add padding to control spacing */
}

.needs-section img {
    max-width: 100%;
    /* Ensure the image is responsive */
    display: block;
    /* Remove extra space below the image */
    margin-bottom: 20px;
    /* Add space between the image and content */
}

.needs-section h2 {
    font-size: 24px;
    /* Title font size */
    color: #333;
    /* Title text color */
}

.needs-section p {
    font-size: 16px;
    /* Content font size */
    color: #666;
    /* Content text color */
    line-height: 1.6;
    /* Line height for readability */
}

.needs-section .btn {
    background-color: #007bff;
    /* Button background color */
    color: #fff;
    /* Button text color */
    border: none;
    /* Remove button border */
}

.needs-section .btn:hover {
    background-color: #0056b3;
    /* Button background color on hover */
}

.needs-section img {
    display: block;
    margin: 0 auto;
    /* Center the image horizontally */
    max-height: 100%;
    /* Ensure the image does not exceed its container's height */
}

button {
    appearance: none;
    background-color: transparent;
    border: 0.125em solid #1A1A1A;
    border-radius: 0.9375em;
    box-sizing: border-box;
    color: #3B3B3B;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 3.75em;
    min-width: 0;
    outline: none;
    padding: 1em 2.3em;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
}

button:disabled {
    pointer-events: none;
}

button:hover {
    color: #fff !important;
    background-color: #1A1A1A;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

button:active {
    box-shadow: none;
    transform: translateY(0);
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.video-bg {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;

}

.signature {
    font-family: 'cursive', 'Lucida Handwriting', 'Brush Script MT', cursive;
    font-size: 30px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.beautiful-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(to bottom, #1b1c3f, #4a4e91);
    /* Gradient background */
    color: white;
    /* White text color */
    font-family: "Segoe UI", sans-serif;
    /* Stylish and legible font */
    font-weight: bold;
    font-size: 18px;
    /* Large font size */
    border: none;
    /* No border */
    border-radius: 30px;
    /* Rounded corners */
    padding: 14px 28px;
    /* Large padding */
    cursor: pointer;
    /* Cursor on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
    animation: button-shimmer 2s infinite;
    transition: all 0.3s ease-in-out;
    /* Smooth transition */
}

/* Hover animation */
.beautiful-button:hover {
    background: linear-gradient(to bottom, #2c2f63, #5b67b7);
    animation: button-particles 1s ease-in-out infinite;
    transform: translateY(-2px);
}

/* Click animation */
.beautiful-button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Shimmer animation */
@keyframes button-shimmer {
    0% {
        background-position: left top;
    }

    100% {
        background-position: right bottom;
    }
}

/* Particle animation */
@keyframes button-particles {
    0% {
        background-position: left top;
    }

    100% {
        background-position: right bottom;
    }
}

.gallery-item {
    margin-bottom: 20px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.2s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

#portfolio .portfolio-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    position: relative;
    /* Added for positioning the caption */
}

#portfolio .portfolio-img-container {
    width: 100%;
    /* Ensure the image container takes full width */
    overflow: hidden;
    /* Hide overflowing parts of the image */
    position: relative;
    /* Added for positioning the caption */
}

#portfolio .img-fluid.custom-img {
    width: 100%;
    /* Make the image take 100% of its container's width */
    height: auto;
    /* Ensure the image maintains its aspect ratio */
}

/* Initially hide the caption */
#portfolio .portfolio-box-caption {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    opacity: 0;
    /* Initially hidden */
    position: absolute;
    /* Position within the image container */
    top: 0;
    /* Position at the top of the container */
    left: 0;
    /* Position at the left of the container */
    right: 0;
    /* Position at the right of the container */
    bottom: 0;
    /* Position at the bottom of the container */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: ease-in-out 0.3s;
}

#portfolio .project-category,
#portfolio .project-name {
    color: white;
    font-size: 16px;
}

/* Display the caption on hover */
#portfolio .portfolio-box:hover .portfolio-box-caption {
    opacity: 1;
}

#portfolio .text-center {
    text-align: center;
    padding: 20px;
}

.custom-img {
    width: 650px !important;
    height: 350px !important;
}

/* Media query to adjust image dimensions for smaller screens */
@media (max-width: 768px) {
    .custom-img {
        width: 100%;
        /* Make the image take up the full width of the container */
        height: auto;
        /* Maintain aspect ratio */
        max-width: 650px;
        /* Set a maximum width to prevent image from getting too large on smaller screens */
    }
}

.gallery {
    overflow: hidden;
}

.gallery .swiper-pagination {
    margin-top: 2rem;
    position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    /*background-color: #d1d1d7;*/
    opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
}

.gallery .swiper-slide-active {
    text-align: center;
}

@media (min-width: 992px) {
    .gallery .swiper-wrapper {
        padding: 2rem 0;
    }

    .gallery .swiper-slide-active {
        border: 6px solid var(--popping);
        padding: 4px;
        background: #fff;
        z-index: 1;
        transform: scale(1.2);
    }
}

section {
    overflow: hidden;
    padding: 80px 0;
}

.section-bg {
    background-color: #eee;
}

.section-header {
    text-align: center;
    padding-bottom: 30px;
}

.events .container-fluid {
    padding: 0;
}

.events .event-item {
    background-size: cover;
    background-position: cente;
    min-height: 600px;
    padding: 30px;
}

@media (max-width: 575px) {
    .events .event-item {
        min-height: 500px;
    }
}

.events .event-item:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
}

.events .event-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    position: relative;
}

.events .event-item .price {
    color: #fff;
    border-bottom: 2px solid var(--color-primary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.events .event-item .description {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

@media (min-width: 1200px) {
    .events .swiper-slide-active+.swiper-slide {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        z-index: 1;
    }
}

.events .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--popping);
}

.services {
    margin-top: 2%;
    justify-content: center !important;
    height: 75%;
}

.page-section {
    padding: 8rem 0;
}

.background {
    background-color: var(--background);
    display: grid;
    place-items: center;
    height: 100vh;
}

.gallery-2 {
    display: flex;
    left: calc(50% - 330px);
}

.card {
    position: relative;
    left: 0px;
    width: 210px;
    height: 260px;
    background-color: var(--background-card);
    border-radius: 8px;
    transition: 1s ease-in-out;
    overflow: hidden;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.5);
}

.card:not(:first-child) {
    margin-left: -45px;
}

.card:hover {
    transform: translateY(-16px);
    font-weight: bold;
    cursor: pointer;
}

.card:hover ~ .card {
    left: 55px;
}

.card img {
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
}

.cta-bank-details {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("../img/Betty_Images/6043986255512977370_121.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
  }