/**MODAL SELECT AUTOESCUELAS**/
.select_header {
    background-color: #ff4858;
    color: white;
    text-align: center;
}
.select_title {
    font-size: 32px;
    font-weight: bold;
    padding: 20px 0 0 0;
    margin: 0;
}
.select_subtitle {
    font-size: 18px;
    padding: 0 0 20px 0;
    margin: 0;
}
.select_container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}
.select_container .card {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
}
.select_container .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(50%);
}
.select_container .card.lleida::before {
    background-image: url('/wp-content/uploads/2025/02/lleida.webp');
}
.select_container .card.barcelona::before {
    background-image: url('/wp-content/uploads/2025/02/barcelona.webp');
}
.select_container .card.tarragona::before {
    background-image: url('/wp-content/uploads/2025/02/tarragona.webp');
}
.select_container .card-content {
    position: relative;
    z-index: 1;
}
.select_container select {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

/**MEDIA QUERIE 800px**/
@media (max-width: 800px) {
    .select_container {
        width: 100% !important;
        flex-direction: column;
        align-content: center;
    }
}