header a {
    color: black;
}
.submenu a {
    color: white;
}

.alert_text{
    color: red;
    display: none   ;
}

/* Banner principal */
.container-banner{
    display:flex;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    position: relative;
}
.wrapper{
    display: flex;
    width: 90%;
    height: max-content;
}
.banner-img{
    width: 50%;
    text-align: center;
}
.banner-img svg{
    width: 90%;
}
.banner-text{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.banner-text__content{
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.banner-text__content h1{
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: 0.1;
    color: #31466E
}

.banner-text__content p{
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    color: #31466E;
}

/* Flecha 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;
}

/* SECCION DEL FORMULARIO */
.section_form{
    background-color: #C8D6E9;
    height: 100vh;
    width: 100vw;
    display: flex;
}
.section_form-left{
    width: 50%;
}
.section_form-left img{
    height: 100%;
    width: 100%;
}
.section_form-right{
    padding-right: 5%;
    width: 50%;
    display: flex;
    justify-content: center;
}
.content_form{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center ;
}

/* FORM */
.fill_input{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.formulario_denuncias{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10%;
}
.content_form h3{
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
}
.content_form p{
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
}
.input_doble{
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 2%;
}
.input_doble >input{
    width: 49%;
}
.desc_select{
    display: none;
}
select, input{
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 2px solid #BFBFBF;
}
textarea{
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 2px solid #BFBFBF;
    height: 130px;
    resize: none;
}
.drop-area{
   border: 2px solid #BFBFBF;

   border-radius: 10px;
   /* DISABLED */
   background-color: #D4DDEB;
   cursor: pointer;

}
.drop-area.active{
    background-color: #b8d4fe;
    color: black;
    border: 2px dashed #618ac9;
}
.drop-area p{
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    padding: 10px;
    /* DISABLED */
    /* color: -internal-light-dark(rgb(84, 84, 84), rgb(170, 170, 170)); */
    color: #7E8080;
}

.btn_enviar{
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: none;
    background-color: #31466E;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

/* ANIMACION DE ENVIAR FORMULARIO */
/* HTML: <div class="loader"></div> */
.loader{
    display: none;
    height: 20px;
    width: 10%;
    aspect-ratio: 2;
    box-sizing: border-box;
    background: 
      radial-gradient(farthest-side,#fff 98%,#0000) left/20px 20px,
      radial-gradient(farthest-side,#fff 98%,#0000) left/20px 20px,
      radial-gradient(farthest-side,#fff 98%,#0000) center/20px 20px,
      radial-gradient(farthest-side,#fff 98%,#0000) right/20px 20px,
      #31466E;
    background-repeat: no-repeat;
    animation: load 1s infinite;
  }
  @keyframes load {
    100%  {background-position:right,left,center,right}
  }


/* Footer */
footer {
    width: 100vw;
    background-color: #282829;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contenedor_footer {
    width: 80%;
    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;
}

@media(max-width:1680px){
    .banner-text__content h1{
        font-size: 34px;
    }

    .banner-text__content p{
        font-size: 21px;
    }

    /* Flecha 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: 10px;
        border-radius: 10px;
    }
    .flecha__vermas p{
        color: #000000;
        font-size: 12px;
    }
    .flecha__vermas:hover{
        background-color: rgba(0, 0, 0, 0.482);
    }
    .flecha__vermas img{
        width: 30px;
        width: 18px;
    }

    /* FORM */
    .formulario_denuncias{
        gap: 12px;
    }
    .content_form h3{
        font-size: 16px;
    }
    .content_form p{
        font-size: 11px;
    }
    select, input{
        font-size: 11px;
        padding: 7px;
        border-radius: 7px;
        border: 1.5px solid #BFBFBF;
    }
    textarea{
        font-size: 11px;
        padding: 7px;
        border-radius: 7px;
        border: 1.5px solid #BFBFBF;
        height: 94px;
    }
    .btn_enviar{
        font-size: 11px;
        padding: 7px;
        border-radius: 7px;
    }


      /* SECCION DE FOOTER  */
    .contenedor_footer {
        width: 90%;
    }
    .title_section {
        font-size: 16px;
    }
    .footer_item {
        font-size: 14px;
    }
    .footer_item img {
        width: 32px;
    }
    .btn_upload label {
        font-size: 20px;
    }
    .name_content{
        margin-top: 10px;
    }

    .footer_txt_contacto {
        display: flex;
        width: 80%;
        color: white;
        gap: 2rem;
        margin-top: 1rem;
        margin-bottom: 3rem;
    }
    .footer_txt_left p,
    .footer_txt_right p {
    font-size: 16px;
    }
    .footer_txt_left ul > li,
    .footer_txt_right ul > li {
    font-size: 16px;
    }

}

@media(max-width:1024px){

    /* SECCION DE FOOTER */
  .footer_txt_contacto {
    flex-direction: column;
  }
  .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){
    /* BANNER */
    .wrapper{
        flex-direction: column;
    }
    .banner-img, .banner-text{
        width: 100%;
    }
    .banner-text h1,p{
        text-align: center;
    }
    .banner-img{
        margin-top: 5%;
    }

    /* FORMULARIO */
    .section_form{
        flex-direction: column;
        height: max-content;
    }
    .section_form-left, .section_form-right{
        width: 100%;
    }
    .section_form-left{
        height: 25%;
    }
    .section_form-left img{
        object-fit: cover;
    }
    .section_form-right{
        height: 75%;
    }
    .input_doble{
        flex-direction: column;
        gap: 20px;
    }
    .formulario_denuncias{
        gap: 20px
    }
    .content_form{
        padding-top: 20%;
        padding-bottom: 20%;
    }
    .content_form h3{
        font-size: 24px;
    }
    .content_form p{
        font-size: 16px;
        text-align: left;
    }
    select, input{
        font-size: 16px;
        border: 2px solid #BFBFBF;
        border-radius: 10px;
    }
    textarea{
        font-size: 16px;
        border: 2px solid #BFBFBF;
        border-radius: 10px;
    }
    .btn_enviar{
        font-size: 16px;
        padding: 10px;
        border-radius: 10px;
    }

    /* SECCION FOOTER */
  .contenedor_footer {
    flex-direction: column;
  }
  .wrapper__contenido__footer {
    margin-top: 2rem;
    gap: 15px;
    flex-wrap: wrap;
  }
  .footer_txt_contacto {
    flex-direction: column;
  }
}

@media (max-width:920px) and (orientadion: landscape) and (min-width:600px){

}

@media(max-width:390px){
    .container-banner{
        height: max-content ;
        min-height: 100vh;
    }
    .banner-text__content{
        width: 100%;
    }
    .banner-text__content h1{
        font-size: 18px;
    }
    .banner-text__content p{
        font-size: 16px;
    }
}

