.footerLogo:hover {
    filter: grayscale(0);
}
.footerLogo {
    filter: brightness(0) invert(1);
}
footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url("../../../images/world.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .1;
    pointer-events: none;
    z-index: 0;
}



 :root {
     --bg-dark: #152033;
     --bg-darker: #0d1522;
     --k-red: #d71920;
     --k-red-glow: rgba(215, 25, 32, 0.4);
     --text-muted: #8e9db5;
     --text-white: #ffffff;
     --glass-bg: rgba(255, 255, 255, 0.03);
     --glass-border: rgba(255, 255, 255, 0.08);
 }

.ultra-premium-footer {
    position: relative;
    background-color: var(--bg-dark);
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-muted);
    padding-top: 150px;
    /*margin-top: 100px;*/
}

.footer-wave-divider {
    position: absolute;
    top: -118px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 0;
}
.footer-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    transform: rotateY(180deg);
}

.footer-world-map {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.floating-cta-card {
    background: linear-gradient(135deg, #1c2a42 0%, #152033 100%);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 40px 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(215, 25, 32, 0.1);
    position: relative;
    margin-top: -220px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.cta-title {
    color: var(--text-white);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin: 0;
}

.btn-ultra-donate {
    display: inline-flex;
    align-items: center;
    background: var(--k-red);
    color: #fff !important;
    padding: 8px 8px 8px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px var(--k-red-glow);
}

.btn-ultra-donate .icon-circle {
    background: #fff;
    color: var(--k-red);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: all 0.4s ease;
}

.btn-ultra-donate:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px var(--k-red-glow);
}
.btn-ultra-donate:hover .icon-circle {
    transform: rotate(15deg) scale(1.1);
}

.footer-logo {
    max-width: 220px;
}
.brand-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-glass-links {
    display: flex;
    gap: 12px;
}
.social-glass-links a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-glass-links a:hover {
    background: var(--k-red);
    border-color: var(--k-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px var(--k-red-glow);
}

.premium-widget-title {
    color: var(--text-white);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.premium-links {
    list-style: none;
    padding: 0; margin: 0;
}

.premium-links li {
    margin-bottom: 14px;
}

.premium-links li a {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s ease;
}

.premium-links li a i {
    color: #3b4b66;
    margin-right: 12px;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-links li a:hover {
    color: var(--text-white);
    transform: translateX(6px);
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.premium-links li a:hover i {
    color: var(--k-red);
    margin-right: 16px;
    transform: scale(1.3);
    text-shadow: 0 0 8px var(--k-red-glow);
}

.glass-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-contact-item {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.glass-contact-item.location { align-items: flex-start; }

.glass-icon {
    width: 45px; height: 45px;
    min-width: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--k-red);
    margin-right: 15px;
    transition: all 0.4s ease;
}

.glass-info {
    display: flex;
    flex-direction: column;
}

.glass-info .lbl {
    font-size: 12px;
    color: #6a7b96;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.glass-info .val {
    font-size: 15px;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.glass-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(215, 25, 32, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.glass-contact-item:hover .glass-icon {
    background: var(--k-red);
    color: #fff;
    box-shadow: 0 5px 15px var(--k-red-glow);
}

.footer-copyright-bar {
    background-color: var(--bg-darker);
    padding: 22px 0;
    margin-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.footer-copyright-bar p {
    margin: 0;
    font-size: 14px;
}

.dev-logo {
    height: 22px;
    filter: brightness(0) invert(1);
    margin-left: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.dev-logo:hover { opacity: 1; }

@media (max-width: 991px) {
    .floating-cta-card { margin-top: -180px; padding: 30px; text-align: center; }
    .btn-ultra-donate { margin-top: 20px; }
    .footer-brand-box { text-align: center; margin-bottom: 20px; }
    .social-glass-links { justify-content: center; }
    .footer-wave-divider { top: -60px; }
    .footer-wave-divider svg { height: 60px; }
}


 .kuder-quick-wrap{
     width:100%;
     position:relative;
     z-index:20;
     margin-top:-54px;
     /*padding:0 18px 34px;*/
     box-sizing:border-box;
 }

.kuder-quick-menu{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:14px;
}

.kuder-quick-card{
    position:relative;
    min-height:132px;
    background:#fff;
    border:1px solid rgba(22,61,122,.10);
    border-radius:22px;
    padding:22px 14px 18px;
    box-sizing:border-box;
    text-decoration:none;
    text-align:center;
    overflow:hidden;
    box-shadow:0 16px 38px rgba(16,39,76,.10);
    transition:all .28s ease;
}

.kuder-quick-card:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(22,61,122,.08), rgba(183,80,80,.08));
    opacity:0;
    transition:all .28s ease;
}

.kuder-quick-card:hover{
    transform:translateY(-7px);
    box-shadow:0 22px 48px rgba(16,39,76,.16);
    border-color:rgba(22,61,122,.22);
}

.kuder-quick-card:hover:before{
    opacity:1;
}

.kuder-quick-icon{
    width:58px;
    height:58px;
    margin:0 auto 14px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#f4f7fb,#ffffff);
    border:1px solid rgba(22,61,122,.13);
    color:#163d7a;
    position:relative;
    z-index:2;
    transition:all .28s ease;
}

.kuder-quick-card:hover .kuder-quick-icon img {
    filter: brightness(0) invert(1);
}
.kuder-quick-card:hover .kuder-quick-icon{
    background:linear-gradient(135deg,#163d7a,#244f91);
    color:#fff;
    transform:scale(1.04);
}

.kuder-quick-icon svg{
    width:28px;
    height:28px;
    stroke:currentColor;
    stroke-width:1.8;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.kuder-quick-title{
    position:relative;
    z-index:2;
    font-size:14px;
    line-height:1.35;
    font-weight:800;
    color:#18345f;
    letter-spacing:-.2px;
}

.kuder-quick-desc{
    position:relative;
    z-index:2;
    margin-top:6px;
    font-size:11px;
    line-height:1.35;
    font-weight:500;
    color:#75829a;
}

.kuder-quick-card.featured{
    background:linear-gradient(135deg,#163d7a,#234f93);
    border-color:rgba(255,255,255,.25);
}

.kuder-quick-card.featured:before{
    opacity:1;
    background:radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 42%);
}

.kuder-quick-card.featured .kuder-quick-icon img{
    filter: brightness(0) invert(1);
}
.kuder-quick-card.featured .kuder-quick-icon{
    background:rgba(255,255,255,.13);
    border-color:rgba(255,255,255,.28);
    color:#fff;
}

.kuder-quick-card.featured .kuder-quick-title,
.kuder-quick-card.featured .kuder-quick-desc{
    color:#fff;
}

@media(max-width:1100px){
    .kuder-quick-menu{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:640px){
    .kuder-quick-wrap{
        margin-top:-36px;
        padding:0 12px 26px;
    }

    .kuder-quick-menu{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .kuder-quick-card{
        min-height:118px;
        border-radius:18px;
        padding:17px 10px 15px;
    }

    .kuder-quick-icon{
        width:48px;
        height:48px;
        margin-bottom:10px;
    }

    .kuder-quick-icon svg{
        width:24px;
        height:24px;
    }

    .kuder-quick-title{
        font-size:13px;
    }

    .kuder-quick-desc{
        font-size:10.5px;
    }
}

.header-layout4 .menu-area > .container > .row {
    flex-wrap: unset;
    -ms-flex-wrap: unset;
    -webkit-flex-wrap: unset;
    flex-flow: row;
    -webkit-flex-flow: row;
}

.box-title a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sec-title {
    font-family: 'TheSeasons';
}
.title-area .sec-title {
    font-family: 'TheSeasons';
}
.breadcumb-title {
    font-family: 'TheSeasons';
}


.hero-title {
    font-family: 'TheSeasons';
    font-size: 60px;
}

.team-card3 .team-img img {
    height: 365px;
    background-color: #f7f7f7;
    object-fit: contain;
    -o-object-fit: contain;
}

.blog-img-video::before {
    content: "\f144";
    font-family: Font Awesome\ 6 Pro;
    font-weight: 900;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #223d8eab;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 45px;
}
.blog-img-video iframe {
    width: 100%;
    height: 250px;
    object-fit: fill;
    -o-object-fit: fill;
}
.blog-img-video {

}

.sticky .logo1 {
    display: none;
}
.sticky .logo2 {
    display: inline-block;
}
.logo2 {
    display: none;
}

.header-layout4 .header-right {
    display: flex;
    position: relative;
    padding: 10px 0;
}
.header-layout4 .sticky .header-right::before {
    display: none !important;
}
.header-layout4 .header-right::before {
    content: "";
    background-color: #223d8e;
    opacity: 0.8;
    position: absolute;
    right: -500px;
    left:-30px;
    top: 0;
    height: 100%;
    border-radius: 30px 0 0 30px;
    transition: 0.3s;
}
.header-layout4 .sticky .menu-area {
    margin-top:0px !important;
}
.header-layout4 .sticky .menu-area::before {
    display: none !important;
}
.header-layout4 .menu-area {
    margin-top: 20px;
}
.header-layout4 {
    z-index: 201;
}
.sidebar-area {
    position: sticky;
    top: 280px;
    transform: translateY(-100px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 200;
    border-radius: 30px;
}

.payment-sidebar-button button {
    width: 100%;
}
.payment-sidebar-button {
    display: block;
    margin-top: 20px;
}
.payment-sidebar-info label {
    font-size: 80%;
    line-height: 20px;
    color: #555;
    font-style: italic;
}
.payment-sidebar-info {

}
.payment-sidebar-items li.subtitle span {
    font-weight: 900;
    font-size: 20px;
}
.payment-sidebar-items li.subtitle p {
    color: #fff;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment-sidebar-items li.subtitle {
    border-top: 1px solid #ddd;
    margin: 15px 0;
    padding: 10px 15px;
    color: #ffffff;
    background: #9b4d51;
    border-radius: 10px;
}
.payment-sidebar-items li:last-child {
    border: none;
}
.payment-sidebar-items li .price {
    font-weight: 900;
}
.payment-sidebar-items li {
    position: relative;
    display: block;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #ebebeb;
    padding: 15px 0;
}
.payment-sidebar-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    position: relative;
}
.payment-sidebar .title {
    font-family: 'KuderFont';
    font-weight: bold;
    border-bottom: 1px solid #e5e5e5;
    color: #223d8e;
    padding-bottom: 10px;
    margin:0;
}
.payment-sidebar {
    position: sticky;
    top: 280px;
    transform: translateY(-130px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 200;
    background-color:#fff;
    border: 1px solid var(--th-border-color);
    border-radius: 30px;
    padding: var(--widget-padding-y, 20px) var(--widget-padding-x, 40px);
}

.about-bg-shape4-1 img {
    filter: sepia(1);
    opacity: 0.5;
}
.about-bg-shape4-1 {

}

.main-menu ul.sub-menu li a {
    color:var(--title-color);
}


.category-upper-list ul li a .icon img {
    object-fit: contain;
    width: 30px;
}
.category-upper-list ul li a.active .icon img {
    /*filter: brightness(0) invert(1);*/
}
.category-upper-list ul li a .icon svg,
.category-upper-list ul li a .icon i {
    font-size: 20px;
}
.category-upper-list ul li a.active .icon svg,
.category-upper-list ul li a.active .icon i {

}
.category-upper-list ul li a.active .icon {

}
.category-upper-list ul li a .icon {
    margin-right: 10px;
}
.category-upper-list {
    position: relative;
    width: 100%;
    /*background-color: #f9f9f9;
    border-bottom: 1px solid #e1e1e1;*/
}

.category-upper-list .container {
    padding-left: 0;
    padding-right: 0;
}

.category-upper-list .row {
    margin-left: 0;
    margin-right: 0;
}

.category-upper-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    text-align: center;
    flex-wrap: nowrap;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e1e1e1;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.category-upper-list ul li {
    flex: 1 1 0;
    display: flex;
    min-width: 0;
}

.category-upper-list ul li a {
    width: 100%;
    padding: 16px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    border-left: 1px solid #e1e1e1;
    text-align: center;
    line-height: 1.3;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    font-size: 12px;
    text-transform: uppercase;
}

.category-upper-list ul li:last-child a {
    border-right: 1px solid #e1e1e1;
}

.category-upper-list ul li a:hover,
.category-upper-list ul li a.active {
    /* background: var(--theme-color2); */
    background-color:rgb(0 0 0 / 8%);
    /* color: #fff; */
    z-index: 2;
    /*box-shadow: inset 0 0 20px 20px #0000001c;*/
}

@media (max-width: 991px) {
    .category-upper-list ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        display: flex;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .category-upper-list ul li {
        flex: 0 0 auto;
        min-width: 120px;
    }
    .category-upper-list ul::-webkit-scrollbar {
        height: 5px;
        display: block;
    }
    .category-upper-list ul::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    .category-upper-list ul::-webkit-scrollbar-thumb {
        background: var(--theme-color);
        border-radius: 10px;
    }
    .category-upper-list ul::-webkit-scrollbar-thumb:hover {
        background: var(--theme-color);
    }
}

@media (max-width: 575px) {
   /* .category-upper-list ul li {
        flex: 1 1 100%;
    }*/
}


.list-card-style-grid {
    padding: 60px 0;
    background-color: #fafafa;
}

.list-card-item-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0f2f5;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(53, 77, 119, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.list-card-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(53, 77, 119, 0.12);
    border-color: rgba(215, 25, 32, 0.15);
}

.list-card-style-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #eef0f3;
}

.list-card-style-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.list-card-item-card:hover .list-card-style-img-wrap img {
    transform: scale(1.08);
}

.list-card-style-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #354D77;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(4px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.list-card-style-badge i {
    color: #d71920;
    font-size: 12px;
}

.list-card-style-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.list-card-style-title {
    color: #354D77;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.list-card-style-desc {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.list-card-style-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d71920;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.list-card-style-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.list-card-item-card:hover .list-card-style-link {
    color: #354D77;
}

.list-card-item-card:hover .list-card-style-link i {
    transform: translateX(5px);
}


ul.row {
    list-style: none;
    padding: 0px;
}

input.donation-price-val {
    border-radius: 50px;
    padding: 5px 25px;
    width: 48%;
    color: #000000;
    height: 46px;
    font-size: 16px;
    font-weight: bold;
    background-color: #e4e4e4;
    border: 1px solid transparent;
}

.breadcumb-wrapper[data-type="donation"] .breadcumb-content {
    /*--space: 100px;
    padding-right: 450px;*/
}

.page-content__spot:before {
    content: open-quote;
    position: absolute;
    left: -10px;
    top: -15px;
    background: #55b250;
    border-radius: 4px;
    font-size: 45px;
    color: #ffffff;
    padding: 0;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 55px;
}
.page-content__spot * {
    font-size: 18px;
}
.page-content__spot {
    position: relative;
    font-size: 16px;
    border: 2px solid #55b250;
    padding: 15px;
    border-radius: 15px;
    /* box-shadow: 0px 0px 10px 10px #fff; */
    /* background: #fff; */
    margin-top: 25px;
}

.header-layout4 .sticky .main-menu > ul > li > a {
    color: var(--title-color);
}

.main-menu > ul > li > a {
    /*font-weight: bold;*/
    text-transform: uppercase;
}

.row {}

.bagis-detay-icerik img {
    width: 100%;
    margin-bottom: 15px;
}
.bagis-detay-sidebar {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
    z-index: 200;
    padding: 25px;
    position: sticky;
    top: 280px;
    transform: translateY(-160px);
    border-radius: 16px;
}


.bagis-detay-sidebar .sidebar-ust {
    padding: 10px;
    border-bottom: 1px solid gainsboro;
}

.bagis-detay-sidebar svg {
    width: 35px;
    height: 35px;
}

.bagis-detay-sidebar .sidebar-ust span {
    color: #033399;
    font-weight: 700;
}

.bagis-detay-sidebar .sidebar-icerik {
    padding: 10px;
}

.bagis-detay-sidebar .sidebar-icerik p {
    padding: 10px;
    color: black;
}

.bagis-detay-sidebar .sidebar-icerik .box {
    width: 22%;
    height: 50px;
    background-color: transparent;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #f15b43;
    font-weight: 600;
    float: left;
    border-radius: 5px;
    border: 1px solid gainsboro;
    margin-bottom: 10px;}

.bagis-detay-sidebar .sidebar-icerik span {
    padding: 10px;
    font-size: 12px;}

.bagis-detay-sidebar .links a {
    font-size: 12px!important;
    color: #039!important;
}

.bagis-detay-sidebar .sidebar-icerik form {
    width: 100%;
}

.bagis-detay-sidebar .sidebar-icerik input {
    padding: 5px;
    width: 63%;
    color: #039;
    height: 50px;
    padding-left: 11px;
    font-size: 17px;
    font-weight: 800;}

.bagis-detay-sidebar .sidebar-icerik button {
    padding: 8px 16px;
    height: 50px;
    background-color: #f15b43;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    color: white;
}
.bagis-detay-sidebar .sidebar-icerik button:hover {
    background-color: #C94F39;
}


.bagis-detay-sidebar .sidebar-icerik .box:hover {
    border: 1px solid #8686ff;
    background-color: #c2d9ec;
}

.donation-card.style4 .box-thumb img {
    height:200px;
    object-fit: cover;
    -o-object-fit: cover;
}
.blog-card .blog-img img {
    height:200px;
    object-fit: cover;
    -o-object-fit: cover;
}

.donation-card .th-btn {
    min-width: auto;
    font-size: 11px;
}
.donation-card.style4 .box-content {
    display:-ms-flexbox!important;
    display:flex!important;
    justify-content: space-between;
}
.donation-card.style4 .box-title {
    height: 50px;
    font-size: 20px;
    font-family: 'KuderFont';
    font-weight: 600;
    color: #354d77;
}
.blog-card .box-title {
    height:77px;
}
.blog-card .blog-content {
    /*height: 265px;*/
}

.iconbox.home9_style:hover .icon svg path {
    fill: #fff;
}
.iconbox.home9_style .icon svg path {
    fill: #443297;
}
.iconbox.home9_style .icon svg {
    fill: #443297;
    width: 60px;
    height: 60px;
}
.iconbox.home9_style .icon span {
    line-height: inherit;
}

#mega-menu ul.menu li a .menu-icn svg path, .mega_button_dropdown_menu ul.menu li a .menu-icn svg path {
    fill: #041e42;
}
#mega-menu ul.menu li a .menu-icn svg, .mega_button_dropdown_menu ul.menu li a .menu-icn svg {
    fill: #041e42;
    width: 30px;
    height: 50px;
}


.banner-style-one .slide:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url('../../../../image/slideitempattern.png');
    background-repeat: no-repeat;
    background-position: center 90px;
    background-size: cover;
    border-radius: 8px;
}
.home1_style .banner-style-one .active .slide {

}
.home1_style .banner-style-one .slide .home-content span {
    color: #fff;
    font-size: 15px;
    margin-top: 10px;
}
.home1_style .banner-style-one .slide .home-content h4 {

}
.home1_style .banner-style-one .slide .home-content p {
    font-size: 23px;
    animation: none !important;
}
.home1_style .banner-style-one .slide .home-content {
    border-left: 2px solid #fff;
    z-index: 1;
    position: relative;
}
.home1_style .banner-style-one .slide {
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 30px 0;
}


.home1_style .banner-style-one .owl-item.active:not(.center) {
    opacity: .8;
    transform: scale(.85);
}
.home1_style .banner-style-one .owl-item.cloned {
    opacity: .5;
    transform: scale(.75);
    transition: all 0.2s linear;
}
.home1_style .banner-style-one .owl-item {
    opacity: .5;
    transform: scale(.75);
    transition: all 0.2s linear;
}

.banner-style-one .owl-item.center + .owl-item {
    transform: scale(0.75);
    opacity: 0.6;
}

.home1_style .banner-style-one .owl-item.center {
    transform: scale(1) !important;
    opacity: 1 !important;
    z-index: 2 !important;
}


.pagination {
    gap: 8px;
    flex-wrap: wrap;
}

.page-item .page-link {
    border-radius: 8px !important;
    border: 1px solid #eef0f3;
    color: #354D77;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(53, 77, 119, 0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.page-item:not(.disabled) .page-link:hover {
    background-color: #d71920;
    color: #ffffff;
    border-color: #d71920;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(215, 25, 32, 0.2);
    z-index: 2;
}

.page-item.active .page-link {
    background-color: #354D77;
    color: #ffffff;
    border-color: #354D77;
    box-shadow: 0 8px 15px rgba(53, 77, 119, 0.25);
    transform: translateY(-2px);
    z-index: 3;
}

.page-item.disabled .page-link {
    color: #adb5bd;
    background-color: #f8f9fa;
    border-color: #eef0f3;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.7;
}

.page-link:focus {
    box-shadow: none;
    outline: none;
}
