@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:wght@400;600&display=swap');
.especialidades{
    display: flex;
    background-image: url('../imagenes/1654474187614.jpg');
    background-size: cover;
}
.conteiner-especialidades{
    width: 100%;
    padding: 25px;
    background-color: rgba(49,128,155,0.658);
    height: auto;
}
.conteiner-cards-especialidades{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
h3{
    text-align: center;
    font-family: 'Ibarra Real Nova', serif;
    font-weight: 600;
    font-size: 2em;
}
.card-especialidad{
    display: flex;
    flex-direction: column;
    width:300px;
    height: 400px;
    background-color: rgba(173,216,230,0.568);
    border-radius: 10px;
    border: 1px solid grey;
    margin: 15px;
    justify-content: center;
    align-items: center;

}
.card-img{
    width: 280px;
    height: 400px;
    margin: 15px;
}
.card-img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 15px;
    
}
.button-especialidad{
    width: 250px;
    height: 3em;
    border: 1px solid rgb(27, 16, 92);
    border-radius: 10px;
    background-color: rgba(35, 17, 136, 0.788);
    margin-top: 2em;
    margin-bottom: 2em;
    color: whitesmoke;
}
 a{
    text-decoration: none;
}
@media(min-width:359px) and (max-width:767px){
    .conteiner-cards-especialidades{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}