.banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  background: #363636;
  color: aliceblue;
  width: 100%;
  height: 15rem;
}

.banner .imagen {
  width: 40%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner .imagen img {
  width: 40%;
  object-fit: cover;
  object-position: bottom;
  border-radius: 50%;
}

.banner .contenedor-h4 {
  width: 60%;
  margin: 2rem 0;
}

.banner h4 {
  width: 90%;
  text-align: justify;
  font-family: "Lora";
}

/* Media Queries */
@media only screen and (max-width: 600px) {
  .banner {
    flex-direction: column;
    height: auto;
    padding: 1rem 0;
  }

  .banner .imagen {
    display: none;
  }

  .banner .contenedor-h4 {
    width: 80%;
  }

  .banner h4 {
    width: 100%;
  }
}

@media only screen and (max-width: 450px) {
  .banner {
    font-size: 0.7rem;
  }
}
