:root{
    --white: #fff;
    --theme: #0091c8;
    --theme-2: #163480;
    --theme-3: #66bdde;
    --header: #122f2a;
    --text: #667471;
    --text-2: #0091c8;
    --black: #000;
}

/* Faz 2: scoped under .orphan-layout (the Orphan body class) instead of bare
   element selectors so these resets cannot leak into / be overridden by
   TDVCommon/css/tdv.css or Bootstrap on the shared layout, and always win
   the specificity/cascade order regardless of <link> ordering in <head>. */
.orphan-layout{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.orphan-layout button{
    padding: 0;
    border: none;
    background-color: transparent;
}

.orphan-layout h1,
.orphan-layout h6{
    margin: 0;
    padding: 0;
    transition: all 0.4s ease-in-out;
}

.orphan-layout h1{
    font-size: 96px;
    font-weight: 400;
    line-height: 114%;
}

.orphan-layout h6{
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 1899px) {
    .orphan-layout h1{
        font-size: 80px;
    }
}

@media (max-width: 1600px) {
    .orphan-layout h1{
        font-size: 70px;
    }
}

@media (max-width: 1399px) {
    .orphan-layout h1{
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .orphan-layout h1{
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .orphan-layout h1{
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .orphan-layout h1{
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .orphan-layout h1{
        font-size: 30px;
    }
}

.orphan-layout a{ 
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.orphan-layout p{
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.theme-btn{
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 14px 30px;
    border-radius: 100px;
    background-color: var(--theme-2);
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    outline: none !important;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.theme-btn i{
    margin-left: 8px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.theme-btn::before{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 0;
    border-radius: 33px;
    background-color: var(--theme);
    content: "";
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}

.theme-btn:hover{
    background-color: transparent;
    color: var(--header);
}

.theme-btn:hover i{
    transform: rotate(0);
}

.theme-btn:hover::before{
    height: 380%;
}

.bg-cover{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bannerSlider-container{
    position: relative;
    padding: 180px 0;
}

.bannerSlider-container::before{
    position: absolute;
    inset: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.38) 0%,
            rgba(0, 0, 0, 0.38) 100%);
    content: "";
}

.bannerSlider-container .bannerSlider-background{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
    transition: all 8s ease-out 0s;
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
}

.bannerSlider-container .hero-content{
    position: relative;
    z-index: 999;
    text-align: center;
}

.bannerSlider-container .hero-content h6{
    margin-bottom: 20px;
    color: var(--theme);
    letter-spacing: 5px;
}

.bannerSlider-container .hero-content h1{
    margin-bottom: 15px;
    color: var(--white);
}

.bannerSlider-container .hero-content p{
    max-width: 722px;
    margin: 0 auto;
    color: var(--white);
}

.bannerSlider-container .hero-content .hero-button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.bannerSlider-container .hero-content .hero-button .theme-btn.border-btn{
    border: 1px solid var(--white);
    background-color: transparent;
}

.bannerSlider-container .hero-content .hero-button .theme-btn.border-btn:hover{
    border-color: var(--theme);
}

.bannerSection{
    position: relative;
    margin-top: -0.4rem;
}

.bannerSection .swiper-slide.swiper-slide-active .bannerSlider-background{
    transform: scale(1.19);
    -webkit-transform: scale(1.19);
    -moz-transform: scale(1.19);
}

@media (max-width: 1399px) {
    .bannerSlider-container{
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .bannerSlider-container{
        padding: 80px 0;
    }
}

@media (max-width: 1199px) {
    .bannerSlider-container .hero-content .hero-button{
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    .bannerSlider-container .hero-content,
.bannerSlider-container .hero-content .hero-button{
        text-align: center;
        justify-content: center;
    }
}

.bannerSection .banner-slider{
    position: relative;
    z-index: 1;
}

.bannerSlider-counter{
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 106px;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 18px 0 0 18px;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
}

.bannerSlider-counter-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 78px;
    line-height: 1;
    white-space: nowrap;
    transform: rotate(-90deg);
}

.bannerSlider-current{
    color: var(--theme);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: opacity 0.3s ease,
        transform 0.3s ease;
}

.bannerSlider-next{
    color: #a5aaa9;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.3px;
    transition: opacity 0.3s ease,
        transform 0.3s ease;
}

.bannerSlider-counter.is-changing .bannerSlider-current,
.bannerSlider-counter.is-changing .bannerSlider-next{
    opacity: 0;
    transform: translateY(5px);
}

@media (max-width: 1199px) {
    .bannerSlider-counter{
        width: 40px;
        height: 100px;
        border-radius: 17px 0 0 17px;
    }
}

@media (max-width: 767px) {
    .bannerSlider-counter{
        width: 36px;
        height: 92px;
        border-radius: 15px 0 0 15px;
    }

    .bannerSlider-counter-inner{
        gap: 6px;
    }

    .bannerSlider-current{
        font-size: 12px;
    }

    .bannerSlider-next{
        font-size: 11px;
    }
}

.aboutSection.fix{
    overflow: hidden;
}

.aboutSection.section-padding{
    padding: 120px 0;
}

.aboutSection h2,
.aboutSection h4{
    margin: 0;
    padding: 0;
    color: var(--header);
    font-weight: 400;
    transition: all 0.4s ease-in-out;
}

.aboutSection h2{
    font-size: 48px;
    line-height: 112%;
}

.aboutSection h4{
    font-size: 24px;
    line-height: 141%;
}

.aboutSection p,
.aboutSection span{
    margin: 0;
}

.aboutSection p{
    transition: all 0.4s ease-in-out;
}

.aboutSection a{
    color: var(--header);
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.aboutSection .about-title{
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}

.aboutSection .about-title.mb-0{
    margin-bottom: 0 !important;
}

.aboutSection .about-title .sub-title{
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px 10px 25px;
    border: 1px solid var(--header);
    border-radius: 100px;
    color: var(--text-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.aboutSection .about-title .sub-title::before{
    position: absolute;
    top: 15px;
    left: 13px;
    width: 6px;
    height: 6px;
    border-radius: 30px;
    background-color: var(--text-2);
    content: "";
}

.aboutSection .aboutContentArea .text{
    max-width: 645px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.aboutSection .about-icon-item{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.aboutSection .about-icon-item.mb-0{
    margin-bottom: 0 !important;
}

.aboutSection .about-icon-item .icon img{
    display: inline-block;
    transition: all 0.4s ease-in-out;
    height: 3rem;
}

.aboutSection .about-icon-item:hover .icon img{
    transform: scaleX(-1) !important;
}

.aboutSection .about-bottom{
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 40px;
}

.aboutSection .about-item{
    margin-left: 215px;
}

.aboutSection .about-item .about-image{
    position: relative;
    max-width: 420px;
}

.aboutSection .about-item .about-image>img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.aboutSection .about-item .about-image .about-image-2{
    position: absolute;
    top: 40px;
    left: -180px;
    max-width: 300px;
}

.aboutSection .about-item .about-image .about-image-3{
    position: absolute;
    bottom: -90px;
    left: -190px;
    max-width: 360px;
}

.aboutSection .about-item .about-image .about-image-2 img,
.aboutSection .about-item .about-image .about-image-3 img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.img-custom-anim-right{
    opacity: 0;
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

.img-custom-anim-left{
    opacity: 0;
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

@media (max-width: 1399px) {
    .aboutSection .about-bottom{
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px;
    }

    .aboutSection .about-item{
        margin-left: 0;
    }

    .aboutSection .about-item .about-image{
        max-width: none;
    }

    .aboutSection .about-item .about-image .about-image-2{
        top: 0;
        left: 0;
        max-width: 250px;
    }

    .aboutSection .about-item .about-image .about-image-3{
        bottom: 0;
        left: 0;
        max-width: 250px;
    }
}

@media (max-width: 1199px) {
    .aboutSection.section-padding{
        padding: 100px 0;
    }

    .aboutSection h2{
        font-size: 40px;
    }

    .aboutSection h4{
        font-size: 20px;
    }

    .aboutSection .aboutContentArea .text{
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .aboutSection.section-padding{
        padding: 80px 0;
    }

    .aboutSection h2{
        font-size: 40px;
    }

    .aboutSection .about-icon-item{
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .aboutSection h2{
        font-size: 35px;
    }

    .aboutSection .about-title{
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .aboutSection h2{
        font-size: 30px;
    }
}

@media (max-width: 470px) {
    .aboutSection h2{
        font-size: 25px;
    }
}

.supportSection{
    position: relative;
    margin: 120px 40px;
    border-radius: 30px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--text);
}

.supportSection h2,
.supportSection h3{
    margin: 0;
    padding: 0;
    color: var(--header);
    font-weight: 400;
    transition: all 0.4s ease-in-out;
}

.supportSection h2{
    font-size: 48px;
    line-height: 112%;
}

.supportSection h3{
    font-size: 32px;
    line-height: 131%;
}

.supportSection a{
    color: var(--header);
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.supportSection p{
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.supportSection img{
    max-width: 100%;
    vertical-align: middle;
}

.supportSection .text-center{
    text-align: center;
}

.supportSection .support-title{
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}

.supportSection .support-title .sub-title{
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px 10px 25px;
    border: 1px solid #0091c8;
    border-radius: 100px;
    color: var(--text-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.supportSection .support-title .sub-title::before{
    position: absolute;
    top: 15px;
    left: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-2);
    content: "";
}

.supportSection .supportSlider .swiper-wrapper{
    align-items: stretch;
}

.supportSection .supportSlider .swiper-slide{
    display: flex;
    height: auto;
}

.supportSection .supportBoxContainer{
    position: relative;
    z-index: 9;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding: 0 40px 40px;
    box-sizing: border-box;
    text-align: center;
}

.supportSection .supportBoxContainer::before{
    position: absolute;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    border-radius: 20px;
    background-color: var(--white);
    content: "";
}

.supportSection .supportBoxContainer::after{
    position: absolute;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    border-radius: 20px;
    background-color: var(--theme);
    content: "";
    transform: scale(1, 0);
    transform-origin: bottom center;
    transition: transform 500ms ease;
}

.supportSection .supportBoxContainer .icon{
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border: 10px solid var(--white);
    border-radius: 50%;
    background-color: #efefef;
    line-height: 130px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.supportSection .supportBoxContainer .icon img{
    display: inline-block;
    transition: all 0.4s ease-in-out;
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.supportSection .supportBoxContainer .content{
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: 100%;
}

.supportSection .supportBoxContainer .content h3{
    margin-top: 20px;
    margin-bottom: 20px;
}

.supportSection .supportBoxContainer .content h3 a{
    display: inline;
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0 2px;
}

.supportSection .supportBoxContainer .content h3 a:hover{
    color: var(--theme-2);
    background-image: linear-gradient(180deg,
            var(--theme-2) 0%,
            var(--theme-2) 100%);
    background-size: 100% 2px;
}

.supportSection .supportBoxContainer .content p{
    flex: 1 1 auto;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.supportSection .supportBoxContainer .content .theme-btn{
    align-self: center;
    margin-top: 30px;
}

.supportSection .supportBoxContainer .content .theme-btn::before{
    background-color: var(--theme-2);
}

.supportSection .supportBoxContainer .content .theme-btn:hover{
    color: var(--theme);
}

.supportSection .supportBoxContainer:hover::after{
    transform: scale(1, 1);
    transform-origin: top center;
}

.supportSection .supportBoxContainer:hover .content p{
    color: #ffffff;
}

.supportSection .supportBoxContainer:hover .content h3 a{
    color: #ffffff;
}

.supportSection .supportBoxContainer:hover .icon{
    border-color: var(--theme);
}

.supportSection .supportBoxContainer:hover .icon img{
    transform: scaleX(-1) !important;
}

.supportSection .swiper-dot{
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 1399px) {
    .supportSection{
        margin: 0 30px;
    }

    .supportSection h2{
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .supportSection{
        padding: 100px 0;
    }

    .supportSection h2{
        font-size: 40px;
    }

    .supportSection h3{
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .supportSection{
        padding: 80px 0;
    }

    .supportSection h2{
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .supportSection{
        margin: 80px 15px;
        padding-block: 80px;
    }

    .supportSection h2{
        font-size: 35px;
    }

    .supportSection .support-title{
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .supportSection h2{
        font-size: 30px;
    }

    .supportSection .supportBoxContainer{
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (max-width: 470px) {
    .supportSection h2{
        font-size: 25px;
    }
}

.donation-section{
    margin-bottom: -20px;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.donation-section.section-padding{
    padding: 120px 0;
}

.donation-section.fix{
    overflow: hidden;
}

.donation-section a{
    color: var(--header);
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.donation-section p{
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.donation-section ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.donation-section h2,
.donation-section h4{
    margin: 0;
    padding: 0;
    color: var(--header);
    font-weight: 400;
    transition: all 0.4s ease-in-out;
}

.donation-section h2{
    font-size: 48px;
    line-height: 112%;
}

.donation-section h4{
    font-size: 24px;
    line-height: 141%;
}

.donation-section .section-title{
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}

.donation-section .section-title .sub-title{
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px 10px 25px;
    border: 1px solid var(--header);
    border-radius: 100px;
    color: var(--text-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.donation-section .section-title .sub-title::before{
    position: absolute;
    top: 15px;
    left: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-2);
    content: "";
}

.donation-section .section-title-area{
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.donation-section .section-title-area .section-title{
    margin-bottom: 0;
}

.donation-section .theme-btn{
    flex: 0 0 auto;
    line-height: normal;
}

.donation-section .donationContainer{
    margin-bottom: 20px;
}

.donation-section .donationProjectItem{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding: 30px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.donation-section .donationProjectItem .donationImage{
    position: relative;
    flex: 0 0 auto;
}

.change-donationImage{
    position: relative;
    width: 250px;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("/view-resources/Views/Orphan/images/black.jpg");
    border-radius: 15px;
    overflow: hidden;
}

.change-donationImage::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/view-resources/Views/Orphan/images/colorful.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.change-donationImage.image-active::after{
    opacity: 1;
}

.donation-section .donationProjectItem .donationContent{
    min-width: 0;
    flex: 1 1 auto;
}

.donation-section .donationProjectItem .donationContent h4{
    margin-bottom: 10px;
}

.donation-section .donationProjectItem .donationContent h4 a{
    display: inline;
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0 2px;
}

.donation-section .donationProjectItem .donationContent h4 a:hover{
    color: var(--theme-2);
    background-image: linear-gradient(180deg,
            var(--theme-2) 0%,
            var(--theme-2) 100%);
    background-size: 100% 2px;
}

.donation-section .donationProjectItem .donationContent p{
    max-width: 295px;
    margin-bottom: 20px;
}

.donation-section .donationProjectItem .pro-items{
    width: 100%;
}

.donation-section .donationProjectItem .pro-items:not(:last-child){
    margin-bottom: 20px;
}

.donation-section .donationProjectItem .pro-items .progress{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 8px;
    overflow: visible;
    border-radius: 20px;
    background: rgba(11, 78, 61, 0.2);
}

.donation-section .donationProjectItem .pro-items .progress-value{
    position: relative;
    width: 0;
    height: 8px;
    border-radius: 20px;
    background: var(--theme-2);
    transform: scaleX(0);
    transform-origin: left center;
    animation: donation-progress-reveal 1s ease forwards;
}

.donation-section .donationProjectItem .pro-items .progress-value::before{
    position: absolute;
    top: -6px;
    right: 0;
    left: auto;
    z-index: 2;
    box-sizing: border-box;
    width: 53px;
    height: 20px;
    padding: 5px 14px;
    background-color: var(--theme-2);
    color: var(--white);
    content: attr(aria-valuenow) "%";
    font-size: 12px;
    line-height: 12px;
    white-space: nowrap;
}

.donation-section .donationProjectItem .pro-items.style-2 .progress{
    background-color: rgba(255, 193, 7, 0.2);
}

.donation-section .donationProjectItem .pro-items.style-2 .progress-value,
.donation-section .donationProjectItem .pro-items.style-2 .progress-value::before{
    background-color: var(--theme);
}

.donation-section .donationProjectItem .donate-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.donation-section .donationProjectItem .donate-list li{
    font-size: 14px;
    font-weight: 400;
}

.donation-section .donationProjectItem .donate-list li span{
    color: var(--header);
}

.donation-section .donationProjectItem .donationContent .theme-btn{
    padding: 12px 30px;
}

.donation-section .donationProjectItem .theme-btn.style-2{
    background-color: var(--theme);
    color: var(--theme-2);
}

.donation-section .donationProjectItem .theme-btn.style-2::before{
    background-color: var(--theme-2);
}

.donation-section .donationProjectItem .theme-btn.style-2:hover{
    color: var(--white);
}

@media (max-width: 1399px) {
    .donation-section h2{
        font-size: 50px;
    }

    .donation-section .donationProjectItem{
        flex-wrap: wrap;
    }

    .donation-section .donationProjectItem .donationImage{
        flex-basis: 100%;
    }
}

@media (max-width: 1199px) {
    .donation-section.section-padding{
        padding: 100px 0;
    }

    .donation-section h2{
        font-size: 40px;
    }

    .donation-section h4{
        font-size: 20px;
    }

    .donation-section .donationProjectItem .donate-list{
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .donation-section.section-padding{
        padding: 80px 0;
    }

    .donation-section h2{
        font-size: 40px;
    }

    .donation-section .section-title-area{
        flex-wrap: wrap;
        gap: 30px;
    }

    .donation-section .donationProjectItem{
        flex-wrap: nowrap;
    }

    .donation-section .donationProjectItem .donationImage{
        flex-basis: auto;
    }
}

@media (max-width: 767px) {
    .donation-section h2{
        font-size: 35px;
    }

    .donation-section .section-title,
.donation-section .section-title-area{
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .donation-section h2{
        font-size: 30px;
    }

    .donation-section .donationProjectItem{
        flex-wrap: wrap;
        padding: 20px;
    }

    .donation-section .donationProjectItem .donationImage{
        flex-basis: 100%;
    }
}

@media (max-width: 470px) {
    .donation-section h2{
        font-size: 25px;
    }
}

.fix{
    overflow: hidden;
}

.section-padding{
    padding: 120px 0;
}

@media (max-width: 1199px) {
    .section-padding{
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-padding{
        padding: 80px 0;
    }
}

.section-title{
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}

.section-title.style-2 h2{
    font-size: 64px;
}

@media (max-width: 1399px) {
    .section-title.style-2 h2{
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .section-title.style-2 h2{
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .section-title.style-2 h2{
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .section-title{
        margin-bottom: 0;
    }

    .section-title.style-2 h2{
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .section-title.style-2 h2{
        font-size: 30px;
    }
}

@media (max-width: 470px) {
    .section-title.style-2 h2{
        font-size: 25px;
    }
}

.promotion-section{
    position: relative;
}

.promotionContainer{
    padding-bottom: 195px;
    text-align: center;
}

.promotionContainer .promotionContent .promotionVideoBtn{
    position: relative;
    margin-bottom: 30px;
}

.promotionContainer .promotionContent .promotionVideoBtn img{
    animation: cir36 10s linear infinite;
}

.promotionContainer .promotionContent .promotionVideoBtn .video-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    color: var(--theme-2);
    background-color: var(--theme);
    font-size: 20px;
    text-align: center;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease-in-out;
}

.promotionContainer .promotionContent .promotionVideoBtn .video-btn:hover{
    color: var(--theme);
    background-color: var(--theme-2);
}

.promotionContainer .promotionContent .theme-btn{
    margin-top: 40px;
    color: var(--theme-2);
    background-color: var(--theme);
}

.promotionContainer .promotionContent .theme-btn::before{
    background-color: var(--white);
}

.promotionContainer .promotionContent .theme-btn:hover{
    color: var(--theme-2);
}

.promotion-section .left-shape{
    position: absolute;
    top: 0;
    left: 0;
}

.promotion-section .love-shape{
    position: absolute;
    bottom: 100px;
    left: 294px;
}

.promotion-section .top-shape{
    position: absolute;
    top: 85px;
    right: 0;
}

@media (max-width: 1399px) {
    .promotionContainer{
        padding-bottom: 150px;
    }

    .promotion-section .left-shape,
.promotion-section .love-shape,
.promotion-section .top-shape{
        display: none;
    }
}

.float-bob-y{
    animation-name: float-bob-y;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

.float-bob-x{
    animation-name: float-bob-x;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

.wow{
    visibility: visible;
}

.fadeInUp{
    animation-name: fadeInUp;
}

.wow.fadeInUp{
    animation-duration: 0.9s;
    animation-fill-mode: both;
}

.wow[data-wow-delay=".3s"]{
    animation-delay: 0.3s;
}

.video-popup{
    cursor: pointer;
}

#middleBannerVideo .modal-content{
    overflow: hidden;
    border-radius: 12px;
}

#middleBannerVideo iframe{
    width: 100%;
    height: 100%;
    border: 0;
}

#middleBannerVideo .video-close{
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 50%;
    opacity: 1;
}

.childdonation-section{
    --causes-blue: #0091c8;
    --causes-dark: #262626;
    --causes-text: #777777;
    --causes-sidebar-width: 420px;
    --causes-section-height: 720px;
    --causes-container-gutter: 12px;
    --causes-card-height: 380px;
    --causes-media-height: 240px;
    position: relative;
    width: 100%;
    height: var(--causes-section-height);
    min-height: var(--causes-section-height);
    overflow: hidden;
}

.childdonation-section::after{
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    pointer-events: none;
    background: rgba(255, 255, 255, 0.02);
}

.childdonation-section>.container{
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
    height: 100%;
    min-height: 100%;
    margin: 0 auto;
    padding-right: var(--causes-container-gutter);
    padding-left: var(--causes-container-gutter);
    overflow: hidden;
}

.causes-side-panel{
    position: absolute;
    z-index: 5;
    top: 60px;
    bottom: 20px;
    left: var(--causes-container-gutter);
    width: var(--causes-sidebar-width);
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    background: rgba(245, 245, 244, 0.9);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.causes-side-content{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 28px 32px 82px;
}

.causes-eyebrow{
    width: 100%;
    max-width: 340px;
    margin: 0 0 0 auto;
    overflow: hidden;
    text-align: right;
}

.causes-eyebrow span{
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding-bottom: 9px;
    color: var(--causes-blue);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
    overflow-wrap: anywhere;
    white-space: normal;
}

.causes-eyebrow span::after{
    position: absolute;
    right: 0;
    bottom: 2px;
    width: min(80px, 42%);
    height: 2px;
    content: "";
    border-radius: 20px;
    background: var(--causes-blue);
    transform: rotate(-2deg);
}

.causes-main-title{
    width: 100%;
    max-width: 340px;
    margin: 14px 0 0 auto;
    color: var(--causes-dark);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0.1px;
    text-align: right;
}

.all-categories-button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 340px;
    height: 44px;
    margin: 14px 0 0 auto;
    padding: 0 22px;
    color: var(--causes-blue);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    border: 2px solid var(--causes-blue);
    border-radius: 40px;
    transition: color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.all-categories-button:hover,
.all-categories-button.is-active,
.all-categories-button[aria-pressed="true"]{
    color: #ffffff;
    background: var(--causes-blue);
    transform: translateY(-1px);
}

.button-long-arrow{
    position: relative;
    display: block;
    width: 50px;
    height: 10px;
}

.button-long-arrow::before{
    position: absolute;
    top: 4px;
    right: 0;
    width: 49px;
    height: 1px;
    content: "";
    background: currentColor;
}

.button-long-arrow::after{
    position: absolute;
    top: 1px;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    border-bottom: 1px solid currentColor;
    border-left: 1px solid currentColor;
    transform: rotate(45deg);
}

.country-category-nav{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    width: 100%;
    max-width: 340px;
    margin: 8px 0 0 auto;
}

.country-group{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    height: 38px;
    margin: 0;
    padding: 0 18px;
    overflow: hidden;
    color: rgba(147, 141, 137, 0.65);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-align: right;
    cursor: pointer;
    appearance: none;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 40px;
    transition: color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.country-group-label{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.country-group-arrow{
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.country-group:hover,
.country-group.is-active,
.country-group[aria-pressed="true"]{
    color: var(--causes-blue);
    border-color: var(--causes-blue);
    transform: translateX(-3px);
}

.country-group:focus-visible{
    outline: 3px solid rgba(0, 145, 200, 0.24);
    outline-offset: 3px;
}

.causes-slider-controls{
    position: absolute;
    right: 32px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.causes-slider-button{
    display: grid;
    width: 50px;
    height: 50px;
    padding: 0;
    color: #292929;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(41, 41, 41, 0.24);
    border-radius: 50%;
    place-items: center;
    transition: color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.causes-slider-button:hover{
    color: #ffffff;
    background: var(--causes-blue);
    border-color: var(--causes-blue);
    transform: translateY(-2px);
}

.causes-slider-button:focus-visible{
    outline: 3px solid rgba(255, 77, 37, 0.28);
    outline-offset: 3px;
}

.causes-viewport{
    position: absolute;
    z-index: 2;
    top: 60px;
    right: var(--causes-container-gutter);
    bottom: 20px;
    left: calc(var(--causes-container-gutter) + var(--causes-sidebar-width));
    overflow: hidden;
    padding-left: 24px;
}

.causes-swiper,
.children-swiper{
    width: 100%;
    height: 100%;
    overflow: visible;
}

.causes-swiper .swiper-wrapper{
    align-items: flex-start;
}

.causes-swiper .swiper-slide{
    height: auto;
    min-width: 0;
}

.causes-swiper .cause-item,
.causes-swiper .cause-media,
.causes-swiper .cause-card{
    min-width: 0;
}

.cause-item,
.child-card{
    position: relative;
    width: 100%;
    height: calc(var(--causes-media-height) + var(--causes-card-height));
}

.cause-media,
.child-media{
    position: relative;
    display: block;
    width: 100%;
    height: var(--causes-media-height);
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #d3d4d4;
    isolation: isolate;
}

.child-media img{
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.child-media::after{
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0;
    background-image: url("/view-resources/Views/Orphan/images/child2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.08);
    transition: opacity 0.45s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.child-card:has(.donate-child-button:hover) .child-media::after,
.child-card:has(.donate-child-button:focus-visible) .child-media::after{
    opacity: 1;
    transform: scale(1);
}

.child-card:has(.donate-child-button:hover) .child-media img,
.child-card:has(.donate-child-button:focus-visible) .child-media img{
    transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {

    .child-media img,
.child-media::after,
.donate-child-button,
.causes-slider-button,
.all-categories-button,
.country-group{
        transition: none;
    }
}

.cause-card{
    position: relative;
    width: 100%;
    height: var(--causes-card-height);
    overflow: visible;
    border-radius: 0 0 18px 18px;
    background-color: #fafafa;
    background-image: radial-gradient(circle at 20% 25%, rgba(70, 70, 70, 0.055) 0 0.7px, transparent 0.9px),
        radial-gradient(circle at 72% 65%, rgba(70, 70, 70, 0.045) 0 0.7px, transparent 1px);
    background-position: 0 0, 3px 2px;
    background-size: 7px 7px, 9px 9px;
    box-shadow: 0 3px 0 rgba(76, 76, 76, 0.28),
        0 8px 18px rgba(31, 31, 31, 0.07);
}

.fund-summary{
    position: absolute;
    z-index: 6;
    top: -40px;
    right: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    height: 80px;
    padding: 13px 20px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 7px 18px rgba(41, 41, 41, 0.07);
}

.fund-icon{
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--causes-blue);
    font-size: 21px;
    border-radius: 50%;
    background: #f7f4f2;
    place-items: center;
}

.fund-icon i{
    -webkit-text-stroke: 0.7px currentColor;
}

.fund-details{
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 9px;
    overflow: hidden;
    white-space: nowrap;
}

.fund-details>strong{
    display: block;
    overflow: hidden;
    margin-bottom: 2px;
    color: #282828;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fund-numbers{
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 4px;
    line-height: 1.3;
}

.fund-current{
    flex: 0 0 auto;
    color: var(--causes-blue);
    font-size: 17px;
    font-weight: 800;
}

.fund-total{
    min-width: 0;
    overflow: hidden;
    color: #b7b3b0;
    font-size: 16px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vertical-progress{
    position: relative;
    flex: 0 0 5px;
    width: 5px;
    height: 42px;
    margin-right: 10px;
    margin-left: 10px;
    overflow: hidden;
    background: #e7e4e1;
}

.vertical-progress span{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: var(--progress-value);
    background: var(--causes-blue);
}

.fund-percent{
    flex: 0 0 auto;
    color: var(--causes-blue);
    font-size: 17px;
    font-weight: 800;
}

.cause-card-content{
    height: 300px;
    padding: 62px 20px 16px;
}

.cause-category{
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 8px;
    color: var(--causes-blue);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid var(--causes-blue);
}

.cause-card-content h3{
    display: -webkit-box;
    min-height: 32px;
    margin: 0;
    overflow: hidden;
    color: #282828;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.37;
    letter-spacing: -0.2px;
    -webkit-box-orient: vertical;
}

.cause-card-content p{
    display: -webkit-box;
    min-height: 51px;
    margin: 8px 0 0;
    overflow: hidden;
    color: var(--causes-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    -webkit-box-orient: vertical;
}

.select-child-button.donate-child-button,
.donate-child-button{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 16px;
    padding: 11px 20px;
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    border: 2px solid var(--causes-blue);
    border-radius: 12px;
    background: var(--causes-blue);
    box-shadow: 0 8px 18px rgba(0, 145, 200, 0.2);
    transition: color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.donate-child-button:hover,
.donate-child-button:focus-visible{
    color: var(--causes-blue);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(0, 145, 200, 0.25);
    transform: translateY(-2px);
}

.donate-child-button:focus-visible{
    outline: 3px solid rgba(0, 145, 200, 0.25);
    outline-offset: 3px;
}

.cause-card-footer{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    height: 80px;
    overflow: hidden;
    border-top: 1px solid rgba(219, 216, 213, 0.72);
    border-radius: 0 0 18px 18px;
}

.cause-meta{
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 12px 12px 12px 20px;
}

.cause-meta+.cause-meta{
    border-left: 1px solid rgba(219, 216, 213, 0.72);
}

.cause-meta-icon{
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-right: 9px;
    color: var(--causes-blue);
    font-size: 21px;
    border: 1px dashed #d3cfcc;
    border-radius: 50%;
    place-items: center;
}

.cause-meta-icon i{
    -webkit-text-stroke: 0.4px currentColor;
}

.cause-meta>div:last-child{
    min-width: 0;
}

.cause-meta strong,
.cause-meta span{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cause-meta strong{
    color: #303030;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.cause-meta span{
    margin-top: 2px;
    color: #777777;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
}

.children-empty-state{
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 30px;
    color: #ffffff;
    text-align: center;
}

.children-empty-state[hidden]{
    display: none;
}

.children-empty-state i{
    margin-bottom: 12px;
    font-size: 34px;
}

.children-empty-state strong,
.children-empty-state span{
    display: block;
}

@media (min-width: 1600px) {
    .causes-swiper .swiper-slide{
        max-width: 370px;
    }
}

@media (max-width: 1399.98px) {
    .childdonation-section{
        --causes-sidebar-width: 380px;
    }

    .childdonation-section>.container{
        max-width: 1140px;
    }

    .causes-side-content{
        padding-right: 28px;
        padding-left: 28px;
    }

    .causes-slider-controls{
        right: 28px;
    }
}

@media (max-width: 1199.98px) {
    .childdonation-section{
        --causes-sidebar-width: 330px;
    }

    .childdonation-section>.container{
        max-width: 960px;
    }

    .causes-side-content{
        padding-right: 22px;
        padding-left: 22px;
    }

    .causes-main-title{
        font-size: 31px;
    }

    .causes-eyebrow span{
        font-size: 22px;
    }

    .country-group{
        font-size: 17px;
    }

    .causes-slider-controls{
        right: 22px;
    }
}

@media (max-width: 991.98px) {
    .childdonation-section{
        height: auto;
        min-height: 0;
        padding: 40px 0;
    }

    .childdonation-section>.container{
        max-width: 720px;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .causes-side-panel{
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        padding: 0;
        overflow: visible;
        border-radius: 20px;
    }

    .causes-side-content{
        height: auto;
        padding: 28px 24px;
    }

    .causes-eyebrow,
.causes-main-title{
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .causes-main-title{
        margin-top: 14px;
        font-size: clamp(30px, 6vw, 36px);
    }

    .all-categories-button{
        margin-right: auto;
        margin-left: auto;
    }

    .country-category-nav{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
    }

    .country-group{
        justify-content: center;
        padding-right: 36px;
        padding-left: 14px;
        text-align: center;
    }

    .country-group:hover,
.country-group.is-active,
.country-group[aria-pressed="true"]{
        transform: translateY(-2px);
    }

    .causes-slider-controls{
        position: static;
        justify-content: center;
        margin-top: 22px;
    }

    .causes-viewport{
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        height: calc(var(--causes-media-height) + var(--causes-card-height));
        margin-top: 28px;
        padding-left: 0;
    }
}

@media (max-width: 767.98px) {
    .childdonation-section>.container{
        max-width: 540px;
    }

    .cause-card-content h3{
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .childdonation-section{
        --causes-container-gutter: 15px;
        --causes-media-height: 220px;
        --causes-card-height: 390px;
        padding: 30px 0;
    }

    .childdonation-section>.container{
        max-width: 100%;
    }

    .causes-side-content{
        padding: 24px 18px;
    }

    .causes-eyebrow span{
        font-size: 21px;
    }

    .causes-main-title{
        font-size: 30px;
    }

    .all-categories-button{
        height: 46px;
        margin-top: 16px;
        font-size: 18px;
    }

    .fund-summary{
        right: 14px;
        left: 14px;
        padding-right: 13px;
        padding-left: 13px;
    }

    .fund-icon{
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 19px;
    }

    .fund-details{
        margin-left: 7px;
    }

    .fund-details>strong{
        font-size: 14px;
    }

    .fund-current,
.fund-percent{
        font-size: 15px;
    }

    .fund-total{
        font-size: 13px;
    }

    .vertical-progress{
        height: 40px;
        margin-right: 7px;
        margin-left: 7px;
    }

    .cause-card-content{
        height: 310px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .cause-category{
        font-size: 16px;
    }

    .cause-card-content h3{
        font-size: 21px;
    }

    .cause-card-content p{
        font-size: 15px;
    }

    .cause-meta{
        padding-right: 8px;
        padding-left: 12px;
    }

    .cause-meta-icon{
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        margin-right: 7px;
        font-size: 17px;
    }

    .cause-meta strong{
        font-size: 14px;
    }

    .cause-meta span{
        font-size: 12px;
    }
}

@media (max-width: 390px) {
    .fund-summary{
        right: 10px;
        left: 10px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .fund-icon{
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .fund-details>strong{
        font-size: 13px;
    }

    .fund-current,
.fund-percent{
        font-size: 14px;
    }

    .fund-total{
        font-size: 12px;
    }

    .vertical-progress{
        margin-right: 5px;
        margin-left: 5px;
    }

    .cause-meta{
        padding-left: 9px;
    }

    .cause-meta-icon{
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        margin-right: 5px;
        font-size: 15px;
    }

    .cause-meta strong{
        font-size: 13px;
    }

    .cause-meta span{
        font-size: 11px;
    }
}

.project-section h2,
.project-section h3,
.project-section h5{
    margin: 0;
    padding: 0;
    color: var(--header);
    font-weight: 400;
}

.project-section h2{
    font-size: 48px;
    line-height: 1.12;
}

.project-section a{
    color: inherit;
    text-decoration: none;
    outline: none;
}

.project-section a:focus-visible{
    outline: 3px solid rgba(0, 145, 200, 0.32);
    outline-offset: 4px;
}

.project-section .section-title .sub-title{
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px 10px 25px;
    color: var(--text-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    border: 1px solid var(--header);
    border-radius: 100px;
}

.project-section .section-title .sub-title::before{
    position: absolute;
    top: 50%;
    left: 13px;
    width: 6px;
    height: 6px;
    content: "";
    background-color: var(--text-2);
    border-radius: 50%;
    transform: translateY(-50%);
}

.project-slider .swiper-wrapper,
.project-slider-2 .swiper-wrapper,
.slide-transtion{
    transition-timing-function: linear !important;
}

.project-slider .brand-slide-element,
.project-slider-2 .brand-slide-element{
    display: block;
    width: clamp(300px, 40vw, 580px);
    max-width: calc(100vw - 30px);
    height: auto;
}

.project-card-item{
    width: 100%;
    height: 100%;
    margin-top: 30px;
}

.project-card-item .project-image{
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    background-color: #f2f2f2;
    border-radius: 20px;
    isolation: isolate;
}

.project-card-item .project-image>img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card-item:hover .project-image>img,
.project-card-item:focus-within .project-image>img{
    transform: scale(1.07);
}

.project-content-blue{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 155px;
    margin: 0;
    padding: 54px 32px 26px;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    background: transparent;
    transform: translateY(24px);
    transition: opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s ease;
}

.project-card-item:hover .project-content-blue,
.project-card-item:focus-within .project-content-blue{
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.project-content-blue::before,
.project-content-blue::after{
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    clip-path: polygon(0 24%,
            22% 13%,
            46% 19%,
            70% 7%,
            100% 23%,
            100% 100%,
            0 100%);
}

.project-content-blue::before{
    z-index: -2;
    background: linear-gradient(120deg, #0756c9 0%, #087ced 48%, #18a6ed 100%);
}

.project-content-blue::after{
    z-index: -1;
    background: radial-gradient(circle at 82% 58%,
            transparent 0 34px,
            rgba(255, 255, 255, 0.28) 35px 37px,
            transparent 38px),
        radial-gradient(circle at 92% 75%,
            rgba(255, 255, 255, 0.16) 0 5px,
            transparent 6px),
        repeating-linear-gradient(-45deg,
            transparent 0 12px,
            rgba(255, 255, 255, 0.09) 12px 14px);
    transition: transform 0.5s ease;
}

.project-card-item:hover .project-content-blue::after,
.project-card-item:focus-within .project-content-blue::after{
    transform: translateX(12px);
}

.project-content-blue .content{
    position: relative;
    z-index: 3;
    flex: 1 1 auto;
    min-width: 0;
}

.project-content-blue h3{
    margin: 0 0 5px;
    font-size: clamp(20px, 1.7vw, 24px);
    line-height: 1.2;
}

.project-content-blue h3 a{
    color: #ffffff;
}

.project-content-blue h3 a:hover{
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.project-content-blue h5{
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.project-content-blue .arrow-icon{
    position: relative;
    z-index: 3;
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #0756c9;
    line-height: 1;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    place-items: center;
    transition: color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.project-content-blue .arrow-icon i{
    display: block;
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1;
    transform: rotate(-45deg);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.project-content-blue .arrow-icon:hover{
    color: #ffffff;
    background-color: #0756c9;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.project-content-blue .arrow-icon:hover i{
    transform: rotate(0deg);
}

@media (max-width: 1199px) {
    .project-section h2{
        font-size: 40px;
    }
}

@media (max-width: 991px) {

    .project-slider .brand-slide-element,
.project-slider-2 .brand-slide-element{
        width: clamp(300px, 65vw, 500px);
    }
}

@media (max-width: 767px) {
    .project-section h2{
        font-size: 35px;
    }

    .project-slider .brand-slide-element,
.project-slider-2 .brand-slide-element{
        width: calc(100vw - 30px);
    }

    .project-card-item .project-image{
        height: 390px;
    }

    .project-content-blue{
        min-height: 140px;
        padding: 48px 22px 22px;
    }

    .project-content-blue h3{
        font-size: 20px;
    }

    .project-content-blue h5{
        font-size: 14px;
    }

    .project-content-blue .arrow-icon{
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .project-content-blue .arrow-icon i{
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .project-section h2{
        font-size: 30px;
    }
}

@media (max-width: 470px) {
    .project-section h2{
        font-size: 25px;
    }
}

@media (max-width: 420px) {
    .project-content-blue{
        padding-right: 18px;
        padding-left: 18px;
    }

    .project-content-blue h3{
        font-size: 18px;
    }
}

@media (hover: none) {
    .project-content-blue{
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .project-card-item .project-image>img,
.project-content-blue,
.project-content-blue::after,
.project-content-blue .arrow-icon,
.project-content-blue .arrow-icon i{
        transition: none;
    }
}

.section-title .sub-title{
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px 10px 25px;
    border: 1px solid var(--header);
    border-radius: 100px;
    color: var(--text-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.section-title .sub-title::before{
    position: absolute;
    top: 15px;
    left: 13px;
    width: 6px;
    height: 6px;
    border-radius: 30px;
    background-color: var(--text-2);
    content: "";
}

.tdvnumbers-section-2{
    position: relative;
    z-index: 9;
}

.tdvnumbersContainer{
    position: relative;
    z-index: 9;
    margin-top: 40px;
}

.tdvnumbersContainer p{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 1399px) {
    .tdvnumbersContainer{
        margin-top: 30px;
    }
}

.tdvnumbersContainer .map-shape{
    position: absolute;
    top: -75%;
    right: 0;
    left: 0;
    z-index: -1;
}

@media (max-width: 1399px) {
    .tdvnumbersContainer .map-shape{
        display: none;
    }
}

.tdvnumbersContainer .tdvnumbersWarapper{
    margin-top: 15px;
}

@media (max-width: 1399px) {
    .tdvnumbersContainer .tdvnumbersWarapper{
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .tdvnumbersContainer .tdvnumbersWarapper{
        flex-wrap: wrap;
        gap: 30px;
    }
}

.tdvnumbersContainer .tdvnumbersWarapper .counter-item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

@media (max-width: 1399px) {
    .tdvnumbersContainer .tdvnumbersWarapper .counter-item{
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .tdvnumbersContainer .tdvnumbersWarapper .counter-item{
        flex-wrap: wrap;
        gap: 30px;
    }
}

.tdvnumbersContainer .tdvnumbersWarapper .counter-item .counter-content h2{
    margin-bottom: 10px;
    font-size: 64px;
}

@media (max-width: 1399px) {
    .tdvnumbersContainer .tdvnumbersWarapper .counter-item .counter-content h2{
        font-size: 40px;
    }
}

.tdvnumbersContainer .tdvnumbersWarapper .counter-item .counter-content.style-2{
    padding-left: 60px;
    border-left: 1px solid #c9c9c9;
}

@media (max-width: 1399px) {
    .tdvnumbersContainer .tdvnumbersWarapper .counter-item .counter-content.style-2{
        padding-left: 0;
        border-left: none;
    }
}

.faq-section.section-padding{
    padding: 120px 0;
}

.faq-section.fix{
    overflow: hidden;
}

.faq-section .section-title{
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}

.faq-section .section-title .sub-title{
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px 10px 25px;
    border: 1px solid var(--header);
    border-radius: 100px;
    color: var(--text-2);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.faq-section .section-title .sub-title::before{
    position: absolute;
    top: 15px;
    left: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-2);
    content: "";
}

.faq-section .section-title h2{
    margin: 0;
    color: var(--header);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.12;
}

.faq-section .faq-wrapper .faq-items{
    position: relative;
    z-index: 9;
}

.faq-section .faq-items .accordion-item{
    margin-bottom: 18px;
    overflow: hidden;
    border: none;
    border-radius: 5px;
    background-color: #e3f2fd;
}

.faq-section .faq-items .accordion-item:last-child{
    margin-bottom: 0;
}

.faq-section .faq-items .accordion-item h2 button{
    padding: 29px 30px;
    border-radius: 5px !important;
    box-shadow: none;
    color: var(--header);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
}

.faq-section .faq-items .accordion-button{
    background-color: transparent;
    color: var(--header);
}

.faq-section .faq-items .accordion-button:focus{
    border-color: transparent;
    box-shadow: none;
}

.faq-section .faq-items .accordion-button::after{
    content: "";
    width: 10px;
    height: 10px;
    margin-left: auto;
    flex-shrink: 0;
    border-right: 2px solid #122f2a;
    border-bottom: 2px solid #122f2a;
    background-image: none !important;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-section .faq-items .accordion-button:not(.collapsed)::after{
    content: "";
    background-image: none !important;
    border-color: #0091c8;
    transform: rotate(-135deg);
}

.faq-section .faq-items .accordion-button:not(.collapsed){
    border-radius: 5px !important;
    background-color: var(--theme-2);
    color: #fff;
    box-shadow: none;
}

.faq-section .faq-items .accordion-body{
    padding: 20px 40px;
    background-color: var(--white);
}

.faq-section .faq-items .accordion-body p{
    margin: 0;
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

.faq-section .faq-content{
    margin-left: 40px;
}

.faq-section .faq-content .text{
    margin-top: 20px;
    margin-bottom: 30px;
    color: var(--text);
    font-size: 16px;
    line-height: 26px;
}

@media (max-width: 1399px) {
    .faq-section .faq-content{
        margin-left: 0;
    }
}

@media (max-width: 1199px) {
    .faq-section.section-padding{
        padding: 100px 0;
    }

    .faq-section .section-title h2{
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .faq-section.section-padding{
        padding: 80px 0;
    }

    .faq-section .section-title h2{
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .faq-section .section-title{
        margin-bottom: 0;
    }

    .faq-section .section-title h2{
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .faq-section .section-title h2{
        font-size: 30px;
    }

    .faq-section .faq-items .accordion-item h2 button{
        padding: 22px 20px;
        font-size: 16px;
        line-height: 1.6;
    }

    .faq-section .faq-items .accordion-body p{
        width: 100%;
        font-size: 14px;
        line-height: 28px;
    }
}

@media (max-width: 470px) {
    .faq-section .section-title h2{
        font-size: 25px;
    }
}

.header-top-section-2,
.header-1,
.header-top-section-2 *,
.header-1 *{
    box-sizing: border-box;
}

.header-top-section-2 ul,
.header-1 ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-top-section-2{
    position: relative;
    background: var(--theme-2);
}

.header-top-section-2 .container-fluid,
.header-1 .container-fluid{
    width: 100%;
    padding-inline: clamp(20px, 3vw, 120px);
}

.header-top-wrapper-2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 60px;
    padding-block: 9px;
}

.header-top-wrapper-2 .list-icon{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px clamp(20px, 3vw, 48px);
}

.header-top-wrapper-2 .list-icon li{
    color: var(--white);
    font-size: 14px;
    line-height: 1.4;
}

.header-top-wrapper-2 .list-icon i{
    margin-right: 8px;
}

.header-top-wrapper-2 a{
    color: var(--white);
}

.header-top-wrapper-2 .header-language-flags{
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.header-top-wrapper-2 .language-flag{
    display: grid;
    width: 38px;
    height: 38px;
    padding: 6px;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid var(--theme);
    border-radius: 50%;
    place-items: center;
    transition: background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.header-top-wrapper-2 .language-flag img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.header-top-wrapper-2 .language-flag:hover{
    background-color: rgba(255, 255, 255, 0.16);
    border-color: var(--white);
    transform: translateY(-1px);
}

.header-top-wrapper-2 .language-flag.active,
.header-top-wrapper-2 .language-flag[aria-current="page"]{
    background-color: var(--white);
    border-color: var(--white);
}

.header-top-wrapper-2 .language-flag:focus-visible{
    outline: 3px solid rgba(255, 255, 255, 0.35);
    outline-offset: 3px;
}

.header-top-wrapper-2 .language-switch-area{
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.header-top-wrapper-2 .language-switch-area .language-icon{
    display: grid;
    width: 38px;
    height: 38px;
    padding: 6px;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid var(--theme);
    border-radius: 50%;
    place-items: center;
    transition: background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.header-top-wrapper-2 .language-switch-area a:hover .language-icon{
    background-color: rgba(255, 255, 255, 0.16);
    border-color: var(--white);
    transform: translateY(-1px);
}

.header-top-wrapper-2 .language-switch-area .language-icon-current{
    background-color: var(--white);
    border-color: var(--white);
}

.header-1{
    position: relative;
    z-index: 999;
    background: var(--white);
}

.header-1.header-2::before{
    position: absolute;
    inset: 0 auto 0 0;
    z-index: -1;
    width: clamp(300px, 24vw, 390px);
    content: "";
    background: var(--theme-3);
    clip-path: polygon(0 0, 79% 0, 100% 100%, 0 100%);
}

.header-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2vw, 32px);
    min-height: 84px;
    padding-block: 8px;
}

.header-main .header-left,
.header-main .logo{
    flex: 0 1 auto;
    min-width: 0;
}

.header-main .header-logo{
    display: block;
    width: clamp(180px, 15vw, 240px);
    max-width: 100%;
}

.header-main .header-logo img{
    display: block;
    width: 100% !important;
    max-width: 100%;
    height: auto;
}

.mean__menu-wrapper{
    flex: 1 1 auto;
    min-width: 0;
}

.header-main .main-menu>nav>ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.4vw, 48px);
}

.header-main .main-menu li{
    flex: 0 0 auto;
}

.header-main .main-menu li a{
    position: relative;
    display: block;
    padding-block: 20px;
    color: var(--theme-2);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
}

.header-main .main-menu li a::after{
    position: absolute;
    right: 0;
    bottom: 13px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--theme);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.header-main .main-menu li a:hover::after,
.header-main .main-menu li a:focus-visible::after,
.header-main .main-menu li a.active::after{
    transform: scaleX(1);
}

.header-main .main-menu li a.active::after{
    background: var(--tdv-primary, var(--theme));
}

.header-main .header-right{
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.header-main .header-button .theme-btn::before{
    background: var(--white);
}

.header-main .header-button .theme-btn:hover{
    color: var(--header);
}

.header__hamburger{
    display: none;
}

.header-main .sidebar__toggle{
    display: grid;
    width: 44px;
    height: 44px;
    color: var(--theme-2);
    font-size: 22px;
    cursor: pointer;
    border: 1px solid rgba(22, 52, 128, 0.25);
    border-radius: 50%;
    place-items: center;
}

@media (max-width: 1600px) {

    .header-top-section-2 .container-fluid,
.header-1 .container-fluid{
        padding-inline: 50px;
    }
}

@media (max-width: 1399px) {
    /* Keep the top bar itself visible on laptop widths — it carries the real
       language/currency switcher, not just decorative content. Only the
       address/phone/email contact list (purely decorative) is hidden to save space. */
    .header-top-wrapper-2 .list-icon{
        display: none;
    }

    .header-top-wrapper-2{
        justify-content: flex-end;
    }

    .header-1.header-2::before,
.header-main .header-button{
        display: none;
    }

    .header-1 .container-fluid{
        padding-inline: 28px;
    }

    .header-main .header-logo{
        width: 200px;
    }

    .header-main .main-menu>nav>ul{
        gap: 22px;
    }

    .header-main .main-menu li a{
        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    .header-1 .container-fluid{
        padding-inline: 20px;
    }

    .header-main{
        min-height: 72px;
        padding-block: 6px;
    }

    .mean__menu-wrapper{
        display: none;
    }

    .header__hamburger{
        display: block;
    }

    .header-main .header-logo{
        width: 185px;
    }
}

@media (max-width: 575px) {
    .header-1 .container-fluid{
        padding-inline: 15px;
    }

    .header-main{
        min-height: 66px;
        gap: 12px;
    }

    .header-main .header-logo{
        width: clamp(145px, 46vw, 175px);
    }

    .header-main .sidebar__toggle{
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767px) {
    .bannerSlider-container .hero-content .hero-button{
        gap: 14px;
    }

    .bannerSlider-container .hero-content .hero-button .theme-btn{
        width: min(100%, 320px);
    }


    .donation-section .donationProjectItem{
        align-items: stretch;
        flex-direction: column;
    }

    .donation-section .donationProjectItem .donationImage{
        width: 100%;
    }

    .change-donationImage{
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .promotionContainer{
        padding-bottom: 90px;
    }
}

@media (max-width: 575px) {
    .bannerSlider-container{
        padding-block: 64px;
    }

    .bannerSlider-container .hero-content h6{
        letter-spacing: 2px;
    }

    .bannerSlider-container .hero-content .hero-button{
        flex-direction: column;
    }

    .aboutSection .about-item .about-image .about-image-2,
.aboutSection .about-item .about-image .about-image-3{
        width: 42%;
        max-width: 190px;
    }


    .donation-section .donationProjectItem .donate-list{
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .faq-section .faq-items .accordion-body{
        padding: 18px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
*::before,
*::after{
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.orphan-currency-header{
    position: relative !important;
    z-index: 999 !important;
    overflow: visible !important;
}

.orphan-currency-header>.container-fluid,
.orphan-currency-header .header-top-wrapper-2,
.orphan-currency-header .header-language-flags,
.orphan-currency-header .language-switch-area,
.orphan-currency-header .header-currency-component{
    overflow: visible !important;
}

.orphan-currency-header .header-currency-component{
    position: relative !important;
    z-index: 10001 !important;
    display: flex !important;
    flex: 0 0 38px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

.orphan-currency-header .social-icon{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
    width: auto;
}

.orphan-currency-header .header-language-flags,
.orphan-currency-header .language-switch-area{
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 7px;
    white-space: nowrap;
}

.orphan-currency-header .header-currency-component>*{
    width: auto;
    max-width: none;
    margin: 0;
}

@media (max-width: 767px) {
    .orphan-currency-header .social-icon{
        flex-wrap: nowrap;
        gap: 6px;
    }

    .orphan-currency-header .header-language-flags,
    .orphan-currency-header .language-switch-area{
        gap: 4px;
    }

    .orphan-currency-header .header-currency-component{
        margin-left: 2px;
    }
}

#fastDonateModal .modal-dialog{
    max-width: 90vw !important;
}

#fastDonateModal .modal-content{
    border-radius: 20px;
}

.donateImageModal{
    width: 100%;
    height: 100%;
    min-height: 80vh;
    background-image: url("/view-resources/Views/Orphan/images/child1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.billing-wrapper{
    width: 100%;
    padding: 30px;
}

.billing-switch{
    display: flex;
    align-items: stretch;
    gap: 10px;
    padding: 5px;
    background: #ffffff;
    border: 1px solid #eceef0;
    border-radius: 14px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 0 0 2px rgba(245, 246, 247, 0.8);
}

.billing-option{
    position: relative;
    flex: 1;
    min-height: 42px;
    padding: 10px 16px;
    border: 0;
    border-radius: 10px;
    background: #f1f2f4;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
}

.billing-option:hover{
    background: #e9ebee;
}

.billing-option.active{
    background: linear-gradient(90deg, #0091c8, #66bdde);
    box-shadow: 0 2px 7px rgba(152, 210, 43, 0.25);
}

.billing-option:focus{
    outline: none;
    box-shadow: 0 0 0 3px rgba(179, 239, 73, 0.28);
}

.recommended-badge{
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    padding: 5px 8px;
    border-radius: 20px;
    background: #253600;
    color: #d9ff7b;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

@media (max-width: 480px) {
    .billing-wrapper{
        padding: 0 12px;
    }

    .billing-option{
        font-size: 13px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .recommended-badge{
        position: static;
        display: inline-block;
        margin-left: 5px;
        transform: none;
        vertical-align: middle;
    }
}

.payment-panel{
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: var(--panel-bg);
    box-shadow: 0 24px 70px rgba(27, 39, 72, .12);
}

.payment-section{
    padding: 24px;
    padding-bottom: 0px;
}

.payment-section+.payment-section{
    border-top: 1px solid var(--line);
}

.section-title{
    margin-bottom: 18px;
    font-size: 1rem;
    font-weight: 700;
}

.product-title{
    margin-bottom: 5px;
    font-size: 1.05rem;
    font-weight: 700;
}

.product-meta{
    margin-bottom: 4px;
    color: var(--text-soft);
    font-size: .9rem;
}

.amount-area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border-radius: 18px;
    background: #f8faff;
}

.amount-label{
    color: var(--text-soft);
    font-size: .9rem;
}

.amount-value{
    margin: 0;
    color: var(--primary-dark);
    font-size: clamp(1.7rem, 5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.card-preview-container{
    width: 100%;
    max-width: 420px;
    height: 246px;
    margin: 0 auto 28px;
    perspective: 1200px;
}

.credit-card{
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform .7s cubic-bezier(.2, .75, .25, 1);
}

.credit-card.is-flipped{
    transform: rotateY(180deg);
}

.card-face{
    position: absolute;
    inset: 0;
    overflow: hidden;
    padding: 25px;
    border-radius: var(--card-radius);
    color: #fff;
    backface-visibility: hidden;
    box-shadow: 0 18px 45px rgba(20, 39, 92, .26);
    border-radius: 10px;
}

.card-front{
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, .25), transparent 24%),
        radial-gradient(circle at 12% 95%, rgba(255, 255, 255, .16), transparent 30%),
        linear-gradient(135deg, #173a8f 0%, #2f65de 54%, #142d68 100%);
}

.card-front::before,
.card-front::after{
    position: absolute;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    content: "";
}

.card-front::before{
    top: -90px;
    right: -45px;
}

.card-front::after{
    right: 28px;
    bottom: -125px;
}

.card-back{
    padding: 0;
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #1e2b4a 0%, #35476d 100%);
}

.card-top-row,
.card-bottom-row,
.card-number,
.card-chip{
    position: relative;
    z-index: 1;
}

.card-brand{
    min-width: 70px;
    text-align: right;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: .04em;
}

.card-chip{
    position: relative;
    width: 52px;
    height: 40px;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #f4d67e, #b68b30);
}

.card-chip::before,
.card-chip::after{
    position: absolute;
    content: "";
    background: rgba(92, 65, 13, .25);
}

.card-chip::before{
    top: 0;
    left: 16px;
    width: 1px;
    height: 100%;
    box-shadow: 18px 0 rgba(92, 65, 13, .25);
}

.card-chip::after{
    top: 18px;
    left: 0;
    width: 100%;
    height: 1px;
}

.card-number{
    margin-top: 24px;
    font-size: clamp(1.25rem, 4.5vw, 1.72rem);
    font-weight: 700;
    letter-spacing: .09em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    white-space: nowrap;
}

.card-bottom-row{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
}

.card-label{
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .65);
    font-size: .65rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.card-holder,
.card-expiry{
    display: block;
    overflow: hidden;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.card-holder-box{
    min-width: 0;
    flex: 1;
}

.card-strip{
    height: 52px;
    margin-top: 34px;
    background: #111827;
}

.signature-area{
    display: flex;
    align-items: center;
    margin: 28px 24px 0;
}

.signature-line{
    display: flex;
    height: 46px;
    flex: 1;
    align-items: center;
    padding-left: 14px;
    background: repeating-linear-gradient(0deg,
            #f7f7f7,
            #f7f7f7 4px,
            #ececec 4px,
            #ececec 8px);
    color: #777;
    font-size: .72rem;
    font-style: italic;
}

.cvv-box{
    display: grid;
    width: 62px;
    height: 38px;
    place-items: center;
    background: #fff;
    color: #1f2937;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.back-note{
    margin: 20px 24px 0;
    color: rgba(255, 255, 255, .7);
    font-size: .68rem;
    line-height: 1.5;
    text-align: right;
}

.form-label{
    margin-bottom: 7px;
    font-size: .86rem;
    font-weight: 700;
}

.form-control{
    min-height: 50px;
    border-color: #dce1eb;
    border-radius: 12px;
    box-shadow: none !important;
}

.form-control:focus{
    border-color: var(--primary);
}

.input-hint{
    margin-top: 6px;
    color: var(--text-soft);
    font-size: .76rem;
}

.pay-button{
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--theme-2), var(--theme-3));
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(37, 87, 214, .22);
    transition: transform .2s ease, box-shadow .2s ease;
}

.pay-button:hover{
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(37, 87, 214, .28);
}

.secure-note{
    margin-top: 14px;
    color: var(--text-soft);
    font-size: .78rem;
    text-align: center;
}

@media (max-width: 575.98px) {

    .payment-panel{
        border-radius: 18px;
    }

    .payment-section{
        padding: 20px 16px;
    }


    .amount-area{
        padding: 16px;
    }

    .card-preview-container{
        height: 215px;
    }

    .card-face{
        padding: 20px;
    }

    .card-chip{
        width: 46px;
        height: 34px;
        margin-top: 16px;
    }

    .card-number{
        margin-top: 20px;
        letter-spacing: .055em;
    }

    .card-bottom-row{
        margin-top: 20px;
    }
}

.installment-selector{
    width: 100%;
}

.installment-options{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.installment-option{
    min-height: 52px;
    border: 1px solid #d9dee7;
    border-radius: 10px;
    background: #fff;
    color: #343a40;
    font-weight: 600;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.installment-option:hover,
.installment-option:focus-visible{
    border-color: var(--bs-primary);
    outline: 0;
}

.installment-option.active{
    border-color: var(--bs-primary);
    background: var(--bs-primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(var(--bs-primary-rgb), .22);
}

.selected-installment-summary{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #edf0f4;
}

.selected-installment-summary strong{
    white-space: nowrap;
    font-size: 1.25rem;
}

@media (max-width: 575.98px) {
    .installment-options{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

#tdvDonationWidget{
      --tdv-navy: #092a69;
      --tdv-navy-dark: #06245c;
      --tdv-red: #cf0012;
      --tdv-red-dark: #b60010;
      --tdv-background: #f4f7fa;
      --tdv-surface: #ffffff;
      --tdv-muted-surface: #f0f2f5;
      --tdv-text: #4c5260;
      --tdv-muted: #7e8491;
      --tdv-border: #c9cdd8;

      box-sizing: border-box;
      width: 100%;
      padding: 16px;
      color: var(--tdv-text);
      background: var(--tdv-background);
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Arial, sans-serif;
    }

#tdvDonationWidget *,
#tdvDonationWidget *::before,
#tdvDonationWidget *::after{
      box-sizing: border-box;
    }

#tdvDonationWidget button,
#tdvDonationWidget input{
      font: inherit;
    }

#tdvDonationWidget .invalid-feedback{
      margin-left: 4px;
      font-size: 10px;
    }

@media (max-width: 380px) {
      #tdvDonationWidget{
        padding: 12px;
      }


    }

#fastDonateModal .donateImageModal{
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 760px;
        overflow: hidden;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

#fastDonateModal .donateImageModal::before{
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background: rgba(0, 0, 0, 0.58);
        pointer-events: none;
    }

#fastDonateModal .donate-image-content{
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 48px;
        min-height: 100%;
        padding: 34px 30px 28px;
        color: #fff;
    }

#fastDonateModal .campaign-copy{
        max-width: 560px;
    }

#fastDonateModal .campaign-eyebrow{
        display: inline-block;
        margin-bottom: 18px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.16em;
    }

#fastDonateModal .campaign-title{
        margin: 0 0 12px;
        color: #fff;
        font-size: clamp(2rem, 3.5vw, 3.5rem);
        font-weight: 750;
        line-height: 1.05;
        letter-spacing: -0.035em;
    }

#fastDonateModal .campaign-title-highlight{
        color: #72efdd;
    }

#fastDonateModal .campaign-copy p{
        max-width: 520px;
        margin: 0;
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.95rem;
        line-height: 1.55;
    }

#fastDonateModal .campaign-card-stack{
        display: grid;
        gap: 14px;
    }

#fastDonateModal .campaign-progress-card,
#fastDonateModal .campaign-quote-card{
        color: #182017;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.65);
        border-radius: 14px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

#fastDonateModal .campaign-progress-card{
        padding: 19px 18px;
    }

#fastDonateModal .campaign-donor-row,
#fastDonateModal .campaign-progress-meta{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

#fastDonateModal .campaign-donor-row{
        justify-content: flex-start;
        margin-bottom: 21px;
        font-size: 0.82rem;
    }

#fastDonateModal .campaign-donor-avatars{
        display: flex;
        align-items: center;
        padding-left: 6px;
    }

#fastDonateModal .campaign-donor-avatars > span{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 31px;
        height: 31px;
        margin-left: -7px;
        overflow: hidden;
        color: #fff;
        background: #465147;
        border: 2px solid #fff;
        border-radius: 50%;
        font-size: 0.62rem;
        font-weight: 700;
    }

#fastDonateModal .campaign-donor-avatars > span:nth-child(2){
        background: #765744;
    }

#fastDonateModal .campaign-donor-avatars > span:nth-child(3){
        background: #4e5f6e;
    }

#fastDonateModal .campaign-donor-avatars .campaign-donor-more{
        width: 40px;
        color: #28351a;
        background: #c9ff6a;
        font-size: 0.58rem;
    }

#fastDonateModal .campaign-progress-meta{
        margin-bottom: 8px;
        font-size: 0.78rem;
    }

#fastDonateModal .campaign-progress-meta span{
        color: #626a62;
    }

#fastDonateModal .campaign-progress{
        height: 9px;
        overflow: hidden;
        background: #e8e9ee;
        border-radius: 999px;
    }

#fastDonateModal .campaign-progress .progress-bar{
        background: #4f730e;
        border-radius: inherit;
    }

#fastDonateModal .campaign-quote-card{
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 16px;
        align-items: center;
        padding: 18px;
    }

#fastDonateModal .campaign-tdv-logo{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 82px;
        min-height: 82px;
        padding: 10px;
        background: #fff;
        border: 1px solid #e8ece5;
        border-radius: 12px;
    }

#fastDonateModal .campaign-tdv-logo img{
        display: block;
        width: 100%;
        max-width: 66px;
        height: auto;
        object-fit: contain;
    }

#fastDonateModal .campaign-quote-content{
        min-width: 0;
    }

#fastDonateModal .campaign-hadith{
        margin: 0 0 5px;
        color: #202820;
        font-size: 0.86rem;
        font-weight: 650;
        line-height: 1.48;
    }

#fastDonateModal .campaign-hadith-source{
        display: block;
        margin-bottom: 9px;
        color: #647064;
        font-size: 0.7rem;
        font-style: italic;
    }

#fastDonateModal .campaign-support-message{
        margin: 0;
        color: #354035;
        font-size: 0.76rem;
        line-height: 1.48;
    }

@media (max-width: 767.98px) {
        #fastDonateModal .donateImageModal{
            min-height: 640px;
        }

        #fastDonateModal .donate-image-content{
            padding: 26px 20px 20px;
        }

        #fastDonateModal .campaign-title{
            font-size: 2.25rem;
        }

        #fastDonateModal .campaign-donor-row,
#fastDonateModal .campaign-progress-meta{
            align-items: flex-start;
        }

        #fastDonateModal .campaign-progress-meta{
            flex-direction: column;
            gap: 3px;
        }

        #fastDonateModal .campaign-quote-card{
            grid-template-columns: 68px minmax(0, 1fr);
            gap: 12px;
        }

        #fastDonateModal .campaign-tdv-logo{
            width: 68px;
            min-height: 68px;
            padding: 8px;
        }
    }

@keyframes img-anim-right {
    0% {
        opacity: 0;
        clip-path: inset(0 0 0 100%);
        transform: translateX(5%);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateX(0);
    }
}

@keyframes img-anim-left {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        transform: translateX(-5%);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateX(0);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-30px);
    }
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
    }
}

@keyframes float-bob-x {
    0% {
        transform: translateX(30px);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(30px);
    }
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
    }

    50% {
        -webkit-transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(30px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes donation-progress-reveal {
    to {
        transform: scaleX(1);
    }
}

.orphan-currency-header>.container-fluid,
.orphan-currency-header .header-top-wrapper-2,
.orphan-currency-header .header-tools,
.orphan-currency-header .header-language-flags,
.orphan-currency-header .language-switch-area,
.orphan-currency-header .header-currency-component,
.orphan-currency-header .header-currency-component .navbar-nav,
.orphan-currency-header .header-currency-component .nav-item {
    overflow: visible !important;
}

.orphan-currency-header .header-currency-component>.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown>.nav-link.dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: var(--theme) !important;
    font-size: 0 !important;
    line-height: 0 !important;
    white-space: nowrap !important;
    border: 1px solid var(--theme) !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown>.nav-link.dropdown-toggle>#selectedCurrency {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--theme) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown>.nav-link.dropdown-toggle::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown>.nav-link.dropdown-toggle:hover,
.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown>.nav-link.dropdown-toggle:focus,
.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown>.nav-link.dropdown-toggle[aria-expanded="true"] {
    color: var(--theme-2) !important;
    border-color: var(--theme) !important;
    background: var(--theme) !important;
    outline: none !important;
}

.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown>.nav-link.dropdown-toggle:hover>#selectedCurrency,
.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown>.nav-link.dropdown-toggle:focus>#selectedCurrency,
.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown>.nav-link.dropdown-toggle[aria-expanded="true"]>#selectedCurrency {
    color: var(--theme-2) !important;
}

.orphan-currency-header .header-currency-component .dropdown-menu:not(.show) {
    display: none !important;
}

.orphan-currency-header .header-currency-component .dropdown-menu.show,
.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown:hover>.dropdown-menu,
.orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown:focus-within>.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    inset: auto 0 auto auto !important;
    z-index: 10002 !important;
    display: block !important;
    width: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    overflow: hidden !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: 1px solid rgba(22, 52, 128, 0.14) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16) !important;
    transform: none !important;
}

.orphan-currency-header .header-currency-component .dropdown-menu .dropdown-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 100% !important;
    height: 36px !important;
    min-height: 36px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    color: var(--theme-2) !important;
    font-size: 15px !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.orphan-currency-header .header-currency-component .dropdown-menu .dropdown-item>a,
.orphan-currency-header .header-currency-component .dropdown-menu .dropdown-item>span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--theme-2) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    text-align: center !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.orphan-currency-header .header-currency-component .dropdown-menu .dropdown-item:hover,
.orphan-currency-header .header-currency-component .dropdown-menu .dropdown-item:focus-within {
    color: var(--theme-2) !important;
    background: #eef5fa !important;
}

.orphan-currency-header .header-currency-component .dropdown-menu .dropdown-item>a:hover,
.orphan-currency-header .header-currency-component .dropdown-menu .dropdown-item>a:focus {
    color: var(--theme-2) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.orphan-currency-header .header-currency-component .dropdown-menu .dropdown-item .fa-check {
    margin-left: 6px !important;
    color: var(--theme) !important;
    font-size: 11px !important;
    line-height: 1 !important;
}

body.orphan-layout .orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown>.dropdown-menu.show,

body.orphan-layout .orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown:hover>.dropdown-menu,

body.orphan-layout .orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown:focus-within>.dropdown-menu {
    position: absolute !important;
    inset: calc(100% + 12px) auto auto 50% !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    z-index: 100000 !important;
}

body.orphan-layout .orphan-currency-header .header-currency-component>.navbar-nav>.nav-item.dropdown::after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 82px;
    height: 12px;
    content: "";
    transform: translateX(-50%);
}

.orphan-currency-header .header-currency-component .dropdown-menu {
    translate: 0 35px !important;
}

.swiper-slide-prev,
.swiper-slide-next {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    pointer-events: auto;
}

.sticky.header-2::before {
    display: none;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-bar,
.mean-container .mean-nav {
    min-height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
}

.mean-container .mean-nav>ul {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mean-container .mean-nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
    display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
    font-size: 18px;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.orphan-currency-header>.container-fluid,
.orphan-currency-header .header-top-wrapper-2,
.orphan-currency-header .header-language-flags,
.orphan-currency-header .language-switch-area,
.orphan-currency-header .header-currency-component,
.orphan-currency-header .header-currency-component .navbar-nav,
.orphan-currency-header .header-currency-component .nav-item {
    overflow: visible !important;
}

.orphan-hero {
    --orphan-primary: var(--theme-2, #163480);
    --orphan-primary-dark: #102967;
    --orphan-text: #282828;
    --orphan-muted: #7d7d7d;
    --orphan-border: #e5e7eb;
    --orphan-surface: #ffffff;
    --orphan-progress-bg: #dfe3eb;
    --orphan-card-height: 84px;
    --orphan-radius: 18px;
    position: relative;
    isolation: isolate;
    width: 100%;
    margin: 0 0 84px;
    padding: 0;
    overflow: visible;
    background-color: #ffffff;
    font-family: "Nunito", sans-serif;
}

.orphan-hero__main {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 458px;
    margin: 0;
    padding: 80px 0 110px;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.52),
            rgba(0, 0, 0, 0.52)),
        var(--hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.orphan-hero__main::before,
.orphan-hero__main::after {
    display: none;
    content: none;
}

.orphan-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 12px;
}

.orphan-hero__category {
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 5px;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.orphan-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.7rem, 4.2vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.orphan-hero__description {
    max-width: 760px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.55;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.orphan-hero__bottom {
    position: absolute;
    right: auto;
    bottom: -40px;
    left: 50%;
    z-index: 50;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    transform: translateX(-50%);
}

.orphan-hero__bottom::before,
.orphan-hero__bottom::after {
    display: none;
    content: none;
}

.orphan-hero__cards {
    position: relative;
    z-index: 51;
    align-items: stretch;
    margin-top: 0;
    border-radius: var(--orphan-radius);
    transform: none;
}

.orphan-hero__cards>[class*="col-"] {
    display: flex;
    align-items: stretch;
}

.orphan-hero .donation-card,
.orphan-hero .campaign-info-card {
    position: relative;
    z-index: 52;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: var(--orphan-card-height);
    overflow: hidden;
    border: 1px solid rgba(226, 229, 235, 0.9);
    border-radius: var(--orphan-radius);
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.orphan-hero .donation-card {
    display: flex;
    align-items: stretch;
}

.orphan-hero .donation-card__content {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    min-width: 0;
    padding: 14px 18px;
}

.orphan-hero .donation-card__icon,
.orphan-hero .campaign-info-card__icon {
    display: inline-flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: var(--orphan-primary);
    border: 1px solid var(--orphan-border);
    border-radius: 50%;
    background-color: var(--orphan-surface);
    font-size: 18px;
}

.orphan-hero .donation-card__details {
    min-width: 145px;
    margin-left: 12px;
}

.orphan-hero .donation-card__label {
    display: block;
    color: var(--orphan-text);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.orphan-hero .donation-card__amount {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.orphan-hero .donation-card__amount strong {
    color: var(--orphan-primary);
    font-weight: 900;
}

.orphan-hero .donation-card__amount span {
    color: #929292;
    font-weight: 700;
}

.orphan-hero .donation-card__progress {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 105px;
    margin-left: auto;
    padding-left: 14px;
}

.orphan-hero .donation-card__progress-track {
    position: relative;
    flex: 0 0 64px;
    width: 64px;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background-color: var(--orphan-progress-bg);
}

.orphan-hero .donation-card__progress-line {
    position: absolute;
    inset: 0 auto 0 0;
    display: block;
    height: 100%;
    border-radius: inherit;
    background-color: var(--orphan-primary);
}

.orphan-hero .donation-card__progress strong {
    color: var(--orphan-primary);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.orphan-hero .donation-card__button {
    display: flex;
    flex: 0 0 150px;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    min-height: var(--orphan-card-height);
    padding: 15px;
    color: #ffffff;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    background-color: var(--orphan-primary);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.orphan-hero .donation-card__button:hover,
.orphan-hero .donation-card__button:focus-visible {
    color: #ffffff;
    background-color: var(--orphan-primary-dark);
}

.orphan-hero .donation-card__button:focus-visible,
.orphan-hero .campaign-info-card__share:focus-visible {
    outline: 3px solid rgba(22, 52, 128, 0.28) !important;
    outline-offset: -4px;
}

.orphan-hero .campaign-info-card {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 12px 22px;
}

.orphan-hero .campaign-info-card__item {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 8px;
    color: var(--orphan-text);
    text-decoration: none;
}

.orphan-hero .campaign-info-card__item>div:last-child {
    min-width: 0;
    margin-left: 11px;
}

.orphan-hero .campaign-info-card__item strong,
.orphan-hero .campaign-info-card__item span {
    display: block;
}

.orphan-hero .campaign-info-card__item strong {
    color: var(--orphan-text);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.orphan-hero .campaign-info-card__item span {
    margin-top: 3px;
    color: var(--orphan-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.orphan-hero .campaign-info-card__divider {
    flex: 0 0 1px;
    width: 1px;
    height: 48px;
    background-color: var(--orphan-border);
}

.orphan-hero .campaign-info-card__share {
    transition: color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

.orphan-hero .campaign-info-card__share:hover {
    color: var(--orphan-primary);
    opacity: 0.82;
    transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
    .orphan-hero .donation-card__content {
        padding-right: 12px;
        padding-left: 14px;
    }

    .orphan-hero .donation-card__details {
        min-width: 135px;
    }

    .orphan-hero .donation-card__progress {
        gap: 7px;
        min-width: 82px;
        padding-left: 8px;
    }

    .orphan-hero .donation-card__progress-track {
        flex-basis: 45px;
        width: 45px;
    }

    .orphan-hero .donation-card__button {
        flex-basis: 125px;
    }
}

@media (max-width: 991.98px) {
    .orphan-hero {
        margin-bottom: 190px;
    }

    .orphan-hero__main {
        min-height: 430px;
        padding: 72px 0 105px;
    }

    .orphan-hero__bottom {
        bottom: -152px;
    }

    .orphan-hero .donation-card__progress-track {
        flex-basis: 64px;
        width: 64px;
    }
}

@media (max-width: 575.98px) {
    .orphan-hero {
        margin-bottom: 410px;
    }

    .orphan-hero__main {
        min-height: 430px;
        padding: 62px 0 100px;
        background-position: center;
    }

    .orphan-hero__content {
        padding-right: 18px;
        padding-left: 18px;
    }

    .orphan-hero__category {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .orphan-hero__title {
        font-size: 2.3rem;
        line-height: 1.06;
    }

    .orphan-hero__description {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.55;
    }

    .orphan-hero__bottom {
        bottom: -350px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .orphan-hero__cards {
        margin-right: 0;
        margin-left: 0;
    }

    .orphan-hero__cards>[class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

    .orphan-hero .donation-card {
        flex-direction: column;
    }

    .orphan-hero .donation-card__content {
        width: 100%;
        padding: 17px 15px;
    }

    .orphan-hero .donation-card__details {
        min-width: 0;
    }

    .orphan-hero .donation-card__amount {
        flex-wrap: wrap;
        white-space: normal;
    }

    .orphan-hero .donation-card__progress {
        flex-direction: column-reverse;
        align-items: flex-end;
        gap: 5px;
        min-width: 65px;
    }

    .orphan-hero .donation-card__progress-track {
        flex-basis: 7px;
        width: 65px;
    }

    .orphan-hero .donation-card__button {
        flex: 0 0 auto;
        min-height: 54px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        border-left: 0;
    }

    .orphan-hero .campaign-info-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 8px 18px;
    }

    .orphan-hero .campaign-info-card__item {
        min-height: 70px;
        padding: 10px 0;
    }

    .orphan-hero .campaign-info-card__divider {
        width: 100%;
        height: 1px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .orphan-hero .donation-card__button,
    .orphan-hero .campaign-info-card__share {
        transition: none;
    }
}

.contentImage {
    width: 100%;
    min-height: 400px;
    background-image: url("/view-resources/Views/Orphan/images/black.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
}

#tdvDonationWidget .tdv-donation-card {
    overflow: hidden;
    width: 100%;
    background: var(--tdv-surface);
    border: 1px solid #cbd2dc;
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(14, 41, 83, 0.04);
}

#tdvDonationWidget .tdv-card-heading {
    min-height: 103px;
    padding: 28px 27px 22px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--tdv-navy-dark),
        var(--tdv-navy)
      );
}

#tdvDonationWidget .tdv-card-heading h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
}

#tdvDonationWidget .tdv-card-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 400;
}

#tdvDonationWidget .tdv-card-content {
    padding: 27px 27px 32px;
}

#tdvDonationWidget .tdv-payment-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 44px;
    margin-bottom: 33px;
    padding: 3px;
    border-radius: 11px;
    background: var(--tdv-muted-surface);
}

#tdvDonationWidget .tdv-payment-tab {
    position: relative;
    border: 0;
    border-radius: 8px;
    color: #4f535d;
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.18s ease,
        background-color 0.18s ease,
        box-shadow 0.18s ease;
}

#tdvDonationWidget .tdv-payment-tab.active {
    color: var(--tdv-red);
    background: #ffffff;
    box-shadow: 0 2px 0 var(--tdv-red),
        0 1px 3px rgba(0, 0, 0, 0.04);
    font-weight: 600;
}

#tdvDonationWidget .tdv-form-section {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

#tdvDonationWidget .tdv-form-section legend {
    float: none;
    width: auto;
    margin: 0 0 14px;
    color: #4d525d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.25px;
}

#tdvDonationWidget .tdv-amount-options {
    margin-bottom: 13px;
}

#tdvDonationWidget .tdv-amount-button {
    width: 100%;
    height: 56px;
    padding: 0 5px;
    border: 2px solid var(--tdv-border);
    border-radius: 11px;
    color: var(--tdv-navy);
    background: #ffffff;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.15s ease,
        border-color 0.15s ease,
        background-color 0.15s ease,
        color 0.15s ease,
        box-shadow 0.15s ease;
}

#tdvDonationWidget .tdv-amount-button:hover {
    border-color: #aeb4c0;
    transform: translateY(-1px);
}

#tdvDonationWidget .tdv-amount-button.active {
    border-color: var(--tdv-red);
    color: #ffffff;
    background: var(--tdv-red);
    box-shadow: 0 6px 9px rgba(207, 0, 18, 0.18);
}

#tdvDonationWidget .tdv-custom-amount-wrapper,
#tdvDonationWidget .tdv-card-number-wrapper {
    position: relative;
}

#tdvDonationWidget .tdv-input {
    height: 53px;
    padding: 0 20px;
    border: 2px solid var(--tdv-border);
    border-radius: 11px;
    color: var(--tdv-navy);
    background: #ffffff;
    box-shadow: none;
    font-size: 14px;
}

#tdvDonationWidget .tdv-input::placeholder {
    color: #747b89;
    opacity: 1;
}

#tdvDonationWidget .tdv-input:focus {
    border-color: var(--tdv-navy);
    box-shadow: 0 0 0 0.2rem rgba(9, 42, 105, 0.09);
}

#tdvDonationWidget .tdv-custom-amount {
    padding-right: 53px;
    font-size: 16px;
    font-weight: 500;
}

#tdvDonationWidget .tdv-currency-symbol {
    position: absolute;
    top: 50%;
    right: 20px;
    color: var(--tdv-navy);
    font-size: 17px;
    font-weight: 700;
    pointer-events: none;
    transform: translateY(-50%);
}

#tdvDonationWidget .tdv-custom-amount.is-invalid ~ .tdv-currency-symbol {
    top: 27px;
}

#tdvDonationWidget .tdv-section-divider {
    height: 1px;
    margin: 27px 0 20px;
    background: #d6d9e1;
}

#tdvDonationWidget .tdv-card-section legend {
    margin-bottom: 8px;
}

#tdvDonationWidget .tdv-card-number-input {
    padding-right: 49px;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-style: italic;
    letter-spacing: 0.6px;
}

#tdvDonationWidget .tdv-card-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    color: #747986;
    font-size: 18px;
    pointer-events: none;
    transform: translateY(-50%);
}

#tdvDonationWidget .tdv-card-number-input.is-invalid ~ .tdv-card-icon {
    top: 27px;
}

#tdvDonationWidget .tdv-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: 100%;
    height: 55px;
    margin-top: 27px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: var(--tdv-red);
    box-shadow: 0 13px 21px rgba(207, 0, 18, 0.25);
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.15s ease,
        background-color 0.15s ease,
        box-shadow 0.15s ease;
}

#tdvDonationWidget .tdv-submit-button:hover {
    background: var(--tdv-red-dark);
    box-shadow: 0 15px 24px rgba(207, 0, 18, 0.3);
    transform: translateY(-1px);
}

#tdvDonationWidget .tdv-submit-button:active {
    transform: translateY(0);
}

#tdvDonationWidget .tdv-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}

#tdvDonationWidget .tdv-donation-icon {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    font-size: 18px;
    line-height: 1;
}

#tdvDonationWidget .tdv-donation-icon .bi-heart-fill {
    position: absolute;
    top: -4px;
    right: -5px;
    font-size: 9px;
}

#tdvDonationWidget .tdv-security-row {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: 35px;
    color: #8a8f97;
    font-size: 9px;
    font-weight: 600;
}

#tdvDonationWidget .tdv-security-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

#tdvDonationWidget .tdv-security-row i {
    font-size: 10px;
}

#tdvDonationWidget .tdv-success-alert {
    margin: 22px 0 0;
    border-radius: 10px;
    font-size: 12px;
}

#tdvDonationWidget .tdv-foundation-note {
    margin: 22px 22px 0;
    color: #525865;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
}

#tdvDonationWidget .tdv-payment-tab:focus-visible,
#tdvDonationWidget .tdv-amount-button:focus-visible,
#tdvDonationWidget .tdv-submit-button:focus-visible,
#tdvDonationWidget .tdv-input:focus-visible {
    outline: 3px solid rgba(13, 110, 253, 0.22);
    outline-offset: 2px;
}

@media (max-width: 380px) {
    #tdvDonationWidget {
        padding: 12px;
    }

    #tdvDonationWidget .tdv-card-heading,
    #tdvDonationWidget .tdv-card-content {
        padding-right: 20px;
        padding-left: 20px;
    }

    #tdvDonationWidget .tdv-amount-button {
        height: 52px;
        font-size: 14px;
    }

    #tdvDonationWidget .tdv-security-row {
        gap: 16px;
    }

    #tdvDonationWidget .tdv-foundation-note {
        margin-right: 10px;
        margin-left: 10px;
    }
}

.orphan-hero {
    position: relative;
    min-height: 330px;
    background: #10233a;
    box-shadow: 0 18px 42px rgba(15, 36, 65, .08);
}

@media (max-width: 575.98px) {
    .orphan-hero {
        min-height: 285px;
    }

    .orphan-hero {
        border-radius: 21px;
    }
}

/* HTML içindeki inline stiller */

.header-logo > img {
    width: 15rem;
}

.orphan-hero {
    --hero-image: url("/view-resources/Views/Orphan/images/banner1.jpg");
}

.donation-card__progress-line {
    width: 53%;
}

/* ========== Animasyonlar ve video modalı ========== */

/* ========== Üst bilgi ve ana menü ========== */

.header-top-wrapper-2 .header-tools,
.header-top-wrapper-2 .header-language-flags {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    z-index: 99999;
    width: 100%;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
    animation: fadeInDown 0.5s ease-in-out both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* ========== Dil ve para birimi alanı ========== */

/* Bayraklar ve para birimi bileşeni yan yana */

/* Bayrak grubu */

/* Component içinden genişlik gelirse etkisizleştir */

/* Mobil görünümde de aynı satırda tut */

/* ========== CTA ve footer ========== */

/* =====================================================
   CTA + FOOTER
===================================================== */

/* CTA, kendi yüksekliğinin yarısı kadar yukarı taşınır.
   Böylece alt yarısı footer üzerinde kalır. */

/* ========== Yetim kampanyası ve bağış formu ========== */

.orphan-campaign {
    --orphan-navy: #082b6f;
    --orphan-navy-dark: #03215c;
    --orphan-red: #d50017;
    --orphan-text: #172033;
    --orphan-muted: #5d6572;
    --orphan-border: #dbe2ec;
    --orphan-soft: #f1f4f7;
    --orphan-input: #f7f9fc;
    padding: 58px 0 72px;
    background: #ffffff;
    color: var(--orphan-text);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

.orphan-campaign *,
  .orphan-campaign *::before,
  .orphan-campaign *::after {
    box-sizing: border-box;
  }

.orphan-alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 26px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #fff0f1;
    color: var(--orphan-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .055em;
    line-height: 1;
    text-transform: uppercase;
  }

.orphan-alert-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orphan-red);
    box-shadow: 0 0 0 4px rgba(213, 0, 23, .09);
  }

.orphan-title {
    max-width: 760px;
    margin: 0 0 24px;
    color: var(--orphan-navy-dark);
    font-size: clamp(2.65rem, 5.2vw, 4.95rem);
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: .96;
  }

.orphan-title span {
    color: var(--orphan-red);
  }

.orphan-lead {
    max-width: 710px;
    margin: 0;
    color: #4d5663;
    font-size: 16px;
    line-height: 1.75;
  }

.orphan-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 34px 0 34px;
    padding: 25px 0;
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
  }

.orphan-progress {
    position: relative;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    padding: 7px;
    border-radius: 50%;
    background: conic-gradient(var(--orphan-navy) 0 53%, #e7edf4 53% 100%);
    transform: rotate(-90deg);
  }

.orphan-progress::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orphan-navy);
    transform: translate(-50%, -1px);
  }

.orphan-progress-inner {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    transform: rotate(90deg);
  }

.orphan-progress-inner strong {
    color: var(--orphan-navy);
    font-size: 16px;
    font-weight: 800;
  }

.orphan-stat-item {
    display: flex;
    min-width: 145px;
    flex-direction: column;
  }

.orphan-stat-label {
    margin-bottom: 7px;
    color: #697180;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
  }

.orphan-stat-value {
    color: var(--orphan-navy);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.1;
  }

.orphan-stat-item small {
    margin-top: 6px;
    color: #6e7580;
    font-size: 11px;
    font-weight: 600;
  }

.orphan-stat-divider {
    align-self: stretch;
    width: 1px;
    min-height: 48px;
    background: #e4e9ef;
  }

.orphan-avatar-group {
    display: flex;
    margin-top: 7px;
    padding-left: 7px;
  }

.orphan-avatar-group span {
    display: grid;
    width: 27px;
    height: 27px;
    margin-left: -7px;
    place-items: center;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: #203559;
    font-size: 13px;
  }

.orphan-avatar-group span:nth-child(2) {
    background: #7a865f;
  }

.orphan-avatar-group span:nth-child(3) {
    background: #181818;
  }

.orphan-hero {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: 28px;
    background: #10233a;
    box-shadow: 0 18px 42px rgba(15, 36, 65, .08);
  }

.orphan-hero img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    object-position: center 34%;
    transition: transform .45s ease;
  }

.orphan-hero:hover img {
    transform: scale(1.025);
  }

.orphan-hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(4, 18, 38, .05) 33%, rgba(4, 18, 38, .92) 100%),
      linear-gradient(90deg, rgba(0, 24, 50, .12), transparent 62%);
  }

.orphan-hero-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 31px 32px;
    color: #fff;
  }

.orphan-hero-content h2 {
    margin: 0 0 8px;
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.2;
  }

.orphan-hero-content p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    line-height: 1.55;
  }

.orphan-story {
    margin: 29px 0 0;
    color: #59616d;
    font-size: 13px;
    line-height: 1.75;
  }

.orphan-covered {
    margin-top: 42px;
  }

.orphan-section-title {
    position: relative;
    margin: 0 0 23px;
    padding-left: 17px;
    color: var(--orphan-navy);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.02em;
  }

.orphan-section-title::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 4px;
    border-radius: 99px;
    background: var(--orphan-navy);
  }

.orphan-service-card {
    padding: 23px 22px 21px;
    border: 1px solid #e3e7ec;
    border-radius: 18px;
    background: #f1f3f5;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }

.orphan-service-card:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 14px 32px rgba(13, 40, 84, .08);
  }

.orphan-service-icon {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 13px;
    color: var(--orphan-navy);
    background: #dce5f2;
    font-size: 18px;
  }

.orphan-service-card h3 {
    margin: 0 0 9px;
    color: var(--orphan-navy);
    font-size: 15px;
    font-weight: 800;
  }

.orphan-service-card p {
    margin: 0;
    color: #626a75;
    font-size: 11px;
    line-height: 1.55;
  }

.orphan-donation-column {
    position: sticky;
    top: 24px;
    max-width: 450px;
    margin-left: auto;
  }

.orphan-donation-card {
    overflow: hidden;
    border: 1px solid #dfe4eb;
    border-radius: 29px;
    background: #fff;
    box-shadow: 0 22px 65px rgba(8, 43, 111, .08);
  }

.orphan-card-header {
    padding: 28px 31px 25px;
    color: #fff;
    background: var(--orphan-navy);
  }

.orphan-card-header h2 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
  }

.orphan-card-header p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 10px;
  }

.orphan-form {
    padding: 29px 31px 25px;
  }

.orphan-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
  }

.orphan-form legend {
    margin-bottom: 14px;
    color: var(--orphan-navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

.orphan-amount-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

.orphan-amount-btn,
  .orphan-other-select {
    width: 100%;
    height: 47px;
    border: 1px solid #cbd4e1;
    border-radius: 11px;
    color: #151c28;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    outline: none;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  }

.orphan-amount-btn:hover,
  .orphan-amount-btn.active,
  .orphan-other-select:focus {
    border-color: var(--orphan-navy);
    background: #f2f6ff;
    box-shadow: 0 0 0 3px rgba(8, 43, 111, .07);
  }

.orphan-amount-btn.active {
    color: var(--orphan-navy);
  }

.orphan-other-select {
    padding: 0 34px 0 14px;
    font-weight: 500;
    cursor: pointer;
  }

.orphan-payment-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 24px 0 27px;
    padding: 4px;
    border-radius: 10px;
    background: #edf0f3;
  }

.orphan-payment-switch button {
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    color: #6a717c;
    background: transparent;
    font-size: 10px;
    font-weight: 700;
    transition: background .18s ease, box-shadow .18s ease, color .18s ease;
  }

.orphan-payment-switch button.active {
    color: var(--orphan-navy);
    background: #fff;
    box-shadow: 0 4px 13px rgba(19, 36, 64, .08);
  }

.orphan-form .form-label {
    margin-bottom: 8px;
    color: #343c48;
    font-size: 9px;
    font-weight: 600;
  }

.orphan-input {
    min-height: 48px;
    border: 1px solid #d5dde8;
    border-radius: 10px;
    color: #1e2734;
    background: var(--orphan-input);
    font-size: 11px;
    box-shadow: none !important;
  }

.orphan-input::placeholder {
    color: #9ca5b2;
    letter-spacing: .02em;
  }

.orphan-input:focus {
    border-color: #9daec8;
    background: #fff;
  }

.orphan-submit-btn {
    width: 100%;
    min-height: 55px;
    margin-top: 8px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: var(--orphan-red);
    box-shadow: 0 10px 22px rgba(213, 0, 23, .22);
    font-size: 13px;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  }

.orphan-submit-btn:hover {
    transform: translateY(-1px);
    background: #ba0015;
    box-shadow: 0 12px 27px rgba(213, 0, 23, .27);
  }

.orphan-secure-row {
    display: flex;
    justify-content: center;
    gap: 23px;
    margin-top: 22px;
    color: #a2a9b3;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

.orphan-secure-row i {
    margin-right: 4px;
    font-size: 8px;
  }

.orphan-share-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
    padding: 17px 18px;
    border-radius: 15px;
    background: #eef1f4;
  }

.orphan-share-box strong {
    color: var(--orphan-navy);
    font-size: 10px;
    font-weight: 800;
  }

.orphan-share-actions {
    display: flex;
    align-items: center;
    gap: 9px;
  }

.orphan-share-btn {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: transform .18s ease, opacity .18s ease;
  }

.orphan-share-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    opacity: .9;
  }

.orphan-share-btn.whatsapp {
    background: #19c86b;
  }

.orphan-share-btn.copy {
    background: var(--orphan-navy);
  }

@media (max-width: 1199.98px) {
    .orphan-title {
      font-size: clamp(2.6rem, 5vw, 4.3rem);
    }

    .orphan-stat-item {
      min-width: 125px;
    }

    .orphan-donation-column {
      max-width: 420px;
    }
  }

@media (max-width: 991.98px) {
    .orphan-campaign {
      padding-top: 42px;
    }

    .orphan-donation-column {
      position: static;
      max-width: 650px;
      margin: 20px auto 0;
    }
  }

@media (max-width: 575.98px) {
    .orphan-campaign {
      padding: 32px 0 48px;
    }

    .orphan-alert-badge {
      margin-bottom: 20px;
    }

    .orphan-title {
      font-size: clamp(2.35rem, 12vw, 3.2rem);
    }

    .orphan-lead {
      font-size: 14px;
      line-height: 1.65;
    }

    .orphan-stats {
      display: grid;
      grid-template-columns: 66px 1fr;
      gap: 17px;
      padding: 20px 0;
    }

    .orphan-progress {
      grid-row: span 2;
      width: 64px;
      height: 64px;
      flex-basis: 64px;
    }

    .orphan-stat-item {
      min-width: 0;
    }

    .orphan-stat-divider {
      display: none;
    }

    .orphan-supporters {
      padding-top: 16px;
      border-top: 1px solid #e8ecf1;
    }

    .orphan-stat-value {
      font-size: 20px;
    }

    .orphan-hero,
    .orphan-hero img {
      min-height: 285px;
    }

    .orphan-hero {
      border-radius: 21px;
    }

    .orphan-hero-content {
      padding: 23px 21px;
    }

    .orphan-donation-card {
      border-radius: 23px;
    }

    .orphan-card-header,
    .orphan-form {
      padding-right: 22px;
      padding-left: 22px;
    }
  }
