@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);

@-webkit-keyframes scroll_left {

    0%,
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(calc(-250px*11));
        transform: translateX(calc(-250px*11))
    }
}

@keyframes scroll_left {

    0%,
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(calc(-250px*11));
        transform: translateX(calc(-250px*11))
    }
}

@keyframes animacion_menu {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes animacion_ebook {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes move-chevron-h {
    25% {
        opacity: 1
    }

    33.3% {
        opacity: 1;
        transform: translateY(2.28rem)
    }

    66.6% {
        opacity: 1;
        transform: translateY(3.12rem)
    }

    to {
        opacity: 0;
        transform: translateY(4.8rem) scale(.5)
    }
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px)
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px)
    }
}

body {
    font-weight: 300;
    color: #054973
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Roboto", sans-serif !important
}

p {
    font-size: 17px
}

b,
p {
    font-weight: 300
}

strong {
    font-weight: 500
}

.az,
strong {
    color: #00adee
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 100;
    color: #000
}

.custom-font {
    font-family: "Open Sans", sans-serif
}

textarea {
    resize: none
}

label {
    font-size: 15px
}

.bg-az,
.bg-azf {
    background-color: #00adee;
    color: #fff
}

.bg-azf {
    background-color: #054973
}

.bg-accion {
    padding: 100px 0;
    background-image: radial-gradient(circle at 50% 85%, #00437a 0, #001e50 100%)
}

.form-select {
    font-weight: 100
}

.form-control {
    border-radius: 0
}

#inicio_principal {
    background-image: url(../img/Captura1.jpeg);
    background-position: 0 0;
    background-size: cover;
    height: 90vh
}

.bg-inicio>.row>.azul-grad {
    height: 75vh
}

.bg-inicio>.row>.blanco-grad {
    height: 80vh
}

.azul-grad {
    background-image: linear-gradient(to right, #00aeee 60%, #00aeee00)
}

.blanco-grad {
    background-image: linear-gradient(to right, #fff 60%, #ffffff00);
    animation: gradient 15s ease infinite
}

.blanco-grad-der {
    background-image: linear-gradient(to left, #fff 60%, #ffffff00)
}

.esr-portada {
    position: absolute;
    height: 60px;
    top: 65vh;
    right: 4%
}

#nombre_seccion {
    background-color: #0c0a0c;
    color: #fff;
    position: fixed;
    left: 11%;
    width: 300px;
    top: 60px;
    border: solid 2px #c0bebe;
    border-radius: 0 0 8px 8px;
    text-align: center;
    padding: 5px;
    box-shadow: 0 5px 10px -1px rgba(82, 82, 82, .75);
    z-index: 5;
    font-size: 18px
}

#contacto-fixed {
    position: fixed;
    right: -350px;
    top: 25vh;
    display: flex;
    z-index: 3;
    transition: .9s
}

.cerrar-contacto {
    position: absolute;
    left: 68px;
    top: 8px;
    font-size: 30px
}

.cotizador_btn {
    background-color: #00adee;
    padding: 9px 20px;
    border-radius: 20px
}

.cotizador_btn:hover {
    color: #000 !important
}

/* Estilos del Slider (Carrusel) */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 50px 0;
  /* Máscara para desvanecer bordes */
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}

.slide-track_1,
.slide-track_2 {
  display: flex;
  width: max-content;
  align-items: center;
  /* Forzar aceleración por hardware y evitar tirones */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.slide-track_1 {
  animation: scroll-left 80s linear infinite;
}

.slide-track_2 {
  animation: scroll-right 80s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes scroll-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.slider:hover .slide-track_1,
.slider:hover .slide-track_2 {
  animation-play-state: paused;
}

.slide {
  padding: 0 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Definir un min-width evita que el carrusel "salte" cuando las imágenes cargan */
  min-width: 350px;
}

.imgb {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  /* Evita que el arrastre de imagen interfiera con la animación */
  user-select: none;
  -webkit-user-drag: none;
}

.imgb:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

#carros_pri .swiper-container.nav-slider .swiper-slide.swiper-slide-active,
.imgb:hover {
    opacity: 1
}

.btn_secciones {
    color: #fff;
    background: 0 0 !important;
    border-color: #fff;
    padding: 7px 40px
}

.btn_secciones:focus {
    box-shadow: none
}

.link_menu_celular {
    color: #fff;
    text-decoration: none;
    text-align: center
}

@media (max-width:559px) and (min-width:320px) {
    .btn_secciones {
        color: #fff;
        background: 0 0 !important;
        border-color: #fff;
        padding: 7px 40px
    }

    .btn_secciones:focus {
        box-shadow: none
    }

    .link_menu_celular {
        color: #fff;
        text-decoration: none;
        text-align: center
    }

    .contenedor_social {
        position: initial !important;
        right: 0 !important;
        margin-top: 10px
    }

    .cotizador_btn {
        text-decoration: none;
        color: #fff
    }
}

#ebook {
    z-index: 4;
    position: fixed;
    top: 20vh;
    animation: animacion_ebook 1s
}

.card_ebook {
    width: 22vw
}

.btn_ebook {
    border-radius: 20px;
    margin-top: 15px;
    font-size: 20px;
    padding: 5px 25px
}

.icon_social {
    padding: 0 15px
}

.icon_social>a {
    color: #fff;
    transition: all .2s linear
}

.icon_social:hover>a {
    color: #0dcaf0
}

.icon_social>a>i {
    font-size: 25px;
    margin: 7px 0;
    padding: 0
}

.contenedor_social {
    position: absolute;
    right: 1vw;
    display: flex
}

.seccion-vista {
    background-color: #00adee;
    color: #fff;
    height: 45px;
    width: 55px;
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    margin-top: 18vh;
    padding-top: 15px
}

.seccion-vista i {
    font-size: 20px
}

.seccion-accion-contac {
    text-align: center;
    background-color: #fff;
    color: #fff;
    display: flex
}

.seccion-accion-contac h4 {
    font-weight: 300;
    font-size: 19px
}

.footer-icons ul li a,
.seccion-wh {
    display: block;
    align-items: center;
    justify-content: center
}

.seccion-wh {
    padding: 30px 50px;
    width: 350px
}

.lista li a,
.seccion-wh a {
    text-decoration: none
}

.copyright-text a:hover,
.seccion-wh a:hover {
    text-decoration: underline
}

.seccion-accion-contac i {
    cursor: pointer
}

.section-opt {
    padding: 0 30px;
    background-color: #fff;
    width: 350px;
    height: 240px
}

.sec-una {
    border-bottom: solid 1px #d8d8d8;
    margin-bottom: 15px;
    padding-top: 20px
}

.sec-dos h4,
.sec-tres h4,
.sec-una h4 {
    font-weight: 400;
    font-size: 20px
}

.sec-dos h4:hover,
.sec-tres h4:hover,
.sec-una h4:hover {
    text-decoration: underline;
    cursor: pointer
}

.sec-dos p,
.sec-tres p,
.sec-una p {
    color: #054973
}

.sec-dos,
.sec-tres {
    margin-bottom: 15px;
    padding-top: 5px
}

.bg-nosotros {
    background-image: url(../img/Fondo_Nosotros.jpg);
    background-position: center;
    background-size: cover;
    transition: .8s;
    height: 78vh
}

#footer h6,
.subtitulo b {
    font-weight: 400
}

.bg-bsnetw,
.bg-primera_bsn {
    background-size: cover;
    transition: .8s;
    height: 70vh
}

.bg-primera_bsn {
    background-image: url(../img/negociobsn.jpg);
    background-position: -80px -150px;
    background-repeat: no-repeat
}

.bg-bsnetw {
    background-image: url(../img/cta-bg.jpg);
    background-position: center
}

#footer {
    background-color: #f5f5f7;
    padding: 50px 0
}

#footer h6 {
    color: #2b2b2b !important;
    margin-bottom: 20px;
    transition: .5s
}

#footer h6:hover {
    padding-left: 15px
}

.lista {
    padding-left: 8px !important
}

.lista li a {
    color: #86868b;
    transition: .5s;
    font-size: 14px;
    opacity: .9
}

.lista li a:hover {
    margin-left: 15px;
    border-bottom: 1px #054973 solid;
    opacity: 1
}

.footer-area {
    padding: 40px 0;
    background: #f9f9f9
}

.footer-head p {
    color: #444
}

.footer-logo {
    padding-bottom: 20px
}

.footer-logo h2 {
    color: #222;
    padding: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1
}

.footer-logo h2 span {
    color: #3ec1d5
}

.footer-icons ul li {
    display: inline-block
}

.footer-icons ul li a {
    border: 1px solid #444;
    color: #444;
    font-size: 16px;
    height: 40px;
    margin-right: 5px;
    text-align: center;
    width: 40px;
    border-radius: 50%;
    display: flex;
    line-height: 0
}

.footer-icons ul li a i {
    line-height: 0
}

.flicker-img>a {
    float: left;
    padding: 1px;
    width: 33.33%
}

.footer-icons {
    margin-top: 30px
}

.footer-contacts p span {
    color: #3ec1d5;
    font-weight: 700
}

.footer-area-bottom {
    background: #f1f1f1 0 0;
    padding: 15px 0
}

.copyright-text a:hover {
    color: #3ec1d5
}

.copyright-text a {
    color: #444
}

.copyright>p {
    margin-bottom: 0;
    color: #444
}

.copyright a,
.credits a {
    color: #3ec1d5
}

.credits {
    padding-top: 5px;
    text-align: center
}

.solucion,
.solucion-c {
    border: solid 1px #d8d8d8;
    cursor: pointer
}

.solucion {
    border-radius: 3px;
    padding: 100px 0;
    min-height: 410px
}

.solucion-c {
    border-radius: 5px;
    min-height: 180px
}

.bg-mensaje {
    border: solid 1px #ebb916
}

#introduccion {
    padding: 0 0 30px
}

#sectores,
#servicio_especiales {
    height: 100vh;
    padding: 50px 0
}

#boletin {
    padding: 50px 0
}

.bg-white-80 {
    background-color: rgba(255, 255, 255, .87)
}

.bg-implantacion {
    background-image: url(../img/implantacion2.jpg);
    height: 250px;
    background-position: center;
    background-size: cover
}

.bg-capacit,
.bg-insourcing,
.bg-poliza_mat,
.bg-prestez,
.bg-soportec {
    background-image: url(../img/poliza_mantenimiento.jpg);
    height: 250px;
    background-position: center;
    background-size: cover
}

.bg-capacit,
.bg-insourcing,
.bg-prestez,
.bg-soportec {
    background-image: url(../img/soporte_consultoria.jpg)
}

.bg-capacit,
.bg-insourcing,
.bg-prestez {
    background-image: url(../img/capacitacionss.jpg)
}

.bg-insourcing,
.bg-prestez {
    background-image: url(../img/insourcing.jpg)
}

.bg-prestez {
    background-image: url(../img/presteza.jpg)
}

#bsn,
.bg-suscribete {
    background-size: cover;
    color: #fff
}

#bsn {
    background: linear-gradient(rgba(2, 2, 2, .5), rgba(0, 0, 0, .5)), url(../img/cta-bg.jpg)fixed center center;
    padding: 60px
}

.bg-suscribete {
    background: linear-gradient(rgba(2, 2, 2, .5), rgba(0, 0, 0, .5)), url(../img/boletin.jpg)fixed center center;
    padding: 20px
}

#clientes,
#porqueno,
#servicios {
    padding: 50px 0
}

#clientesgmp img {
    filter: grayscale(100)
}

.solu_ic {
    text-decoration: none
}

.solu_ic>.row>.col-md-12>img {
    filter: none !important
}

.clients {
    padding-top: 20px
}

.clients .swiper-pagination,
.clients-slider .swiper-pagination {
    margin-top: 20px;
    position: relative
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: #ddd
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffc451
}

.clients-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #054973
}

.clients-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px
}

.text-depserv {
    min-height: 150px
}

.com_ser {
    height: 100px
}

#hero_avisoprivacidad,
#hero_quienesgmp {
    width: 100%;
    height: 70vh;
    background: url(../img/quienes_fondo.jpg)top center;
    background-size: cover;
    position: relative;
    text-align: center
}

.servicon1 {
    color: #f7ca0f;
    font-size: 40px
}

.vh100 {
    height: 100vh
}

.container-flecha-h {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50px
}

.chevron-h {
    position: absolute;
    width: 2.1rem;
    height: .48rem;
    opacity: 0;
    transform: scale(.3);
    animation: move-chevron-h 3s ease-out infinite
}

.chevron-h:first-child {
    animation: move-chevron-h 3s ease-out 1s infinite
}

.chevron-h:nth-child(2) {
    animation: move-chevron-h 3s ease-out 2s infinite
}

.chevron-h:before {
    width: 50%
}

.chevron-h:after,
.chevron-h:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    background: #f3f3f3
}

.chevron-h:before {
    left: 0;
    transform: skewy(30deg)
}

.chevron-h:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg)
}

.img-logo-open-inicio {
    position: absolute;
    height: 35px;
    left: 5%;
    bottom: 5%
}

.img-logo-humanet-inicio {
    position: absolute;
    height: 35px;
    right: 5%;
    bottom: 5%
}

.bg-cotizador {
    background: linear-gradient(to top, #f0f0f028, #fafafad8), url(../img/cotizador.jpg)fixed center center;
    background-size: cover;
    background-position: center;
    padding: 10vh 15px
}

#ser_implantacion {
    height: 60vh;
    background-image: url(../img/implantacion2.jpg);
    background-size: cover;
    background-position: 400px -100px
}

#ser_capacitacion,
#ser_poliza,
#ser_soporteyc {
    height: 60vh;
    background-image: url(../img/soporte_consultoria.jpg);
    background-size: cover;
    background-position: 300px -50px
}

#ser_capacitacion,
#ser_poliza {
    background-image: url(../img/poliza_mantenimiento_pol.jpg);
    background-position: 10px -100px
}

#ser_capacitacion {
    background-image: url(../img/capacitacion.jpg);
    background-position: 330px -100px
}

#maquila_nomina,
#portada-bsn,
#ser_presteza {
    height: 60vh;
    background-image: url(../img/maquila_nomina.jpg);
    background-size: cover;
    background-position: 350px -200px
}

#portada-bsn,
#ser_presteza {
    background-image: url(../img/beneficios_pres.jpg);
    background-position: 125px -310px
}

#portada-bsn {
    background-image: url(../img/bsn.jpg);
    background-position: 250px -40px
}

#header-bg {
    background-image: linear-gradient(to top, #03030328, #000000d8), url(../img/boletin-sp.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh
}

#contacto {
    height: 100vh;
    background-image: linear-gradient(to top, #03030328, #000000d8), url(../img/contacto.jpg)
}

#contacto,
#quienes_somos,
.bg-left-modal,
.bg-soporte-1 {
    background-size: cover;
    background-position: top
}

#quienes_somos {
    height: 60vh;
    background-image: url(../img/fondo-quienesomos.jpg)
}

#newsletter,
#vacaciones {
    height: 60vh;
    background-image: url(../img/vacaciones-sol.jpg);
    background-size: cover;
    background-position: 280px -380px
}

#newsletter {
    background-image: url(../img/newsletter.jpg);
    background-position: 350px -150px
}

#ods,
#responsabilidad_social,
#responsabilidad_social_empresarial {
    height: 60vh;
    background-image: url(../img/soluciones/Responsabilidad_Social/esr.jpg);
    background-size: cover;
    background-position: 350px -130px
}

#ods,
#responsabilidad_social_empresarial {
    background-image: url(../img/esr_seccion.jpg)
}

#ods {
    background-image: url(../img/ODS_2.jpg);
    background-position: 250px -340px
}

#centro_informacion,
#clima_laboral {
    height: 60vh;
    background-image: url(../img/clima_laboral_new.jpg);
    background-size: cover;
    background-position: 450px -200px
}

#centro_informacion {
    background-image: url(../img/soluciones/Centro_Informacion/portada.jpg);
    background-position: 300px -280px
}

#autogestion,
#encuestas,
#servicio_personal {
    height: 60vh;
    background-image: url(../img/soluciones/Servicio_Personal/portada.jpg);
    background-size: cover;
    background-position: 400px 0
}

#autogestion,
#encuestas {
    background-image: url(../img/soluciones/Autogestión/portada.jpg);
    background-position: 350px -100px
}

#encuestas {
    background-image: url(../img/encuestas_new.jpg);
    background-position: 350px -140px
}

#evaluacion360,
#evaluacion_desempeno {
    height: 60vh;
    background-image: url(../img/evalua_desempeño.jpg);
    background-size: cover;
    background-position: 215px -260px
}

#evaluacion360 {
    background-image: url(../img/evaluacion360.jpg);
    background-position: 330px -130px
}

#atraccion_talento,
#nomina,
#nominaweb {
    height: 60vh;
    background-image: url(../img/atraccion_talento2.jpg);
    background-size: cover;
    background-position: 250px -130px
}

#nomina,
#nominaweb {
    background-image: url(../img/nomina_web.jpg);
    background-position: 270px -100px
}

#nomina {
    background-image: url(../img/nomina.jpg)
}

#asistencia,
#asistencia_biometrico {
    height: 60vh;
    background-image: url(../img/biometrico.jpg);
    background-size: cover;
    background-position: 250px -400px
}

#asistencia {
    background-image: url(../img/soluciones/Asistencia/portada.jpg);
    background-position: 250px -200px
}

#gestion_capacitacion,
#trayectoria {
    height: 60vh;
    background-image: url(../img/gestion_capacitacion.jpg);
    background-size: cover;
    background-position: 250px -230px
}

#trayectoria {
    background-image: url(../img/trayectoria.jpg);
    background-position: center
}

#certificaciones,
#innovacion_tec,
#soluciones_verticiales {
    height: 60vh;
    background-image: url(../img/soluciones_ver.jpg);
    background-size: cover;
    background-position: 0 0
}

#certificaciones,
#innovacion_tec {
    background-image: url(../img/innovacion.jpg);
    background-position: center
}

#certificaciones {
    background-image: url(../img/certificaciones.jpg);
    background-repeat: no-repeat;
    background-position: 0-210px
}

#recursos_humanos {
    background-image: url(../img/recursos-humanoss.jpg);
    background-repeat: no-repeat;
    background-position: 300px bottom
}

#aviso_privac,
#laborals,
#recursos_humanos {
    height: 60vh;
    background-size: cover
}

#laborals {
    background-image: url(../img/fondo-laboral.jpg);
    background-repeat: no-repeat;
    background-position: 300px bottom
}

#aviso_privac {
    background-image: url(../img/avisopriv1.jpg);
    background-position: 300px -150px
}

#boletin-detalle {
    background-image: linear-gradient(to top, #03030328, #000000d8), url(../img/boletin-sp.jpg);
    background-size: cover;
    background-position: center;
    height: 58px
}

.bg-left-modal,
.bg-soporte-1 {
    background-image: url(../img/dmo.jpg)
}

.bg-soporte-1 {
    background-image: url(../img/soporte-ser.jpg);
    background-position: center;
    transition: .8s;
    height: 70vh
}

.bg-certificacionus,
.bg-soporte-247,
.bg-soporte-conti {
    background-image: url(../img/servicios_fotos/foto_24sop.jpg);
    background-position: top;
    background-size: cover;
    transition: .8s;
    height: 70vh
}

.bg-certificacionus,
.bg-soporte-conti {
    background-image: url(../img/servicios_fotos/foto_sevcontingencia.jpg)
}

.bg-certificacionus {
    background-image: url(../img/servicios_fotos/foto_sevcert_usuarios.jpg)
}

.bg-porque_experiencia,
.bg-porque_servicios,
.bg-porque_tecnologia,
.bg-serviciofact {
    background-image: url(../img/porque_servicios2.jpg);
    background-position: center;
    background-size: cover;
    transition: .8s;
    height: 60vh
}

.bg-porque_experiencia,
.bg-porque_tecnologia,
.bg-serviciofact {
    background-image: url(../img/experiencia.jpg);
    height: 80vh
}

.bg-porque_tecnologia,
.bg-serviciofact {
    background-image: url(../img/tecnologia.jpg);
    height: 70vh
}

.bg-serviciofact {
    background-image: url(../img/servicio_facturac.jpg);
    height: 65vh
}

@media (min-width:1920px) {
    .work-right-text {
        padding: 150px
    }
}

@media (min-width:992px) and (max-width:1169px) {
    .slider-content {
        padding: 146px 0
    }

    .work-right-text {
        padding: 40px 0
    }

    .work-right-text h2 {
        font-size: 18px;
        line-height: 28px
    }

    .img-foro-8 {
        width: 100%
    }
}

@media (min-width:768px) and (max-width:991px) {
    .layer-1-1 h2 {
        font-size: 24px
    }

    .layer-1-2 h1 {
        font-size: 31px;
        line-height: 38px;
        padding: 0 30px
    }

    .tab-menu ul.nav li a {
        padding: 10px 16px
    }

    .suscribe-input input {
        width: 60%
    }

    .suscribe-input button {
        width: 40%
    }

    .team-content.text-center>h4 {
        font-size: 20px
    }

    .sus-btn {
        margin-left: 0
    }

    .suscribe-text h3 {
        font-size: 16px;
        padding-right: 20px
    }

    .work-right-text h2,
    .work-right-text h5 {
        font-size: 14px;
        line-height: 22px
    }

    .work-right-text {
        padding: 36px 0
    }

    .work-right-text .ready-btn {
        font-size: 13px;
        padding: 7px 20px;
        margin-top: 5px
    }

    .single-awesome-portfolio {
        width: 33.33%
    }

    .widget-product .product-info,
    .widget-product a img {
        display: block;
        float: none;
        width: 100%
    }

    .widget-product .product-info {
        padding-left: 0;
        margin-top: 20px
    }

    .map-column {
        margin-left: 0;
        padding-right: 40px
    }

    .post-information .entry-meta {
        font-size: 13px;
        padding: 5px 0
    }

    .post-information .entry-meta span a {
        padding: 4px 0
    }

    .service-pic {
        margin-bottom: 30px;
        text-align: center
    }

    .single-add-itms {
        width: 50%
    }

    .left-sidebar-title>h4 {
        font-size: 18px
    }

    .contact-form {
        margin-top: 0
    }

    .search-option input {
        width: 67%
    }
}

@media (max-width:767px) {
    .slider-area {
        margin-top: 60px
    }

    .slider-content {
        padding: 80px 0
    }

    .slider-content h2 {
        font-size: 18px !important;
        line-height: 24px !important
    }

    .slider-content h1 {
        font-size: 20px !important;
        line-height: 26px !important
    }

    .layer-1-3 a.ready-btn {
        padding: 8px 15px
    }

    .section-headline h2 {
        font-size: 30px
    }

    .single-skill {
        margin-bottom: 40px
    }

    .tab-menu,
    .well-middle .single-well {
        margin-top: 30px
    }

    .tab-menu ul.nav li a {
        padding: 8px 6px
    }

    .wellcome-text {
        margin: 0;
        padding: 70px 0
    }

    .subs-feilds {
        width: 100%
    }

    .suscribe-input input {
        width: 60%
    }

    .suscribe-input button {
        font-size: 15px;
        padding: 14px 10px;
        width: 40%
    }

    .section-headline h3 {
        font-size: 25px
    }

    .well-text>h2 {
        font-size: 18px
    }

    .service-images:hover .overly-text,
    .well-text p {
        display: none
    }

    .single-team-member {
        margin-bottom: 30px
    }

    .service-right {
        width: 100%
    }

    .portfolio-area {
        padding-top: 0
    }

    .project-menu li a {
        padding: 8px 12px;
        margin: 10px 4px
    }

    .pri_table_list {
        margin-bottom: 30px
    }

    .portfolio-2 .single-awesome-project,
    .single-awesome-project {
        width: 100%;
        float: none
    }

    .single-blog {
        margin-bottom: 30px
    }

    .sus-btn {
        margin-left: 0
    }

    .contact-form,
    .sus-btn {
        margin-top: 30px
    }

    .head-team h5 {
        font-size: 22px
    }

    .footer-content {
        margin-bottom: 30px
    }

    .header-bottom h1 {
        font-size: 30px;
        margin-bottom: 0
    }

    .page-area .slider-content {
        padding: 500px 0
    }

    .search-option input {
        width: 74%
    }

    .header-bottom h2 {
        font-size: 20px;
        margin-bottom: 0
    }

    li.threaded-comments {
        margin-left: 0
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    .submitbtn {
        float: none;
        width: 99.8%
    }

    .icons-bottom ul li a {
        height: 40px;
        line-height: 37px;
        width: 40px
    }

    .blog-post-dlc ul li {
        padding-left: 20px;
        padding-right: 20px
    }

    .awesome-portfolio-content .portfolio-2,
    .gallary-details .single-awesome-portfolio {
        width: 50%
    }

    .tab-menu ul.nav li a {
        padding: 8px 20px
    }
}

@media (max-width:575px) {
    .slider-content {
        padding: 0
    }
}

.boton-sig-sol {
    right: 1%;
    background-color: #ebb916
}

.boton-ant-sol i,
.boton-ant-sol2 i,
.boton-sig-sol i,
.boton-sig-sol2 i {
    font-size: 30px
}

.boton-ant-sol,
.boton-ant-sol2,
.boton-sig-sol,
.boton-sig-sol2 {
    position: absolute;
    bottom: 50%;
    padding: 15px 4px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 3
}

.boton-ant-sol {
    left: 1%;
    background-color: #ebb916
}

.boton-ant-sol2,
.boton-sig-sol2 {
    background-color: #1b1a15
}

.boton-sig-sol2 {
    right: 1%
}

.boton-ant-sol2 {
    left: 1%
}

a.class_a_href {
    pointer-events: none;
    cursor: default
}

.h-60 {
    height: 60vh
}

.h-70 {
    height: 70vh
}

.h-90 {
    height: 90vh
}

.titulo {
    font-size: 50px
}

.subtitulo,
.titulo {
    font-weight: 300
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #00aeee;
    margin: 4px 10px
}

.sect {
    padding: 40px 0
}

#banner_clientes,
.bg-sec-nosotros {
    background-image: url(../img/open_portada_catalogo.jpg);
    background-size: cover;
    height: 75vh;
    background-position: 380px 0
}

#banner_clientes {
    height: 60vh;
    background-image: url(../img/clientes.jpg);
    background-position: 340px -150px
}

.vh75 {
    height: 75vh
}

.bg-sec-bsn {
    background-image: url(../img/cta-bg.jpg);
    background-size: cover;
    height: 75vh;
    background-position: 300px -70px
}

.center {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center
}

.wrapper {
    display: flex;
    grid-gap: 1em;
    overflow: hidden;
    width: 55em
}

.wrapper>.inner {
    display: flex;
    grid-gap: 1em;
    transition: all 1s ease-in-out
}

.card {
    border-radius: .5em
}

.card>img,
.card>img.img-official {
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
    display: block;
    width: 276px;
    height: 180px
}

.card>img.img-official {
    padding: 20px
}

.card>.content {
    background: #00adee;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    padding: 1em;
    text-align: center;
    width: 276px;
    height: 180px
}

.card>.content>h1,
.card>.content>h3 {
    margin: .35em 0
}

.card>.content>h1 {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1
}

.card>.content>h3 {
    color: #f5f5f5;
    font-size: 18px;
    font-weight: 300
}

.map {
    margin-top: 1em
}

.map>button {
    all: unset;
    background: #11406c;
    cursor: pointer;
    margin: 0 .125em;
    position: relative;
    user-select: none;
    border-radius: 100%;
    padding: 10px
}

.map>button.active {
    background: #fff;
    border: solid 4px #11406c;
    border-radius: 100%;
    padding: 7px
}

.seccion-ca {
    width: 100%;
    height: 650px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center
}

.popular-tag.left-blog ul li a:hover {
    color: #fff
}

.popular-tag.left-side-tags.left-blog ul {
    padding: 0 10px
}

.popular-tag ul li {
    display: inline-block
}

.footer-content {
    display: block;
    overflow: hidden
}

.footer-icons ul li a:hover,
.popular-tag ul li a:hover {
    background: #3ec1d5;
    border: 1px solid #3ec1d5;
    color: #fff
}

.popular-tag ul li a {
    border: 1px solid #444;
    border-radius: 30px;
    color: #444;
    font-size: 13px;
    display: block;
    font-weight: 600;
    margin: 5px 3px;
    position: relative;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .4s ease 0s;
    width: 125px;
    text-align: center
}

.btn-conoce-mas,
.descargaebook {
    background-color: #00aeeec9;
    border-radius: 50px;
    color: #fff;
    font-weight: 300;
    transition: .8s;
    text-decoration: none;
    padding: 10px 50px
}

.btn-conoce-mas:hover {
    background-color: #00adee;
    color: #fff
}

.descargaebook {
    background-color: #054973c2;
    cursor: pointer
}

.descargaebook:hover,
.submenu_nosotros a:hover {
    background-color: #054973;
    color: #fff
}

.regr,
.sig {
    position: relative !important
}

.carousel-control-next,
.carousel-control-prev {
    width: 80% !important;
    opacity: 1 !important
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    height: 80px !important;
    width: 50px
}

.carousel-caption {
    position: absolute;
    right: 10% !important;
    top: 0;
    width: 50%;
    left: 50% !important;
    text-align: left !important;
    padding: 40px
}

.submenu_nosotros {
    background-color: #00aeee;
    display: flex;
    justify-content: right
}

.submenu_nosotros a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    border-right: 1px solid #e0e0e0;
    transition: .9s;
    padding: 6px 20px;
    line-height: 50px
}

.submenu_nosotros a:hover {
    text-decoration: underline
}

.submenu_nosotros a.active {
    background-color: #041c2b
}

.br-none {
    border-right: 1px solid transparent !important
}

.fondo-quienes {
    background-image: linear-gradient(to right, #fff, #fcfcfc00), url(../img/fondo-quienesomos.jpg);
    background-size: cover;
    height: 60vh;
    background-repeat: no-repeat;
    background-position: 300px 0
}

.fondo-experiencia,
.fondo-mexico {
    background-image: linear-gradient(to right, #fff, #fcfcfc00), url(../img/experiencia_new.jpg);
    background-repeat: no-repeat;
    height: 60vh;
    background-position: 200px 0
}

.fondo-mexico {
    background-image: linear-gradient(to right, #ffffffbb, #fcfcfc00), url(../img/fondo_mexico.jpg);
    background-position: center;
    background-size: cover
}

.fondo-staf {
    background-image: linear-gradient(to right, #fff, #fcfcfc00), url(../img/staff.jpg);
    background-position: bottom
}

.fondo-staf,
.fondo-tratodirec,
.fondo_experiencia_ti {
    background-repeat: no-repeat;
    height: 60vh;
    background-size: cover
}

.fondo_experiencia_ti {
    background-image: linear-gradient(to right, #fff, #fcfcfc00), url(../img/experiencia_proce_new.jpg);
    background-position: 0-140px
}

.fondo-tratodirec {
    background-image: url(../img/tratopersonalizado.jpg);
    background-position: 60px -250px
}

.bg-tecnologia,
.fondo-comunicacion_const,
.fondo-conocemos,
.fondo-legal {
    background-image: url(../img/conocemos.jpg);
    background-repeat: no-repeat;
    height: 60vh;
    background-position: -260px -100px;
    background-size: cover
}

.bg-tecnologia,
.fondo-comunicacion_const,
.fondo-legal {
    background-image: url(../img/comunicacion_constante.jpg);
    background-position: 300px -150px
}

.bg-tecnologia,
.fondo-legal {
    background-image: url(../img/fondo-tecnologia.jpg);
    height: 85vh;
    background-position: 0-100px
}

.fondo-legal {
    background-image: url(../img/marco-legal.jpg);
    height: 60vh
}

.bg-quienes-open {
    background-image: linear-gradient(#000000d0, #000000cc), url(../img/fondo-quienesomos.jpg);
    height: 380px
}

.bg-quienes-humanet {
    background-image: linear-gradient(#d6d8dad3, #23578ce5), url(../img/fondo-humanet.jpg);
    height: 380px
}

#casos_exito,
#experiencia-sec,
.bg-mision,
.bg-vision {
    background-image: url(../img/misiondelaempresa.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 400px -80px
}

#casos_exito,
#experiencia-sec,
.bg-mision {
    background-image: url(../img/mision.jpg);
    background-position: 300px -80px
}

#casos_exito,
#experiencia-sec {
    background-image: url(../img/experiencia_1.jpg);
    background-position: 200px -90px;
    height: 60vh
}

#casos_exito {
    background-image: url(../img/casos_exito.jpg);
    background-position: 250px -180px
}

#eventos,
#porqueelegirnos,
.bg-administracion_personaben,
.bg-atraccion_talent {
    background-image: url(../img/porque_elegirnos1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 215px -150px;
    height: 60vh
}

#eventos,
.bg-administracion_personaben,
.bg-atraccion_talent {
    background-image: url(../img/eventos_fondo.jpg);
    background-position: 330px -150px
}

.bg-administracion_personaben,
.bg-atraccion_talent {
    background-image: url(../img/soluciones/administracion_Personal/administracionperosnal.jpg);
    background-position: 270px 60%
}

.bg-atraccion_talent {
    background-image: url(../img/atraccion_talent.jpg);
    background-position: 90px -100px
}

.h-80 {
    height: 80vh
}

#proceso_estrutura_organizacional {
    display: none
}

#admin_personal {
    background-image: url(../img/administracion_personal.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 400px -250px;
    height: 60vh
}

.bg-estructura_organizacional {
    background-image: url(../img/soluciones/administracion_Personal/estructura_orga.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-admin_personal_vacaciones,
.bg-control_asistencia,
.bg-inventariorh,
.bg-movimientos_personal {
    background-image: url(../img/soluciones/administracion_Personal/movimientosPersonal.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-admin_personal_vacaciones,
.bg-control_asistencia,
.bg-inventariorh {
    background-image: url(../img/soluciones/administracion_Personal/inventario_rrhh.jpg)
}

.bg-admin_personal_vacaciones,
.bg-control_asistencia {
    background-image: url(../img/soluciones/administracion_Personal/vacaciones.jpg)
}

.bg-control_asistencia {
    background-image: url(../img/soluciones/Nomina/control_asistencias.jpg)
}

.bg-caja_fondoahorro,
.bg-finiquitos_liquidacion,
.bg-incidencias_nomina,
.bg-prestamos,
.bg-procesamiento_nomina {
    background-image: url(../img/soluciones/Nomina/incidencias_nomina.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-caja_fondoahorro,
.bg-finiquitos_liquidacion,
.bg-prestamos,
.bg-procesamiento_nomina {
    background-image: url(../img/soluciones/Nomina/procesamiento_nomina.jpg)
}

.bg-caja_fondoahorro,
.bg-finiquitos_liquidacion,
.bg-prestamos {
    background-image: url(../img/soluciones/Nomina/finiquitos_liquidaciones.jpg)
}

.bg-caja_fondoahorro,
.bg-prestamos {
    background-image: url(../img/soluciones/Nomina/prestamos.jpg)
}

.bg-caja_fondoahorro {
    background-image: url(../img/soluciones/Nomina/caja_fondo_ahorro.jpg)
}

.bg-PTU,
.bg-cimm,
.bg-impuestos,
.bg-presupuestos,
.bg-recibos_electronicos,
.bg-seguridad_social {
    background-image: url(../img/soluciones/Nomina/seguidad_social.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-PTU,
.bg-cimm,
.bg-impuestos,
.bg-presupuestos,
.bg-recibos_electronicos {
    background-image: url(../img/soluciones/Nomina/impuestos.jpg)
}

.bg-PTU,
.bg-cimm,
.bg-presupuestos,
.bg-recibos_electronicos {
    background-image: url(../img/soluciones/Nomina/presupuestos.jpg)
}

.bg-PTU,
.bg-cimm,
.bg-recibos_electronicos {
    background-image: url(../img/soluciones/Nomina/PTU.jpg)
}

.bg-cimm,
.bg-recibos_electronicos {
    background-image: url(../img/soluciones/Nomina/recibos_eletronicos.jpg)
}

.bg-cimm {
    background-image: url(../img/soluciones/Nomina/cimm.jpg)
}

.bg-atraccion_talento,
.bg-capacitacion,
.bg-control_plantilla,
.bg-headcount,
.bg-sueldos_salarios,
.bg-workflow {
    background-image: url(../img/soluciones/Recursos_Humanos/atraccion_talento.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-capacitacion,
.bg-control_plantilla,
.bg-headcount,
.bg-sueldos_salarios,
.bg-workflow {
    background-image: url(../img/soluciones/Recursos_Humanos/control_plantilla.jpg)
}

.bg-capacitacion,
.bg-headcount,
.bg-sueldos_salarios,
.bg-workflow {
    background-image: url(../img/soluciones/Recursos_Humanos/workflow.jpg)
}

.bg-capacitacion,
.bg-headcount,
.bg-sueldos_salarios {
    background-image: url(../img/soluciones/Recursos_Humanos/headcount.jpg)
}

.bg-capacitacion,
.bg-sueldos_salarios {
    background-image: url(../img/soluciones/Recursos_Humanos/sueldos_salarios.jpg)
}

.bg-capacitacion {
    background-image: url(../img/soluciones/Recursos_Humanos/capacitacion.jpg)
}

.bg-constratos_colectivos,
.bg-evaluacion_personal,
.bg-laboral,
.bg-plan_carrera,
.bg-seguridad {
    background-image: url(../img/soluciones/Recursos_Humanos/plan_carrera.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-constratos_colectivos,
.bg-evaluacion_personal,
.bg-laboral,
.bg-seguridad {
    background-image: url(../img/soluciones/Recursos_Humanos/evaluacion_personal.jpg)
}

.bg-constratos_colectivos,
.bg-laboral,
.bg-seguridad {
    background-image: url(../img/soluciones/Laboral/laboral.jpg)
}

.bg-constratos_colectivos,
.bg-seguridad {
    background-image: url(../img/soluciones/Laboral/seguridad.jpg)
}

.bg-constratos_colectivos {
    background-image: url(../img/soluciones/Laboral/contratosC.jpg)
}

.bg-vacaciones_ben {
    background-image: url(../img/soluciones/vacaciones/solicitud_vac.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
    background-position: 400px 60%
}

.bg-misvacaciones,
.bg-permisos,
.bg-solicitud_aut {
    background-image: url(../img/soluciones/vacaciones/solictud.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-misvacaciones,
.bg-permisos {
    background-image: url(../img/soluciones/vacaciones/misvacaciones.jpg)
}

.bg-permisos {
    background-image: url(../img/soluciones/vacaciones/registro_permisos.jpg)
}

.bg-actualizaciondat,
.bg-gestion_docuemental,
.bg-mensajea,
.bg-personalacargo,
.bg-recibos_pago {
    background-image: url(../img/soluciones/vacaciones/mipersonal_acargo.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-actualizaciondat,
.bg-gestion_docuemental,
.bg-mensajea,
.bg-recibos_pago {
    background-image: url(../img/soluciones/vacaciones/mis_mensajes.jpg)
}

.bg-actualizaciondat,
.bg-gestion_docuemental,
.bg-recibos_pago {
    background-image: url(../img/soluciones/vacaciones/gestion_documental.jpg)
}

.bg-actualizaciondat,
.bg-recibos_pago {
    background-image: url(../img/soluciones/Autogestión/actualizacion_datos.jpg)
}

.bg-recibos_pago {
    background-image: url(../img/soluciones/Autogestión/recibos_nomina.jpg)
}

.bg-aclracionpagosnom,
.bg-incapacidades,
.bg-misevaluaciones,
.bg-mistareas,
.bg-solicitudcartas {
    background-image: url(../img/soluciones/Autogestión/mistareasporre.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-aclracionpagosnom,
.bg-incapacidades,
.bg-misevaluaciones,
.bg-solicitudcartas {
    background-image: url(../img/soluciones/Autogestión/solicitud_cartas.jpg)
}

.bg-aclracionpagosnom,
.bg-incapacidades,
.bg-misevaluaciones {
    background-image: url(../img/soluciones/Autogestión/misevaluaciones.jpg)
}

.bg-aclracionpagosnom,
.bg-incapacidades {
    background-image: url(../img/soluciones/Autogestión/Incapacidades.jpg)
}

.bg-aclracionpagosnom {
    background-image: url(../img/soluciones/Autogestión/aclaracion_pagos_nomina.jpg)
}

.bg-buzonsug,
.bg-carpool,
.bg-huella_carbono,
.bg-objetosperdidos,
.bg-rse,
.bg-seguridad-s,
.bg-tienda {
    background-image: url(../img/soluciones/Autogestión/buzon_sugerencias.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-carpool,
.bg-huella_carbono,
.bg-objetosperdidos,
.bg-rse,
.bg-seguridad-s,
.bg-tienda {
    background-image: url(../img/soluciones/Autogestión/tienda.jpg)
}

.bg-carpool,
.bg-huella_carbono,
.bg-objetosperdidos,
.bg-rse,
.bg-seguridad-s {
    background-image: url(../img/soluciones/Autogestión/objetos_perdidos.jpg)
}

.bg-carpool,
.bg-huella_carbono,
.bg-rse,
.bg-seguridad-s {
    background-image: url(../img/soluciones/Autogestión/seguridad.jpg)
}

.bg-carpool,
.bg-huella_carbono,
.bg-rse {
    background-image: url(../img/soluciones/Autogestión/fond_esr.jpg)
}

.bg-carpool,
.bg-huella_carbono {
    background-image: url(../img/soluciones/Autogestión/huella_carbono.jpg)
}

.bg-carpool {
    background-image: url(../img/soluciones/Autogestión/carpool.jpg)
}

.bg-gestion_timeline,
.bg-miscursos,
.bg-registro_asistencia,
.bg-reservasalas,
.bg-tableroanuncios {
    background-image: url(../img/soluciones/Autogestión/cursos_im.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-gestion_timeline,
.bg-registro_asistencia,
.bg-reservasalas,
.bg-tableroanuncios {
    background-image: url(../img/soluciones/Autogestión/timeline_im.jpg)
}

.bg-registro_asistencia,
.bg-reservasalas,
.bg-tableroanuncios {
    background-image: url(../img/soluciones/Autogestión/tablero_anuncios.jpg)
}

.bg-registro_asistencia,
.bg-reservasalas {
    background-image: url(../img/soluciones/Autogestión/reservasalas.jpg)
}

.bg-registro_asistencia {
    background-image: url(../img/soluciones/Autogestión/registro_asistencia.jpg)
}

.bg-iniciativasrh,
.bg-miinformacion,
.bg-misbeneficios,
.bg-misfunciones,
.bg-servicio_comunicacion {
    background-image: url(../img/soluciones/Asistencia/miinformacion.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-iniciativasrh,
.bg-misbeneficios,
.bg-misfunciones,
.bg-servicio_comunicacion {
    background-image: url(../img/soluciones/Servicio_Personal/Iniciativas_rrhh.jpg)
}

.bg-misbeneficios,
.bg-misfunciones,
.bg-servicio_comunicacion {
    background-image: url(../img/soluciones/Servicio_Personal/comunicacion_interna.jpg)
}

.bg-misbeneficios,
.bg-misfunciones {
    background-image: url(../img/soluciones/Centro_Informacion/mis_funciones.jpg)
}

.bg-misbeneficios {
    background-image: url(../img/soluciones/Centro_Informacion/misbeneficios.jpg)
}

.bg-comedor,
.bg-directorio_personal,
.bg-encuestas,
.bg-instalaciones,
.bg-mistorneos,
.bg-plazas_vacantes {
    background-image: url(../img/soluciones/Centro_Informacion/directorio_personal.jpg);
    background-size: cover;
    border-radius: 50px 50px 0 50px;
    height: 280px;
    background-position: center
}

.bg-comedor,
.bg-encuestas,
.bg-instalaciones,
.bg-mistorneos,
.bg-plazas_vacantes {
    background-image: url(../img/soluciones/Centro_Informacion/plazas_vacantes.jpg)
}

.bg-comedor,
.bg-encuestas,
.bg-instalaciones,
.bg-mistorneos {
    background-image: url(../img/soluciones/Centro_Informacion/instalaciones.jpg)
}

.bg-comedor,
.bg-encuestas,
.bg-mistorneos {
    background-image: url(../img/soluciones/Centro_Informacion/torneos2.jpg)
}

.bg-comedor,
.bg-encuestas {
    background-image: url(../img/soluciones/Clima_Laboral/encuestas.jpg)
}

.bg-comedor {
    background-image: url(../img/soluciones/Clima_Laboral/comedor.jpg)
}

.bg-requieres1,
.bg-requieres2,
.bg-requieres3 {
    background-image: url(../img/integrante.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 55vh
}

.bg-requieres2,
.bg-requieres3 {
    background-image: url(../img/detecta.jpg);
    height: 80vh
}

.bg-requieres3 {
    background-image: url(../img/ganar_bsn.jpg);
    background-position: 0-100px;
    height: 50vh
}

.bg-comision,
.bg-octavo_foro {
    background-size: cover;
    padding: 60px;
    color: #fff
}

.bg-comision {
    background: linear-gradient(rgba(2, 2, 2, .74), rgba(0, 0, 0, .705)), url(../img/apreton2.jpg)fixed center center
}

.inner>.card {
    cursor: pointer
}

#carros_pri .swiper-container.nav-slider .swiper-slide .content .title,
.txt_innovacion>li {
    font-size: 20px
}

.bg-octavo_foro {
    background: url(../img/fondoinicio.jpg)
}

.tag {
    color: #000;
    transition: .5s;
    cursor: pointer;
    margin: 15px 0
}

.tag:hover {
    color: #00adee;
    text-decoration: none;
    margin-left: 15px
}

.seccion_categorias {
    position: -webkit-sticky;
    position: sticky;
    top: 70px
}

.sombra {
    box-shadow: 1px 6px 19px -4px rgba(179, 179, 179, .75)
}

.card-l {
    padding: 20px;
    margin-bottom: 30px;
    height: 500px
}

.card-ESR,
.card-evento,
.card-l {
    border-radius: 10px;
    box-shadow: 1px 6px 19px -4px rgba(179, 179, 179, .75)
}

.card-evento {
    padding: 20px;
    margin-bottom: 30px;
    height: 420px
}

.card-ESR {
    padding: 0 !important;
    margin: 0 0 20px !important;
    height: 450px
}

.an_esr {
    text-align: center;
    border-radius: 10px 10px 0 0;
    padding: 10px
}

.text-desc-cardl {
    font-size: 15px;
    min-height: 100px
}

.img-exponente {
    height: 45px;
    width: 45px;
    border-radius: 50px;
    border: solid 1px #e6e6e6
}

.filterDiv {
    display: none
}

.show {
    display: block;
    transition: .8s
}

.bg-verde {
    background-color: #2bb12b
}

.suscripcion {
    cursor: pointer
}

.descripcion_esr {
    background-color: #000;
    color: #fff
}

.asociacionfondo {
    width: 100%;
    height: 55vh;
    background-image: linear-gradient(to top, #030303b2, #000000ef), url(../img/ESR-Dis/asociaciones.jpg);
    background-size: cover;
    background-position: center;
    position: relative
}

.IMGAMLCC {
    position: -webkit-sticky;
    position: sticky;
    top: 70px
}

.cursor {
    cursor: pointer
}

.descrip_serv {
    height: 190px
}

.arrow {
    bottom: 10% !important;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1
}

.arrow span {
    display: block;
    width: 25px;
    height: 25px;
    border-bottom: 5px solid #00adee;
    border-right: 5px solid #00adee;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite
}

.arrow span:nth-child(2),
.arrow span:nth-child(3) {
    animation-delay: -.1s
}

@media (min-width:1980px) {
    .bg-sec-nosotros {
        background-size: cover;
        height: 75vh;
        background-position: -500px 0
    }
}

.tooltip_msj {
    position: relative;
    display: inline-block
}

.tooltip_msj .tooltip_msjtext {
    visibility: hidden;
    width: 120px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 3px 0;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 50%;
    margin-left: -60px;
    font-size: 13px
}

.tooltip_msj .tooltip_msjtext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent
}

.tooltip_msj:hover .tooltip_msjtext {
    visibility: visible
}

.b-circl {
    border: solid 2px #fff;
    padding: 18px;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    transition: .5s
}

.b-circl:hover {
    color: #00adee;
    background-color: #fff
}

.not-sub {
    text-decoration: none
}

.lin_acc_1,
.lin_acc_2,
.lin_acc_3,
.lin_acc_4,
.lin_acc_5 {
    padding-top: 12vh;
    border-right: 1px solid #dfdfdf;
    background-color: #ededee
}

.lin_acc_3,
.lin_acc_4,
.lin_acc_5 {
    padding-top: 16vh
}

.lin_acc_5 {
    padding-top: 10vh
}

.p-ev_des_ben1 {
    padding: 80px 0
}

.tooltip,
[data-tooltip] {
    position: relative;
    cursor: pointer
}

.tooltip:after,
.tooltip:before,
[data-tooltip]:after,
[data-tooltip]:before {
    position: absolute;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, -webkit-transform .2s cubic-bezier(.71, 1.7, .77, 1.24);
    -moz-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, -moz-transform .2s cubic-bezier(.71, 1.7, .77, 1.24);
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out, transform .2s cubic-bezier(.71, 1.7, .77, 1.24);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    pointer-events: none
}

.tooltip:focus:after,
.tooltip:focus:before,
.tooltip:hover:after,
.tooltip:hover:before,
[data-tooltip]:focus:after,
[data-tooltip]:focus:before,
[data-tooltip]:hover:after,
[data-tooltip]:hover:before {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1
}

.tooltip:before,
[data-tooltip]:before {
    z-index: 1001;
    border: 6px solid transparent;
    background: 0 0;
    content: ""
}

.tooltip:after,
[data-tooltip]:after {
    z-index: 1000;
    padding: 15px;
    width: 220px;
    background-color: #fafafa;
    color: #111;
    border: solid 3px #2469c2;
    content: attr(data-tooltip);
    font-size: 15px;
    text-align: center;
    line-height: 1.2;
    border-radius: 5px
}

.tooltip-top:after,
.tooltip-top:before,
.tooltip:after,
.tooltip:before,
[data-tooltip]:after,
[data-tooltip]:before {
    bottom: 100%;
    left: 20%
}

.tooltip-top:before,
.tooltip:before,
[data-tooltip]:before {
    margin-left: 25px;
    margin-bottom: -12px;
    border-top-color: #000;
    border-top-color: rgba(51, 51, 51, .9)
}

.tooltip-top:after,
.tooltip:after,
[data-tooltip]:after {
    margin-left: -20px
}

.tooltip-top:focus:after,
.tooltip-top:focus:before,
.tooltip-top:hover:after,
.tooltip-top:hover:before,
.tooltip:focus:after,
.tooltip:focus:before,
.tooltip:hover:after,
.tooltip:hover:before,
[data-tooltip]:focus:after,
[data-tooltip]:focus:before,
[data-tooltip]:hover:after,
[data-tooltip]:hover:before {
    -webkit-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    transform: translateY(-12px)
}

.tooltip-left:after,
.tooltip-left:before {
    right: 100%;
    bottom: 50%;
    left: auto
}

.tooltip-left:before {
    margin-left: 0;
    margin-right: -12px;
    margin-bottom: 0;
    border-top-color: transparent;
    border-left-color: #000;
    border-left-color: rgba(51, 51, 51, .9)
}

.tooltip-left:focus:after,
.tooltip-left:focus:before,
.tooltip-left:hover:after,
.tooltip-left:hover:before {
    -webkit-transform: translateX(-12px);
    -moz-transform: translateX(-12px);
    transform: translateX(-12px)
}

.tooltip-bottom:after,
.tooltip-bottom:before {
    top: 100%;
    bottom: auto;
    left: 50%
}

.tooltip-bottom:before {
    margin-top: -12px;
    margin-bottom: 0;
    border-top-color: transparent;
    border-bottom-color: #000;
    border-bottom-color: rgba(51, 51, 51, .9)
}

.tooltip-bottom:focus:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:hover:before {
    -webkit-transform: translateY(12px);
    -moz-transform: translateY(12px);
    transform: translateY(12px)
}

.tooltip-right:after,
.tooltip-right:before {
    bottom: 50%;
    left: 100%
}

.tooltip-right:before {
    margin-bottom: 0;
    margin-left: -12px;
    border-top-color: transparent;
    border-right-color: #000;
    border-right-color: rgba(51, 51, 51, .9)
}

.tooltip-right:focus:after,
.tooltip-right:focus:before,
.tooltip-right:hover:after,
.tooltip-right:hover:before {
    -webkit-transform: translateX(12px);
    -moz-transform: translateX(12px);
    transform: translateX(12px)
}

.tooltip-left:before,
.tooltip-right:before {
    top: 3px
}

.tooltip-left:after,
.tooltip-right:after {
    margin-left: 0;
    margin-bottom: -16px
}

.bg-administracionp-icon,
.bg-nomina-icon,
.bg-nominaweb-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/company.svg);
    background-position: 200px -260px;
    background-repeat: no-repeat;
    background-size: cover
}

.bg-nomina-icon,
.bg-nominaweb-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/bill-alt.svg);
    background-position: 200px -215px
}

.bg-nominaweb-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/nominaweb.svg);
    background-position: 200px -260px
}

.bg-asistenciabio-icon,
.bg-laboral-icon,
.bg-rrhh-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/biometrico.svg);
    background-position: 180px -260px;
    background-repeat: no-repeat;
    background-size: cover
}

.bg-laboral-icon,
.bg-rrhh-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/rrhh.svg)
}

.bg-laboral-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/laboral.svg);
    background-position: 70px -260px
}

.bg-contratos-icon,
.bg-gestioncap-icon,
.bg-presup-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/presupuestos.svg);
    background-position: 200px -240px;
    background-repeat: no-repeat;
    background-size: cover
}

.bg-contratos-icon,
.bg-gestioncap-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/contratos.svg);
    background-position: 200px -270px
}

.bg-gestioncap-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/gestion_cap.svg);
    background-position: 200px -190px
}

.bg-atraciont-icon,
.bg-encuestas-icon,
.bg-evaluacionde-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/evaluacion_desm.svg);
    background-position: 200px -215px;
    background-repeat: no-repeat;
    background-size: cover
}

.bg-atraciont-icon,
.bg-encuestas-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/encuestas.svg);
    background-position: 150px -253px
}

.bg-atraciont-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/atracciontal.svg);
    background-position: 180px -253px
}

.bg-asistencia-icon,
.bg-autogestion-icon,
.bg-vacaciones-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/vacaciones.svg);
    background-position: 150px -230px;
    background-repeat: no-repeat;
    background-size: cover
}

.bg-asistencia-icon,
.bg-autogestion-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/asistencia.svg);
    background-position: 60px -270px
}

.bg-autogestion-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/autogestion.svg);
    background-position: 140px -245px
}

.bg-centroinf-icon,
.bg-climalab-icon,
.bg-serviciop-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/servicio_personal.svg);
    background-position: 210px -278px;
    background-repeat: no-repeat;
    background-size: cover
}

.bg-centroinf-icon,
.bg-climalab-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/centro_informacion.svg);
    background-position: 215px -211px
}

.bg-climalab-icon {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/clima_laboral.svg);
    background-position: 215px -250px
}

.bg-implanta_proy,
.bg-responsabilisoc-icon,
.bg-soport_consul {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/iconos/responsabilidad_soc.svg);
    background-position: 141px -200px;
    background-repeat: no-repeat;
    background-size: cover
}

.bg-implanta_proy,
.bg-soport_consul {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/Iconos_servicios/tools.svg);
    background-position: 150px -200px
}

.bg-implanta_proy {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/Iconos_servicios/gears.svg);
    background-position: 150px -250px
}

.bg-capacita_cert,
.bg-maquila_nom,
.bg-poliza_mant,
.bg-preste_ben {
    background-image: linear-gradient(#fcfcfcea, #fcfcfc9c), url(../img/Iconos_servicios/file-alt.svg);
    background-position: 180px -260px;
    background-repeat: no-repeat;
    background-size: cover
}

.bg-capacita_cert,
.bg-maquila_nom,
.bg-preste_ben {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/Iconos_servicios/badge.svg);
    background-position: 150px -240px
}

.bg-maquila_nom,
.bg-preste_ben {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/Iconos_servicios/files-stack.svg);
    background-position: 200px -220px
}

.bg-preste_ben {
    background-image: linear-gradient(#fcfcfc, #fcfcfca6), url(../img/Iconos_servicios/bag.svg);
    background-position: 200px -200px
}

.circulo-benf {
    background-color: #f0f0f0;
    border: solid 1px #fdfdfd;
    font-size: 30px;
    padding: 15px;
    border-radius: 50px;
    -webkit-box-shadow: 0 0 9px 6px #d6d6d6;
    -moz-box-shadow: 0 0 9px 6px #d6d6d6;
    box-shadow: 0 0 9px 6px #d6d6d6
}

.popup {
    cursor: pointer
}

.promocion_btn {
    position: absolute;
    background-color: #f2bc1c !important;
    z-index: 3;
    left: 10%;
    bottom: 13%
}

.img-foro-8 {
    width: 50%
}

.salto_lin {
    display: none
}

.animate__fadeIn {
    animation-duration: 1s !important;
    animation-delay: .5s !important
}

[class^=swiper-button-] {
    transition: all .3s ease;
    width: 44px;
    opacity: 0;
    visibility: hidden
}

#carros_pri .swiper-slide {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden
}

#carros_pri .swiper-container {
    width: 80%;
    height: 70vh;
    float: left;
    transition: opacity .6s ease, transform .3s ease
}

#carros_pri .swiper-container.nav-slider {
    width: 20%;
    padding-left: 5px
}

#carros_pri .swiper-container.nav-slider .swiper-slide {
    cursor: pointer;
    opacity: .4;
    transition: opacity .3s ease
}

#carros_pri .swiper-container.nav-slider .swiper-slide .content {
    width: 100%
}

#carros_pri .swiper-container:hover .swiper-button-next,
#carros_pri .swiper-container:hover .swiper-button-prev {
    transform: translateX(0);
    opacity: 1;
    visibility: visible
}

#carros_pri .swiper-container.loading {
    opacity: 0;
    visibility: hidden
}

#carros_pri .swiper-slide {
    overflow: hidden
}

#carros_pri .swiper-slide.b-r-3 {
    border-radius: 5px
}

#carros_pri .swiper-slide .slide-bgimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    box-shadow: 0 0 19px 2px #757575
}

#carros_pri .swiper-slide .entity-img {
    display: none
}

#carros_pri .swiper-slide .content {
    position: absolute;
    top: 18%;
    left: 0;
    width: 50%;
    padding-left: 5%
}

#carros_pri .swiper-slide .content .title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px
}

#carros_pri .swiper-slide .content .caption {
    display: block;
    font-size: 25px;
    line-height: 1.4;
    opacity: 1
}

#carros_pri .swiper-slide .content .caption.show {
    transform: translateX(0);
    opacity: 1
}

#carros_pri .swiper-button-prev {
    transform: translateX(50px)
}

#carros_pri .swiper-button-next {
    transform: translateX(-50px)
}

#carros_pri .swiper-slide .content .btn {
    border-radius: 0;
    width: 250px
}

@media (max-width:991px) {
    #carros_pri .swiper-container.nav-slider {
        display: none
    }

    #carros_pri .swiper-container {
        width: 100%
    }

    .swiper-slide .content {
        width: 80%
    }

    .swiper-slide .slide-bgimg {
        background-position: -200px 0
    }
}

@media (max-width:400px) {
    .swiper-slide .content {
        top: 5%
    }
}