#banner-hero {
    position: relative;
    width: 100%;
    border-radius: 6px;
    margin-top: 70px;
}

.contenido-hero > img {
    width: 100%;
    background-size: cover;
    background-position: bottom;
}

#banner-hero:before {
    content: '';
    background: rgba(77,77,92,0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;
}

.contenido-hero {
    position: relative;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contenido-hero h3 span {
        font-weight: 600;
        position: absolute;
        z-index: 2;
        top: 35%;
        text-transform: uppercase;
        font-size: 43px;
        padding: 10px;
        color: #fff;
    }

    .contenido-hero p {
        position: absolute;
        text-transform: uppercase;
        line-height: 1.8;
        color: #fff;
        font-size: 20px;
        text-align: justify;
        padding: 20px;
        margin-top: 15%;
        z-index: 1;
    }

@media only screen and (min-width:220px) and (max-width: 450px) {
    .contenido-hero h3 span {
        font-size: 14px;
    }

    .contenido-hero p {
        font-size: 10px;
        margin-bottom: -15px;
    }
}

@media only screen and (min-width:451px) and (max-width: 500px) {
    .contenido-hero h3 span {
        font-size: 18px;
    }

    .contenido-hero p {
        font-size: 13px;
    }
}

@media only screen and (min-width:501px) and (max-width: 680px) {
    .contenido-hero h3 span {
        font-size: 21px;
    }

    .contenido-hero p {
        font-size: 15px;
    }
}


@media only screen and (min-width:681px) and (max-width: 870px) {
    .contenido-hero h3 span {
        font-size: 30px;
    }

    .contenido-hero p {
        font-size: 18px;
    }
}

.container-form{
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(1,1fr);
  grid-gap: 50px;
  margin-top: 90px;
  margin-bottom:75px;
  text-align: center;
}
.container-form h2{
  margin-bottom: 15px;
  font-size: 30px;
  text-transform: uppercase;
}
.container-form p{
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.container-form a{
  font-size: 17px;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  margin-bottom: 15px;
  color: black;
  font-weight: 700;
}
.container-form a i{
  color: #ff9100;
  margin-right: 10px;
} 


h2{
  text-align: center;
  margin: 10px 0;
  font-size: 30px;
  text-transform:uppercase;
}

@media screen and (max-width:1100px){
  .formulario{
    width: 50%;
  }
}

@media screen and (max-width:600px){
  .formulario{
    width: 60%;
  }
}

@media screen and (max-width:450px){
  .formulario{
    width: 80%;
  }
}

@media screen and (max-width:300px){
  .formulario{
     width: 90%;
  }
}

.faq-contenedor {
    max-width: 850px;
    margin: 0 auto;
}

.preguntas {
    background-color: transparent;
    border: 1px solid #0057aa;
    border-radius: 10px;
    margin: 20px 0;
    padding: 30px;
    position: relative;
    text-transform: uppercase;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-repuesta.active {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ff9100;
    font-size: 15px;
}

.preguntas .enlace {
    display: block;
    outline: none;
    text-decoration: none;
    padding: 2px 1px;
}

.enlace:link {
    color: #ff9100;
}

.enlace:visited {
    color: #009adc;
}

.enlace:focus {
    border-bottom: 1px solid;
    background: #bae498;
}

.enlace:hover {
    border-bottom: 1px solid;
    background: #0057aa;
    color: #fff;
}

.enlace:active {
    background: #ff9100;
    color: #cdfeaa;
}

.faq-titulo {
    margin: 0 35px 0 0;
    text-align: justify;
    font-size:16px;
}

.faq-repuesta {
    display: none;
    margin: 30px 0 0;
    text-transform: uppercase;
    text-align: justify;
    line-height: 1.8;
    font-size: 15px;
    color: #6a6a6a;
}

.preguntas.active .faq-repuesta {
    display: block;
}

.faq-toggle {
    background-color: transparent;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    color: #ff9100;
}

    .faq-toggle:focus {
        outline: none;
    }

    .faq-toggle .fa-times {
        display: none;
    }

.preguntas.active .faq-toggle .fa-times {
    display: block;
    color: white;
}

.preguntas.active .faq-toggle .fa-chevron-down {
    display: none;
}

.preguntas.active .faq-toggle {
    background-color: #ff9100;
}
