@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url(fontello.css);
@import url(menu.css);
@import url(mi-slider.css);
@import url(nivo-slider.css);
@import url(nosotros.css);
@import url(producto.css);
@import url(customers.css);
@import url(contacto.css);
@import url(footer.css);
@import url(servicios.css);
@import url(wps.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color:rgba(240, 240,240, 0.2);
    /* rgba(7, 98, 189, 0.8);  */
}

header {
    width: 100%;
    height: 65px;
    background: #0762bd;
    color: #fff;
    padding: 5px 10%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 2px solid #dd4500;
}

.contenedor {
    width: 98%;
    margin: auto;
}

.contenedor .logo-img {

    height: 45px;
    cursor: pointer;
    width: auto;
    transition: all 0.3s;
}

.contenedor .logo-img:hover {
    transform: scale(1.2);
}

header .icon-user-o {
    font-weight: 700;
    color: #1b3039;
    padding: 9px 5px;
    background: #eceff1;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

header .icon-user-o:hover {
    background-color: #e3f1f8;
    color: #0762bd;
    ;
    transform: scale(1.1);
}

h1 {
    float: left;
}

header .contenedor {
    display: table;
}

section {
    width: 100%;
    margin-bottom: 25px;
}


@media (min-width:1024px) {
    .contenedor {
        width: 1000px;
    }

}
/*NivoSlider*/
@media(max-width:760px) {

    #slider h1,
    p {
        width: 100%;
        font-size: 12px;
    }

    .nivoSlider {
        top: 50px;
        position: absolute;
    }

    .theme-mi-slider {
        0% {
            margin-left: 0;
        }

        20% {
            margin-left: 0;
        }

        25% {
            margin-left: -100%;
        }

        45% {
            margin-left: -100%;
        }

        50% {
            margin-left: -200%;
        }

        70% {
            margin-left: -200%;
        }

        75% {
            margin-left: -300%;
        }

        100% {
            margin-left: -300%;
        }
    }

}

