*,
*::before,
*::after {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
    box-sizing: border-box;
    --red: #dc4549;
    --yellow: #f5a93f;
    --text: #2f3753;
    --white: #ffffff;
    --black: #000000;
    --transparent: transparent;
    --fontPlayFair: "Playfair Display", serif;
    --fontPTSans: "PT Sans", sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: 16px;
    color: var(--text);
    line-height: 1.5em;
    font-weight: 400;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: var(--fontPTSans);
}
main {
    overflow: hidden;
}
a {
    text-decoration: none;
    cursor: pointer;
}
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}
/* ===== Global Style */
.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "PT Sans", sans-serif;
    border-radius: 4px;
    overflow: hidden;
}
.btn-style-one:hover {
    color: #ffffff;
}
.btn-style-one .btn-title {
    position: relative;
    display: block;
    z-index: 1;
    padding: 10px 30px;
    background: var(--yellow);
    letter-spacing: 0.03em;
    border-radius: 4px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.btn-style-two .btn-title {
    background: var(--red);
}
.btn-style-one .btn-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: var(--red);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-two .btn-title:before {
    background: var(--yellow);
}
.btn-style-one:hover .btn-title:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.section-title {
    font-size: 48px;
    line-height: 1.2em;
    color: var(--text);
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: capitalize;
    font-family: var(--fontPlayFair);
}
.section-subtitle {
    color: var(--text);
    font-size: 18px;
    font-weight: 400;
    position: relative;
    padding-left: 15px;
}
.section-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 20px;
    background-color: var(--red);
    transform: translateY(-50%);
}
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
}
/* ===== Global Style End */

/* ===== Header Section */
header.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    animation: slideDown 0.7s forwards ease-in-out;
}
header.fixed-header .navbar-nav {
    position: relative;
    padding-right: 130px;
}
header.fixed-header .navbar-brand img {
    height: 50px;
}
header.fixed-header nav .nav-link {
    padding: 20px 0 !important;
    font-size: 14px;
}
header.fixed-header .donate-link {
    padding-top: 14px;
}
header.fixed-header .btn-style-one .btn-title {
    padding: 3px 15px;
}
header.fixed-header .btn-style-one {
    font-size: 14px;
}
header.fixed-header nav .nav-item .nav-link:before {
    bottom: 15px;
}
@keyframes slideDown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
header .navbar-brand img {
    height: 90px;
    width: auto;
}
header .navbar {
    background-color: white;
}
header .navbar-nav {
    position: relative;
    padding-right: 170px;
}
header .donate-link {
    padding-top: 28px;
}
header nav .nav-link {
    text-transform: uppercase;
    font-weight: bold;
    padding: 40px 0 !important;
    color: var(--text);
    margin-left: 15px;
    position: relative;
    font-size: 16px;
}
header nav .nav-item .nav-link:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 32px;
    width: 0;
    border-bottom: 2px solid var(--red);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
header nav .nav-item.active .nav-link:before,
header nav .nav-item:hover .nav-link:before {
    width: 20px;
}
header nav .nav-item.active .nav-link,
header nav .nav-item:hover .nav-link {
    color: var(--red) !important;
}
header .navbar-toggler:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}
header .navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
}
header .navbar-toggler {
    z-index: 99999999;
}

header .dropdown-menu {
    top: 96% !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
        rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    width: 200px;
    display: none;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}
header .dropdown-menu li a {
    padding: 7px 20px;
    color: var(--text);
    font-size: 16px;
    text-decoration: none;
    display: block;
}
header .dropdown-menu li a:hover {
    color: var(--red);
}
@media (max-width: 992px) {
    #header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 10000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    header .navbar-brand img {
        height: 50px;
        width: auto;
    }
    header .donate-link {
        padding-top: 0;
    }
    header nav .nav-item .nav-link {
        padding: 5px 0 !important;
        margin-left: 0;
        font-size: 14px;
    }
    header .navbar-nav {
        padding-top: 30px;
        padding-bottom: 10px;
    }
    header nav .nav-item .nav-link:before {
        bottom: 0;
    }
    header.fixed-header nav .nav-item .nav-link:before {
        bottom: 0;
    }
    header.fixed-header .donate-link {
        padding-top: 0;
        top: 83%;
    }
    ul.dropdown-menu {
        box-shadow: none;
        border: none;
    }
    ul.dropdown-menu li a {
        position: relative;
    }
    ul.dropdown-menu li a::before {
        position: absolute;
        left: 0px;
        top: 19px;
        content: "";
        width: 10px;
        height: 2px;
        background-color: var(--red);
    }
}
/* ===== Header Section End */

/* ===== Slider Section */
.slider .carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}
.slider .carousel-item {
    overflow: hidden;
}
.slider .carousel-item .slider-image {
    width: 100%;
    height: 80vh;
    animation: zoomInOut 10s infinite ease-in-out;
    position: relative;
    z-index: 1;
}
.slider .carousel-control-prev {
    position: relative;
    background: transparent;
    left: 86%;
    top: -75px;
    width: 45px;
    height: 45px;
    border: 2px solid var(--white);
    opacity: 1;
    border-radius: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.slider .carousel-control-next {
    position: relative;
    background: transparent;
    left: 91%;
    top: -119px;
    width: 45px;
    height: 45px;
    border: 2px solid var(--white);
    opacity: 1;
    border-radius: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
.slider .image-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.slider .content-box {
    position: relative;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}
.slider .content-box .sub-title {
    display: block;
    font-size: 18px;
    line-height: 1.6em;
    color: var(--yellow);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.slider .content-box h2 {
    display: block;
    font-size: 72px;
    line-height: 1.15em;
    color: var(--white);
    font-weight: bold;
    margin-bottom: 35px;
    text-transform: capitalize;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: capitalize;
    font-family: var(--fontPlayFair);
    max-width: 70%;
}
.slider .carousel-indicators {
    display: none;
}
.slider .carousel-control-next {
    position: absolute;
    background: transparent;
    right: 40px;
    bottom: 30px;
    top: unset;
    left: unset;
    width: 45px;
    height: 45px;
    border: 2px solid var(--white);
    opacity: 1;
    border-radius: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.slider .carousel-control-prev {
    position: absolute;
    background: transparent;
    left: unset;
    top: unset;
    bottom: 30px;
    right: 100px;
    width: 45px;
    height: 45px;
    border: 2px solid var(--white);
    opacity: 1;
    border-radius: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (max-width: 992px) {
    .slider .content-box h2 {
        font-size: 40px;
        max-width: 100%;
    }
    .slider .content-box .sub-title {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .slider .carousel-control-prev,
    .slider .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    .slider .carousel-control-prev {
        right: 85px;
    }
    .slider .carousel-control-prev .carousel-control-prev-icon,
    .slider .carousel-control-next .carousel-control-next-icon {
        width: 1.6rem;
        height: 1.6rem;
    }
    .slider .carousel-item .slider-image,
    .slider .carousel {
        height: 50vh;
    }
    .slider {
        margin-top: 50px;
    }
}
@media (max-width: 576px) {
    .slider .content-box h2 {
        font-size: 36px;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .btn-style-one .btn-title {
        padding: 7px 20px;
    }
}
/* ===== Slider Section End */

/* ===== Completed Project Section */
.completed-project {
    padding: 100px 0;
    background-color: #eef7f8;
}
.completed-project .project-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 25px;
}
.completed-project .project-image {
    height: 300px;
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.completed-project .text-overlay {
    position: absolute;
    border-radius: 5px;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: 0.5s ease;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.completed-project .project-item:hover .text-overlay {
    transform: translateY(0);
}
.completed-project .text-overlay {
    padding: 30px;
}
.completed-project .text-overlay h4 {
    font-size: 26px;
    font-weight: bold;
    color: var(--white);
}
.completed-project .text-overlay p {
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    color: var(--white);
    overflow-y: auto;
    margin-bottom: 0;
}
@media (max-width: 576px) {
    .completed-project {
        padding: 60px 0 50px !important;
    }
}
/* ===== Completed Project Section End */

/* ===== Current Appeals */
.current-appeals {
    padding: 100px 0;
}
.current-appeals .section-title {
    margin-bottom: 15px;
    text-align: center;
}
.current-appeals .section-subtitle {
    text-align: center;
    padding-left: unset;
    margin-bottom: 40px;
}
.current-appeals .section-subtitle::before {
    display: none;
}
.current-appeals .appeals-item img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}
.current-appeals .appeals-item {
    transition: all 0.3s ease;
    margin-bottom: 15px;
}
.current-appeals .appeals-item:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.current-appeals .appeals-item .appeals-item-content {
    border: 1px solid #ddeaeb;
    text-align: center;
    padding: 30px 15px 30px;
}
.current-appeals .appeals-item-content h4 {
    text-transform: capitalize;
    font-size: 24px;
    line-height: 1.25em;
    font-weight: 700;
    font-family: var(--fontPlayFair);
    margin-bottom: 5px;
    color: var(--text);
    margin-top: 30px;
}
.current-appeals .appeals-item-content h4:hover {
    color: var(--red);
}
.current-appeals .appeals-item-content .tag {
    text-transform: capitalize;
    color: var(--yellow);
    display: block;
    margin-bottom: 20px;
}
.current-appeals .appeals-item-content p {
    line-height: 1.6em;
    font-size: 16px;
    margin-bottom: 30px;
}
.current-appeals .appeals-item-content .donate-info {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 16px;
}
.current-appeals .appeals-item-content .donate-info i {
    color: var(--yellow);
}
.current-appeals .appeals-item .btn-style-one {
    width: 100%;
    border-radius: unset;
    text-align: center;
}
.current-appeals .appeals-item .btn-style-one .btn-title {
    border-radius: 0 0 5px 5px;
    padding: 10px 40px !important;
}
.current-appeals .appeals-item-content {
    position: relative;
}
.current-appeals .progress-box {
    position: absolute;
    display: block;
    left: 0;
    top: -1px;
    width: 100%;
}
.current-appeals .progress-box .bar {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgb(217, 217, 217);
}
.current-appeals .progress-box .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 6px;
    background: var(--yellow);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}
.current-appeals .progress-box .count-text {
    position: absolute;
    right: 0px;
    margin-right: -23px;
    bottom: -40px;
    width: 46px;
    height: 26px;
    color: var(--white);
    background: var(--yellow);
    line-height: 26px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}
.current-appeals .progress-box .bar-inner.counted .count-text {
    opacity: 1;
}
.current-appeals .progress-box .count-text:after {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -5px;
    bottom: 100%;
    border: 5px solid transparent;
    border-bottom: 5px solid var(--yellow);
}
@media (max-width: 576px) {
    .current-appeals {
        padding: 45px 0 50px !important;
    }
}
/* ===== Current Appeals End */
/* ===== Quote Section */
.quote {
    background-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.4)
        ),
        url(../images/quote-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 110px 0;
}
.quote .quote-text {
    font-size: 24px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.6em;
    text-align: center;
    display: block;
    font-style: italic;
    font-family: var(--fontPlayFair);
}
@media (max-width: 576px) {
    .quote {
        padding: 50px 0;
    }
}
/* ===== Quote Section End */

/* ===== Bank Section */
.bank {
    padding: 100px 0;
    background-color: #eef7f8;
}
.bank .bank-image {
    overflow: hidden;
}
.bank .bank-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.5s ease;
}
.bank .bank-image img:hover {
    transform: scale(1.1);
}
.bank .bank-content {
    padding-left: 40px;
}
.bank .bank-content .section-title {
    margin-bottom: 20px;
}
.bank .bank-content p {
    font-size: 18px;
    margin-bottom: 6px;
}
.bank .bank-content ul li {
    font-size: 16px;
    line-height: 1.9em;
}
.bank .bank-content ul li i {
    color: var(--red);
    margin-right: 5px;
}
@media (max-width: 768px) {
    .bank .bank-content {
        padding-left: 0;
        margin-top: 30px;
    }
    .bank .bank-image img {
        height: 300px;
    }
}
@media (max-width: 576px) {
    .bank {
        padding: 60px 0;
    }
}
/* ===== Bank Section End */

/* ===== Contact Section */
.contact {
    padding: 100px 0;
}
.contact .section-title {
    margin-bottom: 20px;
}
.contact .contact-form textarea,
.contact .contact-form input {
    width: 100%;
    display: block;
    height: 50px;
    padding: 0 10px;
    border-radius: 5px;
    border: none;
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border: none;
    color: var(--text);
    font-size: 16px;
    margin-bottom: 15px;
}
.contact .contact-form textarea {
    height: 100px !important;
    padding: 10px !important;
    margin-bottom: 5px !important;
}
.contact .contact-form textarea:focus,
.contact .contact-form input:focus {
    outline: none;
    border: 1px solid var(--red);
}
.contact h6 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .contact-form {
        margin-top: 20px;
    }
}
@media (max-width: 576px) {
    .contact {
        padding: 60px 0;
    }
}
/* ===== Contact Section End */

/* ===== Footer Section */
.footer {
    background-image: url(../images/bg-footer.png),
        linear-gradient(to right, var(--text), var(--text));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0 30px;
}
.footer .footer-logo {
    width: 100px;
}
.footer-item .box-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
    font-family: var(--fontPlayFair);
    margin-bottom: 30px;
}
.footer-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    padding-right: 30px;
}
.footer-item ul li {
    margin: 12px 0;
}
.footer-item ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    transition: all 0.3s ease;
}
.footer-item ul li a:hover {
    color: var(--yellow);
}
.footer-item .social-icons {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-item .social-icons li {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    cursor: pointer;
}
.footer-item .social-icons li:hover {
    transform: scale(1.1);
    background-color: var(--yellow);
}
.footer-item .social-icons li a i {
    color: var(--text);
}
.footer-contact ul li {
    color: rgba(255, 255, 255, 0.5);
}
.footer-contact ul li i {
    width: 25px;
    color: var(--yellow);
}
.footer-contact .input-email {
    width: 100%;
    margin-top: 10px;
    padding: 15px 65px 15px 15px;
    border-radius: 5px;
    border: none;
    background-color: var(--transparent);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 16px;
}
.footer-contact .input-email:focus {
    outline: none;
    border: 1px solid var(--yellow);
}
.footer-contact .btn-email {
    position: absolute;
    top: 15px;
    right: 5px;
    padding: 11px 15px;
    background-color: var(--yellow);
    text-align: center;
    border-radius: 5px;
}
.footer-contact .btn-email i {
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0 5px;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
}
@media (max-width: 768px) {
    .footer-item {
        margin-bottom: 60px;
    }
}
@media (max-width: 576px) {
    .footer {
        padding: 60px 0 30px;
    }
}
/* ===== Footer Section End */

/* +
+
+
+
+
+
+
+
+ */
/* ===== Page Title CSS */
.page-title {
    padding: 100px 0;
    background-image: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)
        ),
        url(../images/page-title-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-title h2 {
    text-align: center;
    margin-bottom: 0;
    font-size: 72px;
    line-height: 1.2em;
    color: var(--white);
    font-weight: bold;
    font-family: var(--fontPlayFair);
    text-transform: capitalize;
}
@media (max-width: 992px) {
    .page-title {
        margin-top: 60px;
    }
    .page-title h2 {
        font-size: 50px;
    }
}
@media (max-width: 768px) {
    .page-title {
        margin-top: 60px;
    }
    .page-title h2 {
        font-size: 40px;
    }
}
@media (max-width: 576px) {
    .page-title {
        height: 200px;
        margin-top: 60px;
    }
    .page-title h2 {
        font-size: 30px;
    }
}

/* ===== Page Title CSS End */

/* ===== Map Section */
.map {
    height: 450px;
}
@media (max-width: 576px) {
    .map {
        height: 300px;
    }
}
/* ===== Map Section End */

/* ===== About Page CSS */
.about-page-content {
    padding: 100px 0 85px;
}
.about-page-content img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}
.about-page-content p {
    text-align: justify;
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 15px;
}
.about-page-content-2 {
    background-color: #eef7f8;
}

@media (max-width: 992px) {
    .about-page-content img {
        height: 300px;
    }
}
@media (max-width: 768px) {
    .about-page-content {
        padding: 60px 0;
    }
}
/* ===== About Page CSS End */

/* ===== Project Completed CSS */
.project-pagination {
    margin-top: 40px;
}
.project-pagination .page-link {
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
}
.project-pagination .page-link.active,
.project-pagination .page-link:hover {
    background: var(--yellow);
    color: var(--white);
    border-color: transparent;
}
/* ===== Project Completed CSS End */

/* ===== Details Appeals Page CSS */
.current-appeals-details {
    padding: 100px 0;
}
.appeals-item-details img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}
.appeals-item-details .appeals-item-content {
    border: 1px solid #ddeaeb;
    padding: 57px 15px 15px;
    position: relative;
}

.appeals-item-details .progress-box {
    position: absolute;
    display: block;
    left: 0;
    top: -1px;
    width: 100%;
}
.appeals-item-details .progress-box .bar {
    position: relative;
    width: 100%;
    height: 12px;
    background: rgb(217, 217, 217);
}
.appeals-item-details .progress-box .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 12px;
    background: var(--yellow);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}
.appeals-item-details .progress-box .count-text {
    position: absolute;
    right: 0px;
    margin-right: -23px;
    bottom: -40px;
    width: 46px;
    height: 26px;
    color: var(--white);
    background: var(--yellow);
    line-height: 26px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}
.appeals-item-details .progress-box .bar-inner.counted .count-text {
    opacity: 1;
}
.appeals-item-details .progress-box .count-text:after {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -5px;
    bottom: 100%;
    border: 5px solid transparent;
    border-bottom: 5px solid var(--yellow);
}
.appeals-item-details h4 {
    font-size: 36px;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--text);
    font-family: var(--fontPlayFair);
    margin-bottom: 15px;
}
.appeals-item-details .donate-info {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 16px;
}
.appeals-item-details .donate-info i {
    color: var(--yellow);
}
.appeals-item-details .btn-style-one {
    width: 100%;
    border-radius: unset;
    text-align: center;
}
.appeals-item-details .btn-style-one .btn-title {
    padding: 7px 25px !important;
    width: fit-content;
    margin-left: auto;
}
.appeals-item-details h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    text-transform: capitalize;
    margin-bottom: 10px;
    font-family: var(--fontPlayFair);
}
.appeals-item-details p {
    line-height: 30px;
}
.appeals-item-details-content p {
    line-height: 1.6em;
    font-size: 16px;
    margin-bottom: 30px;
}
.categoriy-part {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
.categoriy-part h4 {
    font-family: var(--fontPlayFair);
    font-size: 24px;
    line-height: 1.2em;
    color: var(--text);
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.categoriy-part ul li {
    position: relative;
    text-align: left;
    margin-bottom: 15px;
}
.categoriy-part ul li:last-child {
    margin-bottom: 0;
}
.categoriy-part ul li a {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    padding-left: 20px;
    transition: all 0.3s ease;
}
.categoriy-part ul li a:hover,
.categoriy-part ul li a.active {
    color: var(--red);
}
.categoriy-part ul li a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    line-height: 24px;
    font-size: 12px;
    color: var(--red);
    font-weight: 800;
}

.donate-info-widget {
    padding: 30px 30px 25px 30px;
    border-radius: 5px;
    background-color: #fafafa;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    text-align: center;
}
.donate-info-widget p {
    text-align: left;
    margin-top: 15px;
}
@media (max-width: 768px) {
    .donate-info-widget {
        margin-top: 30px;
    }
    .current-appeals-details {
        padding: 60px 0;
    }
    .appeals-item-details img {
        height: 250px;
    }
}
.appeals-item-details .image-gallery img {
    width: 100%;
    height: 280px;
    margin-bottom: 25px;
}
/* ===== Details Appeals Page CSS End */

/* ===== Details Project Page CSS */
.details-completed-project {
    padding: 100px 0;
}
.details-completed-project .about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
}

.details-completed-project .about-content h2 {
    font-size: 36px;
    color: var(--text);
    font-weight: bold;
    text-transform: capitalize;
    font-family: var(--fontPlayFair);
    margin-bottom: 20px;
}
.details-completed-project .about-content p {
    text-align: justify;
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 0;
}
.details-completed-project-2 {
    background-color: #eef7f8;
}

@media (max-width: 992px) {
    .about-content {
        margin-top: 30px;
    }
    .details-completed-project {
        padding: 80px 0;
    }
    .details-completed-project-2 .about-content {
        margin-top: 0 !important;
    }
}
@media (max-width: 768px) {
    .details-completed-project .about-image {
        height: 250px;
    }
    .details-completed-project {
        padding: 60px 0;
    }
    .details-completed-project .about-content h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
}
/* ===== Details Project Page CSS End */
