



/*========== BASEETK  ==========*/
.spacing{
    margin-bottom: 3%;
}


/*.sidebar li:nth-child(9) a {
    background-color: var(--white-color);
    color: #26443B !important;
    font-weight: var(--font-medium);
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}*/


.main{
    margin-top: 5.3%;
    overflow: hidden;
}

.base_img_body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.base_img_container {
    position: relative;
    display: inline-block;
}

.slide__image {
    display: block;
    width: 100%; 
    height: auto; 
}

.image-data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff; /* Yazı rengini görsele uygun olarak değiştirin */

}


.image-data h2{
    font-size: 42px;
    margin-bottom: 1rem;
}

.image-data .text{
    font-size: 23px;
}




@media (max-width: 768px) {

    .image-data h2{
        font-size: 11px;
        margin-bottom: 0rem;
        
    }
    

    .image-data .text{
        font-size: 6px;
        margin-top: 3%;
    }



}



@media (min-width: 769px) and (max-width: 1440px)  {

    .image-data h2{
        font-size: 30px;
        margin-bottom: 0rem;

    }

    .image-data .text{
        font-size: 12px;
    }



}



/*========== CARDS  ==========*/

.card_body {
    padding: 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

.all_container{
    max-width: 1200px;
    width: 100%;
}


.card_header {
    text-align: center;
    margin-bottom: 20px;
}

.card_header h2 {
    margin-top: 5rem;
    font-size: 1.25rem; 
    color: #26443B;
    font-weight: 500;
    margin-bottom: 1rem;
}

.card_header h1 {
    font-size: 1.75rem; 
    color: #26443B;
    font-weight: 700;
    margin-bottom: 3rem;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    width: calc(50% - 10px);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05); /* Hover efektinde büyütme */
}

.card img {
    width: 100%;
    height: auto;
    display: block;
}

.content {
    padding: 20px;
}

.content h3 {
    font-size: 1.1rem; /* Başlık boyutu küçültüldü */
    margin-bottom: 15px;
    color: #26443B;
}

.content p {
    font-size: 0.9rem; 
    color: #26443B;
    line-height: 1.6; 
}


.etk_bird{
    transform: translate(-2%,-20%);
    position: absolute;
    left: -6%;
    width: 20%;
    top: 46%;
    opacity: 0.1;
    z-index: -1;
}


@media (max-width: 760px) {

  
    .image-data h2{
        font-size: 17px;
        margin-bottom: 0rem;
        
    }
    

    .image-data .text{
        font-size: 7px;
        margin-top: 3%;
    }

    .main{
        margin-top: 16%;
    }
    


    .card {
        width: 80%;
    }

    .card_header h1 {
        font-size: 1.25rem; 
        margin-bottom: 3rem;
    }

    .card_header h2 {
        margin-top: 1rem;
        font-size: 1rem; 
        margin-bottom: 0rem;

    }

    .content h3 {
        font-size: 1rem; 
    }

    .content p {
        font-size: 0.85rem;
    }

    .etk_bird{
        display: none;
    }
}



@media (min-width: 761px) and (max-width: 1440px)  {
    .card_header h2{
        margin-top: 3rem;
    }

    
    .image-data h2{
        font-size: 30px;
        margin-bottom: 0rem;    

    }

    .image-data .text{
        font-size: 12px;
    }

    .main{
        margin-top: 5.5%;
    }
    
}




