.help__title a:hover {
    color: #293835;
}

.news-two__title-one a:hover {
    color: #293835;

}

.feature-two__single:hover .feature-two__arrow a {
    background-color: var(--oxpins-primary);
    color: white;
}

/*.feature-one__single::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-image: var(--bg-image);*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    border-radius: inherit; !* eğer köşeler eşleşsin istiyorsan *!*/
/*    z-index: -1; !* içeriğin önünde olmasın *!*/
/*}*/

/* Ana kapsayıcıyı sınırlandırıyoruz */
.feature-two__single {
    position: relative;
    z-index: 1;
    border-radius: 20px; /* Köşelerin ne kadar yuvarlak olacağını belirler (örn: 20px) */
    /*overflow: hidden;*/
}

/* Yanlış yazılan class ismini feature-two__single olarak düzelttik */
.feature-two__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    border-radius: inherit;
    z-index: -1;
}

.main-menu-two__btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--oxpins-white);
    background-color: var(--oxpins-primary);
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 19px;
    position: relative;
    display: flex;
    align-items: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.donate-container{
    position: fixed;
    bottom: 4.5rem;
    right: 1.5rem;
    z-index: 999;
    cursor: pointer;
}

.button-tilt-effect{
    animation: button-tilt-effect 1s infinite;
    border: none !important;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-clip: padding-box;
}
.button-tilt-effect:hover{
    animation: none;
}

@keyframes  button-tilt-effect{
    0%{transform: scale(1) rotate(0deg);}
    25%{transform: scale(1.1) rotate(1deg);}
    50%{transform: scale(1) rotate(-1deg);}
    100%{transform: scale(1) rotate(0deg);}
}


@media only screen and (min-width: 1200px) {
    /* 1. Logonun gereksiz %25'lik genişliğini ve devasa boşluklarını iptal ediyoruz */
    .main-menu-two__left {
        width: auto !important;
        padding-left: 20px !important; /* Ekranın solundan biraz boşluk */
        margin-right: 3rem !important; /* Logo ile menü arasındaki mesafe */
    }

    /* 2. Menü ve butonların bulunduğu sağ tarafın, ekranın kalan tüm alanını kaplamasını sağlıyoruz */
    .main-menu-two__right {
        flex-grow: 1 !important;
        width: auto !important;
    }

    /* 3. Ana esprisi burası: Menü sola (logoya doğru), sepet grubu en sağa yaslansın */
    .main-menu-two__right-bottom {
        display: flex !important;
        justify-content: space-between !important; /* İki grubu iki uca iter */
        width: 100% !important;
        padding-left: 0 !important; /* Menüyü logoya yaklaştırır */
    }

    /* 4. En sağdaki grup (Arama, Sepet/Hesabım, Bağış Yap) için senin istediğin gap ayarı */
    .main-menu-two__search-cat-btn-box {
        display: flex !important;
        align-items: center !important;
        gap: 2rem !important; /* Elemanlar arası 2rem boşluk */
    }

    /* 5. Gap kullandığımız için eski ve düzen bozan marginleri sıfırlıyoruz */
    .main-menu-two__cat-box,
    .main-menu-two__btn-box,
    .main-menu-two__search-box {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* İsteğe bağlı: Eski marginlerle birlikte gelen hizalama çizgilerini gizler (görüntüyü temizler) */
    .main-menu-two__search-box:before,
    .main-menu-two__cat-box:before {
        display: none !important;
    }
}

.feature-two__single {
    width: 100%;
    max-width: 450px;
    height: 265px;
    margin: 0 auto 40px;
}

@media (max-width: 991px) {
    .feature-two__single {
        margin-bottom: 50px;
    }

    .feature-two .row > [class*="col-"]:last-child .feature-two__single {
        margin-bottom: 0;
    }
}

.feature-two__single-inner {
    height: 100%;
    width: 100%;
    /* İçerikleri dikey olarak ortalamak veya hizalamak gerekirse aşağıdaki flex kodlarını açabilirsin */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: flex-end; */
}

@media (min-width: 992px) {
    .main-menu-two__logo img {
        margin-left: 100px;
    }
}

@media (max-width: 768px) {
    .mobiltopbagisyapbtn a,
    .mobilFooterBtn{
        color: white ;
    }
}

/* Anasayfa - about-two yüzdelik bar */
.about-two__progress-bar-box {
    position: relative;
    padding-bottom: 28px;
    margin-bottom: 14px;
}

.about-two__progress-bar-box .bar {
    margin-bottom: 0;
}

.about-two__progress-percent {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #707876;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.about-two__progress-target {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    text-align: right;
    color: #707876;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

