@import url(menu.css);
@import url(menu_pagina.css);
@import url(banner.css);
@import url(Nosotros.css);
@import url(NegociosServicios.css);
@import url(Experiencia.css);
@import url(Proyectos.css);
@import url(Noticias.css);
@import url(politicaCookies.css);
@import url(politicaPrivacidadCookies.css);
@import url(contactenos.css);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

.ImgLog1 {
     width: 25%; 
     height:25%;
}

header {
    width: 100%;
    height: 82px;
    background: #fff;
    color: #333; /**Color de texto**/
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

h1 {
    float: left;
}

header .contenedor {
    display: table;
}

.contenedor {
    width: 98%;
    margin: auto;
}
section {
    width: 100%;
    margin-bottom: 25px;
    
}


/*********Pie de Pagina**********/

footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
    color: #232546;
    font-weight: bold;
}


.copy {
    font-size: 12px;
}

.sociales {
    width: 100%;
    text-align: center;
    font-size: 30px;
  
}

.sociales a {
    color: #232546;
    text-decoration: none;
}
/******Datos de Contacto******/
.datosContacto{
    width: 100%;
    margin-bottom: 20px;
    color: #232546;
    font-weight: bold;
    font-size: 12px;
}

.icon-whatsapp{
    font-size: 14PX;
}
/******Final de Datos de Contacto******/

/************iInicio Banner Popup*****************
.modal {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;

    
    display: flex;

    animation: modal 2s 1s forwards;
    visibility: hidden;
    opacity: 0;
}

.contenido  {
    margin: auto;
    
    background: white;
    border-radius: 10px;
}

#cerrar {
    display: none;
}
#cerrar + label{
    position: fixed;
    color: #fff;
    font-size: 25px;
    z-index: 50;
    background: #232546;
    height: 50px;
    width: 65px;
    line-height: 45px;
    border-radius: 90%;
    right: 15px;
    cursor: pointer;

    animation: modal 2s 1s forwards;
    visibility: hidden;
    opacity: 0;

}
#cerrar:checked + label, #cerrar:checked ~ .modal {
    display: none;
}
@keyframes modal{
    100% {
        visibility: visible;
        opacity: 1;
    }
}
/************fin Banner Popup****************/

/*****Responsive******/
@media (min-width:480px){
    
    .ImgLog1 {
     width: 20%; 
     height: 20%;
    }

    
}


@media (min-width:768px){
    
    
    .sociales{
        width: auto;
    }
    
    footer .contenedor{
        justify-content: space-between;
    }
    
    

  .ImgLog1 {
     width: 15%; 
     height: 25%;
    }
}


@media (min-width:1024px){
    .contenedor {
        width:1000px;
    }
    
    
  .ImgLog1 {
     width: 15%; 
     height:12%;
    }
    
    
    footer {
        padding-top: 35px;
       
    }
}



