/*
* -------
* FILTERS
* -------
*/

.filters_div {
    height: 50px; 
    margin-left: 50px; margin-right: 50px; padding: 20px;
    display: flex; align-items: center; 
    background-color: white; 
    border-radius: 25px;
}

.filters_div select{
    width: auto; 
    border-radius: 10px; 
    margin-left: 10px;
}

/*
* ----
* CARD
* ----
*/

.cards_sec {
    display: flex; flex-direction: row; justify-content: center; align-items: center; flex-wrap: wrap; 
    margin: 20px;
}

.card_div {
    width: 25rem; 
    box-shadow: 0px 0px 23px 5px rgba(0,0,0,0.75); 
    border-radius: 25px; 
    margin-left: 30px; margin-top: 30px; 
    border-color: #295691; border-width: 5px;
}

.card_title {
    background-color: #295691; 
    padding: 10px; border-radius: 25px; 
    color: white; font-weight: bolder;
}

.card_div p {
    text-align: center;
}

/*
* %%%%%%%%%%
* RESPONSIVE
* %%%%%%%%%%
*/

@media only screen and (max-width: 880px) {
    .filters_div {
        height: unset; 
        flex-direction: column;
    }

    .filters_div label {
        margin-top: 15px;
        margin-left: 0px !important;
    }

    .filters_div select{
        margin-left: 0px;
    }
}

@media only screen and (max-width: 920px) {
    .card_div {
        margin-left: 0px;
    }
}