* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 100px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8cc63e;
    transition: .5s;
}

header.sticky {
    background: #FFF;
    padding: 15px 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

header .logo {
    color: #000;
    font-size: 26px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    top: 25px;
    margin-left: 2px;
    position: absolute;
}

header .IMGLOGO {
    width: 50px;
    filter: invert(100%);
}

header .logo h2 {
    color: #fff;
    display: inline-block;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}

header.sticky .logo {
    color: #111;
}

header ul {
    position: relative;
    display: flex;
}

header ul li {
    position: relative;
    list-style: none;
}

header ul li a {
    color: #FFF;
    position: relative;
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    padding: 15px 10px;
}

header.sticky ul li a {
    color: #111;
}

.heading {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #111;
}

.heading h2 {
    font-weight: 600;
    font-size: 30px;
}


/*Home*/

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
}

.banner .TextBanner {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 90%;
}

.banner h2 {
    font-size: 3em;
    color: #8bc33d;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.banner .h2 .letter {
    display: inline-block;
    line-height: 1em;
}

.banner span {
    font-size: .7em;
}

.banner h3 {
    color: rgb(255, 255, 255);
    font-size: 1.3em;
    font-weight: 600;
    width: 60%;
    font-family: Arial, Helvetica, sans-serif;
}

.animation {
    animation: opacidad 3s forwards;
}

@keyframes opacidad {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.banner #fondo {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    filter: brightness(0.7);
}

.banner .navegation {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .navegation li {
    list-style: none;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 4px;
    background: #fff;
    padding: 3px 3px 0;
    opacity: .7;
    transition: .5s;
}

#img1 {
    background: #9ed45a;
}

.banner .navegation li:hover {
    opacity: 1;
}

.banner .navegation li img {
    width: 120px;
    transition: 0.5s;
}

.banner .navegation li img:hover {
    width: 200px;
}

.Cotizacion {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #8bc33d;
    padding: 10px;
}

.Cotizacion h2 {
    font-size: 1.2em;
    color: rgb(0, 0, 0);
    font-weight: 600;
    width: 80%;
    text-transform: uppercase;
    display: inline-block;
}

.Cotizacion button {
    display: inline-block;
    background: transparent;
    border: solid 2px #000;
    border-radius: 10px;
    padding: 10px;
    font-size: 1.2em;
    cursor: pointer;
    transition: .5s;
    outline: inherit;
}

.Cotizacion button:hover {
    background: #333;
    color: #8bc33d;
}


/*Datos*/

.Datos {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #fff;
}

.content {
    display: flex;
    justify-content: space-between;
}

.contentBx {
    margin-top: 30px;
    padding-right: 30px;
    padding-left: 30px;
}

.contentBx h2 {
    text-align: center;
    border-bottom: 3px solid #8bc33d;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contentBx p {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3em;
    text-align: justify;
    color: rgb(112, 112, 112);
}

.w25 {
    min-width: 48%;
}

.w25 img {
    margin-top: 10px;
    max-width: 100%;
}

.w25 button {
    display: inline-block;
    background: transparent;
    border: solid 2px #000;
    border-radius: 10px;
    padding: 10px;
    font-size: 1.2em;
    cursor: pointer;
    transition: .5s;
    outline: inherit;
}

.w25 button:hover {
    border: solid 2px #8bc33d;
    color: #8bc33d;
}


/*clientes*/

.clientes {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #fff;
    text-align: center;
    padding: 40px 100px;
}

.clientes h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 3px solid #8bc33d;
    margin-bottom: 10px;
}

.clientes p {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3em;
    color: rgb(112, 112, 112);
}

.clientes .ClientesIMG {
    width: 100%;
}

.ClientesIMG img {
    width: 10%;
}


/*Footer*/

footer {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #333;
    padding: 10px;
    text-align: center;
}

.contentFooter {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.f50 {
    min-width: 48%;
    margin-top: 30px;
    padding-right: 30px;
    padding-left: 30px;
}

.f50 h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 3px solid #8bc33d;
    margin-bottom: 10px;
    color: #8bc33d;
}

.f50 p {
    margin-top: 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3em;
    color: #FFF;
}

.Facebook {
    margin-top: 20px;
    margin-right: 7px;
    font-size: 50px;
    color: #3b5998;
    cursor: pointer;
}

.WhatsApp {
    margin-top: 20px;
    margin-right: 7px;
    font-size: 50px;
    color: #00bb2d;
    cursor: pointer;
}

.Youtube {
    margin-top: 20px;
    font-size: 50px;
    color: #c4302b;
    cursor: pointer;
}

footer p {
    font-size: 15px;
    color: #fff;
}

footer span {
    color: #8bc33d;
}


/*InicioDIV*/

.InicioDIV {
    position: relative;
    width: 100%;
    height: 50vh;
}

.InicioDIV #fondo {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    filter: brightness(0.3);
}

.InicioDIV .TextBanner {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 90%;
    text-align: center;
}

.InicioDIV h2 {
    font-size: 3em;
    color: #8bc33d;
    font-weight: 600;
    text-transform: uppercase;
}

.InicioDIV h3 {
    color: rgb(255, 255, 255);
    font-size: 1.4em;
    font-weight: 700;
}


/*Quienes somos*/

.QuienesSomos .content {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 20px;
}

.QuienesSomos .contentBx {
    margin-top: 0px!important;
    padding-right: 30px;
    padding-left: 30px;
}

.QuienesSomos .contentBx h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 3px solid #8bc33d;
    margin-bottom: 10px;
}

.QuienesSomos .contentBx p {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7em;
    text-align: justify;
    color: rgb(112, 112, 112);
}

.Q50 {
    min-width: 50%;
}

.Q50 iframe {
    width: 100%;
    height: 315px;
}

.Q50 .Catalogo {
    width: 100%;
    height: 600px;
}

.Q50 img {
    margin-top: 5px;
    max-width: 100%;
}

.Q50 .DATA50 {
    margin-top: 15px;
    width: 100%;
    display: block;
}

.DATA50 .Data25 {
    margin-top: 15px;
    width: 100%;
    border-left: 3px solid #8bc33d;
    border-right: 3px solid #8bc33d;
    padding-left: 5%;
    padding-right: 5%;
}

.Data25 h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: none!important;
    margin-bottom: 10px;
}

.Data25 p {
    font-weight: 600;
    text-align: center;
    font-size: 15px;
    line-height: 1.7em;
    text-align: justify;
    color: #333;
    padding: 5px;
}


/*Servicios*/

.Servicios {
    padding: 20px;
}

.Servicios .content {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.Servicios .contentBx {
    margin-top: 0px!important;
    padding-right: 30px;
    padding-left: 30px;
}

.Servicios h3 {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.Servicios .btnSer {
    width: 100%;
    background: #9ed45a;
    border-radius: 5px;
    border: 1px solid #000;
    color: #000;
    margin-bottom: 10px;
    cursor: pointer;
}

.Servicios p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #8bc33d;
}

.Servicios .ServiciosDatos {
    border: 2px solid #8bc33d;
    width: 100%;
    height: auto;
    text-align: center;
}

.Servicios .ServiciosDatos img {
    width: 50%;
}

.Buttons button {
    display: inline-block;
    background: rgb(248, 248, 248);
    ;
    border: 1px solid rgb(112, 112, 112);
    border-bottom: none;
    color: rgb(112, 112, 112);
    padding: 10px;
    font-size: 1.2em;
    cursor: pointer;
    transition: .5s;
    outline: inherit;
    margin: 0px 10px;
}

.Buttons button:hover {
    border-top: 2px solid #8bc33d;
    color: #8bc33d;
}

.ServiciosDatos .content {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgb(112, 112, 112);
}

.ServiciosDatos .contentBx {
    margin-top: 30px;
    padding-right: 30px;
    padding-left: 30px;
}

.ServiciosDatos .contentBx h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ServiciosDatos .contentBx p {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7em;
    text-align: justify;
    color: rgb(112, 112, 112);
}

.S50 {
    min-width: 25%;
}

.S50 img {
    margin-top: 0px;
    max-width: 100%;
}


/*Mejora Continua*/

.ContinuaImg {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
}

.ContinuaImg .contentIMG {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgb(112, 112, 112);
}

.ConIMG30 {
    width: 30%;
}

.ConIMG30 img {
    max-width: 100%;
}


/*Contactanos*/

.Contactanos {
    position: relative;
    width: 100%;
    height: auto;
    padding: 30px 110px;
    text-align: center;
}

.Contactanos p {
    margin-top: 20px;
    border-top: 3px solid #8bc33d;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7em;
    text-align: center;
    color: rgb(112, 112, 112);
}

.Contactanos .ContactoDatos {
    width: 100%;
    height: auto;
    background-color: #8bc33d;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.ContactoDatos .CD50 {
    min-width: 50%;
    text-align: left;
    padding: 20px 100px;
}

.CD50 p {
    margin-top: 20px;
    border-top: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7em;
    text-align: justify;
    color: rgb(29, 29, 29);
}

.ContactoDatos i {
    font-size: 20px;
}


/*Contactanos Formulario*/

.ContactanosForm {
    position: relative;
    width: 100%;
    height: auto;
    background-color: rgb(235, 235, 235);
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.ContactanosForm .Form50 {
    min-width: 50%;
}

.Form50 iframe {
    margin: 10px;
    width: 100%;
    height: 450px;
}

.Form50 form {
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.Form50 form h3 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.Form50 form input,
.Form50 form textarea {
    margin-bottom: 20px;
    padding: 15px;
    font-size: 16px;
    border: none;
    outline: none;
    background: rgb(255, 255, 255);
    color: rgb(112, 112, 112);
}

.Form50 form textarea {
    min-height: 200px;
}

.Form50 form input::placeholder,
.Form50 form textarea::placeholder {
    color: rgb(112, 112, 112);
}

.Form50 form input[type="submit"] {
    background: transparent;
    border: solid 2px #000;
    border-radius: 10px;
    padding: 10px;
    font-size: 1.2em;
    cursor: pointer;
    transition: .5s;
    outline: inherit;
}

.Form50 form input[type="submit"]:hover {
    background: #333;
    color: #fff;
}


/*Responsivo*/

@media(max-width:991px) {
    header,
    header.sticky {
        padding: 18px 50px;
    }
    .menu {
        position: fixed;
        top: 75px;
        left: -100%;
        display: block;
        padding: 100px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: .5s;
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, .1);
    }
    .menu.active {
        left: 0%
    }
    header ul li a {
        color: #111;
        font-size: 24px;
        margin: 10px;
    }
    .toggle {
        width: 40px;
        height: 40px;
        background: url("../img/Menu.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
    }
    .toggle.active {
        background: url("../img/x.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
    }
    header.sticky .toggle {
        filter: invert(1);
    }
    /*Home*/
    .banner h2 {
        font-size: 2em;
    }
    .banner h3 {
        font-size: 1.2em;
        width: 100%;
    }
    .banner .TextBanner {
        top: 50%;
        right: 50%;
    }
    .banner .navegation li {
        margin: 0 5px;
    }
    .banner .navegation li img {
        width: 80px;
    }
    .banner .navegation li img:hover {
        width: 160px;
    }
    /*Cotizacion*/
    .Cotizacion h2 {
        font-size: 1em;
        width: 70%;
    }
    .Cotizacion button {
        font-size: 1em;
    }
    /*Datos*/
    .content {
        flex-direction: column;
    }
    .w25 {
        margin-bottom: 20px;
    }
    /*Clientes*/
    .clientes {
        padding: 10px 20px;
    }
    .ClientesIMG img {
        width: 13%;
    }
    /*Footer*/
    .f50 {
        padding-right: 5px;
        padding-left: 5px;
    }
    .f50 h2 {
        font-size: 15px;
    }
    .f50 p {
        font-size: 10px;
    }
    footer p {
        font-size: 10px;
    }
    /*Servicios*/
    .Servicios {
        padding: 10px;
    }
    .ServiciosDatos .content {
        padding: 0px;
    }
    .ServiciosDatos .contentBx {
        padding-right: 0px;
        padding-left: 0px;
    }
    .Buttons button {
        padding: 4px;
        width: 100%;
        margin: 0px 0px;
    }
    /*Contactanos*/
    .Contactanos {
        padding: 15px 10px;
    }
    .ContactoDatos .CD50 {
        padding: 20px 20px;
    }
    .CD50 h2 {
        font-size: 14px;
    }
    .CD50 p {
        font-size: 12px;
    }
    .ContactanosForm {
        flex-direction: column;
    }
    .Form50 iframe {
        margin: 5%;
        width: 90%;
        height: 450px;
    }
    .Form50 form {
        padding: 30px 10px;
    }
    /*Quienes somos*/
    .QuienesSomos .contentBx {
        padding-right: 0px;
        padding-left: 0px;
    }
    .MedioAmbiente .contentBx {
        padding-right: 0px;
        padding-left: 0px;
    }
    .Facebook {
        font-size: 30px;
    }
    .WhatsApp {
        font-size: 30px;
    }
    .Youtube {
        font-size: 30px;
    }
}


/*Responsivo*/

@media(max-width:600px) {
    header,
    header.sticky {
        padding: 18px 20px;
    }
    .banner .navegation li img {
        width: 80px;
    }
    .banner .navegation li img:hover {
        width: 120px;
    }
    /*Cotizacion*/
    .Cotizacion h2 {
        font-size: .7em;
        width: 60%;
    }
    .Cotizacion button {
        font-size: .8em;
    }
}


/*Responsivo*/

@media(max-width:330px) {
    .Cotizacion h2 {
        font-size: .6em;
        width: 50%;
    }
    .Cotizacion button {
        font-size: .8em;
    }
    .ContactoDatos .CD50 {
        padding: 10px 10px;
    }
    .CD50 h2 {
        font-size: 14px;
    }
    .CD50 p {
        font-size: 10px;
    }
}