@charset "utf-8";

/* Tipografias Google Fonts
font-family: 'Roboto', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Padauk', sans-serif;
font-family: 'Lato', sans-serif;
font-family: 'Fira Sans Extra Condensed', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Nunito', sans-serif;
font-family: 'Nunito Sans', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Fira Sans Condensed', sans-serif;
font-family: 'Open Sans Condensed', sans-serif;
font-family: 'PT Sans', sans-serif;
font-family: 'Roboto Slab', serif;
font-family: 'PT Sans Narrow', sans-serif;
font-family: 'Quicksand', sans-serif;
font-family: 'Ubuntu', sans-serif;
font-family: 'Arimo', sans-serif;
font-family: 'Titillium Web', sans-serif;
font-family: 'Fjalla One', sans-serif;
font-family: 'Yanone Kaffeesatz', sans-serif;
font-family: 'Anton', sans-serif;
font-family: 'Archivo Narrow', sans-serif;
 */

html {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 12px;
    color: #646464;
}

header,
section,
nav,
article,
footer,
aside,
figure,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #FFF;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
p,
ul,
ol,
a {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a img {
    border: none;
}


/****************************************************/


/*********************** Efectos ********************/


/****************************************************/

.mover-derecha-izquierda {
    animation-name: efecto-derecha-izquierda;
    animation-duration: 2s;
    position: relative;
    left: 0;
}

.mover-abajo-arriba {
    animation-name: efecto-abajo-arriba;
    animation-duration: 2s;
    position: relative;
    top: 0;
}

.sombra {
    -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.43);
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.43);
}

@keyframes efecto-derecha-izquierda {
    0% {
        opacity: 0;
        left: 500px;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes efecto-abajo-arriba {
    0% {
        opacity: 0;
        top: 200px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

.mover {
    animation-name: mover;
    animation-duration: 3s;
}

@keyframes mover {
    0% {
        opacity: 0;
    }
    50% {
        margin-left: 50%;
        opacity: 0;
    }
    100% {
        margin-left: 0;
        opacity: 1;
    }
}


/* ---- ----- ----- Cabecera ----- ----- ----- */

.cabecera {
    width: 100%;
    height: 129px;
    margin: 0;
    padding: 18px 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#logo {
    width: 137px;
    height: 92px;
}

#logo a {
    height: 92px;
    width: 137px;
}

#logo a img {
    height: 92px;
    width: 137px;
    display: block;
}

.iconos {
    width: 125px;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.iconos a {
    margin-right: 5px;
}

.iconos a img {
    height: 59px;
    width: 30px;
    filter: grayscale(100%) opacity(60%);
    transition: all 0.5s;
}

.iconos a img:hover {
    filter: grayscale(0%);
}

.redes {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    height: 30px;
    padding-left: 10px;
}

.redes a {
    width: 30px;
    height: 30px;
    display: block;
    background-color: #c8c8c8;
    color: white;
    font-size: 15px;
    font-weight: normal;
    line-height: 30px;
    border-radius: 30px;
    text-align: center;
}

.redes a:hover {
    background-color: #969696;
}

.redes a:last-child {
    margin-right: 0;
}


/* ---- ----- ----- Home ----- ----- ----- */

#banner {
    overflow: hidden;
    height: auto;
}

.home-nosotros {
    width: 100%;
    padding: 100px 200px;
    display: flex;
    flex-direction: column;
}

.home-nosotros h2 {
    font-size: 26px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #00c400;
    letter-spacing: 1px;
    text-align: center;
}

.home-nosotros span,
.home-servicios span {
    font-size: 26px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #005b00;
}

.home-nosotros p {
    font-size: 18px;
    line-height: 35px;
    font-family: 'Roboto', sans-serif;
    color: #646464;
    margin-top: 20px;
    text-align: center;
    height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-nosotros a {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 17px;
    line-height: 17px;
    color: #FFFFFF;
    padding: 15px;
    background-color: #646464;
    transition: all 0.5s;
    width: 150px;
    border-radius: 10px;
    text-align: center;
    margin: 30px auto 0 auto;
}

.home-nosotros a:hover {
    background-color: #00c400;
}


/* ---- ----- ----- Nosotros ----- ----- ----- */

.nosotros {
    width: 100%;
    padding: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.col-izq {
    width: 55%;
    display: flex;
    flex-direction: column;
}

.nosotros .col-izq h2 {
    font-size: 26px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #00c400;
    letter-spacing: 1px;
}

.nosotros .col-izq span {
    font-size: 26px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #005b00;
}

.nosotros .col-izq p {
    font-size: 18px;
    line-height: 35px;
    font-family: 'Roboto', sans-serif;
    color: #646464;
    margin-top: 20px;
    text-align: justify;
}

.col-der {
    width: 40%;
}

.col-der img {
    width: 100%;
}

.caracteristicas-ventajas {
    width: 100%;
    padding: 100px 10% 100px 10%;
    margin: 0 auto 5px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-image: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(https://www.grafikolors.net/pacifico_express/imagenes/fondo2.jpg);
    background-size: cover;
    background-position: center;
}

.caracteristicas {
    width: calc(50% - 25px);
    height: auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    padding: 50px;
    border: 3px solid white;
    color: #646464;
    transition: 0.5s;
}

.caracteristicas img,
.ventajas img {
    height: 80px;
    margin: 0 auto 30px auto;
}

.caracteristicas ul,
.ventajas ul {
    list-style: square;
    list-style-position: outside;
    padding-left: 30px;
}

.caracteristicas li,
.ventajas li {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 10px;
    text-align: justify;
}

.caracteristicas li:last-child,
.ventajas li:last-child {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 0;
}

.ventajas {
    width: calc(50% - 25px);
    height: auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    padding: 50px;
    border: 3px solid white;
    color: #646464;
    transition: 0.5s;
}

.caracteristicas h3,
.ventajas h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 2px;
}

.caracteristicas:hover,
.ventajas:hover {
    background: rgba(0, 196, 0, 0.8);
    color: white;
    border: 3px solid white;
}


/* ---- ----- ----- Home Servicios ----- ----- ----- */


/* ---- ----- ----- Contenedor Titulo y Controles ----- ----- ----- */

.contenedor {
    margin: auto;
}

.contenedor-titulo-controles {
    display: flex;
    justify-content: center;
}

.contenedor-titulo-controles h2 {
    color: #fff;
    font-size: 26px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.contenedor-titulo-controles .indicadores button {
    background: #fff;
    height: 6px;
    width: 22px;
    cursor: pointer;
    border: none;
    margin-right: 2px;
}

.contenedor-titulo-controles .indicadores button:hover,
.contenedor-titulo-controles .indicadores button.activo {
    background: #005b00;
}


/* ---- ----- ----- Contenedor Principal y Flechas ----- ----- ----- */

.home-servicios {
    padding: 100px;
    background-image: linear-gradient( rgba(0, 196, 0, 0.9), rgba(0, 196, 0, 0.9)), url(https://www.grafikolors.net/pacifico_express/imagenes/fondo.jpg);
    background-size: 100%;
    background-position: center;
}

.home-servicios .carousel-servicios {
    display: flex;
    align-items: center;
    position: relative;
}

.home-servicios .carousel-servicios .flecha-izquierda,
.home-servicios .carousel-servicios .flecha-derecha {
    position: absolute;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    font-size: 40px;
    height: 50%;
    top: calc(50% - 25%);
    line-height: 40px;
    width: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 500;
    transition: .2s ease all;
}

.home-servicios .carousel-servicios .flecha-izquierda:hover,
.home-servicios .carousel-servicios .flecha-derecha:hover {
    background: rgba(0, 0, 0, .9);
}

.home-servicios .carousel-servicios .flecha-izquierda {
    left: 0;
}

.home-servicios .carousel-servicios .flecha-derecha {
    right: 0;
}


/* ---- ----- ----- Carousel ----- ----- ----- */

.home-servicios .contenedor-carousel {
    width: 100%;
    padding: 20px 0 0 0;
    overflow: visible;
}

.home-servicios .contenedor-carousel .carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.home-servicios .contenedor-carousel .carousel .item {
    min-width: 180px;
    width: 15%;
    transition: .3s ease all;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .3);
    filter: grayscale(1);
    align-self: center;
    justify-self: center;
}

.home-servicios .contenedor-carousel .carousel .item.hover {
    transform: scale(1.2);
    transform-origin: center;
    filter: none;
    z-index: 1;
}

.home-servicios .contenedor-carousel .carousel .item img {
    width: 100%;
    vertical-align: top;
}

.home-servicios .indicadores,
.home-servicios .flecha-izquierda,
.home-servicios .flecha-derecha {
    display: none;
}


/* ---- ----- ----- Home Noticias ----- ----- ----- */

.home-noticias {
    display: flex;
    flex-direction: column;
    background: white;
    width: 100%;
    padding: 100px;
}

.home-noticias h2 {
    font-size: 24px;
    line-height: 28px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #00c400;
    text-align: center;
}

.home-noticias span {
    font-size: 24px;
    line-height: 28px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #005b00;
}

.noticias {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    align-content: center;
    padding-top: 30px;
}

.noticia {
    display: flex;
    flex-direction: column;
    width: 430px;
    margin-bottom: 30px;
}

.noticia-imagen {
    display: flex;
    flex-direction: column;
    width: 430px;
    height: 293px;
    position: relative;
    overflow: hidden;
}

.noticia-imagen img {
    width: 430px;
}

.zoom3 {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0;
    height: 293px;
    width: 430px;
    z-index: 5;
    background: rgba(0, 196, 0, 0);
    transition: 1s;
}

.zoom3:hover {
    position: absolute;
    margin-top: 0;
    top: 0;
    left: 0;
    background: rgba(0, 196, 0, 0.7);
}

.zoom3 i {
    font-size: 35px;
    font-weight: normal;
    color: white;
    position: absolute;
    margin-top: 195px;
    top: 293px;
    left: 195px;
    transition: 1s;
}

.zoom3:hover i {
    position: absolute;
    margin-top: 0;
    top: 125px;
}

.home-noticias .noticias .noticia .noticia-sumilla h2 {
    font-size: 24px;
    line-height: 28px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    color: #323232;
    width: 420px;
    margin-top: 10px;
    margin-bottom: 5px;
    text-transform: inherit;
}

.home-noticias .noticias .noticia .noticia-sumilla p {
    font-size: 16px;
    line-height: 22px;
    font-family: 'Roboto', sans-serif;
    color: #323232;
    text-align: center;
}

.noticia-sumilla p i {
    color: #00c400;
}

.menu ul li {
    margin-top: 15px;
    transition: 0.5s;
}

.menu ul li:hover {
    margin-top: 0;
}

.mas-noticias {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 17px;
    line-height: 17px;
    color: #FFFFFF;
    padding: 15px;
    background-color: #646464;
    transition: all 0.5s;
    width: 200px;
    border-radius: 10px;
    text-align: center;
    margin: 15px auto 0 auto;
}

.mas-noticias:hover {
    background-color: #00c400;
}


/* ---- ----- ----- Carga ----- ----- ----- */

.banner-servicio {
    width: 100%;
}

.banner-servicio img {
    width: 100%;
}

.carga {
    width: 100%;
    padding: 100px;
    display: flex;
    flex-direction: column;
}

.carga-sup {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.icono-servicio {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    background-color: #00c400;
    padding: 25px;
}

.icono-servicio img {
    width: 150px;
}

.detalle-servicio {
    width: calc(100% - 250px);
}

.detalle-servicio hr {
    border: 3px solid #00c400;
    margin-top: 10px;
}

.detalle-servicio h2 {
    font-size: 30px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-style: italic;
    color: #00c400;
    letter-spacing: 1px;
}

.detalle-servicio p {
    font-size: 18px;
    line-height: 35px;
    font-family: 'Roboto', sans-serif;
    color: #646464;
    margin-top: 20px;
    text-align: justify;
}

.carga-inf {
    width: 100%;
    padding: 50px 0 0 250px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.serv-izq {
    width: 50%;
    height: auto;
    border-right: 2px solid #969696;
    display: flex;
    flex-direction: column;
    padding-right: 50px;
}

.serv-izq h2,
.serv-der h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    color: #00c400;
    margin-bottom: 10px;
}

.serv-izq ul,
.serv-der ul {
    list-style: square;
    list-style-position: outside;
    padding-left: 20px;
}

.serv-izq li,
.serv-der li {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    color: #00c400;
    padding-bottom: 10px;
    text-align: justify;
}

.serv-izq span,
.serv-der span {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    color: #646464;
    padding-bottom: 10px;
    text-align: justify;
}

.serv-izq li:last-child,
.serv-der li:last-child {
    padding-bottom: 0;
}

.serv-der {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
}


/* ---- ----- ----- Noticias ----- ----- ----- */

.caja-noticias {
    width: 100%;
}

.caja-noticias h2 {
    width: 100%;
    padding: 25px;
    background: rgb(0, 196, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    background: linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#00c400", endColorstr="#005b00", GradientType=1);
    font-size: 26px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    text-align: center;
    margin: 0;
}

.caja-noticias span {
    font-size: 26px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #005b00;
}

.noticias2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 100px 50px 100px !important;
    gap: 30px;
}

.noticia2 {
    width: calc(33% - 20px);
}

.noticias2 .noticia2 .noticia-imagen2,
.noticias2 .noticia2 .noticia-imagen2 img,
.noticias2 .noticia2 .noticia-imagen2 a {
    width: 100%;
}

.noticias2 .noticia2 .noticia-imagen2 {
    position: relative;
    overflow: hidden;
}

#buscar {
    height: auto;
    width: 100%;
    padding: 100px 100px 0 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#buscar-izq {
    width: calc(100% - 200px);
    height: 50px;
    border: #00c400 solid 2px;
    border-radius: 15px;
    padding: 5px;
}

#buscar-izq i {
    font-size: 30px;
    line-height: 36px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 0;
    color: #00c400;
}

#buscar-der {
    width: 190px;
    height: 50px;
}

#buscar-der button {
    width: 190px;
    height: 50px;
    color: white;
    font-size: 22px;
    line-height: 46px;
    background-color: #00c400;
    border: #00c400 solid 2px;
    border-radius: 15px;
    transition: all 0.5s;
}

#buscar-der button:hover {
    background-color: #005b00;
    border: #005b00 solid 2px;
    cursor: pointer;
}

.titulo-buscar {
    font-size: 23px;
    line-height: 30px;
    font-family: 'Roboto', sans-serif;
    border: none;
    vertical-align: text-bottom;
    width: calc(100% - 80px);
}

.zoom4 {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0;
    height: 100%;
    width: 100%;
    z-index: 5;
    background: rgba(0, 196, 0, 0);
    transition: 1s;
}

.zoom4:hover {
    position: absolute;
    margin-top: 0;
    top: 0;
    left: 0;
    background: rgba(0, 196, 0, 0.7);
}

.zoom4 i {
    font-size: 35px;
    font-weight: normal;
    color: white;
    position: absolute;
    margin-top: 195px;
    top: 45%;
    left: 45%;
    transition: 1s;
}

.zoom4:hover i {
    position: absolute;
    margin-top: 0;
    top: 45%;
}

.caja-noticias .noticias2 .noticia2 .noticia-sumilla2 h2 {
    font-size: 23px;
    line-height: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    color: #323232;
    width: 420px;
    margin-top: 10px;
    text-transform: inherit;
    background: none;
    padding: 0;
    text-align: justify;
    margin-bottom: 5px;
}

.caja-noticias .noticias2 .noticia2 .noticia-sumilla2 p {
    font-size: 16px;
    line-height: 22px;
    font-family: 'Roboto', sans-serif;
    color: #323232;
}

.caja-noticias .noticias2 .noticia2 .noticia-sumilla2 p i {
    color: #00c400;
}

.pagination2 {
    margin: 0;
    padding: 0 0 50px 0;
    display: flex;
    justify-content: center;
}

.pagination {
    margin: 0;
    padding: 0;
}

.caja-noticias3 {
    padding: 50px 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.caja-detalle-noticia {
    border: 1px solid #666666;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.caja-detalle-noticia img {
    width: 60%;
    height: auto;
    margin: auto;
}

.caja-detalle-noticia h3 {
    font-size: 26px;
    line-height: 28px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    color: #323232;
    margin: 0;
    padding: 0;
}

.caja-detalle-noticia p {
    font-size: 18px;
    line-height: 2;
    font-family: 'Roboto', sans-serif;
    color: #323232;
    margin: 0;
    padding: 0;
}

.titu-noticia {
    padding: 15px 15px 15px 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: rgba(0, 196, 0, .1);
    display: flex;
    flex-direction: column;
    border-left: solid 10px #00c400;
}

.titu-noticia p {
    font-size: 16px;
    line-height: 16px;
    font-family: 'Roboto', sans-serif;
    color: #00c400;
    margin: 5px 0 0 0;
    padding: 0;
}

.barra-social {
    display: flex;
    flex-direction: row;
    padding: 5px;
    flex-wrap: nowrap;
}

.fb-compartir {
    width: 220px;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    background-color: gray;
    color: white;
    border-radius: 10px;
    margin-top: 10px;
    text-decoration: none;
}

.fb-compartir:hover {
    background-color: #034EA1;
    color: white;
    text-decoration: none;
}


/* ---- ----- ----- FAQS ----- ----- ----- */

.caja-faqs {
    width: 100%;
    height: auto;
}

.caja-faqs h2 {
    width: 100%;
    padding: 25px;
    background: rgb(0, 196, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    background: linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#00c400", endColorstr="#005b00", GradientType=1);
    font-size: 26px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    text-align: center;
}

.caja-faqs span {
    font-size: 26px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #005b00;
}

.faqs {
    display: block;
    padding: 100px;
}


/* ---- ----- ----- Contáctenos ----- ----- ----- */

.caja-contactenos {
    width: 100%;
    height: auto;
}

.caja-contactenos h2 {
    width: 100%;
    padding: 25px;
    background: rgb(0, 196, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    background: linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#00c400", endColorstr="#005b00", GradientType=1);
    font-size: 26px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    text-align: center;
}

.caja-contactenos span {
    font-size: 26px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #005b00;
}

.contactenos {
    display: flex;
    flex-direction: row;
    padding: 100px;
    justify-content: space-between;
}

.contactenos-izq {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.contactenos-izq form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.campos {
    width: 100%;
    height: 45px;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    background: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 43px;
    padding: 0 20px;
    margin: 3px 0;
}

.comentarios {
    width: 100%;
    height: 150px;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    background: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding: 20px;
    margin: 5px 0;
}

.benviar {
    width: 200px;
    height: 45px;
    display: block;
    line-height: 45px;
    text-align: center;
    color: #FFFFFF;
    background: #A0A0A0;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    transition: all 0.5s;
    margin: 15px 6px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.benviar:hover {
    background: #00c400;
    color: #FFFFFF;
}

.texto-nota {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: red;
}

.contactenos-der {
    display: flex;
    flex-direction: column;
    width: 55%;
}

.mapa {
    border: 5px #A0A0A0 solid;
}

.datos-empresa {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 30px;
    gap: 10px;
}

.datos-empresa h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #00c400;
    background: none;
    margin: 0;
    padding: 0;
    text-align: justify;
}

.datos-empresa div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.datos-empresa div p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 17px;
    color: #646464;
    display: inline-block;
    vertical-align: middle;
}

.datos-empresa div i {
    color: white;
    background-color: #00c400;
    margin-right: 10px;
    border-radius: 30px;
    height: 30px;
    width: 30px;
    padding: 4px;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
}


/***************************************************/


/********    DISEÑO PARA PIE DE PAGINAS     ********/


/***************************************************/

.pie {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px 100px;
    background: rgb(0, 196, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    background: linear-gradient(0deg, rgba(0, 196, 0, 1) 0%, rgba(0, 91, 0, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#00c400", endColorstr="#005b00", GradientType=1);
}

.pie-col1 {
    width: 25%;
    border-right: rgba(255, 255, 255, 0.7) solid 2px;
    padding-right: 50px;
}

.pie-col1 img {
    width: 200px;
    margin: auto;
    margin-bottom: 30px;
}

.pie-col2 {
    width: 45%;
    padding-right: 50px;
    padding-left: 50px;
    border-right: rgba(255, 255, 255, 0.7) solid 2px;
    display: flex;
    flex-direction: column;
}

.pie-col2 div {
    display: flex;
    flex-direction: row;
}

.pie-col2 div ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.pie-col2 div ul:first-child {
    width: 40%;
}

.pie-col2 div ul:last-child {
    width: 60%;
}

.mapa-servicios li i {
    color: white;
}

.mapa-servicios li p {
    color: rgba(255, 255, 255, 1);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.pie-col3 {
    width: 30%;
    padding-left: 50px;
}

.pie-col2 h2,
.pie-col3 h2 {
    color: #8cc63f;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.mapa-sitio ul li p {
    color: rgba(255, 255, 255, 1);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.pie-col1 p,
.pie-col3 p {
    color: rgba(255, 255, 255, 1);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    line-height: 30px;
    font-size: 16px;
    text-decoration: none;
}

.pie-col2 a,
.pie-col3 a,
.mapa-sitio ul li {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    line-height: 30px;
    font-size: 16px;
    text-decoration: none;
}

.pie-col2 a:hover,
.pie-col3 a:hover,
.mapa-sitio ul li {
    color: rgba(255, 255, 255, 1);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    line-height: 30px;
    font-size: 16px;
    text-decoration: none;
}

.mapa-sitio ul li i {
    color: #005b00;
}

.mapa-sitio {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.mapa-sitio ul {
    list-style: none;
}

.mapa-sitio ul:first-child {
    margin-right: 30px;
    width: 40%;
}

.mapa-sitio ul:last-child {
    width: 60%;
    line-height: 25px;
}

.pie-col2 .mapa-sitio ul:last-child li a {
    line-height: 25px;
}

.redes-pie {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
}

.redes-pie li a {
    width: 40px;
    height: 40px;
    display: block;
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 40px;
    text-align: center;
}

.redes-pie li a i {
    color: #005b00;
    font-size: 20px;
    line-height: 40px;
    font-weight: normal;
}

.redes-pie li a:hover {
    background-color: white;
}

.redes-pie li {
    margin-right: 5px;
}

.caja-copyright {
    width: 100%;
    padding: 15px 100px 15px 100px;
    background-color: #F0F0F0;
    display: block;
    float: left;
}

.copyright {
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    color: #646464;
    line-height: 15px;
    text-align: center;
}


/************    DISEÑO PARA TABLETAS       ********/

@media only screen and (max-width: 1500px) {
    /* ---- ----- ----- Home ----- ----- ----- */
    .noticias {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 1280px) {
    /* ---- ----- ----- Home ----- ----- ----- */
    .cabecera {
        padding: 18px 50px;
    }
    .pie-col1 {
        display: none;
    }
    .pie-col2 {
        width: calc(100% - 308px);
    }
    .pie-col3 {
        width: 308px;
    }
    .carga-inf {
        padding: 50px 0 0 0;
    }
    .noticia2 {
        width: calc(50% - 15px);
    }
    .caja-noticias3 {
        padding: 50px 100px;
    }
}

@media only screen and (max-width: 1024px) {
    /***************************************************/
    /***********    BALANZAS PARA CAMIONES    **********/
    /***************************************************/
    #cuerpo {
        top: 70%;
    }
    .caja-horizontal {
        padding: 50px;
    }
    .home-nosotros,
    .home-noticias,
    .home-servicios,
    .pie,
    .faqs {
        padding: 50px;
    }
    .nosotros {
        flex-direction: column;
    }
    .col-izq {
        width: 100%;
        order: 2;
    }
    .col-izq h2 {
        text-align: center;
    }
    .col-der {
        display: flex;
        width: 100%;
        margin-bottom: 50px;
        order: 1;
        justify-content: center;
    }
    .col-der img {
        width: 60%;
    }
    .caracteristicas-ventajas {
        flex-direction: column;
    }
    .caracteristicas {
        width: 70%;
        justify-content: center;
        margin: 0 auto 20px auto;
    }
    .ventajas {
        width: 70%;
        justify-content: center;
        margin: auto
    }
    .icono-servicio {
        width: 150px;
        height: 150px;
    }
    .icono-servicio img {
        width: 100px;
    }
    .detalle-servicio p {
        line-height: 30px;
    }
    .detalle-servicio {
        width: calc(100% - 200px);
    }
    .caja-noticias3 {
        padding: 50px;
    }
}

@media only screen and (max-width: 800px) {
    /* ---- ----- ----- Home ----- ----- ----- */
    .cabecera {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        height: auto;
    }
    #logo {
        margin: 30px auto 15px auto;
        padding: 0;
        order: 1;
        width: 100%;
        height: auto;
    }
    #logo a,
    #logo a img {
        width: 180px;
        height: auto;
        margin: auto;
    }
    .megamenu {
        order: 3;
    }
    .iconos {
        margin: 0 auto 0 auto;
        width: 100%;
        justify-content: center;
        order: 2;
    }
    .pie {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0;
        padding: 50px 100px;
    }
    .pie-col1 {
        display: flex;
        flex-direction: column;
        margin: 0 0 40px 0;
        border: none;
        padding: 0;
    }
    .pie-col1,
    .pie-col2,
    .pie-col3 {
        width: 100%;
    }
    .pie-col1 p {
        text-align: center;
    }
    .pie-col2 {
        margin: 0 0 40px 0;
        padding: 0;
        border: none;
    }
    .pie-col2 h2 {
        text-align: center;
    }
    .pie-col2 div {
        width: 450px;
        margin: auto;
    }
    .pie-col3 {
        margin: 0;
        padding: 0;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .pie-col3 h2,
    .pie-col3 a,
    .pie-col3 p {
        text-align: center;
    }
    .redes-pie {
        margin: auto;
    }
    .home-nosotros p {
        height: 100px;
        -webkit-line-clamp: 3;
    }
    .nosotros,
    .caracteristicas-ventajas,
    .carga,
    .contactenos {
        padding: 50px;
    }
    .caracteristicas {
        width: 80%;
    }
    .ventajas {
        width: 80%;
    }
    .carga-inf {
        flex-direction: column;
        padding: 30px 0 0 0;
    }
    .serv-der {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .serv-izq {
        width: 100%;
        padding-right: 0;
        border-right: none;
    }
    .noticias2 {
        gap: 30px;
        padding: 50px;
    }
    #buscar {
        padding: 50px 50px 0 50px;
    }
    #buscar-izq {
        width: calc(100% - 150px);
    }
    #buscar-der {
        width: 140px;
    }
    #buscar-der button {
        width: 140px;
    }
    .contactenos {
        flex-direction: column;
    }
    .contactenos-izq {
        width: 100%;
        max-width: 500px;
        margin: auto;
        margin-bottom: 50px;
    }
    .contactenos-der {
        width: 100%;
        max-width: 500px;
        margin: auto;
    }
    .caja-detalle-noticia img {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    /* ---- ----- ----- Home ----- ----- ----- */
    #banner {
        display: none;
    }
    .pie {
        padding: 50px;
    }
    .pie-col2 div {
        width: 100%;
    }
    .caja-copyright {
        padding: 15px 50px 15px 50px;
    }
    .mapa-sitio {
        width: 150px;
    }
    .mapa-servicios {
        width: calc(100% - 150px);
    }
    .nosotros .col-izq p {
        line-height: 30px;
    }
    .col-der {
        margin-bottom: 30px;
    }
    .col-der img {
        width: 80%;
    }
    .caracteristicas {
        width: 100%;
        padding: 30px;
    }
    .ventajas {
        width: 100%;
        padding: 30px;
    }
    .carga-sup {
        flex-direction: column;
    }
    .icono-servicio {
        margin: 0 auto 30px auto;
    }
    .detalle-servicio {
        width: 100%;
    }
    .detalle-servicio h2 {
        text-align: center;
    }
    .noticia2 {
        width: 100%;
        max-width: 350px;
        margin: auto;
    }
    #buscar {
        flex-direction: column;
    }
    #buscar-izq {
        width: 100%;
        margin-bottom: 10px;
    }
    #buscar-der,
    #buscar-der button {
        width: 100%
    }
    .caja-detalle-noticia {
        border: none;
        padding: 0;
    }
    .caja-detalle-noticia p {
        line-height: 1.5;
    }
}

@media only screen and (max-width: 533px) {
    /* ---- ----- ----- Home ----- ----- ----- */
}

@media only screen and (max-width: 480px) {
    /* ---- ----- ----- Home ----- ----- ----- */
    .home-nosotros,
    .home-noticias,
    .home-servicios,
    .faqs,
    .contactenos {
        padding: 30px;
    }
    .home-nosotros p {
        line-height: 30px;
        text-align: justify;
    }
    .home-servicios .contenedor-carousel .carousel {
        gap: 30px;
    }
    .home-servicios .contenedor-carousel .carousel .item {
        min-width: 150px;
        width: 15%;
    }
    .noticia {
        width: 340px;
    }
    .noticia-imagen {
        width: 340px;
        height: auto;
    }
    .noticia-imagen img {
        width: 340px;
    }
    .home-noticias .noticias .noticia .noticia-sumilla h2 {
        width: 100%;
    }
    .zoom3 {
        height: 230;
        width: 340px;
    }
    .zoom3 i {
        left: 150px;
    }
    .zoom3:hover i {
        position: absolute;
        margin-top: 0;
        top: 95px;
    }
    .pie {
        padding: 30px;
    }
    .pie-col1 p,
    .pie-col3 a {
        line-height: 25px;
    }
    .caja-copyright {
        padding: 15px 30px 15px 30px;
    }
    .nosotros,
    .caracteristicas-ventajas,
    .carga,
    .noticias2 {
        padding: 30px;
    }
    .col-der img {
        width: 100%;
    }
    #buscar {
        padding: 30px 30px 0 30px;
    }
}

@media only screen and (max-width: 360px) {
    /* ---- ----- ----- Home ----- ----- ----- */
}