/* Card Slider */
#cardslider_container {
    display: flex;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    background-color: #dfcc34;
    padding:150px 0px;
}

#cardslider_baslik {
    position: absolute;
    padding: 50px;
    color: white;
}

#cardslider_baslik span {
    font-family: "Quicksand";
    font-size: 30px;
    color: #35403A;
}

#cardslider_baslik hr {
    color: #35403A;
}

/*Bizden Haberler Kartlar覺*/
#news_container {
    display: flex;
    justify-content: center;
    align-items: center ;
    margin: 50px 50px 100px 0px;
    width: 100%;
}
  
.news_card {
    text-align: center;
    position: relative;
    top: 100px;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.news_card .card {
    width: 250px;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 5px;
}

.news_card > .card > img {
    margin-top: 20px;
    width: 200px;
    border-radius:10px;
    
}

#news_container > button {
    padding: 10px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 100px;
    width: 50px;
    margin-top: 150px;
}

#news_container > button:disabled {
    background-color: #c0c0c0;
    cursor: not-allowed;
}
  
#prev {
    position: absolute;
    left: 50px;
    background-color: #dfcc34;
}
  
#next {
    position: absolute;
    right: 50px;
    background-color: #dfcc34;
}

@media screen and (max-width:768px) {
    #cardslider_container {
        padding:100px 0px;
    }

    #cardslider_baslik span {
        font-family: "Quicksand";
        font-size: 22px;
    }

    hr {
        width: 300px;
    }
    
    #prev {
        left: 10px;
    }
      
    #next {
        right: 10px;
    }
}

@media screen and (min-width:768px) and (max-width:1150px) {
    #cardslider_container {
        padding:100px 0px;
    }

    #cardslider_baslik span {
        font-family: "Quicksand";
        font-size: 22px;
    }

    hr {
        width: 300px;
    }
}
