* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}


/******************************************************/
/************************NAVEGADOR*********************/
/******************************************************/

nav {
    background-color: #fff;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.logo {
    width: 180px;
    height: 80px;
    background-image: url("../img/logo_lmd.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    float: left;
    cursor: pointer;
}

nav ul {
    float: right;
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a {
    color: #185980;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
}

nav ul li a:hover {
    background: #6BD5FF;
    transition: .5s;
}

.checkbtn {
    font-size: 30px;
    color: #185980;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

@media (max-width: 952px) {
    .logo {
        font-size: 30px;
        padding-left: 50px;
    }
    
    nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 852px) {
    .checkbtn {
        display: block;
    }
    
    ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #185980;
        text-align: center;
        top: 80px;
        left: -100%;
        z-index: 1;
        transition: all 0.5s;
        overflow-y: scroll;
    }
    
    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
        
    }
    
    nav ul li a {
        color: #fff;
        font-size: 20px;
    }
    
    nav ul li a:hover {
        background: none;
        color: #6BD5FF;
    }
    
    #check:checked ~ ul {
        left: 0;
    }
}
/******************************************************/
/************************PORTADA***********************/
/******************************************************/

h1 {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 46px;
    text-align: center;
    padding-top: 40vh;
    text-transform: uppercase;
}

/*******************EFECTO PORTADA*********************/

section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(../img/portada.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section .wave {
    position: absolute;
    width: 100%;
    height: 143px;
    bottom: 0;
    left: 0;
    background: url(../img/wave.png);
    animation: animate 10s linear infinite;
}

section .wave:before {
    content: '';
    width: 100%;
    height: 143px;
    background: url(../img/wave.png);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
    animation: animate-reverse 10s linear infinite;
}

section .wave:after {
    content: '';
    width: 100%;
    height: 143px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    animation-delay: -5s;
    animation: animate 20s linear infinite;
}

@keyframes animate {
    0% {
        background-position: 0;
    }

    100% {
        background-position: 1360px;
    }
}

@keyframes animate-reverse {
    0% {
        background-position: 1360px;
    }

    100% {
        background-position: 0;
    }
}

/******************************************************/
/**********************NOSOTROS************************/
/******************************************************/
.contenedor-nosotros {
    margin: 20px auto;
    width: 100%;
    height: auto;
    background-color: #fff;
}

.subtitulos {
    width: 100%;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 44px;
    color: #6BD5FF;
}

.parrafo {
    margin: 20px auto;
    width: 90%;
    max-width: 850px;
    height: auto;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    color: #777;
}

.contenedor-flex {
    margin: 25px auto;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.contenedor-box {
    margin: 10px auto;
    width: 300px;
    height: 150px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: #555;
    font-weight: 600;
}

.fonts-cuadrado {
    margin: 10px auto;
    width: 100px;
    height: 100px;
    font-size: 50px;
    line-height: 100px;
    border: 2px solid #185980;
    color: #185980;
    border-radius: 100px;
}

/******************************************************/
/*******************SERVICIOS**************************/
/******************************************************/

.contenedor-servicios {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    background-color: #6BD5FF;
    background-image: linear-gradient(125deg, #81ecec, #6BD5FF, #2980b9, #185980);
    background-size: 400%;
    animation: bganimation 15s infinite;
}

@keyframes bganimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.contenedor-servicio {
    margin: 15px auto;
    width: 90%;
    max-width: 400px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    border: 4px solid #185980;
    border-radius: 20px;
}

/*******************IMAGENES SERVICIOS*****************/

.img-servicio1 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/cableado_estructurado.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio2 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/control_de_acceso.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio3 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/sistema_vigilancia.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio4 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/sonido_ambiental.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio5 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/fibra_optica.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio6 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/data_center.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio7 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/enlaces_inalambricos.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio8 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/proteccion_electrica.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio9 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/infraestructura_tecnologica.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio10 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/software_personalizado.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio11 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/paginas_web.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio12 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/mantenimiento_preventivo.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio13 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/mantenimiento_correctivo.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.img-servicio14 {
    width: 100%;
    height: 400px;
    background: url("../img/servicios/venta_de_equipos.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}

.titulo-servicio {
    font-size: 26px;
}

.descripcion-servicio {
    margin: 10px 5px;
    font-size: 18px;
    color: #777;
}

/******************************************************/
/*************************MARCAS***********************/
/******************************************************/

.contenedor-marcas {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
}

.contenedor-marca1 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/avaya.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca2 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/microsoft.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca3 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/extreme_networks.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca4 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/cisco.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca5 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/apc.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca6 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/vivotek.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca7 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/radwin.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca8 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/grandstream.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca9 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/suprema.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca10 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/zkteco.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca11 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/panduit.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca12 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/total_ground.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca13 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/flukenetworks.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca14 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/rosslare.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca15 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/cablofil.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca16 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/ubiquity.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca17 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/hid.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca18 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/hikvision.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca19 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/industronic.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca20 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/iss.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca21 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/commscope.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca22 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/fortinet.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca23 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/vmware.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contenedor-marca24 {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    height: 250px;
    background: url('../img/marcas/panasonic.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/******************************************************/
/***********************CONTACTO***********************/
/******************************************************/

.contenedor-contacto {
    width: 100%;
    height: auto;
    background: url(../img/contacto.jpg);
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
}

.contenedor-columnas {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 650px;
    height: auto;
}

/*.capa {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}*/

.contacto-box {
    margin: 20px auto;
    width: 90%;
    max-width: 450px;
    height: 200px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #777;
}

.flex {
    margin: 0 auto;
    width: 90%;
    text-align: center;
}

.contacto-box i {
    margin: 0 20px;
    font-size: 28px;
    background: #6BD5FF;
    color: #185980;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px !important;
    border-radius: 50%;
    transition: 0.3s linear;
    cursor: pointer;
}

.contacto-box i:hover {
    background: none;
    color: #185980;
    transform: scale(1.6);
}

.contacto-box p {
    margin: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
}

.mapa {
    margin: 0 auto;
    width: 90%;
    height: auto;
}
