@font-face {
    font-family: oswaldbold;
    src: url(../fuentes/static/Oswald-Bold.ttf);
}

@font-face {
    font-family: oswaldlight;
    src: url(../fuentes/static/Oswald-ExtraLight.ttf);
}

@font-face {
    font-family: LaguSansBold;
    src: url(../fuentes/Lagu\ Sans\ Light.otf);
}
  #whatsapp_button{
        z-index: 90;
        position: fixed;
        bottom: 50px;
        right: 60px;
        
    }
       #whatsapp_button img{
            position: absolute;
        width: 50px;
        height: auto;
        }
    /* Estilo para el contenedor del modal */
    .contenedor {
        width: 600px;
        height: 300px;
        max-height: 300px;
        /* Cambié a 100% para hacerlo fluido */
        max-width: 600px;
        /* Para limitar el tamaño máximo */
        margin: 0 auto;

        /* Centrado automático */
    }

.slider_modal{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
   
}
    /* Estilo del contenido del modal */
    .modal-content {

        width: 700px;
        height: 300px;
        border-bottom: none;
        background-color: transparent;
        border: none;
     
        /* Aseguramos que el contenido esté centrado */
        height: auto;
    }
    .modal-content .carousel-item img{
        width: 700px;
        height: 500px;
        object-fit: cover;
    }

    /* Estilo para el botón de cierre */
    .close {
        position: absolute;
        top: 10px;
        right: 10px;
        color: rgb(255, 255, 255);
        font-size: 30px;
        /* Tamaño del icono de cerrar */
        background: transparent;
        border: none;
    }

    .close span {
        margin: 5px;
    }

    /* Responsividad para dispositivos móviles y tabletas */
    @media (max-width: 768px) {
        .contenedor {
            width: 100%;
            max-width: 100%;
            padding: 10px;
            /* Añadir un poco de padding para móviles */
        }

        .modal-content {
            width: 100%;
            height: auto;
        }

        /* Ajustes en el tamaño del carrusel para pantallas pequeñas */
        .carousel-inner img {
            width: 100%;
            /* Las imágenes ocuparán el 100% de su contenedor */
            height: auto;
            /* Mantener la proporción de las imágenes */
        }

        .close {
            top: 5px;
            right: 5px;
        }
    }

    @media (max-width: 480px) {
        .close {
            font-size: 25px;
            /* Reducimos el tamaño del ícono en pantallas más pequeñas */
        }

        .modal-dialog {
            width: 100%;
            margin: 0;
            /* El modal ocupará toda la pantalla en dispositivos pequeños */
        }
    }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#boton_menu {
    display: none;
}
label{
    display: none;
}
.nav_noslider {
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 100px;
    padding: 10px;
    background-color: rgb(59, 61, 66);
    position: fixed;
    z-index: 50;
}

#img_principal {

    margin-top: 100px;
}

.nav_noslider figure {
    width: 250px;
    height: 80px;

}

.nav_noslider figure img {
    width: 100%;
    height: 100%;
}

.nav_noslider .ul {
    display: flex;
    justify-content: center;
    align-items: center;

}

.nav_noslider ul li {

    list-style: none;
    margin: 5px;
}
.nav_noslider .ul li .a {
    font-size: 17px;
padding: 15px 10px 15px 10px;
}
.nav_noslider .ul li a {
    text-decoration: none;
    font-size: 17px;
    color: rgb(255, 255, 255);
   
    font-family: oswaldbold;
}
.nav_noslider .ul li a:hover{
    color: rgb(10, 167, 224);
}
.nav_slider {
    display: none;
}
#active {
    color: rgb(10, 167, 224);
}

/* sub lista desplegable */

.father_ul {
    position: relative;


}
.father_ul:hover .sub_ul{
    display: flex; 
}
.sub_ul {
display: none;top: 100%;
background-color: rgb(59, 61, 66);
    width: 150%;
    border-radius: 10px;
    position: absolute;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.sub_ul li{
height: 100%;

    width: 100%;text-align: center;padding: 5px 0px 5px 0px;
}
.sub_ul a{
   
display: inline-block;
height: 100%;
    width: 100%;
    }



/*form*/

.form {
    padding-top: 30px;
    display: flex;
    margin-top: 50px;
    width: 100%;
    background-color: rgb(0, 0, 0);
}

.form .detalles_contactanos {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: rgb(255, 255, 255);
}

.form .detalles_contactanos .redes {

    margin-top: 20px;
    width: 20%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.form .detalles_contactanos .redes figure img {
    filter: invert(100%);
    width: 25px;
    height: 25px;

}

.form .detalles_contactanos {

    font-size: 20px;
    line-height: 1.5;
}

.form .detalles_contactanos h3 {

    width: 200px;
    text-align: left;
    position: relative;
    font-family: oswaldbold;
    font-weight: normal;
    margin-bottom: 25px;
}

.form .detalles_contactanos h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -50%;
    width: 30%;
    border-bottom: 3px solid rgb(10, 167, 224);


}

.form form {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.form form * {

    width: 80%;
    max-width: 700px;
    padding: 10px;
    margin: 7px;
    border: none;
    resize: none;
    border-radius: 5px;
    border: 1px rgba(115, 118, 119, 0.432) solid;
}

.form form *:focus {
    outline: none;
}

.form form .enviar {
    align-self: flex-start;
    background-color: transparent;
    text-align: center;
    padding: 10px;
    width: 80px;
    border: 2px rgb(10, 167, 224) solid;
    background-color: rgb(10, 167, 224);
    margin: 5px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    transition: border 0.3s, color 0.3s;

}

.head_nav{
    display: none;
}



.form form .enviar:hover {
    cursor: pointer;
    background-color: transparent;
    color: rgb(10, 167, 224);
}

/*    */
#img_principal button a{
    color: rgb(0, 0, 0);
    text-decoration: none;
}
#img_principal button:hover a{
    color: rgb(10, 167, 224);
}
#img_principal button  {
    width: 150px;
    padding: 15px;
    font-size: 20px;
    text-align: center;
    background-color: rgb(10, 167, 224);
    border: solid 2px rgb(10, 167, 224);
    transition: background-color 0.2s, color 0.2s;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-family: oswaldbold;
    font-weight: normal;
}

#img_principal button:hover  {
    cursor: pointer;
    background-color: transparent;
    color: rgb(10, 167, 224);

}

/*imagen horizontal principal*/

#img_principal {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

.filtro {
    position: absolute;

    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.445);
    z-index: -5;
}

#img_principal figure {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -10;
    left: 0;


}

#img_principal figure img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -10;
    object-fit: cover;
}

#img_principal h5 {
    color: rgb(255, 255, 255);
    font-size: 55px;
    margin-bottom: 20px;
    font-family: oswaldbold;
    font-weight: normal;
    letter-spacing: 0px;
}
/*form click*/


.modal-content button span{
    margin: 20px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 25px;
    font-weight: bolder;
    color: rgb(12, 12, 12);
}
.modal-content button span:hover{

    cursor: pointer;
}

.form-click form {
    overflow:hidden;
    overflow-y: scroll;
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 90%;
    
  
    display: flex;
    flex-direction: column;

    align-items: center;
}
.form-click form input , form textarea{
    outline: 1px solid rgba(0, 0, 0, 0.733);
}
.form-click form figure{
    align-self: flex-end;
    width: 200px;
    height: 80px;
}
.form-click form * {

    width: 90%;
    max-width: 900px;
  

    border: none;
    resize: none;
  
    margin:  3px 0px 3px 0px ;
}
.form-click form input ,  .form-click form textarea {
padding: 10px;

}
.form-click form textarea {
    min-height: 200px;
height: 200px;
}
.form-click form  .colum{
    flex-direction: column;
    
   padding: 0px;
   display: flex;
  
   align-items:flex-start;
}
.form-click form .row{

   padding: 0px;
    display: flex;
    justify-content:space-between;
    align-items:center;

}
.form-click form .row #checkbox{
    outline: none;width: 15px;
    height: 15px;
    margin-right: 10px;
}
.form-click form p{
   width: 100%;
   text-align: justify;
}
.form-click form .row input{
    width: 49%;
}
.form-click .row:last-child {
   padding-bottom: 20px;
}

.form-click  form *:focus {
    outline: 1px solid rgb(10, 167, 224) ;
}
#checkbox:checked~.enviar {
  background-color: bisque;
}
.form-click form .enviar {
    
 opacity: 0;
outline: none;
    background-color: transparent;
    text-align: center;
    padding: 10px;
    width: 80px;
    border: 2px rgb(10, 167, 224) solid;
    background-color: rgb(10, 167, 224);
    margin: 5px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    transition: border 0.3s, color 0.3s;

}

.form-click form .enviar:hover {
    cursor: pointer;
    background-color: transparent;
    color: rgb(10, 167, 224);
}

@media only screen and (max-width: 1250px) {
    .nav_noslider {
        display: none;
    }
    /*visibility: hidden;*/
    .nav_slider {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.904);
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;z-index: 180;
    }

    .head_nav figure img{
        width: 120px;
        height: auto;
        padding: 5px 2px;
        
    }
    .head_nav figure{
    margin: 0;
    }
    .head_nav{
    padding: 0px 10px;
    display: flex;
    justify-content:space-between;
    align-items: center;
    width: 100vw;
    height: auto;
    background-color: rgb(0, 0, 0);
    position: fixed;
    z-index: 100;
    }
    
    label {
        padding: 0px 10px 0px 0px;
       display: block;
        font-size: 35px;
       
        font-weight: bold;
      
        color: rgb(255, 255, 255);
    }

    label:hover {
        cursor: pointer;

    }

  

    #boton_menu:checked~.nav_slider {
        visibility: visible;
    }

    .nav_slider ul {
        text-align: center;
    }

    .nav_slider li {
        padding: 5px;
        list-style: none;
        font-family: oswaldbold;
    }

    .nav_slider a:hover {

        color: rgb(255, 255, 255);
    }
  

    .nav_slider li i {
        margin-right: 10px;
        font-size: 20px;
        height: auto;
    }

    .nav_slider a {
        text-decoration: none;
        font-family: oswaldbold;
        font-weight: normal;
        letter-spacing: 0px;
        font-size: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: rgb(10, 167, 224);
        transition: color .5s;
    }


    #img_principal {

        margin-top: 0px;
    }
}

@media only screen and (max-width: 1100px) {
    
.form .detalles_contactanos .redes {
       
    width: 40%;
  
}
.form form {
    width: 80%;
   

}
}
@media only screen and (max-width: 900px) {
    #img_principal h5 {
     
        font-size: 45px;
    
      
    }
    
}
@media only screen and (max-width: 800px) {
    
#img_principal {
   
   
    height: 500px;
}
.form {
 
    display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}
.form form {
    width: 100%;
   
}
.form form {
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form form .enviar {
    align-self: center;
}

#img_principal h5 {
   
    font-size: 40px;
  
}

#img_principal h6 {
  
    font-size: 25px;
   
}
}
@media only screen and (max-width: 650px) {
    span{
        
        right: 0;
     
        color: rgb(0, 0, 0);
    }
    #img_principal h5 {
       
        font-size: 30px;
      
    }
    
    #img_principal h6 {
      
        font-size: 20px;
       
    }
    
    #img_principal a {
        width: 100px;
        padding: 10px 15px 10px 15px;
        font-size: 18px;
      
    }



    
    
    .form-click form {
       
        width: 100%;
        height: 100%;
        
     
    }
 







    }
    @media only screen and (max-width: 550px) {

        .form-click form .row{

           
             flex-direction: column;
            
         
         }
         .form-click form .row input{
            width: 100%;
        }
        
    }
    @media only screen and (max-width: 500px) {
        #img_principal h5 {
   
            font-size: 25px;
          
        }
        
        #img_principal h6 {
          
            font-size: 18px;
           
        }
        
.form-click form figure{
    align-self:center;
   
}
    }
    

@media only screen and (max-width: 500px) {
    #img_principal h5 {
   
        text-align: center;
      
    }
    
    #img_principal h6 {
      
        text-align: center;
       
    }
    .form form {
  
        width: 100%;
       
    }
    .form form * {
        width: 95%;
    }
    .form .detalles_contactanos  {
       
        width: 100%;
    }

}
@media only screen and (max-width: 450px) {



   
    
    .form-click form {
        
        width: 100%;
       
    }
  
    .form-click form * {
    
        width: 95%;
      
    }  

}