.card {
  display: block;
  border-radius: 4px;
  padding: 1vh;
  overflow: hidden;
  text-align: center;
  background-color: #eee;
  aspect-ratio: 350/450;
  height: 450px;
  margin: auto;
  position: relative;
}
.card h2 {
  margin: 10px 0;
  padding-top: 1vh;
  user-select: text;
  font-size: 16px;
}
.card h3{
  user-select: text;
  font-size: 13px;
}
  
.card p {
  margin: 1em 0;
  user-select: text;
  font-size: 10px;
}
.turnos{
  position: absolute;
  display: block;
  height: 6vh;
  width: 70%;
  border: 2px solid #0468b1 ;
  font-weight: bold;
  color: #0468b1;
  text-decoration: none;
  text-align: center;
  font-size: 2vh;
  bottom: 2vh;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 40px;
  z-index: 0;
}
.turnos:hover{
  background-color: #a4afb6;
  cursor: pointer;
}
.profesionales-img{
  width: 70%;
  height: 24vh;
  background-color: #0468b1;
  margin: auto;
  margin-top: 3vh;
}
/**/
.fernando-margherit .profesionales-img{
  background: url(../img/medicos/fernando.avif);
  background-position: center;
  background-size: cover;
}
.natalia-fonseca .profesionales-img{
  background: url(../img/medicos/natalia.avif);
  background-position: center;
  background-size: cover;
}
.maria-laura-pagnone .profesionales-img{
  background: url(../img/medicos/maria.avif);
  background-position: center;
  background-size: cover;
}
.noelia-bastini .profesionales-img{
  background: url(../img/medicos/noelia.avif);
  background-position: center;
  background-size: cover;
}
.romina-astifanus .profesionales-img{
  background: url(../img/medicos/romina.avif);
  background-position: center;
  background-size: cover;
}

.virginia-galletti .profesionales-img{
  background: url(../img/medicos/virginia.avif);
  background-position: center;
  background-size: cover;
}


/**/
@media(min-width: 800px){
  .card{
    scale: 1;
    transition: scale .3s;
    }
  .card:hover{
    scale: 1.03;
    transition: scale .3s;
  }
}
@media(width < 550px){
  .card{
    width: 80%;
    height: auto;
  }
}
@media(max-width: 300px){
  .card{
    font-size: 1vh;
    width: 70%;
  }
}