@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

.contenedor-banner{
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  height: auto;
  overflow: hidden;
  position: relative;
  font-family: 'Open Sans', sans-serif;
  color: white;
}
.img-banner{
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ocultar{
  display: none;
}
{# Estilos en el TEXTO DEL BANNER #}
.contenido-texto{
  position: absolute;
  width: 80%;
  left: 10%;
  top: 20%;
}
.contenedor-texto__banner{
  width: 100%;
  max-width: 700px;
}
.texto__banner-titulo{
  font-weight: 700;
  font-size: 32px;
}
.texto__banner-frase{
  font-weight: 400;
  font-size: 24px;
}
.texto__banner-btn{
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10px;
  font-weight: 600;
  background-color: white;
  color: #0256A0;
  text-decoration: none;
  transition: all ease .3s;
  border: 1px solid #0256A0; 
}
.texto__banner-btn:hover{
  background-color: #0256A0;
  color: white;
  border: 1px solid white;
}


@media screen and (max-width: 425px){
  .contenido-texto{
    top: 0;
    left: 5%;
    width: 90%
  }
  .texto__banner-titulo{
    font-size: 20px;
    margin: 4px 0;
  }
  .texto__banner-frase{
    font-size: 15px;
    margin: 4px 0 8px 0;
  }
}