/*
@File: Finod Template Style

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Navbar CSS
** - Home Demo One CSS
** - Home Demo Two CSS
** - Home Demo Three CSS
** - About CSS
** - Donation Details CSS
** - Event Details CSS
** - Blog Details CSS
** - User CSS
** - FAQ CSS
** - Error CSS
** - Coming Soon CSS
** - Rules CSS
** - Go Top CSS
** - Preloader CSS
*/
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

@import url("../../../../css2");
@import url("../../../../css2-1");
/*----- Default CSS -----*/
body {
  font-size: 16px;
   font-family: 'Montserrat', sans-serif;

  background-color: #fff;
  color: #757575;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #302c51;
font-family: 'Syne', sans-serif;
}

/* Get Involved Area */
.get-involved-area {
    padding-top: 100px;
    padding-bottom: 70px;
    background-color: #f8f9fa;
}

.get-involved-area .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.get-involved-area .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.get-involved-area .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.get-involved-area .align-items-center {
    align-items: center;
}

/* Get Involved Image */
.get-involved-img {
    text-align: center;
}

.get-involved-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Get Involved Content */
.get-involved-content {
    padding: 20px;
}

.get-involved-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.get-involved-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.get-involved-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.get-involved-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.get-involved-content ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.get-involved-content ul li::before {
    content: "\2022";
    color: #007bff;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.get-involved-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.get-involved-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Button Styling */
.get-involved-content .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.get-involved-content .btn:hover {
    background-color: #0056b3;
    cursor: pointer;
}

/* Volunteer Form */
.get-involved-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.get-involved-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.get-involved-form p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.get-involved-form .form-group {
    margin-bottom: 20px;
}

.get-involved-form label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.get-involved-form .form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.get-involved-form .form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.get-involved-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.get-involved-form .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.get-involved-form .btn:hover {
    background-color: #0056b3;
    cursor: pointer;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .get-involved-area .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .get-involved-content {
        padding: 0;
    }

    .get-involved-form {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .get-involved-content h2 {
        font-size: 28px;
    }

    .get-involved-content h3 {
        font-size: 20px;
    }

    .get-involved-content p,
    .get-involved-content ul li {
        font-size: 14px;
    }

    .get-involved-form h3 {
        font-size: 20px;
    }

    .get-involved-form .form-control {
        font-size: 14px;
    }

    .get-involved-form .btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .modal-content {
        width: 95%;
    }
}


/* Donations Area */
.donations-area {
    padding-top: 100px;
    padding-bottom: 70px;
    background-color: #f8f9fa;
}

.donations-area .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.donations-area .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.donations-area .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.donations-area .align-items-center {
    align-items: center;
}

/* Donations Image */
.donations-img {
    text-align: center;
}

.donations-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Donations Content */
.donations-content {
    padding: 20px;
}

.donations-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.donations-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.donations-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.donations-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.donations-content ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.donations-content ul li::before {
    content: "\2022";
    color: #007bff;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.donations-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.donations-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Button Styling */
.donations-content .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.donations-content .btn:hover {
    background-color: #0056b3;
}

/* Donation Modal */
.donation-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.donation-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.donation-modal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.donation-modal-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.donation-modal-content .form-group {
    margin-bottom: 20px;
}

.donation-modal-content label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.donation-modal-content .form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.donation-modal-content .form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.donation-modal-content textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.donation-modal-content .btn {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

.donation-modal-content .btn:hover {
    background-color: #0056b3;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 991px) {
    .donations-area .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .donations-content {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .donations-content h2 {
        font-size: 28px;
    }

    .donations-content h3 {
        font-size: 20px;
    }

    .donations-content p,
    .donations-content ul li {
        font-size: 14px;
    }

    .donation-modal-content {
        padding: 20px;
        width: 95%;
    }

    .donation-modal-content .btn {
        font-size: 14px;
        padding: 10px;
    }
}
/* body {
  font-family: 'Manrope', sans-serif;
}

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
} */

p {
  line-height: 1.7;
}

a {
  transition: 0.5s all ease;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-100 {
  padding-bottom: 100px;
}

button:focus {
  outline: 0;
}

.btn.focus, .btn:focus {
  box-shadow: none;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1170px;
}
/* Banner slider animations */
.banner-area-two .banner-slider-item {
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-area-two .owl-item.active .banner-slider-item {
    opacity: 1;
}

/* Fade-in animation for banner content */
.banner-content h1,
.banner-content p,
.banner-btn-area a {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
}

.owl-item.active .banner-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.owl-item.active .banner-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.owl-item.active .banner-btn-area a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Button hover effect */
.common-btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.common-btn:hover {
    transform: scale(1.05);
}
/* Benefit section animations */
.benefit-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.benefit-area.visible {
    opacity: 1;
}

/* Section title animations */
/* .section-title span,
.section-title h2,
.section-title p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
} */
/* Donations section animations */
.donations-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.donations-area.visible {
    opacity: 1;
}

/* Section title animations */
/* .section-title span,
.section-title h2,
.section-title p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
} */

.donations-area.visible .section-title span {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.donations-area.visible .section-title h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
/* General section animations */
.work-area, .gallery-area, .team-area, .faq-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.work-area.visible, .gallery-area.visible, .team-area.visible, .faq-area.visible {
    opacity: 1;
}

/* Section title animations */
.section-title span,
.section-title h2,
.section-title p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}

.work-area.visible .section-title span,
.gallery-area.visible .section-title span,
.team-area.visible .section-title span,
.faq-area.visible .section-title span {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.work-area.visible .section-title h2,
.gallery-area.visible .section-title h2,
.team-area.visible .section-title h2,
.faq-area.visible .section-title h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.work-area.visible .section-title p,
.gallery-area.visible .section-title p,
.team-area.visible .section-title p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Work section animations */
.work-content ul li {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-in-out;
}

.work-area.visible .work-content ul li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.work-area.visible .work-content ul li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.9s;
}

.work-area.visible .work-content ul li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.0s;
}

.work-area.visible .work-content ul li:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.1s;
}

.work-img img {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-in-out;
}

.work-area.visible .work-img img:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.work-area.visible .work-img img:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.0s;
}


/* Footer section animations */
.footer-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.footer-area.visible {
    opacity: 1;
}

/* Footer item animations */
.footer-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease-in-out;
}

.footer-area.visible .footer-item {
    opacity: 1;
    transform: translateY(0);
}

.footer-area.visible .col-lg-3:nth-child(1) .footer-item { transition-delay: 0.2s; }
.footer-area.visible .col-lg-3:nth-child(2) .footer-item { transition-delay: 0.3s; }
.footer-area.visible .col-lg-3:nth-child(3) .footer-item { transition-delay: 0.4s; }
.footer-area.visible .col-lg-3:nth-child(4) .footer-item { transition-delay: 0.5s; }

/* Child element animations */
.footer-logo img,
.footer-logo p,
.footer-logo ul li a,
.footer-causes .cause-inner img,
.footer-causes .cause-inner h3 a,
.footer-links ul li a,
.footer-contact .contact-inner ul li a,
.copyright-area p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.footer-area.visible .footer-logo img,
.footer-area.visible .footer-logo p,
.footer-area.visible .footer-logo ul li a,
.footer-area.visible .footer-causes .cause-inner img,
.footer-area.visible .footer-causes .cause-inner h3 a,
.footer-area.visible .footer-links ul li a,
.footer-area.visible .footer-contact .contact-inner ul li a,
.footer-area.visible .copyright-area p {
    opacity: 1;
    transform: translateY(0);
}

.footer-area.visible .footer-logo img { transition-delay: 0.6s; }
.footer-area.visible .footer-logo p { transition-delay: 0.7s; }
.footer-area.visible .footer-logo ul li a { transition-delay: 0.8s; }
.footer-area.visible .footer-causes .cause-inner:nth-child(1) img { transition-delay: 0.6s; }
.footer-area.visible .footer-causes .cause-inner:nth-child(1) h3 a { transition-delay: 0.7s; }
.footer-area.visible .footer-causes .cause-inner:nth-child(2) img { transition-delay: 0.8s; }
.footer-area.visible .footer-causes .cause-inner:nth-child(2) h3 a { transition-delay: 0.9s; }
.footer-area.visible .footer-links ul li:nth-child(1) a { transition-delay: 0.6s; }
.footer-area.visible .footer-links ul li:nth-child(2) a { transition-delay: 0.65s; }
.footer-area.visible .footer-links ul li:nth-child(3) a { transition-delay: 0.7s; }
.footer-area.visible .footer-links ul li:nth-child(4) a { transition-delay: 0.75s; }
.footer-area.visible .footer-links ul li:nth-child(5) a { transition-delay: 0.8s; }
.footer-area.visible .footer-links ul li:nth-child(6) a { transition-delay: 0.85s; }
.footer-area.visible .footer-contact .contact-inner:nth-child(1) ul li a { transition-delay: 0.6s; }
.footer-area.visible .footer-contact .contact-inner:nth-child(2) ul li a { transition-delay: 0.7s; }
.footer-area.visible .copyright-area p { transition-delay: 0.9s; }

/* Hover effects */
.footer-logo ul li a,
.footer-causes .cause-inner h3 a,
.footer-links ul li a,
.footer-contact .contact-inner ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-logo ul li a:hover,
.footer-causes .cause-inner h3 a:hover,
.footer-links ul li a:hover,
.footer-contact .contact-inner ul li a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

.footer-logo img,
.footer-causes .cause-inner img {
    transition: transform 0.3s ease;
}

.footer-logo:hover img,
.footer-causes .cause-inner:hover img {
    transform: scale(1.1);
}

/* General section animations */
.page-title-area, .about-area, .dream-area, .benefit-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-title-area.visible, .about-area.visible, .dream-area.visible, .benefit-area.visible {
    opacity: 1;
}

/* Section title animations */
.section-title span, .section-title h2, .section-title p,
.title-item h2, .title-item ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.page-title-area.visible .title-item h2,
.about-area.visible .section-title span,
.dream-area.visible .section-title span,
.benefit-area.visible .section-title span {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.page-title-area.visible .title-item ul li,
.about-area.visible .section-title h2,
.dream-area.visible .section-title h2,
.benefit-area.visible .section-title h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.about-area.visible .section-title p,
.dream-area.visible .section-title p,
.benefit-area.visible .section-title p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Page Title breadcrumb hover */
.title-item ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.title-item ul li a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* About section animations */
.about-img img {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-in-out;
}

.about-area.visible .about-img img {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.about-content .about-span,
.about-content p,
.about-content h3 {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease-in-out;
}

.about-area.visible .about-content .about-span { transition-delay: 0.8s; }
.about-area.visible .about-content p:nth-child(2) { transition-delay: 0.9s; }
.about-area.visible .about-content p:nth-child(3) { transition-delay: 1.0s; }
.about-area.visible .about-content h3:nth-child(1) { transition-delay: 1.1s; }
.about-area.visible .about-content p:nth-child(2):last-child { transition-delay: 1.2s; }
.about-area.visible .about-content h3:nth-child(3) { transition-delay: 1.3s; }
.about-area.visible .about-content p:nth-child(4) { transition-delay: 1.4s; }

.about-area.visible .about-content .about-span,
.about-area.visible .about-content p,
.about-area.visible .about-content h3 {
    opacity: 1;
    transform: translateX(0);
}

/* Dream section animations */
.dream-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}

.dream-area.visible .dream-item {
    opacity: 1;
    transform: translateY(0);
}

.dream-area.visible .col-lg-4:nth-child(1) .dream-item { transition-delay: 0.8s; }
.dream-area.visible .col-lg-4:nth-child(2) .dream-item { transition-delay: 0.9s; }
.dream-area.visible .col-lg-4:nth-child(3) .dream-item { transition-delay: 1.0s; }
.dream-area.visible .col-lg-4:nth-child(4) .dream-item { transition-delay: 1.1s; }
.dream-area.visible .col-lg-4:nth-child(5) .dream-item { transition-delay: 1.2s; }
.dream-area.visible .col-lg-4:nth-child(6) .dream-item { transition-delay: 1.3s; }

.dream-item h3 a,
.dream-item p,
.dream-item h4 {
    transition: color 0.3s ease, transform 0.3s ease;
}

.dream-item:hover h3 a {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Benefit section animations */
.benefit-img img,
.benefit-img .video-wrap button {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-in-out;
}

.benefit-area.visible .benefit-img img:nth-child(1) { transition-delay: 0.8s; }
.benefit-area.visible .benefit-img img:nth-child(2) { transition-delay: 0.9s; }
.benefit-area.visible .benefit-img .video-wrap button { transition-delay: 1.0s; }

.benefit-area.visible .benefit-img img,
.benefit-area.visible .benefit-img .video-wrap button {
    opacity: 1;
    transform: translateX(0);
}

.benefit-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}

.benefit-area.visible .benefit-item {
    opacity: 1;
    transform: translateY(0);
}

.benefit-area.visible .col-sm-6:nth-child(1) .benefit-item { transition-delay: 0.8s; }
.benefit-area.visible .col-sm-6:nth-child(2) .benefit-item { transition-delay: 0.9s; }
.benefit-area.visible .col-sm-6:nth-child(3) .benefit-item { transition-delay: 1.0s; }
.benefit-area.visible .col-sm-6:nth-child(4) .benefit-item { transition-delay: 1.1s; }

.benefit-item i,
.benefit-item h3,
.benefit-item p {
    transition: transform 0.3s ease, color 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1);
}

.benefit-item:hover h3 {
    color: #e91e63; /* Adjust to match theme */
}

.benefit-img .video-wrap button {
    transition: transform 0.3s ease;
}

.benefit-img .video-wrap button:hover {
    transform: scale(1.1);
}
/* Donations section animations */
.donations-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.donations-area.visible {
    opacity: 1;
}

/* Donation item animations */
.donation-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}

.donations-area.visible .donation-item {
    opacity: 1;
    transform: translateY(0);
}

.donations-area.visible .col-lg-4:nth-child(1) .donation-item { transition-delay: 0.2s; }
.donations-area.visible .col-lg-4:nth-child(2) .donation-item { transition-delay: 0.3s; }
.donations-area.visible .col-lg-4:nth-child(3) .donation-item { transition-delay: 0.4s; }
.donations-area.visible .col-lg-4:nth-child(4) .donation-item { transition-delay: 0.5s; }
.donations-area.visible .col-lg-4:nth-child(5) .donation-item { transition-delay: 0.6s; }

/* Child element animations */
.donation-item .img img,
.donation-item .img a,
.donation-item .top a.tags,
.donation-item .top h3 a,
.donation-item .top p,
.donation-item .bottom .skill-bar,
.donation-item .bottom ul li,
.donation-item .bottom h4 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.donations-area.visible .donation-item .img img { transition-delay: 0.7s; }
.donations-area.visible .donation-item .img a { transition-delay: 0.8s; }
.donations-area.visible .donation-item .top a.tags { transition-delay: 0.9s; }
.donations-area.visible .donation-item .top h3 a { transition-delay: 1.0s; }
.donations-area.visible .donation-item .top p { transition-delay: 1.1s; }
.donations-area.visible .donation-item .bottom .skill-bar { transition-delay: 1.2s; }
.donations-area.visible .donation-item .bottom ul li { transition-delay: 1.3s; }
.donations-area.visible .donation-item .bottom h4 { transition-delay: 1.4s; }

.donations-area.visible .donation-item .img img,
.donations-area.visible .donation-item .img a,
.donations-area.visible .donation-item .top a.tags,
.donations-area.visible .donation-item .top h3 a,
.donations-area.visible .donation-item .top p,
.donations-area.visible .donation-item .bottom .skill-bar,
.donations-area.visible .donation-item .bottom ul li,
.donations-area.visible .donation-item .bottom h4 {
    opacity: 1;
    transform: translateY(0);
}

/* Progress bar animations */
.skill-bar {
    width: 0;
    transition: width 1.2s ease-in-out;
}
/* Page title section animations */
.page-title-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-title-area.visible {
    opacity: 1;
}

/* Title and breadcrumb animations */
.title-item h2,
.title-item ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}
/* General section animations */
.page-title-area, .donation-details-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-title-area.visible, .donation-details-area.visible {
    opacity: 1;
}

/* Page Title animations */
.title-item h2, .title-item ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.page-title-area.visible .title-item h2 { transition-delay: 0.2s; }
.page-title-area.visible .title-item ul li:nth-child(1) { transition-delay: 0.4s; }
.page-title-area.visible .title-item ul li:nth-child(2) { transition-delay: 0.5s; }

.page-title-area.visible .title-item h2,
.page-title-area.visible .title-item ul li {
    opacity: 1;
    transform: translateY(0);
}

.title-item ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.title-item ul li a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Donation Details animations */
.details-img img,
.details-img h2,
.details-img p,
.details-img blockquote {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.donation-details-area.visible .details-img img { transition-delay: 0.2s; }
.donation-details-area.visible .details-img h2 { transition-delay: 0.4s; }
.donation-details-area.visible .details-img p:nth-child(2) { transition-delay: 0.5s; }
.donation-details-area.visible .details-img p:nth-child(3) { transition-delay: 0.6s; }
.donation-details-area.visible .details-img blockquote { transition-delay: 0.7s; }
.donation-details-area.visible .details-img p:nth-child(5) { transition-delay: 0.8s; }
.donation-details-area.visible .details-img p:nth-child(6) { transition-delay: 0.9s; }

.donation-details-area.visible .details-img img,
.donation-details-area.visible .details-img h2,
.donation-details-area.visible .details-img p,
.donation-details-area.visible .details-img blockquote {
    opacity: 1;
    transform: translateY(0);
}

/* Details Share animations */
.details-share .left ul li,
.details-share .right ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.donation-details-area.visible .details-share .left ul li:nth-child(1) { transition-delay: 0.2s; }
.donation-details-area.visible .details-share .left ul li:nth-child(2) { transition-delay: 0.3s; }
.donation-details-area.visible .details-share .left ul li:nth-child(3) { transition-delay: 0.4s; }
.donation-details-area.visible .details-share .left ul li:nth-child(4) { transition-delay: 0.5s; }
.donation-details-area.visible .details-share .left ul li:nth-child(5) { transition-delay: 0.6s; }
.donation-details-area.visible .details-share .right ul li:nth-child(1) { transition-delay: 0.7s; }
.donation-details-area.visible .details-share .right ul li:nth-child(2) { transition-delay: 0.8s; }
.donation-details-area.visible .details-share .right ul li:nth-child(3) { transition-delay: 0.9s; }
.donation-details-area.visible .details-share .right ul li:nth-child(4) { transition-delay: 1.0s; }

.donation-details-area.visible .details-share .left ul li,
.donation-details-area.visible .details-share .right ul li {
    opacity: 1;
    transform: translateY(0);
}

.details-share .left ul li a,
.details-share .right ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.details-share .left ul li a:hover,
.details-share .right ul li a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.1);
}

/* Payment form animations */
.details-payment h3,
.details-payment .form-radio-area .form-check,
.details-payment .form-input-area .form-group,
.details-payment .form-input-area .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.donation-details-area.visible .details-payment h3 { transition-delay: 0.2s; }
.donation-details-area.visible .details-payment .form-radio-area .form-check:nth-child(1) { transition-delay: 0.3s; }
.donation-details-area.visible .details-payment .form-radio-area .form-check:nth-child(2) { transition-delay: 0.4s; }
.donation-details-area.visible .details-payment .form-radio-area .form-check:nth-child(3) { transition-delay: 0.5s; }
.donation-details-area.visible .details-payment .form-radio-area .form-check:nth-child(4) { transition-delay: 0.6s; }
.donation-details-area.visible .details-payment .form-input-area .form-group:nth-child(1) { transition-delay: 0.7s; }
.donation-details-area.visible .details-payment .form-input-area .form-group:nth-child(2) { transition-delay: 0.8s; }
.donation-details-area.visible .details-payment .form-input-area .form-group:nth-child(3) { transition-delay: 0.9s; }
.donation-details-area.visible .details-payment .form-input-area .form-group:nth-child(4) { transition-delay: 1.0s; }
.donation-details-area.visible .details-payment .form-input-area .form-group:nth-child(5) { transition-delay: 1.1s; }
.donation-details-area.visible .details-payment .form-input-area .btn { transition-delay: 1.2s; }

.donation-details-area.visible .details-payment h3,
.donation-details-area.visible .details-payment .form-radio-area .form-check,
.donation-details-area.visible .details-payment .form-input-area .form-group,
.donation-details-area.visible .details-payment .form-input-area .btn {
    opacity: 1;
    transform: translateY(0);
}

.details-payment .btn {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.details-payment .btn:hover {
    transform: scale(1.05);
}

/* Widget area animations */
.widget-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}

.donation-details-area.visible .widget-item {
    opacity: 1;
    transform: translateY(0);
}

.donation-details-area.visible .widget-item:nth-child(1) { transition-delay: 0.2s; }
.donation-details-area.visible .widget-item:nth-child(2) { transition-delay: 0.3s; }
.donation-details-area.visible .widget-item:nth-child(3) { transition-delay: 0.4s; }
.donation-details-area.visible .widget-item:nth-child(4) { transition-delay: 0.5s; }
.donation-details-area.visible .widget-item:nth-child(5) { transition-delay: 0.6s; }

.widget-item .post-inner img,
.widget-item .post-inner h4 a,
.widget-item .post-inner p a,
.widget-item .common-right-content ul li a,
.widget-item .instagram-item img,
.widget-item .instagram-item a {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.donation-details-area.visible .widget-item .post-inner img,
.donation-details-area.visible .widget-item .post-inner h4 a,
.donation-details-area.visible .widget-item .post-inner p a,
.donation-details-area.visible .widget-item .common-right-content ul li a,
.donation-details-area.visible .widget-item .instagram-item img,
.donation-details-area.visible .widget-item .instagram-item a {
    opacity: 1;
    transform: translateY(0);
}

.donation-details-area.visible .post-inner:nth-child(1) img { transition-delay: 0.7s; }
.donation-details-area.visible .post-inner:nth-child(1) h4 a { transition-delay: 0.8s; }
.donation-details-area.visible .post-inner:nth-child(1) p a { transition-delay: 0.9s; }
.donation-details-area.visible .post-inner:nth-child(2) img { transition-delay: 1.0s; }
.donation-details-area.visible .post-inner:nth-child(2) h4 a { transition-delay: 1.1s; }
.donation-details-area.visible .post-inner:nth-child(2) p a { transition-delay: 1.2s; }
.donation-details-area.visible .post-inner:nth-child(3) img { transition-delay: 1.3s; }
.donation-details-area.visible .post-inner:nth-child(3) h4 a { transition-delay: 1.4s; }
.donation-details-area.visible .post-inner:nth-child(3) p a { transition-delay: 1.5s; }
.donation-details-area.visible .post-inner:nth-child(4) img { transition-delay: 1.6s; }
.donation-details-area.visible .post-inner:nth-child(4) h4 a { transition-delay: 1.7s; }
.donation-details-area.visible .post-inner:nth-child(4) p a { transition-delay: 1.8s; }
.donation-details-area.visible .post-inner:nth-child(5) img { transition-delay: 1.9s; }
.donation-details-area.visible .post-inner:nth-child(5) h4 a { transition-delay: 2.0s; }
.donation-details-area.visible .post-inner:nth-child(5) p a { transition-delay: 2.1s; }
.donation-details-area.visible .common-right-content:nth-child(3) ul li a { transition-delay: 0.7s; }
.donation-details-area.visible .common-right-content:nth-child(4) ul li a { transition-delay: 0.8s; }
.donation-details-area.visible .instagram-item:nth-child(1) img { transition-delay: 0.7s; }
.donation-details-area.visible .instagram-item:nth-child(1) a { transition-delay: 0.8s; }
.donation-details-area.visible .instagram-item:nth-child(2) img { transition-delay: 0.9s; }
.donation-details-area.visible .instagram-item:nth-child(2) a { transition-delay: 1.0s; }
.donation-details-area.visible .instagram-item:nth-child(3) img { transition-delay: 1.1s; }
.donation-details-area.visible .instagram-item:nth-child(3) a { transition-delay: 1.2s; }
.donation-details-area.visible .instagram-item:nth-child(4) img { transition-delay: 1.3s; }
.donation-details-area.visible .instagram-item:nth-child(4) a { transition-delay: 1.4s; }
.donation-details-area.visible .instagram-item:nth-child(5) img { transition-delay: 1.5s; }
.donation-details-area.visible .instagram-item:nth-child(5) a { transition-delay: 1.6s; }
.donation-details-area.visible .instagram-item:nth-child(6) img { transition-delay: 1.7s; }
.donation-details-area.visible .instagram-item:nth-child(6) a { transition-delay: 1.8s; }

.widget-item .post-inner img,
.widget-item .post-inner h4 a,
.widget-item .post-inner p a,
.widget-item .common-right-content ul li a,
.widget-item .instagram-item img,
.widget-item .instagram-item a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.widget-item .post-inner h4 a:hover,
.widget-item .post-inner p a:hover,
.widget-item .common-right-content ul li a:hover,
.widget-item .instagram-item a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

.widget-item .post-inner img:hover,
.widget-item .instagram-item img:hover {
    transform: scale(1.1);
}
/* General section animations */
.page-title-area, .faq-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-title-area.visible, .faq-area.visible {
    opacity: 1;
}

/* Page Title animations */
.title-item h2, .title-item ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.page-title-area.visible .title-item h2 { transition-delay: 0.2s; }
.page-title-area.visible .title-item ul li:nth-child(1) { transition-delay: 0.4s; }
.page-title-area.visible .title-item ul li:nth-child(2) { transition-delay: 0.5s; }

.page-title-area.visible .title-item h2,
.page-title-area.visible .title-item ul li {
    opacity: 1;
    transform: translateY(0);
}

.title-item ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.title-item ul li a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* FAQ section animations */
.accordion li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.faq-area.visible .accordion li {
    opacity: 1;
    transform: translateY(0);
}

.faq-area.visible .accordion li:nth-child(1) { transition-delay: 0.2s; }
.faq-area.visible .accordion li:nth-child(2) { transition-delay: 0.3s; }
.faq-area.visible .accordion li:nth-child(3) { transition-delay: 0.4s; }
.faq-area.visible .accordion li:nth-child(4) { transition-delay: 0.5s; }
.faq-area.visible .accordion li:nth-child(5) { transition-delay: 0.6s; }
.faq-area.visible .accordion li:nth-child(6) { transition-delay: 0.7s; }
.faq-area.visible .accordion li:nth-child(7) { transition-delay: 0.8s; }
.faq-area.visible .accordion li:nth-child(8) { transition-delay: 0.9s; }
.faq-area.visible .accordion li:nth-child(9) { transition-delay: 1.0s; }
.faq-area.visible .accordion li:nth-child(10) { transition-delay: 1.1s; }
.faq-area.visible .accordion li:nth-child(11) { transition-delay: 1.2s; }
.faq-area.visible .accordion li:nth-child(12) { transition-delay: 1.3s; }
.faq-area.visible .accordion li:nth-child(13) { transition-delay: 1.4s; }
.faq-area.visible .accordion li:nth-child(14) { transition-delay: 1.5s; }
.faq-area.visible .accordion li:nth-child(15) { transition-delay: 1.6s; }
.faq-area.visible .accordion li:nth-child(16) { transition-delay: 1.7s; }
.faq-area.visible .accordion li:nth-child(17) { transition-delay: 1.8s; }
.faq-area.visible .accordion li:nth-child(18) { transition-delay: 1.9s; }
.faq-area.visible .accordion li:nth-child(19) { transition-delay: 2.0s; }
.faq-area.visible .accordion li:nth-child(20) { transition-delay: 2.1s; }
.faq-area.visible .accordion li:nth-child(21) { transition-delay: 2.2s; }

.accordion li a,
.accordion li p a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.accordion li a:hover,
.accordion li p a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Accordion icon animations */
.accordion li a i {
    transition: transform 0.3s ease;
}

.accordion li a:hover i {
    transform: scale(1.1);
}
/* General section animations */
.page-title-area, .contact-info-area, .contact-area, .map-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-title-area.visible, .contact-info-area.visible, .contact-area.visible, .map-area.visible {
    opacity: 1;
}

/* Page Title animations */
.title-item h2, .title-item ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.page-title-area.visible .title-item h2 { transition-delay: 0.2s; }
.page-title-area.visible .title-item ul li:nth-child(1) { transition-delay: 0.4s; }
.page-title-area.visible .title-item ul li:nth-child(2) { transition-delay: 0.5s; }

.page-title-area.visible .title-item h2,
.page-title-area.visible .title-item ul li {
    opacity: 1;
    transform: translateY(0);
}

.title-item ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.title-item ul li a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Contact Info animations */
.contact-info {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}

.contact-info-area.visible .contact-info {
    opacity: 1;
    transform: translateY(0);
}

.contact-info-area.visible .col-lg-4:nth-child(1) .contact-info { transition-delay: 0.2s; }
.contact-info-area.visible .col-lg-4:nth-child(2) .contact-info { transition-delay: 0.3s; }
.contact-info-area.visible .col-lg-4:nth-child(3) .contact-info { transition-delay: 0.4s; }

.contact-info i,
.contact-info span,
.contact-info a {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.contact-info-area.visible .contact-info i { transition-delay: 0.5s; }
.contact-info-area.visible .contact-info span { transition-delay: 0.6s; }
.contact-info-area.visible .contact-info a { transition-delay: 0.7s; }

.contact-info-area.visible .contact-info i,
.contact-info-area.visible .contact-info span,
.contact-info-area.visible .contact-info a {
    opacity: 1;
    transform: translateY(0);
}

.contact-info a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

.contact-info i {
    transition: transform 0.3s ease;
}

.contact-info:hover i {
    transform: scale(1.1);
}

/* Contact Form animations */
#contactForm h2,
#contactForm p,
#contactForm .form-group,
#contactForm .form-check,
#contactForm .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.contact-area.visible #contactForm h2 { transition-delay: 0.2s; }
.contact-area.visible #contactForm p { transition-delay: 0.3s; }
.contact-area.visible #contactForm .form-group:nth-child(1) { transition-delay: 0.4s; }
.contact-area.visible #contactForm .form-group:nth-child(2) { transition-delay: 0.5s; }
.contact-area.visible #contactForm .form-group:nth-child(3) { transition-delay: 0.6s; }
.contact-area.visible #contactForm .form-group:nth-child(4) { transition-delay: 0.7s; }
.contact-area.visible #contactForm .form-group:nth-child(5) { transition-delay: 0.8s; }
.contact-area.visible #contactForm .form-check { transition-delay: 0.9s; }
.contact-area.visible #contactForm .btn { transition-delay: 1.0s; }

.contact-area.visible #contactForm h2,
.contact-area.visible #contactForm p,
.contact-area.visible #contactForm .form-group,
.contact-area.visible #contactForm .form-check,
.contact-area.visible #contactForm .btn {
    opacity: 1;
    transform: translateY(0);
}

#contactForm .btn,
#contactForm .form-check-label a {
    transition: color 0.3s ease, transform 0.3s ease;
}

#contactForm .btn:hover {
    transform: scale(1.05);
}

#contactForm .form-check-label a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Map area animations */
.map-area iframe {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}

.map-area.visible iframe {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
/* General section animations */
.page-title-area, .donations-area, .donation-modal {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-title-area.visible, .donations-area.visible, .donation-modal.visible {
    opacity: 1;
}

/* Page Title animations */
.title-item h2, .title-item ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.page-title-area.visible .title-item h2 { transition-delay: 0.2s; }
.page-title-area.visible .title-item ul li:nth-child(1) { transition-delay: 0.4s; }
.page-title-area.visible .title-item ul li:nth-child(2) { transition-delay: 0.5s; }

.page-title-area.visible .title-item h2,
.page-title-area.visible .title-item ul li {
    opacity: 1;
    transform: translateY(0);
}

.title-item ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.title-item ul li a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Donations Area animations */
.donations-content h2,
.donations-content p,
.donations-content h3,
.donations-content ul li,
.donations-content button {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.donations-area.visible .donations-content h2 { transition-delay: 0.2s; }
.donations-area.visible .donations-content p:nth-child(2) { transition-delay: 0.3s; }
.donations-area.visible .donations-content h3:nth-child(3) { transition-delay: 0.4s; }
.donations-area.visible .donations-content p:nth-child(4) { transition-delay: 0.5s; }
.donations-area.visible .donations-content ul:nth-child(5) li:nth-child(1) { transition-delay: 0.6s; }
.donations-area.visible .donations-content ul:nth-child(5) li:nth-child(2) { transition-delay: 0.7s; }
.donations-area.visible .donations-content ul:nth-child(5) li:nth-child(3) { transition-delay: 0.8s; }
.donations-area.visible .donations-content ul:nth-child(5) li:nth-child(4) { transition-delay: 0.9s; }
.donations-area.visible .donations-content ul:nth-child(5) li:nth-child(5) { transition-delay: 1.0s; }
.donations-area.visible .donations-content h3:nth-child(6) { transition-delay: 1.1s; }
.donations-area.visible .donations-content p:nth-child(7) { transition-delay: 1.2s; }
.donations-area.visible .donations-content ul:nth-child(8) li:nth-child(1) { transition-delay: 1.3s; }
.donations-area.visible .donations-content ul:nth-child(8) li:nth-child(2) { transition-delay: 1.4s; }
.donations-area.visible .donations-content ul:nth-child(8) li:nth-child(3) { transition-delay: 1.5s; }
.donations-area.visible .donations-content ul:nth-child(8) li:nth-child(4) { transition-delay: 1.6s; }
.donations-area.visible .donations-content p:nth-child(9) { transition-delay: 1.7s; }
.donations-area.visible .donations-content h3:nth-child(10) { transition-delay: 1.8s; }
.donations-area.visible .donations-content p:nth-child(11) { transition-delay: 1.9s; }
.donations-area.visible .donations-content button { transition-delay: 2.0s; }
.donations-area.visible .donations-content h3:nth-child(13) { transition-delay: 2.1s; }
.donations-area.visible .donations-content p:nth-child(14) { transition-delay: 2.2s; }
.donations-area.visible .donations-content ul:nth-child(15) li:nth-child(1) { transition-delay: 2.3s; }
.donations-area.visible .donations-content ul:nth-child(15) li:nth-child(2) { transition-delay: 2.4s; }
.donations-area.visible .donations-content ul:nth-child(15) li:nth-child(3) { transition-delay: 2.5s; }
.donations-area.visible .donations-content ul:nth-child(15) li:nth-child(4) { transition-delay: 2.6s; }

.donations-area.visible .donations-content h2,
.donations-area.visible .donations-content p,
.donations-area.visible .donations-content h3,
.donations-area.visible .donations-content ul li,
.donations-area.visible .donations-content button {
    opacity: 1;
    transform: translateY(0);
}

.donations-content ul li a,
.donations-content button {
    transition: color 0.3s ease, transform 0.3s ease;
}

.donations-content ul li a:hover,
.donations-content button:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Donation Modal animations */
.donation-modal-content {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
}

.donation-modal.visible .donation-modal-content {
    opacity: 1;
    transform: scale(1);
}

.donation-modal-content .close-modal,
.donation-modal-content h3,
.donation-modal-content p,
.donation-modal-content .form-group,
.donation-modal-content button {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.donation-modal.visible .donation-modal-content .close-modal { transition-delay: 0.2s; }
.donation-modal.visible .donation-modal-content h3 { transition-delay: 0.3s; }
.donation-modal.visible .donation-modal-content p { transition-delay: 0.4s; }
.donation-modal.visible .donation-modal-content .form-group:nth-child(1) { transition-delay: 0.5s; }
.donation-modal.visible .donation-modal-content .form-group:nth-child(2) { transition-delay: 0.6s; }
.donation-modal.visible .donation-modal-content .form-group:nth-child(3) { transition-delay: 0.7s; }
.donation-modal.visible .donation-modal-content .form-group:nth-child(4) { transition-delay: 0.8s; }
.donation-modal.visible .donation-modal-content button { transition-delay: 0.9s; }

.donation-modal.visible .donation-modal-content .close-modal,
.donation-modal.visible .donation-modal-content h3,
.donation-modal.visible .donation-modal-content p,
.donation-modal.visible .donation-modal-content .form-group,
.donation-modal.visible .donation-modal-content button {
    opacity: 1;
    transform: translateY(0);
}

.donation-modal-content .close-modal:hover,
.donation-modal-content button {
    transition: transform 0.3s ease, color 0.3s ease;
}

.donation-modal-content .close-modal:hover,
.donation-modal-content button:hover {
    transform: scale(1.1);
}
.donation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.donation-modal-content {
    background: white;
    margin: 15% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
/* General section animations */
.page-title-area, .event-details-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-title-area.visible, .event-details-area.visible {
    opacity: 1;
}

/* Page Title animations */
.title-item h2, .title-item ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.page-title-area.visible .title-item h2 { transition-delay: 0.2s; }
.page-title-area.visible .title-item ul li:nth-child(1) { transition-delay: 0.4s; }
.page-title-area.visible .title-item ul li:nth-child(2) { transition-delay: 0.5s; }

.page-title-area.visible .title-item h2,
.page-title-area.visible .title-item ul li {
    opacity: 1;
    transform: translateY(0);
}

.title-item ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.title-item ul li a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Program Details main content animations */
.details-img img,
.details-img h2,
.details-img p,
.details-img h3,
.details-img ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.event-details-area.visible .details-img img { transition-delay: 0.2s; }
.event-details-area.visible .details-img h2 { transition-delay: 0.3s; }
.event-details-area.visible .details-img p:nth-child(3) { transition-delay: 0.4s; }
.event-details-area.visible .details-img h3:nth-child(4) { transition-delay: 0.5s; }
.event-details-area.visible .details-img p:nth-child(5) { transition-delay: 0.6s; }
.event-details-area.visible .details-img h3:nth-child(6) { transition-delay: 0.7s; }
.event-details-area.visible .details-img p:nth-child(7) { transition-delay: 0.8s; }
.event-details-area.visible .details-img h3:nth-child(8) { transition-delay: 0.9s; }
.event-details-area.visible .details-img p:nth-child(9) { transition-delay: 1.0s; }
.event-details-area.visible .details-img h3:nth-child(10) { transition-delay: 1.1s; }
.event-details-area.visible .details-img p:nth-child(11) { transition-delay: 1.2s; }
.event-details-area.visible .details-img h3:nth-child(12) { transition-delay: 1.3s; }
.event-details-area.visible .details-img p:nth-child(13) { transition-delay: 1.4s; }
.event-details-area.visible .details-img h3:nth-child(14) { transition-delay: 1.5s; }
.event-details-area.visible .details-img p:nth-child(15) { transition-delay: 1.6s; }
.event-details-area.visible .details-img h3:nth-child(16) { transition-delay: 1.7s; }
.event-details-area.visible .details-img ul li:nth-child(1) { transition-delay: 1.8s; }
.event-details-area.visible .details-img ul li:nth-child(2) { transition-delay: 1.9s; }
.event-details-area.visible .details-img ul li:nth-child(3) { transition-delay: 2.0s; }
.event-details-area.visible .details-img ul li:nth-child(4) { transition-delay: 2.1s; }
.event-details-area.visible .details-img p:nth-child(18) { transition-delay: 2.2s; }
.event-details-area.visible .details-img p:nth-child(19) { transition-delay: 2.3s; }

.event-details-area.visible .details-img img,
.event-details-area.visible .details-img h2,
.event-details-area.visible .details-img p,
.event-details-area.visible .details-img h3,
.event-details-area.visible .details-img ul li {
    opacity: 1;
    transform: translateY(0);
}

.details-img a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.details-img a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Widget area animations */
.widget-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}

.event-details-area.visible .widget-item {
    opacity: 1;
    transform: translateY(0);
}

.event-details-area.visible .widget-item:nth-child(1) { transition-delay: 0.2s; }
.event-details-area.visible .widget-item:nth-child(2) { transition-delay: 0.3s; }
.event-details-area.visible .widget-item:nth-child(3) { transition-delay: 0.4s; }
.event-details-area.visible .widget-item:nth-child(4) { transition-delay: 0.5s; }
.event-details-area.visible .widget-item:nth-child(5) { transition-delay: 0.6s; }

.widget-item ul li,
.widget-item .instagram-item img,
.widget-item .instagram-item a {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.event-details-area.visible .widget-item ul li { transition-delay: 0.7s; } /* Stagger per widget if needed, but grouped for simplicity */
.event-details-area.visible .instagram-item img { transition-delay: 0.7s; }
.event-details-area.visible .instagram-item a { transition-delay: 0.8s; }

.event-details-area.visible .widget-item ul li,
.event-details-area.visible .widget-item .instagram-item img,
.event-details-area.visible .widget-item .instagram-item a {
    opacity: 1;
    transform: translateY(0);
}

/* Adjust delays for multiple li in widgets */
.event-details-area.visible .information ul li:nth-child(1) { transition-delay: 0.7s; }
.event-details-area.visible .information ul li:nth-child(2) { transition-delay: 0.8s; }
.event-details-area.visible .information ul li:nth-child(3) { transition-delay: 0.9s; }
.event-details-area.visible .information ul li:nth-child(4) { transition-delay: 1.0s; }
.event-details-area.visible .information ul li:nth-child(5) { transition-delay: 1.1s; }

.event-details-area.visible .common-right-content:nth-child(3) ul li:nth-child(1) { transition-delay: 0.7s; }
.event-details-area.visible .common-right-content:nth-child(3) ul li:nth-child(2) { transition-delay: 0.8s; }
.event-details-area.visible .common-right-content:nth-child(3) ul li:nth-child(3) { transition-delay: 0.9s; }

.event-details-area.visible .common-right-content:nth-child(4) ul li:nth-child(1) { transition-delay: 0.7s; }
.event-details-area.visible .common-right-content:nth-child(4) ul li:nth-child(2) { transition-delay: 0.8s; }
.event-details-area.visible .common-right-content:nth-child(4) ul li:nth-child(3) { transition-delay: 0.9s; }
.event-details-area.visible .common-right-content:nth-child(4) ul li:nth-child(4) { transition-delay: 1.0s; }
.event-details-area.visible .common-right-content:nth-child(4) ul li:nth-child(5) { transition-delay: 1.1s; }

.event-details-area.visible .instagram-item:nth-child(1) img { transition-delay: 0.7s; }
.event-details-area.visible .instagram-item:nth-child(1) a { transition-delay: 0.8s; }
.event-details-area.visible .instagram-item:nth-child(2) img { transition-delay: 0.9s; }
.event-details-area.visible .instagram-item:nth-child(2) a { transition-delay: 1.0s; }
.event-details-area.visible .instagram-item:nth-child(3) img { transition-delay: 1.1s; }
.event-details-area.visible .instagram-item:nth-child(3) a { transition-delay: 1.2s; }
.event-details-area.visible .instagram-item:nth-child(4) img { transition-delay: 1.3s; }
.event-details-area.visible .instagram-item:nth-child(4) a { transition-delay: 1.4s; }
.event-details-area.visible .instagram-item:nth-child(5) img { transition-delay: 1.5s; }
.event-details-area.visible .instagram-item:nth-child(5) a { transition-delay: 1.6s; }
.event-details-area.visible .instagram-item:nth-child(6) img { transition-delay: 1.7s; }
.event-details-area.visible .instagram-item:nth-child(6) a { transition-delay: 1.8s; }

.widget-item a,
.widget-item .instagram-item img {
    transition: color 0.3s ease, transform 0.3s ease;
}

.widget-item a:hover,
.widget-item .instagram-item a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

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


.page-title-area.visible .title-item h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.page-title-area.visible .title-item ul li:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.page-title-area.visible .title-item ul li:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* Breadcrumb hover effect */
.title-item ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.title-item ul li a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}
.donations-area.visible .skill-bar.skill1 { width: 70%; }
.donations-area.visible .skill-bar.skill2 { width: 85%; }
.donations-area.visible .skill-bar.skill3 { width: 65%; }
.donations-area.visible .skill-bar.skill4 { width: 75%; }
.donations-area.visible .skill-bar.skill5 { width: 80%; }

/* Hover effects */
.donation-item .img img,
.donation-item .img a,
.donation-item .top a.tags,
.donation-item .top h3 a {
    transition: transform 0.3s ease, color 0.3s ease;
}
/* General section animations */
.page-title-area, .get-involved-area, .modal-overlay {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-title-area.visible, .get-involved-area.visible, .modal-overlay.visible {
    opacity: 1;
}

/* Page Title animations */
.title-item h2, .title-item ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.page-title-area.visible .title-item h2 { transition-delay: 0.2s; }
.page-title-area.visible .title-item ul li:nth-child(1) { transition-delay: 0.4s; }
.page-title-area.visible .title-item ul li:nth-child(2) { transition-delay: 0.5s; }

.page-title-area.visible .title-item h2,
.page-title-area.visible .title-item ul li {
    opacity: 1;
    transform: translateY(0);
}

.title-item ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.title-item ul li a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Get Involved Area animations */
.get-involved-content h2,
.get-involved-content p,
.get-involved-content h3,
.get-involved-content ul li,
.get-involved-content button,
.get-involved-content a.btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.get-involved-area.visible .get-involved-content h2 { transition-delay: 0.2s; }
.get-involved-area.visible .get-involved-content p:nth-child(2) { transition-delay: 0.3s; }
.get-involved-area.visible .get-involved-content h3:nth-child(3) { transition-delay: 0.4s; }
.get-involved-area.visible .get-involved-content p:nth-child(4) { transition-delay: 0.5s; }
.get-involved-area.visible .get-involved-content p:nth-child(5) a.btn { transition-delay: 0.6s; }
.get-involved-area.visible .get-involved-content h3:nth-child(6) { transition-delay: 0.7s; }
.get-involved-area.visible .get-involved-content p:nth-child(7) { transition-delay: 0.8s; }
.get-involved-area.visible .get-involved-content ul:nth-child(8) li:nth-child(1) { transition-delay: 0.9s; }
.get-involved-area.visible .get-involved-content ul:nth-child(8) li:nth-child(2) { transition-delay: 1.0s; }
.get-involved-area.visible .get-involved-content ul:nth-child(8) li:nth-child(3) { transition-delay: 1.1s; }
.get-involved-area.visible .get-involved-content ul:nth-child(8) li:nth-child(4) { transition-delay: 1.2s; }
.get-involved-area.visible .get-involved-content p:nth-child(9) { transition-delay: 1.3s; }
.get-involved-area.visible .get-involved-content p:nth-child(10) button { transition-delay: 1.4s; }
.get-involved-area.visible .get-involved-content h3:nth-child(11) { transition-delay: 1.5s; }
.get-involved-area.visible .get-involved-content p:nth-child(12) { transition-delay: 1.6s; }
.get-involved-area.visible .get-involved-content ul:nth-child(13) li:nth-child(1) { transition-delay: 1.7s; }
.get-involved-area.visible .get-involved-content ul:nth-child(13) li:nth-child(2) { transition-delay: 1.8s; }
.get-involved-area.visible .get-involved-content ul:nth-child(13) li:nth-child(3) { transition-delay: 1.9s; }
.get-involved-area.visible .get-involved-content ul:nth-child(13) li:nth-child(4) { transition-delay: 2.0s; }
.get-involved-area.visible .get-involved-content p:nth-child(14) { transition-delay: 2.1s; }
.get-involved-area.visible .get-involved-content h3:nth-child(15) { transition-delay: 2.2s; }
.get-involved-area.visible .get-involved-content p:nth-child(16) { transition-delay: 2.3s; }
.get-involved-area.visible .get-involved-content ul:nth-child(17) li:nth-child(1) { transition-delay: 2.4s; }
.get-involved-area.visible .get-involved-content ul:nth-child(17) li:nth-child(2) { transition-delay: 2.5s; }
.get-involved-area.visible .get-involved-content ul:nth-child(17) li:nth-child(3) { transition-delay: 2.6s; }
.get-involved-area.visible .get-involved-content ul:nth-child(17) li:nth-child(4) { transition-delay: 2.7s; }

.get-involved-area.visible .get-involved-content h2,
.get-involved-area.visible .get-involved-content p,
.get-involved-area.visible .get-involved-content h3,
.get-involved-area.visible .get-involved-content ul li,
.get-involved-area.visible .get-involved-content button,
.get-involved-area.visible .get-involved-content a.btn {
    opacity: 1;
    transform: translateY(0);
}

.get-involved-content a,
.get-involved-content button,
.get-involved-content a.btn {
    transition: color 0.3s ease, transform 0.3s ease;
}

.get-involved-content a:hover,
.get-involved-content button:hover,
.get-involved-content a.btn:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Volunteer Modal animations */
.modal-content {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
}

.modal-overlay.visible .modal-content {
    opacity: 1;
    transform: scale(1);
}

.modal-content .modal-close,
.modal-content h3,
.modal-content p,
.modal-content .form-group,
.modal-content button {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.modal-overlay.visible .modal-content .modal-close { transition-delay: 0.2s; }
.modal-overlay.visible .modal-content h3 { transition-delay: 0.3s; }
.modal-overlay.visible .modal-content p { transition-delay: 0.4s; }
.modal-overlay.visible .modal-content .form-group:nth-child(1) { transition-delay: 0.5s; }
.modal-overlay.visible .modal-content .form-group:nth-child(2) { transition-delay: 0.6s; }
.modal-overlay.visible .modal-content .form-group:nth-child(3) { transition-delay: 0.7s; }
.modal-overlay.visible .modal-content button { transition-delay: 0.8s; }

.modal-overlay.visible .modal-content .modal-close,
.modal-overlay.visible .modal-content h3,
.modal-overlay.visible .modal-content p,
.modal-overlay.visible .modal-content .form-group,
.modal-overlay.visible .modal-content button {
    opacity: 1;
    transform: translateY(0);
}

.modal-content .modal-close:hover,
.modal-content button {
    transition: transform 0.3s ease, color 0.3s ease;
}

.modal-content .modal-close:hover,
.modal-content button:hover {
    transform: scale(1.1);
}
/* General section animations */
.page-title-area, .resources-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-title-area.visible, .resources-area.visible {
    opacity: 1;
}

/* Page Title animations */
.title-item h2, .title-item ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.page-title-area.visible .title-item h2 { transition-delay: 0.2s; }
.page-title-area.visible .title-item ul li:nth-child(1) { transition-delay: 0.4s; }
.page-title-area.visible .title-item ul li:nth-child(2) { transition-delay: 0.5s; }

.page-title-area.visible .title-item h2,
.page-title-area.visible .title-item ul li {
    opacity: 1;
    transform: translateY(0);
}

.title-item ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.title-item ul li a:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}

/* Resources Area image animations */
.resources-img img {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}

.resources-area.visible .resources-img img {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Resources Area content animations */
.resources-content h2,
.resources-content p,
.resources-content h3,
.resources-content ul li,
.resources-content a.btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.resources-area.visible .resources-content h2 { transition-delay: 0.2s; }
.resources-area.visible .resources-content p:nth-child(2) { transition-delay: 0.3s; }
.resources-area.visible .resources-content h3:nth-child(3) { transition-delay: 0.4s; }
.resources-area.visible .resources-content p:nth-child(4) { transition-delay: 0.5s; }
.resources-area.visible .resources-content ul:nth-child(5) li:nth-child(1) { transition-delay: 0.6s; }
.resources-area.visible .resources-content ul:nth-child(5) li:nth-child(2) { transition-delay: 0.7s; }
.resources-area.visible .resources-content ul:nth-child(5) li:nth-child(3) { transition-delay: 0.8s; }
.resources-area.visible .resources-content ul:nth-child(5) li:nth-child(4) { transition-delay: 0.9s; }
.resources-area.visible .resources-content ul:nth-child(5) li:nth-child(5) { transition-delay: 1.0s; }
.resources-area.visible .resources-content ul:nth-child(5) li:nth-child(6) { transition-delay: 1.1s; }
.resources-area.visible .resources-content h3:nth-child(6) { transition-delay: 1.2s; }
.resources-area.visible .resources-content p:nth-child(7) { transition-delay: 1.3s; }
.resources-area.visible .resources-content ul:nth-child(8) li:nth-child(1) { transition-delay: 1.4s; }
.resources-area.visible .resources-content ul:nth-child(8) li:nth-child(2) { transition-delay: 1.5s; }
.resources-area.visible .resources-content ul:nth-child(8) li:nth-child(3) { transition-delay: 1.6s; }
.resources-area.visible .resources-content ul:nth-child(8) li:nth-child(4) { transition-delay: 1.7s; }
.resources-area.visible .resources-content ul:nth-child(8) li:nth-child(5) { transition-delay: 1.8s; }
.resources-area.visible .resources-content p:nth-child(9) a.btn { transition-delay: 1.9s; }
.resources-area.visible .resources-content h3:nth-child(10) { transition-delay: 2.0s; }
.resources-area.visible .resources-content p:nth-child(11) { transition-delay: 2.1s; }
.resources-area.visible .resources-content p:nth-child(12) a.btn { transition-delay: 2.2s; }
.resources-area.visible .resources-content h3:nth-child(13) { transition-delay: 2.3s; }
.resources-area.visible .resources-content p:nth-child(14) { transition-delay: 2.4s; }
.resources-area.visible .resources-content ul:nth-child(15) li:nth-child(1) { transition-delay: 2.5s; }
.resources-area.visible .resources-content ul:nth-child(15) li:nth-child(2) { transition-delay: 2.6s; }
.resources-area.visible .resources-content ul:nth-child(15) li:nth-child(3) { transition-delay: 2.7s; }
.resources-area.visible .resources-content ul:nth-child(15) li:nth-child(4) { transition-delay: 2.8s; }

.resources-area.visible .resources-content h2,
.resources-area.visible .resources-content p,
.resources-area.visible .resources-content h3,
.resources-area.visible .resources-content ul li,
.resources-area.visible .resources-content a.btn {
    opacity: 1;
    transform: translateY(0);
}

.resources-content a,
.resources-content a.btn {
    transition: color 0.3s ease, transform 0.3s ease;
}

.resources-content a:hover,
.resources-content a.btn:hover {
    color: #e91e63; /* Adjust to match theme */
    transform: scale(1.05);
}


.donation-item:hover .img img,
.donation-item:hover .img a {
    transform: scale(1.05);
}

.donation-item:hover .top a.tags,
.donation-item:hover .top h3 a {
    color: #e91e63; /* Adjust to match theme */
}
/* Team section animations */
.team-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}

.team-area.visible .team-item {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.team-item img,
.team-item ul li a,
.team-item .bottom h3,
.team-item .bottom span {
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.team-item:hover .bottom h3 {
    color: #e91e63; /* Adjust color to match your theme */
}

.team-item ul li a:hover {
    transform: scale(1.1);
}

/* FAQ section animations */
.faq-img img {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-in-out;
}

.faq-area.visible .faq-img img {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.accordion li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-in-out;
}
/* Resources Area */
.resources-area {
    padding-top: 100px;
    padding-bottom: 70px;
    background-color: #f8f9fa;
}

.resources-area .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.resources-area .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.resources-area .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.resources-area .align-items-center {
    align-items: center;
}

/* Resources Image */
.resources-img {
    text-align: center;
}

.resources-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Resources Content */
.resources-content {
    padding: 20px;
}

.resources-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.resources-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.resources-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.resources-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.resources-content ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.resources-content ul li::before {
    content: "\2022";
    color: #007bff;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.resources-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resources-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Button Styling */
.resources-content .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

.resources-content .btn:hover {
    background-color: #0056b3;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 991px) {
    .resources-area .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .resources-content {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .resources-content h2 {
        font-size: 28px;
    }

    .resources-content h3 {
        font-size: 20px;
    }

    .resources-content p,
    .resources-content ul li {
        font-size: 14px;
    }

    .resources-content .btn {
        font-size: 14px;
        padding: 8px 16px;
        margin-left: 5px;
    }
}
.faq-area.visible .accordion li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}


.faq-area.visible .accordion li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.9s;
}

.faq-area.visible .accordion li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.0s;
}

.faq-area.visible .accordion li:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.1s;
}

.accordion li a,
.accordion li p {
    transition: color 0.3s ease;
}

.accordion li a:hover {
    color: #e91e63; /* Adjust color to match your theme */
}

.donations-area.visible .section-title p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Donation item animations */
.donation-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}

.donations-area.visible .donation-item {
    opacity: 1;
    transform: translateY(0);
}

.donations-area.visible .col-lg-4:nth-child(1) .donation-item {
    transition-delay: 0.8s;
}

.donations-area.visible .col-lg-4:nth-child(2) .donation-item {
    transition-delay: 0.9s;
}

.donations-area.visible .col-lg-4:nth-child(3) .donation-item {
    transition-delay: 1.0s;
}

.donations-area.visible .col-lg-4:nth-child(4) .donation-item {
    transition-delay: 1.1s;
}

.donations-area.visible .col-lg-4:nth-child(5) .donation-item {
    transition-delay: 1.2s;
}

.donations-area.visible .col-lg-4:nth-child(6) .donation-item {
    transition-delay: 1.3s;
}

/* Progress bar animations */
.skill-bar {
    width: 0;
    transition: width 1.5s ease-in-out;
}

.donations-area.visible .skill-bar.skill1 {
    width: 85%;
}

.donations-area.visible .skill-bar.skill2 {
    width: 95%;
}

.donations-area.visible .skill-bar.skill3 {
    width: 90%;
}

.donations-area.visible .skill-bar.skill4 {
    width: 80%;
}

.donations-area.visible .skill-bar.skill5 {
    width: 75%;
}

.donations-area.visible .skill-bar.skill6 {
    width: 70%;
}

/* Hover effects */
.donation-item .common-btn,
.donation-item .tags,
.donation-item h3 a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.donation-item:hover .common-btn {
    transform: scale(1.05);
}

.donation-item:hover .tags,
.donation-item:hover h3 a {
    color: #e91e63; /* Adjust color to match your theme */
}

/* Image hover effect */
.donation-item .img img {
    transition: transform 0.3s ease;
}

.donation-item:hover .img img {
    transform: scale(1.05);
}
.benefit-area.visible .section-title span {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.benefit-area.visible .section-title h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.benefit-area.visible .section-title p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Benefit item animations */
.benefit-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}

.benefit-area.visible .benefit-item {
    opacity: 1;
    transform: translateY(0);
}

.benefit-area.visible .col-lg-3:nth-child(1) .benefit-item {
    transition-delay: 0.8s;
}

.benefit-area.visible .col-lg-3:nth-child(2) .benefit-item {
    transition-delay: 0.9s;
}

.benefit-area.visible .col-lg-3:nth-child(3) .benefit-item {
    transition-delay: 1.0s;
}

.benefit-area.visible .col-lg-3:nth-child(4) .benefit-item {
    transition-delay: 1.1s;
}

/* Icon and text hover effect */
.benefit-item i,
.benefit-item h3,
.benefit-item p {
    transition: transform 0.3s ease, color 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1);
}

.benefit-item:hover h3 {
    color: #e91e63; /* Adjust color to match your theme */
}
/* Ensure carousel images transition smoothly */
.banner-slider-item {
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
}
/* About section animations */
.about-area {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-area.visible {
    opacity: 1;
}

/* Image animation */
.about-img img {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-in-out;
}

.about-area.visible .about-img img {
    opacity: 1;
    transform: translateX(0);
}

/* Content animations */
.about-content .section-title span,
.about-content .section-title h2,
.about-content .about-span,
.about-content p,
.about-btn-area a {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}

.about-area.visible .about-content .section-title span {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.about-area.visible .about-content .section-title h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.about-area.visible .about-content .about-span {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.about-area.visible .about-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.about-area.visible .about-btn-area a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

/* Button hover effect */
.common-btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.common-btn:hover {
    transform: scale(1.05);
}


.common-btn {
  color: #fff;
  background-color: #E03FD9;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
}
.common-btn:hover {
  color: #fff;
  background-color: #302c51;
  transform: translate(0, -5px);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  margin-top: -5px;
  position: relative;
  z-index: 1;
}
.section-title .sub-title {
  display: inline-block;
  color: #E03FD9;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.section-title p {
  margin-bottom: 0;
  max-width: 595px;
  margin-left: auto;
  margin-right: auto;
}

/*----- Home Demo One CSS -----*/
/*-- Header --*/
.header-area {
  background-color: #302c51;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 99999;
}
.header-area .left ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
}
.header-area .left ul li:last-child {
  margin-right: 0;
}
.header-area .left ul li i {
  display: inline-block;
  color: #fff;
  font-size: 15px;
}
.header-area .left ul li a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}
.header-area .left ul li a:hover {
  color: #E03FD9;
}
.header-area .right {
  text-align: right;
  vertical-align: middle;
}
.header-area .right ul {
  display: inline-block;
  margin-right: 20px;
}
.header-area .right ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.header-area .right ul li:last-child {
  margin-right: 0;
}
.header-area .right ul li span {
  display: inline-block;
  color: #fff;
  margin-right: 5px;
  font-size: 14px;
}
.header-area .right ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 13px;
}
.header-area .right ul li a i {
  line-height: 30px;
}
.header-area .right ul li a:hover {
  color: #fff;
  background-color: #E03FD9;
  border: 1px solid #E03FD9;
}
.header-area .right .language {
  vertical-align: middle;
  display: inline-block;
}
.header-area .right .language .nice-select {
  height: 30px;
  line-height: 30px;
  border: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
  color: #fff;
}
.header-area .right .language .nice-select:after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.header-area .right .language .nice-select ul {
  border-radius: 0;
  box-shadow: 0px 0px 20px 0px #f1f1f1;
}
.header-area .right .language .nice-select ul li {
  font-size: 15px;
  display: block;
  color: #302c51;
  margin-right: 0;
}
.header-area .right .header-search {
  display: inline-block;
}
.header-area .right .header-search #search-btn {
  padding: 0;
  border-radius: 50%;
  color: #fff;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 13px;
  display: inline-block;
  line-height: 30px;
  cursor: pointer;
  transition: 0.5s all ease;
}
.header-area .right .header-search #search-btn:hover {
  color: #fff;
  border: 1px solid #E03FD9;
  background-color: #E03FD9;
}
.header-area .right .header-search #close-btn {
  padding: 0;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1;
  color: #fff;
  transition: 0.5s all ease;
  font-size: 25px;
  cursor: pointer;
}
.header-area .right .header-search #close-btn:hover {
  color: #E03FD9;
  transform: rotate(360deg);
}
.header-area .right .header-search #search-overlay {
  display: none;
  z-index: 999999;
}
.header-area .right .header-search .block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.9215686275);
}
.header-area .right .header-search .block:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.header-area .right .header-search .centered {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  padding: 10px 15px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
}
.header-area .right .header-search .centered #search-box {
  position: relative;
}
.header-area .right .header-search .centered #search-box form .form-control {
  height: 50px;
  border: 0;
  border-radius: 5px;
  padding-left: 20px;
}
.header-area .right .header-search .centered #search-box form .form-control:focus {
  border: 0;
  box-shadow: none;
}
.header-area .right .header-search .centered #search-box form .btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #E03FD9;
  transition: 0.5s all ease;
  height: 100%;
  padding: 0;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 18px;
  border-radius: 0 5px 5px 0;
}
.header-area .right .header-search .centered #search-box form .btn:hover {
  color: #fff;
  background-color: #302c51;
}

/*-- Navbar --*/
.navbar-light .navbar-brand .logo-two {
  display: none;
}

.main-nav {
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(221, 221, 221, 0.2);
  transition: 0.5s all ease;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav.menu-shrink {
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-nav nav {
  padding: 0;
}
.main-nav nav .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}
.main-nav nav .navbar-nav .nav-item:hover a {
  color: #E03FD9;
}
.main-nav nav .navbar-nav .nav-item a {
  text-transform: capitalize;
  color: #302c51;
  font-weight: 600;
  margin-left: 12px;
  margin-right: 12px;
  transition: 0.5s all ease;
}
.main-nav nav .navbar-nav .nav-item a:hover, .main-nav nav .navbar-nav .nav-item a:focus, .main-nav nav .navbar-nav .nav-item a.active {
  color: #E03FD9;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  padding: 0;
  background: #302c51;
  transition: 0.3s;
  border-radius: 0;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
  border-bottom: 1px solid rgba(221, 221, 221, 0.2);
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child {
  border: 0;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  top: 0 !important;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
  color: #fff;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  position: relative;
  font-weight: 600;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 18px;
  left: 17px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all ease;
  animation: rotate360 1s infinite linear;
  border: 2px solid #E03FD9;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  padding-left: 30px;
  color: #fff;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover:before, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus:before, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active:before {
  opacity: 1;
  visibility: visible;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: unset;
  right: -100%;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #fff;
}
.main-nav .dropdown-toggle::after {
  display: none;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.side-nav a {
  display: inline-block;
  color: #fff;
  background-color: #E03FD9;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
}
.side-nav a i {
  display: inline-block;
  margin-left: 3px;
  font-size: 14px;
  animation: heart-beat 2s infinite linear;
}
.side-nav a:hover {
  background-color: #302c51;
}

@keyframes heart-beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/*-- Banner --*/
.banner-area {
  height: 800px;
  background-image: url("../img/banner/banner-bg1.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}
.banner-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #302c51;
  opacity: 0.8;
}
.banner-area .banner-img {
  position: relative;
  text-align: center;
}
.banner-area .banner-img img:nth-child(1) {
  animation: border-transform-default 10s linear infinite alternate forwards;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.banner-area .banner-img img:nth-child(2) {
  position: absolute;
  bottom: -145px;
  right: 30px;
  max-width: 200px;
}

@keyframes border-transform-default {
  0%, to {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.banner-content {
  margin-top: 80px;
  max-width: 630px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.banner-content span {
  display: inline-block;
  font-weight: 600;
  color: #302c51;
  background-color: #fff;
  border-radius: 15px;
  padding: 5px 15px;
  margin-bottom: 25px;
}
.banner-content h1 {
  color: #fff;
  font-size: 55px;
  margin-bottom: 20px;
}
.banner-content p {
  margin-bottom: 35px;
  color: #fff;
  font-size: 18px;
}
.banner-content .banner-btn-area .banner-btn {
  margin-right: 15px;
  color: #302c51;
  background-color: #fff;
}
.banner-content .banner-btn-area .banner-btn:hover {
  color: #fff;
  background-color: #302c51;
}

.video-wrap {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.video-wrap .js-modal-btn {
  z-index: 10;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  font-size: 40px;
  text-align: center;
  color: #E03FD9;
}
.video-wrap .js-modal-btn i {
  line-height: 100px;
}
.video-wrap .js-modal-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-wrap .js-modal-btn:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
  transition: 0.5s all ease;
}
.video-wrap .js-modal-btn:hover {
  color: #fff;
}
.video-wrap .js-modal-btn:hover:before {
  background-color: #E03FD9;
}
.video-wrap .js-modal-btn:hover:after {
  background-color: #E03FD9;
}
.video-wrap span {
  display: inline-block;
  color: #E03FD9;
  font-weight: 600;
  position: relative;
  top: -20px;
  margin-left: 25px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/*-- Video Banner --*/
.video-banner-area {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.video-banner-area .background-video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.video-banner-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}
.video-banner-content h1 {
  color: #fff;
  font-size: 55px;
  margin-bottom: 20px;
}
.video-banner-content p {
  margin-bottom: 35px;
  color: #fff;
  font-size: 18px;
}
.video-banner-content .banner-btn-area .banner-btn {
  margin-right: 15px;
  color: #302c51;
  background-color: #fff;
}
.video-banner-content .banner-btn-area .banner-btn:hover {
  color: #fff;
  background-color: #302c51;
}

/*-- Dream --*/
.dream-area {
  background-color: #f4f8f7;
}

.dream-item {
  margin-bottom: 30px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.5490196078);
  border-radius: 30px 30px 0 30px;
  padding: 30px 25px 40px;
  position: relative;
  transition: 0.5s all ease;
  background-color: #fff;
}
.dream-item:hover {
  transform: translate(0, -10px);
  border-radius: 0;
}
.dream-item h3 {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.4;
}
.dream-item h3 a {
  color: #302c51;
}
.dream-item h3 a:hover {
  color: #E03FD9;
}
.dream-item p {
  margin-bottom: 20px;
}
.dream-item h4 {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}
.dream-item h4 span {
  color: #E03FD9;
  margin-right: 3px;
}
.dream-item .sub-span {
  display: inline-block;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #302c51;
  background-color: #e5e6ff;
  border-radius: 50%;
  position: absolute;
  right: 25px;
  bottom: 35px;
  font-weight: 600;
}

/*-- About --*/
.about-area .about-img {
  margin-bottom: 30px;
  position: relative;
}
.about-area .about-img img {
  width: 100%;
  animation: border-transform-default 10s linear infinite alternate forwards;
}
.about-area .about-content {
  margin-bottom: 30px;
}
.about-area .about-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.about-area .about-content .section-title h2 {
  margin-bottom: 0;
}
.about-area .about-content .about-span {
  display: block;
  color: #302c51;
  margin-bottom: 10px;
  font-weight: 600;
}
.about-area .about-content p {
  margin-bottom: 10px;
}
.about-area .about-content .about-btn-area {
  margin-top: 30px;
}
.about-area .about-content .about-btn-area .about-btn {
  background-color: #302c51;
  margin-right: 15px;
}
.about-area .about-content .about-btn-area .about-btn:hover {
  background-color: #E03FD9;
}

/*-- Feature --*/
.feature-area {
  background-image: url("../img/feature-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.feature-item {
  margin-bottom: 30px;
  background-color: #23b187;
  border-radius: 30px 30px 0 30px;
  padding: 30px 30px 30px;
  transition: 0.5s all ease;
}
.feature-item.two {
  background-color: #E03FD9;
}
.feature-item.three {
  background-color: #302c51;
}
.feature-item:hover {
  border-radius: 0;
  transform: translate(0, -10px);
}
.feature-item i {
  display: inline-block;
  color: #fff;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 14px;
}
.feature-item h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.feature-item h3 a {
  color: #fff;
}
.feature-item h3 a:hover {
  letter-spacing: 1px;
}
.feature-item p {
  margin-bottom: 18px;
  color: #fff;
}
.feature-item .feature-btn {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  border: 1px solid #fff;
  padding: 8px 25px;
  border-radius: 30px;
}
.feature-item .feature-btn:hover {
  color: #302c51;
  background-color: #fff;
}

/*-- Donation --*/
.donation-item {
  margin-bottom: 30px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.5490196078);
  border-radius: 30px 30px 0 30px;
  transition: 0.5s all ease;
}
.donation-item:hover {
  transform: translate(0, -10px);
  border-radius: 0;
  background-color: #302c51;
}
.donation-item:hover .img img {
  border-radius: 0;
}
.donation-item:hover .img .common-btn {
  opacity: 1;
  visibility: visible;
  bottom: 15px;
}
.donation-item:hover .top .tags {
  color: #fff;
}
.donation-item:hover .top h3 a {
  color: #fff;
}
.donation-item:hover .top h3 a:hover {
  color: #E03FD9;
}
.donation-item:hover .top p {
  color: #fff;
}
.donation-item:hover .bottom .skill:before {
  background: #fff;
}
.donation-item:hover .bottom ul li {
  color: #fff;
}
.donation-item:hover .bottom h4 {
  color: #fff;
}
.donation-item:hover .bottom .skill-bar span {
  color: #fff;
}
.donation-item .img {
  position: relative;
}
.donation-item .img img {
  width: 100%;
  border-radius: 30px 30px 0 30px;
  transition: 0.5s all ease;
}
.donation-item .img .common-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  visibility: hidden;
}
.donation-item .inner {
  padding: 26px 30px 30px;
}
.donation-item .top .tags {
  display: inline-block;
  color: #E03FD9;
  font-weight: 600;
  margin-bottom: 12px;
}
.donation-item .top .tags:hover {
  color: #302c51;
}
.donation-item .top h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.donation-item .top h3 a {
  color: #302c51;
}
.donation-item .top h3 a:hover {
  color: #E03FD9;
}
.donation-item .top p {
  margin-bottom: 0;
  transition: 0.5s all ease;
}
.donation-item .bottom {
  position: relative;
  padding-top: 25px;
  overflow: hidden;
}
.donation-item .bottom .skill {
  margin-bottom: 20px;
  position: relative;
}
.donation-item .bottom .skill:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  bottom: 0;
  left: 0;
  display: block;
  background: #ebeded;
  border-radius: 30px;
  transition: 0.5s all ease;
}
.donation-item .bottom .skill-bar {
  width: 100%;
  height: 8px;
  background: #E03FD9;
  display: block;
  position: relative;
  border-radius: 30px;
}
.donation-item .bottom .skill-bar span {
  position: absolute;
  top: -26px;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: #302c51;
  margin-bottom: 0;
  display: inline-block;
  transition: 0.5s all ease;
}
.donation-item .bottom .skill1 {
  width: 85%;
}
.donation-item .bottom .skill1 .skill-count1 {
  right: 7px;
}
.donation-item .bottom .skill2 {
  width: 95%;
}
.donation-item .bottom .skill2 .skill-count2 {
  right: 7px;
}
.donation-item .bottom .skill3 {
  width: 90%;
}
.donation-item .bottom .skill3 .skill-count3 {
  right: 7px;
}
.donation-item .bottom .skill4 {
  width: 80%;
}
.donation-item .bottom .skill4 .skill-count4 {
  right: 7px;
}
.donation-item .bottom .skill5 {
  width: 75%;
}
.donation-item .bottom .skill5 .skill-count5 {
  right: 7px;
}
.donation-item .bottom .skill6 {
  width: 70%;
}
.donation-item .bottom .skill6 .skill-count6 {
  right: 7px;
}
.donation-item .bottom ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.donation-item .bottom ul li {
  display: inline-block;
  flex: 0 0 50%;
  max-width: 50%;
  transition: 0.5s all ease;
}
.donation-item .bottom ul li:last-child {
  text-align: right;
}
.donation-item .bottom h4 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
  transition: 0.5s all ease;
}
.donation-item .bottom h4 span {
  color: #E03FD9;
}

/*-- Work --*/
.work-area {
  background-color: #f9f9f9;
}
.work-area .work-content {
  margin-bottom: 30px;
}
.work-area .work-content .section-title {
  text-align: left;
}
.work-area .work-content ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 30px;
}
.work-area .work-content ul li:last-child {
  margin-bottom: 0;
}
.work-area .work-content ul li h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.work-area .work-content ul li h3 span {
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: #302c51;
  background-color: #e5e6ff;
  border-radius: 50%;
  font-weight: 600;
  font-size: 16px;
  margin-right: 10px;
}
.work-area .work-content ul li p {
  margin-bottom: 0;
}
.work-area .work-img {
  text-align: right;
  margin-bottom: 30px;
}
.work-area .work-img img {
  border-radius: 5px;
}
.work-area .work-img img:nth-child(1) {
  max-width: 405px;
}
.work-area .work-img img:nth-child(2) {
  max-width: 410px;
  margin-top: -150px;
  margin-right: 225px;
}

/*-- Benefit --*/
.benefit-item {
  margin-bottom: 30px;
  text-align: center;
  border-radius: 30px;
  padding: 30px 15px 30px;
  border: 1px dashed #82ca9c;
  transition: 0.5s all ease;
  background-color: #fff;
}
.benefit-item.two {
  border: 1px dashed #f49ac1;
}
.benefit-item.three {
  border: 1px dashed #8781bd;
}
.benefit-item.four {
  border: 1px dashed #f9ad81;
}
.benefit-item:hover {
  transform: translate(0, -10px);
}
.benefit-item:hover i {
  color: #fff;
  background-color: #302c51;
}
.benefit-item i {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  color: #302c51;
  background-color: #e5e6ff;
  font-size: 35px;
  margin-bottom: 18px;
  transition: 0.5s all ease;
}
.benefit-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #E03FD9;
}
.benefit-item p {
  margin-bottom: 0;
}

/*-- Event --*/
.event-area {
  background-image: url("../img/event/event-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}
.event-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #068761;
  opacity: 0.9;
}
.event-area .section-title .sub-title {
  color: #fff;
}
.event-area .section-title h2 {
  color: #fff;
  margin-bottom: 0;
}

.event-item {
  margin-bottom: 30px;
  position: relative;
  transition: 0.5s all ease;
}
.event-item:hover {
  transform: translate(0, -10px);
}
.event-item:hover img {
  border-radius: 0;
}
.event-item:hover:before {
  border-radius: 0;
}
.event-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(48, 44, 81, 0.9377553704) 0%, rgba(48, 44, 81, 0) 74%);
  border-radius: 30px 30px 0 30px;
  transition: 0.5s all ease;
}
.event-item img {
  display: inline-block;
  border-radius: 30px 30px 0 30px;
  width: 100%;
  transition: 0.5s all ease;
}
.event-item .inner {
  position: absolute;
  top: 30px;
  left: 30px;
  padding-left: 90px;
}
.event-item .inner h4 {
  max-width: 65px;
  padding-top: 5px;
  padding-bottom: 5px;
  position: absolute;
  top: 0;
  left: 0;
  color: #E03FD9;
  margin-bottom: 0;
  font-size: 30px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  height: 75px;
}
.event-item .inner h4 span {
  color: #302c51;
  font-weight: 400;
  font-size: 24px;
  position: relative;
  top: -7px;
}
.event-item .inner h3 {
  margin-bottom: 10px;
  font-size: 22px;
  margin-top: 8px;
}
.event-item .inner h3 a {
  color: #fff;
}
.event-item .inner h3 a:hover {
  color: #E03FD9;
}
.event-item .inner ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  font-size: 15px;
}
.event-item .inner ul li:last-child {
  margin-right: 0;
}
.event-item .inner ul li i {
  display: inline-block;
  color: #E03FD9;
  margin-right: 3px;
  font-size: 16px;
}

.event-item-right {
  padding-left: 90px;
  position: relative;
  border-bottom: 1px solid #2e9a7a;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.event-item-right:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 30px;
}
.event-item-right h4 {
  max-width: 65px;
  position: absolute;
  top: 0;
  left: 0;
  color: #E03FD9;
  margin-bottom: 0;
  font-size: 30px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  height: 60px;
}
.event-item-right h4 span {
  color: #302c51;
  font-weight: 400;
  font-size: 20px;
  position: relative;
  top: -12px;
}
.event-item-right h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.event-item-right h3 a {
  color: #fff;
}
.event-item-right h3 a:hover {
  color: #E03FD9;
}
.event-item-right ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  font-size: 15px;
}
.event-item-right ul li:last-child {
  margin-right: 0;
}
.event-item-right ul li i {
  display: inline-block;
  color: #E03FD9;
  margin-right: 3px;
  font-size: 16px;
}

/*-- Gallery --*/
.gallery-item {
  margin-bottom: 30px;
  position: relative;
  transition: 0.5s all ease;
}
.gallery-item:hover {
  transform: translate(0, -10px);
}
.gallery-item:hover img {
  border-radius: 0;
}
.gallery-item:hover:before {
  transform: scale(1);
  opacity: 0.8;
  visibility: visible;
  border-radius: 0;
}
.gallery-item:hover i {
  opacity: 1;
  visibility: visible;
}
.gallery-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #302c51;
  opacity: 0;
  transition: 0.5s all ease;
  transform: scale(0.8);
  visibility: hidden;
  border-radius: 30px 30px 0 30px;
}
.gallery-item img {
  width: 100%;
  border-radius: 30px 30px 0 30px;
  transition: 0.5s all ease;
}
.gallery-item i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  color: #fff;
  font-size: 40px;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all ease;
}

/*-- Blog --*/
.blog-area {
  background-color: #f9f9f9;
}

.blog-item {
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 30px 30px 0 30px;
  transition: 0.5s all ease;
}
.blog-item:hover {
  transform: translate(0, -10px);
  border-radius: 0;
}
.blog-item:hover .top a img {
  border-radius: 0;
}
.blog-item .top a {
  display: block;
}
.blog-item .top a img {
  width: 100%;
  border-radius: 30px 30px 0 30px;
  transition: 0.5s all ease;
}
.blog-item .bottom {
  padding: 25px 25px 28px;
}
.blog-item .bottom ul {
  margin-bottom: 16px;
}
.blog-item .bottom ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
  font-size: 15px;
}
.blog-item .bottom ul li:last-child {
  margin-right: 0;
}
.blog-item .bottom ul li i {
  color: #E03FD9;
  display: inline-block;
  margin-right: 3px;
  position: relative;
  top: -1px;
}
.blog-item .bottom ul li span {
  display: inline-block;
}
.blog-item .bottom ul li a {
  display: inline-block;
  color: #757575;
}
.blog-item .bottom ul li a:hover {
  color: #E03FD9;
}
.blog-item .bottom h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-item .bottom h3 a {
  color: #302c51;
}
.blog-item .bottom h3 a:hover {
  color: #E03FD9;
}
.blog-item .bottom p {
  margin-bottom: 12px;
}
.blog-item .bottom .blog-btn {
  display: inline-block;
  font-weight: 600;
  color: #E03FD9;
}
.blog-item .bottom .blog-btn:hover {
  color: #302c51;
}

/*-- Footer --*/
.footer-area {
  background-color: #302c51;
}
.footer-area .copyright-area {
  margin-top: 70px;
  text-align: center;
  border-top: 1px solid #4f4b6b;
  padding-top: 25px;
  padding-bottom: 25px;
}
.footer-area .copyright-area p {
  margin-bottom: 0;
  color: #fff;
}
.footer-area .copyright-area p a {
  display: inline-block;
  color: #E03FD9;
  font-weight: 600;
}
.footer-area .copyright-area p a:hover {
  color: #fff;
}

.footer-item {
  margin-bottom: 30px;
}
.footer-item h3 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 22px;
}
.footer-item .footer-logo .logo {
  display: block;
  margin-bottom: 20px;
}
.footer-item .footer-logo p {
  margin-bottom: 22px;
  color: #fff;
}
.footer-item .footer-logo ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.footer-item .footer-logo ul li:last-child {
  margin-right: 0;
}
.footer-item .footer-logo ul li a {
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 14px;
  display: inline-block;
}
.footer-item .footer-logo ul li a i {
  line-height: 30px;
}
.footer-item .footer-logo ul li a:hover {
  color: #E03FD9;
  background-color: #fff;
}
.footer-item .footer-causes .cause-inner {
  border-bottom: 1px solid #4f4b6b;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.footer-item .footer-causes .cause-inner:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.footer-item .footer-causes .cause-inner ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-item .footer-causes .cause-inner ul li {
  list-style-type: none;
  display: inline-block;
}
.footer-item .footer-causes .cause-inner ul li:nth-child(1) {
  flex: 0 0 25%;
  max-width: 25%;
}
.footer-item .footer-causes .cause-inner ul li:nth-child(2) {
  flex: 0 0 65%;
  max-width: 65%;
  margin-left: 15px;
}
.footer-item .footer-causes .cause-inner ul li img {
  border-radius: 5px;
}
.footer-item .footer-causes .cause-inner ul li h3 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.4;
}
.footer-item .footer-causes .cause-inner ul li h3 a {
  color: #fff;
}
.footer-item .footer-causes .cause-inner ul li h3 a:hover {
  color: #E03FD9;
}
.footer-item .footer-links ul li {
  list-style-type: none;
  display: block;
  border-bottom: 1px solid #4f4b6b;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.footer-item .footer-links ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.footer-item .footer-links ul li a {
  display: block;
  color: #fff;
}
.footer-item .footer-links ul li a:hover {
  color: #E03FD9;
}
.footer-item .footer-links ul li a i {
  display: inline-block;
  font-size: 17px;
}
.footer-item .footer-contact .contact-inner {
  border-bottom: 1px solid #4f4b6b;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.footer-item .footer-contact .contact-inner:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.footer-item .footer-contact .contact-inner ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
}
.footer-item .footer-contact .contact-inner ul li:last-child {
  margin-bottom: 0;
}
.footer-item .footer-contact .contact-inner ul li i {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 3px;
  left: 0;
}
.footer-item .footer-contact .contact-inner ul li a {
  display: inline-block;
  color: #fff;
}
.footer-item .footer-contact .contact-inner ul li a:hover {
  color: #E03FD9;
}

/*----- Home Demo Two CSS -----*/
/*-- Banner --*/
.banner-area-two:hover .owl-prev, .banner-area-two:hover .owl-next {
  opacity: 1;
}
.banner-area-two .banner-img-one {
  background-image: url("../img/banner/banner-bg2.jpg");
}
.banner-area-two .banner-img-two {
  background-image: url("../img/banner/banner-bg2.jpg");
}
.banner-area-two .banner-img-three {
  background-image: url("../img/banner/banner-bg3.jpg");
}
.banner-area-two .banner-slider-item {
  height: 900px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.banner-area-two .banner-slider-item .banner-shape {
  position: absolute;
  left: -225px;
  right: 0;
  top: 170px;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}
.banner-area-two .banner-content {
  background-image: url("../img/banner/banner-main1.jpg");
  animation: border-transform-default 10s linear infinite alternate forwards;
  margin-top: 50px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 100px 80px 100px;
  position: relative;
  z-index: 1;
}
.banner-area-two .banner-content:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #E03FD9;
  opacity: 0.8;
  animation: border-transform-default 10s linear infinite alternate forwards;
  z-index: -1;
}
.banner-area-two .banner-content .banner-btn-area .banner-btn {
  color: #fff;
  background-color: #302c51;
}
.banner-area-two .banner-content .banner-btn-area .banner-btn:hover {
  color: #302c51;
  background-color: #fff;
}
.banner-area-two .owl-theme .owl-nav {
  margin-top: 0;
}
.banner-area-two .owl-prev {
  position: absolute;
  top: 48%;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 5px !important;
  color: #fff !important;
  background-color: #E03FD9 !important;
  font-size: 30px !important;
  transition: 0.5s all ease;
  opacity: 0;
}
.banner-area-two .owl-prev i {
  line-height: 50px;
}
.banner-area-two .owl-prev:hover {
  color: #fff !important;
  background-color: #302c51 !important;
}
.banner-area-two .owl-next {
  position: absolute;
  top: 48%;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 5px !important;
  color: #fff !important;
  background-color: #E03FD9 !important;
  font-size: 30px !important;
  transition: 0.5s all ease;
  opacity: 0;
}
.banner-area-two .owl-next i {
  line-height: 50px;
}
.banner-area-two .owl-next:hover {
  color: #fff !important;
  background-color: #302c51 !important;
}

/*-- Feature Two --*/
.feature-area.two {
  background-image: unset;
  position: relative;
  margin-top: -50px;
  z-index: 1;
}

/*-- About Two --*/
.about-area.two .about-content p {
  margin-bottom: 20px;
}
.about-area.two .about-content ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 12px;
}
.about-area.two .about-content ul li:hover span {
  color: #fff;
  background-color: #302c51;
}
.about-area.two .about-content ul li:last-child {
  margin-bottom: 0;
}
.about-area.two .about-content ul li span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #302c51;
  font-weight: 600;
  background-color: #e5e6ff;
  border-radius: 50%;
  text-align: center;
  font-size: 15px;
  margin-right: 5px;
  transition: 0.5s all ease;
}
.about-area.two .about-content .about-btn-area {
  margin-top: 35px;
}
.about-area.two .about-img .video-wrap .js-modal-btn {
  color: #fff;
}
.about-area.two .about-img .video-wrap .js-modal-btn:before {
  background-color: #E03FD9;
}
.about-area.two .about-img .video-wrap .js-modal-btn:after {
  background-color: #E03FD9;
}
.about-area.two .about-img .video-wrap .js-modal-btn:hover {
  color: #E03FD9;
}
.about-area.two .about-img .video-wrap .js-modal-btn:hover:before {
  background-color: #fff;
}
.about-area.two .about-img .video-wrap .js-modal-btn:hover:after {
  background-color: #fff;
}

/*-- Donation Two --*/
.donations-area.two {
  background-color: #f4f8f7;
}
.donations-area.two .donation-item {
  background-color: #fff;
}
.donations-area.two .donation-item:hover {
  background-color: #302c51;
}

/*-- Benefit Two --*/
.benefit-area.two .section-title {
  text-align: left;
}
.benefit-area.two .benefit-img {
  margin-bottom: 30px;
  position: relative;
}
.benefit-area.two .benefit-img img:nth-child(1) {
  width: 100%;
  animation: border-transform-default 10s linear infinite alternate forwards;
  z-index: 1;
  position: relative;
}
.benefit-area.two .benefit-img img:nth-child(2) {
  position: absolute;
  left: 0;
  bottom: 0;
}
.benefit-area.two .benefit-item {
  border: 0;
  padding: 0;
  text-align: left;
}

/*-- Team --*/
.team-item {
  text-align: center;
  margin-bottom: 30px;
  border-radius: 30px 30px 0 30px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.5490196078);
  transition: 0.5s all ease;
}
.team-item:hover {
  transform: translate(0, -10px);
  border: 0;
}
.team-item:hover .top img {
  border-radius: 0;
}
.team-item:hover .top ul {
  opacity: 1;
  visibility: visible;
  bottom: 15px;
}
.team-item .top {
  position: relative;
}
.team-item .top img {
  width: 100%;
  border-radius: 30px 30px 0 30px;
  transition: 0.5s all ease;
}
.team-item .top ul {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all ease;
}
.team-item .top ul li {
  list-style-type: none;
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
}
.team-item .top ul li a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  background-color: #302c51;
  font-size: 14px;
  border-radius: 50%;
}
.team-item .top ul li a i {
  line-height: 30px;
}
.team-item .top ul li a:hover {
  transform: translate(0, -5px);
}
.team-item .bottom {
  padding: 28px 25px 30px;
}
.team-item .bottom h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.team-item .bottom span {
  display: block;
  color: #E03FD9;
}

/*----- Home Demo Three CSS -----*/
/*-- Banner --*/
.banner-area-two.three .banner-img-four {
  background-image: url("../img/banner/banner-bg5.jpg");
}
.banner-area-two.three .banner-img-five {
  background-image: url("../img/banner/banner-bg1.jpg");
}
.banner-area-two.three .banner-img-six {
  background-image: url("../img/banner/banner-bg6.jpg");
}
.banner-area-two.three .banner-slider-item {
  height: 850px;
}
.banner-area-two.three .banner-slider-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #302c51;
  opacity: 0.6;
}
.banner-area-two.three .banner-content {
  background-image: unset;
  animation: unset;
  margin-top: 50px;
  max-width: 540px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  padding: 0;
}
.banner-area-two.three .banner-content:before {
  display: none;
}

/*-- Benefit Two --*/
.benefit-area.three {
  background-color: #f9f9f9;
}

/*-- Donation Three --*/
.donations-area.three .donation-item {
  padding: 30px 30px 30px;
}
.donations-area.three .donation-item .inner {
  padding: 0;
}
.donations-area.three .donation-item .top p {
  margin-bottom: 25px;
}
.donations-area.three .donation-item .img .common-btn {
  opacity: 1;
  visibility: visible;
  bottom: -23px;
  z-index: 1;
}
.donations-area.three .donation-item .bottom {
  padding-top: 55px;
}

/*-- Counter --*/
.counter-item {
  text-align: center;
  margin-bottom: 30px;
}
.counter-item i {
  display: inline-block;
  color: #E03FD9;
  font-size: 45px;
  line-height: 45px;
  margin-bottom: 10px;
}
.counter-item h3 {
  margin-bottom: 6px;
  font-size: 60px;
}
.counter-item h3 .target {
  font-size: 35px;
  margin-left: -10px;
}
.counter-item p {
  margin-bottom: 0;
  font-weight: 600;
}

/*-- Testimonial --*/
.testimonial-area {
  background-color: #f9f9f9;
}
.testimonial-area .section-title h2 {
  margin-bottom: 0;
}
.testimonial-area .testimonial-img {
  margin-bottom: 30px;
}
.testimonial-area .testimonial-img img {
  width: 100%;
  border-radius: 30px 30px 0 30px;
  margin-bottom: 15px;
}
.testimonial-area .testimonial-img h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.testimonial-area .testimonial-img span {
  display: block;
}
.testimonial-area .testimonial-content {
  padding: 50px 50px 50px 30px;
  border-radius: 30px 30px 30px 0;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.5490196078);
  position: relative;
  background-color: #fff;
  margin-top: 80px;
  margin-bottom: 30px;
}
.testimonial-area .testimonial-content:before {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  top: 0;
  left: -50px;
  background-color: #fff;
  border-radius: 30px 0 0 0;
}
.testimonial-area .testimonial-content ul {
  margin-bottom: 15px;
}
.testimonial-area .testimonial-content ul li {
  list-style-type: none;
  display: inline-block;
}
.testimonial-area .testimonial-content ul li i {
  display: inline-block;
  font-size: 18px;
}
.testimonial-area .testimonial-content ul li i.checked {
  color: #E03FD9;
}
.testimonial-area .testimonial-content p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
}
.testimonial-area .testimonial-content .quote {
  display: inline-block;
  color: #eeeefa;
  font-size: 55px;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.testimonial-area .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}
.testimonial-area .owl-theme .owl-dots .owl-dot span {
  width: 35px;
  height: 8px;
  background: #bab9c4;
}
.testimonial-area .owl-theme .owl-dots .owl-dot.active span {
  background: #E03FD9;
}

/*-- Blog --*/
.blog-area.three {
  background-color: #fff;
}
.blog-area.three .blog-item {
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.5490196078);
}

/*----- About CSS -----*/
.title-bg-one {
  background-image: url("../img/banner/title-bg1.jpg");
}

.title-bg-two {
  background-image: url("../img/banner/title-bg2.jpg");
}

.title-bg-three {
  background-image: url("../img/banner/title-bg3.jpg");
}

.title-bg-four {
  background-image: url("../img/banner/title-bg4.jpg");
}

.title-bg-five {
  background-image: url("../img/banner/title-bg5.jpg");
}

.title-bg-six {
  background-image: url("../img/banner/title-bg6.jpg");
}

.title-bg-seven {
  background-image: url("../img/banner/title-bg7.jpg");
}

.title-bg-eight {
  background-image: url("../img/banner/title-bg8.jpg");
}

.title-bg-nine {
  background-image: url("../img/banner/title-bg9.jpg");
}

.title-bg-ten {
  background-image: url("../img/banner/title-bg10.jpg");
}

.title-bg-eleven {
  background-image: url("../img/banner/title-bg11.jpg");
}

.title-bg-twelve {
  background-image: url("../img/banner/title-bg12.jpg");
}

.title-bg-thirteen {
  background-image: url("../img/banner/title-bg13.jpg");
}

.title-bg-fourteen {
  background-image: url("../img/banner/title-bg14.jpg");
}

.page-title-area {
  height: 450px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.page-title-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #302c51;
  opacity: 0.75;
}
.page-title-area .title-item {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 95px;
}
.page-title-area .title-item h2 {
  font-size: 65px;
  color: #fff;
  margin-bottom: 5px;
}
.page-title-area .title-item ul li {
  list-style-type: none;
  display: inline-block;
  margin-left: 14px;
  margin-right: 14px;
  position: relative;
}
.page-title-area .title-item ul li:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 10px;
  left: 60px;
  background-color: #fff;
  transition: 0.5s all ease;
  animation: rotate360 1s infinite linear;
  border: 2px solid #E03FD9;
}
.page-title-area .title-item ul li:last-child:before {
  display: none;
}
.page-title-area .title-item ul li a {
  display: inline-block;
  color: #fff;
}
.page-title-area .title-item ul li a:hover {
  color: #E03FD9;
}
.page-title-area .title-item ul li span {
  display: inline-block;
  color: #fff;
}

.team-area.four {
  background-color: #f9f9f9;
}

.pagination-area {
  text-align: center;
}
.pagination-area ul li {
  list-style-type: none;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.pagination-area ul li a {
  display: block;
  color: #E03FD9;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.5490196078);
  padding: 5px 15px;
  border-radius: 8px 8px 0 8px;
}
.pagination-area ul li a:hover, .pagination-area ul li a.active {
  color: #fff;
  background-color: #E03FD9;
}

/*----- Donation Details CSS -----*/
.donation-details-area .details-item .details-img {
  margin-bottom: 25px;
}
.donation-details-area .details-item .details-img img {
  margin-bottom: 20px;
}
.donation-details-area .details-item .details-img h2 {
  font-size: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.donation-details-area .details-item .details-img p {
  margin-bottom: 10px;
}
.donation-details-area .details-item .details-img p:last-child {
  margin-bottom: 0;
}
.donation-details-area .details-item .details-img blockquote {
  background-color: #f9f9f9;
  padding: 30px 30px 30px 60px;
  font-size: 18px;
  font-weight: 600;
  color: #302c51;
  position: relative;
  margin-left: 35px;
  margin-top: 30px;
  margin-bottom: 25px;
}
.donation-details-area .details-item .details-img blockquote i {
  position: absolute;
  top: 45px;
  left: -35px;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: #fff;
  color: #E03FD9;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.5490196078);
  font-size: 30px;
  border-radius: 50%;
}
.donation-details-area .details-item .details-share {
  margin-bottom: 30px;
}
.donation-details-area .details-item .details-share .left ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 3px;
}
.donation-details-area .details-item .details-share .left ul li:last-child {
  margin-right: 0;
}
.donation-details-area .details-item .details-share .left ul li span {
  display: inline-block;
  font-weight: 600;
  margin-right: 5px;
}
.donation-details-area .details-item .details-share .left ul li a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #E03FD9;
  border: 1px solid #E03FD9;
  border-radius: 50%;
  font-size: 15px;
}
.donation-details-area .details-item .details-share .left ul li a i {
  line-height: 30px;
}
.donation-details-area .details-item .details-share .left ul li a:hover {
  color: #fff;
  background-color: #E03FD9;
}
.donation-details-area .details-item .details-share .right {
  text-align: right;
}
.donation-details-area .details-item .details-share .right ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
.donation-details-area .details-item .details-share .right ul li:before {
  position: absolute;
  content: ",";
  color: #E03FD9;
  top: -5px;
  right: -7px;
  font-size: 20px;
}
.donation-details-area .details-item .details-share .right ul li:first-child:before {
  display: none;
}
.donation-details-area .details-item .details-share .right ul li:last-child {
  margin-right: 0;
}
.donation-details-area .details-item .details-share .right ul li:last-child:before {
  display: none;
}
.donation-details-area .details-item .details-share .right ul li span {
  display: inline-block;
  font-weight: 600;
}
.donation-details-area .details-item .details-share .right ul li a {
  display: inline-block;
  color: #E03FD9;
}
.donation-details-area .details-item .details-share .right ul li a:hover {
  color: #302c51;
}
.donation-details-area .details-item .details-payment {
  background-color: #fafafa;
  padding: 50px 50px 50px;
}
.donation-details-area .details-item .details-payment h3 {
  font-size: 25px;
  margin-bottom: 8px;
  margin-top: -5px;
}
.donation-details-area .details-item .details-payment .form-radio-area {
  margin-bottom: 30px;
}
.donation-details-area .details-item .details-payment .form-radio-area .form-check-label {
  color: #302c51;
}
.donation-details-area .details-item .details-payment .form-input-area .form-group {
  position: relative;
  margin-bottom: 15px;
}
.donation-details-area .details-item .details-payment .form-input-area .form-group label {
  margin-bottom: 0;
  position: absolute;
  top: 10px;
  left: 15px;
  color: #E03FD9;
  font-size: 20px;
}
.donation-details-area .details-item .details-payment .form-input-area .form-group .form-control {
  height: 50px;
  border-radius: 5px;
  border: 0;
  background-color: #fff;
  padding-left: 45px;
}
.donation-details-area .details-item .details-payment .form-input-area .form-group .form-control:focus {
  border: 0;
  box-shadow: none;
}
.donation-details-area .details-item .details-payment .form-input-area .common-btn {
  transition: 0.5s all ease;
  width: 100%;
  display: block;
}

.widget-area .widget-item {
  margin-bottom: 30px;
}
.widget-area .widget-item:last-child {
  margin-bottom: 0;
}
.widget-area .widget-item h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.widget-area .search {
  position: relative;
}
.widget-area .search .form-control {
  height: 50px;
  border-radius: 5px;
  padding-left: 15px;
  font-size: 15px;
  border: 0;
  background-color: #f9f9f9;
}
.widget-area .search .form-control:focus {
  border: 0;
  box-shadow: none;
}
.widget-area .search .btn {
  padding: 0;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  color: #E03FD9;
  transition: 0.5s all ease;
}
.widget-area .search .btn:hover {
  color: #302c51;
}
.widget-area .post .post-inner {
  margin-bottom: 15px;
}
.widget-area .post .post-inner:last-child {
  margin-bottom: 0;
}
.widget-area .post .post-inner ul {
  display: flex;
  flex-wrap: wrap;
}
.widget-area .post .post-inner ul li {
  list-style-type: none;
  display: inline-block;
}
.widget-area .post .post-inner ul li:nth-child(1) {
  flex: 0 0 28%;
  max-width: 28%;
}
.widget-area .post .post-inner ul li:nth-child(2) {
  flex: 0 0 67%;
  max-width: 67%;
  margin-left: 15px;
}
.widget-area .post .post-inner ul li h4 {
  font-size: 16px;
  margin-bottom: 3px;
}
.widget-area .post .post-inner ul li h4 a {
  color: #302c51;
}
.widget-area .post .post-inner ul li h4 a:hover {
  color: #E03FD9;
}
.widget-area .post .post-inner ul li p {
  margin-bottom: 0;
  font-size: 14px;
}
.widget-area .post .post-inner ul li p a {
  display: inline-block;
  color: #757575;
}
.widget-area .post .post-inner ul li p a:hover {
  color: #E03FD9;
}
.widget-area .common-right-content ul li {
  list-style-type: none;
  display: block;
  border-bottom: 1px solid #f5f2f2;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  transition: 0.5s all ease;
}
.widget-area .common-right-content ul li:hover {
  margin-left: 5px;
}
.widget-area .common-right-content ul li:before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E03FD9;
}
.widget-area .common-right-content ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.widget-area .common-right-content ul li a {
  display: block;
  color: #302c51;
}
.widget-area .common-right-content ul li a:hover {
  color: #E03FD9;
}
.widget-area .instagram .instagram-item {
  position: relative;
}
.widget-area .instagram .instagram-item img {
  width: 100%;
}
.widget-area .instagram .instagram-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #302c51;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: 0.5s all ease;
}
.widget-area .instagram .instagram-item a {
  display: inline-block;
  color: #fff;
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.5s all ease;
  opacity: 0;
  visibility: hidden;
}
.widget-area .instagram .instagram-item:hover:before {
  opacity: 0.7;
  visibility: visible;
  transform: scale(1);
}
.widget-area .instagram .instagram-item:hover a {
  visibility: visible;
  opacity: 1;
}

.event-area.four {
  background-image: unset;
}
.event-area.four:before {
  display: none;
}

/*----- Event Details CSS -----*/
.event-details-area .details-item .details-img img {
  margin-bottom: 20px;
}
.event-details-area .details-item .details-img h2 {
  font-size: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.event-details-area .details-item .details-img p {
  margin-bottom: 10px;
}
.event-details-area .details-item .details-img p:last-child {
  margin-bottom: 0;
}
.event-details-area .details-item .details-img ul {
  margin-top: 25px;
  margin-bottom: 20px;
}
.event-details-area .details-item .details-img ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-weight: 600;
}
.event-details-area .details-item .details-img ul li:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 8px;
  left: 0;
  background-color: #E03FD9;
}
.event-details-area .details-item .details-img ul li:last-child {
  margin-bottom: 0;
}

.widget-area .information ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 12px;
}
.widget-area .information ul li:last-child {
  margin-bottom: 0;
}
.widget-area .information ul li span {
  display: inline-block;
  font-weight: 600;
  margin-right: 3px;
  color: #302c51;
}
.widget-area .information ul li a {
  display: inline-block;
  color: #757575;
}
.widget-area .information ul li a:hover {
  color: #E03FD9;
}

/*----- Blog Details CSS -----*/
.blog-details-area .details-item .details-img img {
  margin-bottom: 20px;
}
.blog-details-area .details-item .details-img h2 {
  font-size: 30px;
  margin-bottom: 5px;
  line-height: 1.4;
}
.blog-details-area .details-item .details-img ul {
  margin-bottom: 10px;
}
.blog-details-area .details-item .details-img ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
}
.blog-details-area .details-item .details-img ul li:last-child {
  margin-right: 0;
}
.blog-details-area .details-item .details-img ul li i {
  display: inline-block;
  font-size: 16px;
  color: #E03FD9;
  margin-right: 3px;
  position: relative;
  top: -1px;
}
.blog-details-area .details-item .details-img ul li a {
  display: inline-block;
  color: #757575;
}
.blog-details-area .details-item .details-img ul li a:hover {
  color: #E03FD9;
}
.blog-details-area .details-item .details-img p {
  margin-bottom: 10px;
}
.blog-details-area .details-item .details-img .img {
  padding-top: 20px;
}
.blog-details-area .details-item .details-img .img img {
  width: 100%;
  margin-bottom: 30px;
}
.blog-details-area .details-item .details-img .img p {
  margin-bottom: 30px;
}
.blog-details-area .details-item .details-img blockquote {
  background-color: #f9f9f9;
  padding: 30px 30px 30px 60px;
  font-size: 18px;
  font-weight: 600;
  color: #302c51;
  position: relative;
  margin-left: 35px;
  margin-bottom: 25px;
}
.blog-details-area .details-item .details-img blockquote i {
  position: absolute;
  top: 45px;
  left: -35px;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: #fff;
  color: #E03FD9;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.5490196078);
  font-size: 30px;
  border-radius: 50%;
}
.blog-details-area .details-item .details-img .img-area {
  padding-top: 20px;
}
.blog-details-area .details-item .details-img .img-area img {
  margin-bottom: 30px;
  width: 100%;
}
.blog-details-area .details-item .details-share {
  margin-bottom: 30px;
}
.blog-details-area .details-item .details-share .left ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 3px;
}
.blog-details-area .details-item .details-share .left ul li:last-child {
  margin-right: 0;
}
.blog-details-area .details-item .details-share .left ul li span {
  display: inline-block;
  font-weight: 600;
  margin-right: 5px;
}
.blog-details-area .details-item .details-share .left ul li a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #E03FD9;
  border: 1px solid #E03FD9;
  border-radius: 50%;
  font-size: 15px;
}
.blog-details-area .details-item .details-share .left ul li a i {
  line-height: 30px;
}
.blog-details-area .details-item .details-share .left ul li a:hover {
  color: #fff;
  background-color: #E03FD9;
}
.blog-details-area .details-item .details-share .right {
  text-align: right;
}
.blog-details-area .details-item .details-share .right ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
.blog-details-area .details-item .details-share .right ul li:before {
  position: absolute;
  content: ",";
  color: #E03FD9;
  top: -5px;
  right: -7px;
  font-size: 20px;
}
.blog-details-area .details-item .details-share .right ul li:first-child:before {
  display: none;
}
.blog-details-area .details-item .details-share .right ul li:last-child {
  margin-right: 0;
}
.blog-details-area .details-item .details-share .right ul li:last-child:before {
  display: none;
}
.blog-details-area .details-item .details-share .right ul li span {
  display: inline-block;
  font-weight: 600;
}
.blog-details-area .details-item .details-share .right ul li a {
  display: inline-block;
  color: #E03FD9;
}
.blog-details-area .details-item .details-share .right ul li a:hover {
  color: #302c51;
}
.blog-details-area .details-item .details-comment {
  margin-bottom: 30px;
}
.blog-details-area .details-item .details-comment h3 {
  font-size: 22px;
  margin-bottom: 30px;
}
.blog-details-area .details-item .details-comment ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
  padding-left: 130px;
  margin-bottom: 30px;
}
.blog-details-area .details-item .details-comment ul li:last-child {
  margin-bottom: 0;
  margin-left: 70px;
}
.blog-details-area .details-item .details-comment ul li img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.blog-details-area .details-item .details-comment ul li h4 {
  font-size: 17px;
  margin-bottom: 5px;
}
.blog-details-area .details-item .details-comment ul li span {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
.blog-details-area .details-item .details-comment ul li p {
  margin-bottom: 0;
}
.blog-details-area .details-item .details-comment ul li a {
  display: inline-block;
  color: #E03FD9;
  font-weight: 600;
  position: absolute;
  top: 0;
  right: 0;
}
.blog-details-area .details-item .details-comment ul li a:hover {
  color: #302c51;
}
.blog-details-area .details-item .details-post {
  background-color: #fafafa;
  padding: 50px 50px 50px;
}
.blog-details-area .details-item .details-post h3 {
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: -5px;
}
.blog-details-area .details-item .details-post .form-group {
  position: relative;
  margin-bottom: 15px;
}
.blog-details-area .details-item .details-post .form-group label {
  margin-bottom: 0;
  position: absolute;
  top: 10px;
  left: 15px;
  color: #E03FD9;
  font-size: 20px;
}
.blog-details-area .details-item .details-post .form-group .form-control {
  height: 50px;
  border-radius: 5px;
  border: 0;
  background-color: #fff;
  padding-left: 45px;
  font-size: 15px;
}
.blog-details-area .details-item .details-post .form-group .form-control:focus {
  border: 0;
  box-shadow: none;
}
.blog-details-area .details-item .details-post .form-group textarea {
  height: auto !important;
  padding-top: 13px;
}
.blog-details-area .details-item .details-post .common-btn {
  transition: 0.5s all ease;
  width: 100%;
  display: block;
}

.widget-area .admin {
  background-color: #fafafa;
  padding: 30px 30px 30px;
  text-align: center;
}
.widget-area .admin img {
  border-radius: 50%;
  margin-bottom: 15px;
}
.widget-area .admin h4 {
  margin-bottom: 12px;
  font-size: 18px;
}
.widget-area .admin span {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
}
.widget-area .admin ul li {
  list-style-type: none;
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
}
.widget-area .admin ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #E03FD9;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.5490196078);
  border-radius: 50%;
  font-size: 15px;
}
.widget-area .admin ul li a i {
  line-height: 30px;
}
.widget-area .admin ul li a:hover {
  color: #fff;
  background-color: #E03FD9;
}

/*----- Contact CSS -----*/
.contact-info-area {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact-info-area .contact-info {
  margin-bottom: 30px;
  text-align: center;
}
.contact-info-area .contact-info i {
  display: inline-block;
  color: #E03FD9;
  font-size: 22px;
  margin-bottom: 10px;
}
.contact-info-area .contact-info span {
  display: block;
  color: #E03FD9;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 5px;
}
.contact-info-area .contact-info a {
  display: block;
  color: #302c51;
}
.contact-info-area .contact-info a:hover {
  color: #E03FD9;
}

.contact-area #contactForm {
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact-area #contactForm h2 {
  font-size: 25px;
  margin-bottom: 5px;
  margin-top: -5px;
}
.contact-area #contactForm p {
  margin-bottom: 30px;
}
.contact-area #contactForm .form-group {
  margin-bottom: 15px;
  position: relative;
}
.contact-area #contactForm .form-group label {
  margin-bottom: 0;
}
.contact-area #contactForm .form-group label i {
  position: absolute;
  top: 40px;
  left: 12px;
  display: inline-block;
  font-size: 17px;
  color: #E03FD9;
}
.contact-area #contactForm .form-group label a {
  color: #E03FD9;
  transition: 0.5s all ease;
}
.contact-area #contactForm .form-group label a:hover {
  color: #2e9a7a;
}
.contact-area #contactForm .form-group .form-check {
  display: inline-block;
}
.contact-area #contactForm .form-group .form-control {
  height: 50px;
  border-radius: 5px;
  background-color: #f9f9f9;
  padding-left: 40px;
  font-size: 15px;
  border: 0;
}
.contact-area #contactForm .form-group .form-control:focus {
  border: 0;
  box-shadow: none;
}
.contact-area #contactForm .form-group textarea {
  height: auto !important;
  padding-top: 13px;
}
.contact-area #contactForm .form-group .list-unstyled {
  font-size: 15px;
  margin-top: 10px;
  color: #dc3545;
}
.contact-area #contactForm .common-btn {
  width: 100%;
  text-align: center;
  display: block;
  transition: 0.5s all ease;
  opacity: 1;
}
.contact-area #contactForm .text-danger {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 22px;
  color: #dc3545;
}
.contact-area #contactForm .text-success {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 22px;
  color: #28a745;
}

.map-area #map {
  width: 100%;
  display: block;
  height: 400px;
  border: 0;
}

/*----- User CSS -----*/
.user-form-area .user-img {
  background-image: url("../img/user-form-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.user-form-area .user-img img {
  display: none;
}
.user-form-area .user-content {
  height: 100vh;
}
.user-form-area .user-content .user-content-inner {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.user-form-area .user-content .user-content-inner .top {
  margin-bottom: 40px;
}
.user-form-area .user-content .user-content-inner .top .logo-two {
  display: none;
}
.user-form-area .user-content .user-content-inner .top a {
  display: block;
  margin-bottom: 30px;
}
.user-form-area .user-content .user-content-inner .top h2 {
  font-size: 25px;
  margin-bottom: 0;
  background-color: #fafafa;
  border-left: 2px solid #E03FD9;
  border-right: 2px solid #E03FD9;
  padding-top: 15px;
  padding-bottom: 17px;
}
.user-form-area .user-content .user-content-inner .form-group {
  margin-bottom: 20px;
}
.user-form-area .user-content .user-content-inner .form-group .form-control {
  height: 50px;
  padding-left: 15px;
  font-size: 15px;
  border: 1px solid #f1f1f1;
  transition: 0.5s all ease;
}
.user-form-area .user-content .user-content-inner .form-group .form-control:focus {
  border: 1px solid #E03FD9;
  box-shadow: none;
}
.user-form-area .user-content .user-content-inner .common-btn {
  display: block;
  width: 100%;
  text-align: center;
  transition: 0.5s all ease;
}
.user-form-area .user-content .user-content-inner .bottom {
  margin-top: 30px;
}
.user-form-area .user-content .user-content-inner .bottom p {
  margin-bottom: 25px;
}
.user-form-area .user-content .user-content-inner .bottom p a {
  color: #302c51;
  font-weight: 600;
}
.user-form-area .user-content .user-content-inner .bottom p a:hover {
  color: #E03FD9;
}
.user-form-area .user-content .user-content-inner .bottom h4 {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 30px;
  position: relative;
}
.user-form-area .user-content .user-content-inner .bottom h4:before {
  position: absolute;
  content: "";
  width: 45%;
  height: 1px;
  top: 10px;
  left: 0;
  background-color: #E03FD9;
}
.user-form-area .user-content .user-content-inner .bottom h4:after {
  position: absolute;
  content: "";
  width: 45%;
  height: 1px;
  top: 10px;
  right: 0;
  background-color: #E03FD9;
}
.user-form-area .user-content .user-content-inner .bottom ul {
  margin: 0;
  padding: 0;
}
.user-form-area .user-content .user-content-inner .bottom ul li {
  list-style-type: none;
  display: inline-block;
  margin-bottom: 15px;
  margin-left: 5px;
  margin-right: 5px;
}
.user-form-area .user-content .user-content-inner .bottom ul li:last-child {
  margin-bottom: 0;
}
.user-form-area .user-content .user-content-inner .bottom ul li:last-child a {
  color: #4885ed;
  border: 1px solid #4885ed;
}
.user-form-area .user-content .user-content-inner .bottom ul li:last-child a:hover {
  background-color: #4885ed;
}
.user-form-area .user-content .user-content-inner .bottom ul li a {
  display: block;
  border: 1px solid #3B5998;
  color: #3B5998;
  border-radius: 30px;
  padding: 10px 25px 10px 20px;
  font-weight: 500;
}
.user-form-area .user-content .user-content-inner .bottom ul li a i {
  display: inline-block;
  font-size: 18px;
  position: relative;
  top: 1px;
}
.user-form-area .user-content .user-content-inner .bottom ul li a:hover {
  color: #fff;
  background-color: #3B5998;
}

.testimonial-area.two .testimonial-img {
  margin-bottom: 0;
}
.testimonial-area.two .testimonial-content {
  margin-bottom: 0;
}
.testimonial-area.two .row {
  margin-bottom: 30px;
}

/*-- FAQ --*/
.faq-area .accordion {
  margin-bottom: 30px;
}
.faq-area .accordion p {
  display: none;
  padding: 20px 25px 20px;
  margin-bottom: 0;
}
.faq-area .accordion li {
  position: relative;
  list-style-type: none;
  margin-bottom: 20px;
  display: block;
  box-shadow: 0px 0px 30px 0px rgba(221, 221, 221, 0.2588235294);
  border-radius: 5px;
}
.faq-area .accordion li:first-child {
  border-top: 0;
}
.faq-area .accordion li:last-child {
  margin-bottom: 0;
}
.faq-area .accordion li a {
  width: 100%;
  display: block;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #302c51;
  padding: 13px 38px 13px 20px;
  border-radius: 5px;
}
.faq-area .accordion li a.active {
  color: #fff;
  background-color: #E03FD9;
}
.faq-area .accordion li a.active i {
  color: #fff;
  opacity: 0;
}
.faq-area .accordion li a.active i.two {
  opacity: 1;
}
.faq-area .accordion li a i {
  position: absolute;
  top: 19px;
  right: 20px;
  color: #302c51;
  display: inline-block;
  font-size: 18px;
  opacity: 1;
  transition: 0.5s all ease;
}
.faq-area .accordion li a i.two {
  opacity: 0;
}
.faq-area .faq-img {
  margin-bottom: 30px;
}
.faq-area .faq-img img {
  width: 100%;
}

/*----- Error CSS -----*/
.error-area {
  height: 100vh;
}
.error-area .error-item {
  text-align: center;
}
.error-area .error-item h1 {
  font-size: 150px;
  margin-bottom: 5px;
}
.error-area .error-item h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.error-area .error-item p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/*----- Coming Soon CSS -----*/
.coming-soon-area {
  height: 100vh;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.coming-soon-area .soon-item h1 {
  font-size: 100px;
  font-weight: 900;
  color: #E03FD9;
  margin-bottom: 15px;
}
.coming-soon-area .soon-item span {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 30px;
  color: #302c51;
  position: relative;
}
.coming-soon-area .soon-item span:before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  left: -45px;
  top: 14px;
  background-color: #302c51;
}
.coming-soon-area .soon-item span:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  right: -45px;
  top: 14px;
  background-color: #302c51;
}
.coming-soon-area .soon-item .coming-inner {
  margin-bottom: 30px;
  border-radius: 5px;
}
.coming-soon-area .soon-item .coming-inner h3 {
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 0;
}
.coming-soon-area .soon-item .coming-inner p {
  margin-bottom: 0;
}

/*----- Rules CSS -----*/
.rules-area {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.rules-area .rules-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.rules-area .rules-item ul {
  margin-bottom: 30px;
}
.rules-area .rules-item ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.rules-area .rules-item ul li:last-child {
  margin-bottom: 0;
}
.rules-area .rules-item ul li:before {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #E03FD9;
}
.rules-area .rules-item p {
  margin-bottom: 30px;
}
.rules-area .rules-item p:last-child {
  margin-bottom: 0;
}

/*----- Go Top CSS -----*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 15px;
  right: 0;
  color: #ffffff;
  background-color: #E03FD9;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
  border-radius: 50%;
  border: 1px solid #E03FD9;
}
.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.6s;
  font-size: 25px;
  line-height: 45px;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top.active {
  right: 1%;
  transform: translateY(-1%);
  opacity: 1;
  visibility: visible;
}
.go-top:hover, .go-top:focus {
  color: #ffffff;
  border: 1px solid #302c51;
  background-color: #302c51;
}
.go-top:hover i:first-child, .go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child, .go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

/*----- Preloader CSS -----*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  background: #fff;
}

.pre-box-one {
  text-align: center;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.pre-box-one:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #E03FD9;
  animation: pre-rotate 3s infinite alternate;
}
.pre-box-one:after {
  position: absolute;
  width: 90%;
  height: 90%;
  background: #fff;
  content: "";
}

.pre-box-two {
  height: 50%;
  width: 50%;
  background: #E03FD9;
  position: relative;
  z-index: 10;
  animation: 3s pre-rotate infinite alternate;
}

@keyframes pre-rotate {
  0% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(360deg);
  }
}
/*----- Buy Now Btn -----*/
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #fff;
  background-color: #82b440;
  padding: 10px 20px 10px 42px;
  box-shadow: 0 1px 20px 1px #82b440;
  font-size: 13px;
  font-weight: 600;
}
.buy-now-btn img {
  top: 50%;
  left: 20px;
  width: 15px;
  position: absolute;
  transform: translateY(-50%);
}
.buy-now-btn:hover {
  color: #fff;
  background-color: #94be5d;
}/*# sourceMappingURL=style.css.map */