header a{
    color:black;
}
.submenu a{
    color:white;
}
.container-banner{
    display:flex;
    height:100vh;
    justify-content: center;
    align-items:center;
    position: relative;
}
/* FLECHA DE VER MAS */
.flecha__vermas{
    position: absolute;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    padding: 15px;
    border-radius: 10px;
  }
  .flecha__vermas p{
      color: #000000;
  }
  .flecha__vermas:hover{
    background-color: rgba(0, 0, 0, 0.482);
  }
  .flecha__vermas img{
    width: 30px;
  }
  /* FIN DE ESTILOS PARA LA FLECHA */
.wrapper{
    display:flex;
    width:80%;
    height: max-content;
}
.banner-text{
    display: flex;
    align-items:center;
    justify-content: center;
    flex-direction: column;
}
.banner-text span{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    text-align: let;
    color: #6C6973;
}
.banner-text h1{
    font-family: 'Montserrat';
    width:80%;
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    line-height: 78px;
    letter-spacing: 0.1;
    color:#31466E;
}
.banner-img{
    width: 100%;
}

/* seccion de formularios */

.container-txt_soporte{
    /* background-color: red; */
    width: 70%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contacto_soporte_left{
    /* height: 100%; */
    background-color: #31466E;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container-txt_soporte h2{
    font-weight: 700;
    font-size: 64px;
    line-height: 98px;
    width: 60%;
    /* letter-spacing: 0.1em; */
    color: #FFFFFF;
    margin-top: 2rem;
}
.container-txt_soporte p{
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    color: #FFFFFF;
}

.contacto_soporte_right{
    background-color: #EFF3FA;
    width: 50%;
}
.wrapper_cotacto_soporte{
    display: flex;
}

.footer_txt_soporte{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    
}

.first_p{
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    color: #FFFFFF;
}
.otros_metodos{
    display: flex;
    /* background-color: red; */
    width: 100%;
    justify-content:left;
    margin-top: 2rem;
}
.otros_metodos h4{
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    color: #FFFFFF;
}
.otros_metodos p{
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    color: #FFFFFF;
}
.otros_metodos-left{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.otros_metodos-right{
    /* background-color: red; */
    margin-left: 1.5rem;
    display: flex;
    gap:1rem;
    flex-direction: column;
    margin-bottom:2rem ;
}

.otros_metodos-right ul>li{
    color: white;
    list-style: circle;
    padding-top: 5px;
    margin-left: 1rem;
    font-size: 20px;
}
.ul_otros_right{
    margin-top: 1rem;
}

/* seccion del formulario */
.contacto_soporte_right{
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrapper_soporte-formulario{
    margin-top: 50px;
    margin-bottom: 50px;
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.wrapper_soporte-formulario p{
    font-weight: 700;
    font-size: 48px;
    line-height: 59px;
    text-align: center;
    color: #31466E;    
}
.btn_soporte_landing{
    background: #F0AB00;
    border-radius: 15px;
    font-size: 32px;
    color: #FFFFFF;
    width: 400px;
    padding-top:15px;
    padding-bottom:15px;
    text-align: center;
}
.btn_soporte_landing:hover{
    background-color: #eba800!important;
}
.wrapper_soporte-formulario img{
    width: 704px;
    height: 446px;
}

#ruc__error{
    color: red;
    font-size: 18px;
}
form{
    display: flex;
    flex-direction: column;
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 100%;
    /* justify-content: center; */
    /* align-items: center; */
}
form p{
    margin-top: 20px;
}
select{
    font-size: 20px;
    padding: 14px 30px;
    background-color: transparent;
    margin-top: 20px;
    border: solid 3px black;
    border-radius: 15px;
    /* padding-right: 20px; */
}
input[type="number"]{
    font-size: 20px;
    padding: 14px 30px;
    border: solid 3px black;
    border-radius: 15px;
    margin-top: 2rem;
    background-color: transparent;
}   
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

/* PARA LA ANIMACION DE QUE SE ESTA ENVIANDO UN MENSAJE */
.enviando{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}
#enviandoSpan{
    display: none;
    margin-top: 1rem;
}
.preloader {
    display: none;
    width: 70px;
    height: 70px;
    border: 10px solid #fff;
    border-top: 10px solid #31466E;
    border-radius: 50%;
    animation-name: girar;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    cursor: wait;
  }
  @keyframes girar {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  .preloader.active{
      display: block;
  }
  #enviandoSpan.active{
      display: block;
  }
  .enviando{
      margin-bottom: 2rem;
  }
.container_tipo_atencion{
    margin-top: 1rem;
    margin-left: 5%;
}
.tipo_atencion{
    display: flex;
    flex: row;
    align-items: center;
    gap: 9px;
}

.tipo_atencion label{
    font-size: 20px;
}

.aplicaciones_left{
    display: flex;
    flex-wrap: wrap;
}
.check_app{
    width: 50%;
}
.container_aplicaciones{
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.check_app{
    display: flex;
    font-size: 20px;
    align-items: center;
    gap: 9px;
}

.if_incidente{
    display: none;
    transition: all 0.8s ease-out;
}
.if_incidente.active{
    display: block;
}

input[type="text"]{
    border: solid 3px black;
    border-radius: 15px;
    height: 78px;
    font-size: 32px;
    padding-left: 20px;
    margin-top: 20px;
    background-color: transparent;
}
input[type="email"]{
    border: solid 3px black;
    border-radius: 15px;
    height: 78px;
    font-size: 32px;
    padding-left: 20px;
    margin-top: 2rem;
    background-color: transparent;
}

input[type="submit"]{
    cursor: pointer;
    width: 100%;
    outline: none;
    border: none;
    font-size: 20px;
    padding: 14px 30px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    background-color: #31466e;
}


textarea{
    background-color: transparent;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 180px;
    font-size: 20px;
    resize: none;
    cursor:pointer;
    border: 3px solid #000000;
    box-sizing: border-box;
    border-radius: 15px;
    padding-left: 20px;
}
.conteiner-check{
    margin-bottom: 20px;
}

  input[type="file"]{
      display: none;
      margin-top: 20px;
      font-size: 20px;
      margin-left: 5%;
  }
  .btn_upload{
      display: flex;
      gap: 9px;
      align-items: center;
  }
  .container_upload_file p{
      margin-bottom: 20px;
  }
  .btn_upload label{
    border-radius: 15px;
    background-color: transparent;
    border: 3px solid black;
    font-size: 20px;
    padding: 10px 20px;
    cursor: pointer;
}
/* footer */
footer{
    width: 100vw;
    background-color: #282829;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contenedor_footer{
    width: 80%;
    /* background-color: blue; */
    align-items: center;
    display: flex;
    padding: 40px;
    justify-content: space-between;
  }
  .wrapper__contenido__footer{
    display: flex;
    gap:2rem
  }
  
  .title_section{
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 20px;
    padding-left: 0px;
  }
  .footer_item{
    padding: 15px;
    padding-left: 0;
  }
  .footer_by{
    padding-bottom: 40px;
  }
  .conteiner-check a{
    color: #000000;
    text-decoration: underline;
}
.conteiner-check a:hover{
    font-weight: 500;
}
/* ESTILOS PARA EL IFRAME */
.container_iframe{
    min-height: 100vh;
    height: 100vh;
}



@media(max-width:1680px){
      .banner-text h1{
        font-size: 48px;
        width: 80%;
        line-height:50px ;
    }
     /* SECCION DE FOOTER  */
     .contenedor_footer{
        width: 90%;
      }
      .title_section{
        font-size: 16px;
      }
      .footer_item{
        font-size: 14px;
      }
      .footer_item img{
        width: 32px;
      }
      /* TAMAÑOS DEL TEXTO IZUIERDA FORMULARIO */
      .container-txt_soporte{
        gap:0;
      }
      .container-txt_soporte svg{
        width: 106px;
      }
      .container-txt_soporte h2{
          font-size: 48px;
           line-height: 1.4;
        }
      .container-txt_soporte p{
          font-size: 16px;
          margin-top: 3rem;
          line-height: 1.2;
      }  
      .footer_txt_soporte{
          width: 70%;
      }
      .first_p{
          font-size: 16px;
          line-height: 1.2;
      }
      .otros_metodos p{
          font-size: 16px;
      }
      .otros_metodos h4{
          font-size: 16px;
      }     
      .otros_metodos-left,.otros_metodos-right{
          gap:.2rem;
      }
      /* TAMAÑOS DEL TEXTO DEL FORMULARIO */
      .tipo_atencion label{
          font-size: 16px;
      }
      .check_app{
        font-size: 16px;
      }
      
      select,input[type="text"],input[type="email"],input[type="number"]{
        font-size: 16px;
        border-radius: 10px;
        margin-bottom: 10px;
        border: 2px solid black;
        padding: 10px 20px;
      }
      select{
        margin:0;
      }
      input[type="submit"]{
          font-size: 16px;
          padding: 10px 20px;
          border-radius: 10px;
      }
      .container_upload_file p{
        margin-bottom: 10px;
      }
      textarea{
        border: solid black 2px;
        margin-top: 10px;
        margin-bottom: 10px;  
        height: 120px;
          font-size: 16px;
          padding: 5px 10px;
      }
      form p{
          margin-top: 10px;
      }
      .wrapper_soporte-formulario p{
          font-size: 32px;
          line-height: 1.2;
      }
      .btn_soporte_landing{
        font-size: 16px;
          padding: 10px 20px;
          border-radius: 10px;
    }
    
    .wrapper_soporte-formulario img{
        width: 80%;
        height: auto;
    }

      .btn_upload label{
          font-size: 16px;
          border: solid black 2px;
      }
      .conteiner-check label{
        font-size: 12px;
      }
      .otros_metodos-right ul>li{
        font-size: 16px;
      }
}
@media(max-width:1024px){

    .container-txt_soporte h2{
        font-size: 40px;
        line-height: 1.5;
    }
    .container-txt_soporte svg{
        width: 120px;
    }
    .container-txt_soporte p{
        font-size: 24px;
    }
    .otros_metodos{
        flex-direction: column;
        gap: 2rem;
    }
    .wrapper_soporte-formulario img{
        width: 80%;
        height: auto;
    }
    .banner-text h1{
        font-size: 36px;
        width: 80%;
        line-height:1.2 ;
    }

     /* SECCION DE FOOTER */
     .contenedor_footer{
        width: 95%;
      }
      .title_section{
        font-size: 12px;
      }
      .footer_item{
        font-size: 11px;
      }
      .footer_item img{
        width: 24px;
      }
      .footer_by{
        font-size: 14px;
      }
}

@media (max-width:920px) {
    header a{
        color:white;
    }
    .container-banner{
    height: max-content;
    padding-top: 70px;
    }
    .wrapper{
        flex-direction: column;
        height: max-content;
    }
    .banner-text{
        width: 100%;
    }
    .banner-text h1{
        text-align: center;
        width: 100%;
    }

    .wrapper_cotacto_soporte{
        flex-direction:column;
    }
    .contacto_soporte_left{
        width: 100%;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .contacto_soporte_right{
        width: 100%;
    }
    .btn_upload{
        flex-direction: column;
        align-items: flex-start;
    }
   
    .wrapper_soporte-formulario p{
        font-size: 32px;
        line-height: 1.2;
    }
    .btn_soporte_landing{
        font-size: 20px;
        width: 200px;
  }
  
  .wrapper_soporte-formulario img{
      width: 80%;
      height: auto;
  }

    /* SECCION FOOTER */
    .contenedor_footer{
        flex-direction: column;
      }
      .wrapper__contenido__footer{
        margin-top: 2rem;
        gap: 15px;
        flex-wrap: wrap;
      }
    .container-banner{
        height:100vh;
    }
    .wrapper_soporte-formulario{
        width: 90%;
    }
    form{
        /* background-color: teal; */
        width:100% ;
    }
    input[type='text'] {
        border: solid 2px black;
        border-radius: 15px;
        font-size: 18px;
        padding: 15px;
        height: max-content;
        margin-top: 2rem;
    }
    input[type='number'] {
        border: solid 2px black;
        border-radius: 15px;
        font-size: 18px;
        padding: 15px;
        height: max-content;
        margin-top: 2rem;
    }
    input[type='email'] {
        border: solid 2px black;
        border-radius: 15px;
        height: max-content;
        font-size: 18px;
        padding: 15px;
    } 
    select {
        margin-top: 2rem;
        border: solid 2px black;
        border-radius: 15px;
        height: max-content;
        font-size: 18px;
        padding: 15px;
        /* padding-right: 20px; */
    }
    textarea {
        margin-top: 2rem;
        margin-bottom: 2rem;
        height: 180px;
        font-size: 18px;
        resize: none;
        /* cursor: pointer; */
        border: 2px solid #000000;
        box-sizing: border-box;
        border-radius: 15px;
        padding: 15px;
    }
    input[type='submit'] {
        font-size: 20px;
    }
    .wrapper_soporte-formulario p{
        font-size: 24px;
    }
    
}

@media (max-width:920px ) and (orientation:landscape) and (min-width:600px){
    .container-banner{
        height: max-content!important;
        
    }
    .wrapper{
        flex-direction: column!important;
        height: 100%;
    }
}

/* ESTILOS PARA GALAXY FOLD */
@media (max-width:300px){
    .banner-text h1{
        font-size: 34px;
        line-height: 1.2;
    }
    .container-txt_soporte h2{
        font-size: 28px;
    }
    .container-txt_soporte p{
        font-size: 18px;
        line-height: 1.4;
    }
    .first_p{
        line-height: 1.4;
    }
    .container_aplicaciones{
        flex-direction: column;
        margin-left: 5%;
    }
}