@charset "utf-8";
/*------|| $CONTENIDO ||------*/
    
/**
 
 * Base.......................... Estilos CSS base y generales
 
 * Elementos..................... Elementos que se repiten (botones, paginación, etc)

 * Componentes................... Partes de una página que se repiten
 
 * Secciones..................... Estilos particulares para cada página
 
 * Misceláneas................... Otras reglas CSS

 */

@font-face {
  font-family: MyriadPro;
  src: url(../fonts/myriad-pro/myriadpro.eot), url(../fonts/myriad-pro/myriadpro.ttf);
}

/*------|| $BASE ||------*/ 
body{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #1E120D;
    margin: 0;
    padding: 0;
    min-width: 320px;
}
html{
    min-width: 310px;
}
main{
    padding: 40px 0;
}
a:link, a:visited, a:hover, a:active{
    text-decoration: none;
}
ol, ul, li{
    margin: 0;
    padding: 0;
    list-style: none;
}
h2, .h2{
    font-size: 48px;
    font-weight: 300;
    line-height: 48px;
    color: #1E120D;
    margin: 10px 0 15px;
}
h3, .h3{
    font-size: 36px;
    line-height: 36px;
    color: #12A0D0;
    margin: 0 0 35px;
}
h4, .h4{
    font-size: 24px;
    line-height: 24px;
    color: #12A0D0;
    margin: 0 0 20px;
}
h5, .h5{
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    color: #1E120D;
    margin: 0 0 20px;
}
    h5.subrayado{
        color: #12A0D0;
        padding-bottom: 15px;
        border-bottom: 2px solid #A8A9AD;
    }
h6, .h6{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #1E120D;
    margin: 0 0 5px;
}
    h6:hover{
        color: #A8A9AD;
        -webkit-transition: all .20s ease-in-out;
        -moz-transition:     all .20s ease-in-out;
        -o-transition:         all .20s ease-in-out;
        -ms-transition:     all .20s ease-in-out;
        transition:         all .20s ease-in-out;
    }
p{
    margin-bottom: 15px;
}
    p a{
        color: #1E120D;
    }
        p a:hover{
            color: #12A0D0;
        }

.destacado{
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 45px;
}
.destacado-2{
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 45px;
}

img{
    margin: 0 auto;
}

@media (max-width: 767px){
    h3, .h3{
        font-size: 32px;
        line-height: 32px;
    }
    .destacado{
        font-size: 16px;
        line-height: 24px;
        margin: 0 0 25px;
    }
    .destacado-2{
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        margin: 0 0 25px;
    }

}


/*------|| $ELEMENTOS ||------*/
        
/*Botón*/
.boton,
.boton:focus{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 35px;
    margin: 10px 0;
    border-radius: 5px;
    background: #12A0D0;
}
    .boton:hover{
        color: #FFF;
        background: #1E120D;
        -webkit-transition: all .20s ease-in-out;
        -moz-transition: all .20s ease-in-out;
        -o-transition: all .20s ease-in-out;
        -ms-transition: all .20s ease-in-out;
        transition: all .20s ease-in-out;
    }
.boton-blanco,
.boton-blanco:focus{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    color: #1E120D;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 35px;
    margin: 10px 0;
    border-radius: 5px;
    background: #FFF;
}
    .boton-blanco:hover{
        color: #12A0D0;
        background: #EEEEEE;
        -webkit-transition: all .20s ease-in-out;
        -moz-transition: all .20s ease-in-out;
        -o-transition: all .20s ease-in-out;
        -ms-transition: all .20s ease-in-out;
        transition: all .20s ease-in-out;
    }
.boton-negro,
.boton-negro:focus{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 5px;
    background: #1E120D;
}
    .boton-negro:hover{
        color: #12A0D0;
        background: #FFF;
        -webkit-transition: all .20s ease-in-out;
        -moz-transition: all .20s ease-in-out;
        -o-transition: all .20s ease-in-out;
        -ms-transition: all .20s ease-in-out;
        transition: all .20s ease-in-out;
    }

.leer-mas,
.leer-mas:focus{
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 5px;
    background: #A8A9AD;
}
    .leer-mas .fa{
        margin-right: 10px;
    }
        .leer-mas:hover{
            color: #FFF;
            background: #12A0D0;
            -webkit-transition: all .20s ease-in-out;
            -moz-transition:     all .20s ease-in-out;
            -o-transition:         all .20s ease-in-out;
            -ms-transition:     all .20s ease-in-out;
            transition:         all .20s ease-in-out;
        }

.ver-video,
.ver-video:focus{
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #12A0D0;
}
    .ver-video .fa{
        font-size: 15px;
        margin-right: 10px;
    }
    .ver-video:hover{
        color: #1E120D;
        -webkit-transition: all .20s ease-in-out;
        -moz-transition:     all .20s ease-in-out;
        -o-transition:         all .20s ease-in-out;
        -ms-transition:     all .20s ease-in-out;
        transition:         all .20s ease-in-out;
    }

.descargar-folleto,
.descargar-folleto:focus{
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
    padding: 10px 20px;
    margin: 10px 20px 0 0;
    border-radius: 5px;
    background: #A8A9AD;
}
    .descargar-folleto .fa{
        font-size: 15px;
        margin-right: 10px;
    }
    .descargar-folleto:hover{
        color: #FFF;
        background: #1E120D;
        -webkit-transition: all .20s ease-in-out;
        -moz-transition:     all .20s ease-in-out;
        -o-transition:         all .20s ease-in-out;
        -ms-transition:     all .20s ease-in-out;
        transition:         all .20s ease-in-out;
    }


/*Bandas*/
.banda-celeste{
    padding: 60px 0;
    margin: 40px 0;
    background: #60CAE4;
}
.banda-gris{
    padding: 35px 0;
    background: #EEE;
}


/*Líneas*/
hr.gris{
    border-top: 3px solid #D8DADE;
    margin: 40px 0
}
hr.corta{
    width: 19px;
    border-top: 2px solid rgba(255,255,255,0.4);
    margin: 10px 0
}


/*Listas*/
.con-tilde .fa{
    color: #60CAE4;
    margin-right: 5px;
}
.con-punta{
    margin-bottom: 40px;
}
    .con-punta li{
        line-height: 20px;
        margin-bottom: 15px;
    }
        .con-punta .fa{
            color: #12A0D0;
            margin-right: 5px;
        }
        .con-punta li a{
           color: #1E120D;
        }
        .con-punta li a:hover{
           color: #12A0D0;
           -webkit-transition: all .20s ease-in-out;
           -moz-transition:     all .20s ease-in-out;
           -o-transition:         all .20s ease-in-out;
           -ms-transition:     all .20s ease-in-out;
           transition:         all .20s ease-in-out;
        }

.con-numeros{
    counter-reset:li;
    margin: 20px 0;
}
    .con-numeros li{
        list-style: none;
        *list-style: decimal;
        min-height: 55px;
        padding: 10px 0 0 70px;
        margin-bottom: 20px;
        position: relative;   
    }
        .con-numeros li:before{
            display: block;
            width: 44px;
            height: 44px;
            content: counter(li);
            counter-increment: li;
            font-size: 30px;
            line-height: 44px;
            color: #12A0D0;
            text-align: center;
            margin-right: 10px;
            border-radius: 50%;
            text-align:center;
            background: #FFF;
            position: absolute;
            top: 0;
            left: 0;
        }

@media (max-width: 767px){
    .con-numeros li{
        min-height: 15px;
        padding: 0 0 0 35px;
        margin-bottom: 10px;
        position: relative;   
    }
    .con-numeros li:before{
        width: 24px;
        height: 24px;
        font-size: 18px;
        line-height: 20px;
        margin-right: 5px;
    }
}


/*BUSCADOR*/
.buscador{
    margin: 15px 0;
}
    .buscador select{
        display: block;
        width: 100%;
        height: 42px;
        font-family: "Open Sans", sans-serif;
        font-size: 16px;
        line-height: 42px;
        color: #1E120D;
        padding: 0 10px;
        margin: 0 0 10px;
        border: 1px solid #12A0D0;
        border-radius: 5px;
        background: #FFF;
    }

@media (max-width: 840px){
    .buscador{
        margin: 0;
    }
    .buscador select{
        height: 30px;
        line-height: 30px;
    }
}


/*LATERAL*/
.lateral__contacto{
    padding: 15px;
    margin-bottom: 20px;
    background: #12A0D0;
}
    .lateral__contacto .contactenos{
        font-size: 20px;
        line-height: 20px;
        text-transform: uppercase;
        color: #FFF;
    }
    .lateral__contacto .telefono,
    .lateral__contacto .telefono:focus{
        display: block;
        font-size: 26px;
        font-weight: 700;
        line-height: 30px;
        color: #FFF;
    }
        .lateral__contacto .telefono:hover{
            color: #1E120D;
            -webkit-transition: all .20s ease-in-out;
            -moz-transition:     all .20s ease-in-out;
            -o-transition:         all .20s ease-in-out;
            -ms-transition:     all .20s ease-in-out;
            transition:         all .20s ease-in-out;
        }
    .lateral__contacto p{
        text-transform: uppercase;
        color: #FFF;
        margin: 0;
    }
.lateral .mapa{
    height: 175px;
    border: 3px solid #A7A9Ac;
    margin-bottom: 20px;
}
.lateral__direccion{
    margin-bottom: 20px;
}
    .lateral__direccion h5{
        font-weight: 600;
        color: #12A0D0;
        margin: 0 0 5px;
    }
    .lateral__direccion p{
        line-height: 18px;
    }

.lateral-reclamos{
    padding-top: 140px;
}
.lateral-reclamos .caja-reclamos{
    background-image: url('../images/contacto/reclamos.jpg');
    widows: 263px;
    height: 195px;
    padding: 30px 15px;
}
.caja-reclamos hr{
    width: 19px;
    border-top: 2px solid #14a3d5;
    margin: 10px 0
}

.caja-reclamos h5{
    font-family: MyriadPro;
    margin-bottom: 10px;
}
.caja-reclamos p{
    font-size: 14px;
    line-height: 20px;
    padding-top: 5px;
    font-family: MyriadPro;
}
.caja-reclamos a{
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    padding: 10px;
    background-color: #a0a0a0;
    font-family: MyriadPro;
    max-width: 220px;
    border-radius: 5px;
    letter-spacing: 0.7px;
}
.caja-reclamos a img{
    padding-left: 12px;
    padding-bottom: 4px;
}
.caja-reclamos a:hover{
    background-color: #1E120D;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition:     all .20s ease-in-out;
    -o-transition:         all .20s ease-in-out;
    -ms-transition:     all .20s ease-in-out;
    transition:         all .20s ease-in-out;
}

.form-reclamos h3{
    text-align: center;
    line-height: 50px;
}
.form-reclamos p{
    font-family: MyriadPro;
    font-size: 16px;
    line-height: 30px;
    padding: 30px 0 0;
    margin-bottom: 35px;
    color: #14a3d5;
    border-bottom: solid 1px #ccc;
}
.form-reclamos input{
    margin: 5px 0;
}
.form-reclamos input::placeholder, .form-reclamos textarea::placeholder{
    color: #000;
    font-size: 14px;
    line-height: 30px;
    padding: 10px 0;
    font-family: MyriadPro;
}
.form-reclamos textarea::placeholder{
    padding: 0;
}
.form-reclamos textarea{
    height: 125px;
}

.form-reclamos .boton{
    padding: 15px 60px;
    border: none;
}
.form-reclamos .grecaptcha{
    margin-top: 45px;
}
@media(max-width: 991px){
    .form-reclamos .grecaptcha{
        margin-top: 0;
    }
}
.form-reclamos .boton{
    margin-bottom: 70px;
}
.form-reclamos input[type=file]{
    display: none;
}
.form-reclamos .btn-file{
    width: 100%;
    margin-bottom: 0;
    background: grey;
    margin-top: 0;
    margin-bottom: 5px;
    padding: 10px 15px;
}

/*MODAL RECLAMOS*/
#reclamosModal{
    background-color: rgba(18, 159, 206, 0.64);
}
#reclamosModal .modal-dialog{
    margin: 20% auto 0;
    max-width: 750px;
    width: 100%;
}
#reclamosModal .modal-content{
    background-color: transparent;
    border: solid 2px #fff;
}
#reclamosModal .modal-body{
    text-align: center;
    font-size: 0;
}
#reclamosModal .modal-body img{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
#reclamosModal .modal-body .tit, #reclamosModal .modal-body .sub{
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    border-bottom: none;
    font-family: MyriadPro;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    margin-top: 25px;
}
#reclamosModal .modal-body .sub{
    font-weight: 400;
    padding-top: 5px;
    margin-top: 0;
}
#reclamosModal .modal-body .caja{
    display: inline-block;
    vertical-align: top;
    width: 270px;
    background-color: #000;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    padding: 10px;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 10px;
}
#reclamosModal .modal-body .n-reclamo{
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    background-color: #fff;
    color: #000;
}
#reclamosModal .modal-body p:last-child{
    font-size: 20px;
    line-height: 30px;
    padding-top: 0;
    padding: 25px;
    color: #fff;
    font-weight: 400;
    border-bottom: none;
    font-weight: normal;
}

/*NEWSLETTER*/
.newsletter{
    padding: 30px 0;
    background: #12A0D0;
}
    .newsletter h4,
    .newsletter p{
        color: #FFF;
        margin: 0 0 15px;
    }
    .newsletter form{
        margin-bottom: 10px;
    }
    .newsletter .form-group{
      padding: 0;
    }
    .newsletter .form-control {
      display: block;
      width: 100%;
      height: 50px;
      padding: 5px 10px;
      font-size: 16px;
      line-height: 50px;
      color: #1E120D;
      background-image: none;
      border: none;
      border-radius: 5px;
      margin-bottom: 10px;
      -webkit-box-shadow: 0;
              box-shadow: 0;
    }
    .newsletter .grecaptcha{
        display: inline-block;
        height: 50px;
        overflow: hidden;
        border-radius: 5px;
        background: #FFF;
        margin: 0 0 10px;
        border: none !important;
    }
        .newsletter .grecaptcha iframe{
            position: relative;
            top: -10px;
            border: none !important;
        }
    .newsletter ::-webkit-input-placeholder {
       color: #1E120D;
    }

    .newsletter :-moz-placeholder { /* Firefox 18- */
       color: #1E120D;  
    }

    .newsletter ::-moz-placeholder {  /* Firefox 19+ */
       color: #1E120D;  
    }

    .newsletter :-ms-input-placeholder {  
       color: #1E120D;  
    }
    .newsletter .boton-negro{
        height: 50px;
        border: none;
        margin: 0;
    }

@media (max-width: 767px){
    .newsletter .grecaptcha{
        display: inline-block;
        height: auto;
        overflow: visible;
        background: transparent;
        margin: 10px 0;
    }
}



/*MODULO NOVEDAD*/
.modulo-novedad{
    display: inline-block;
    width: 100%;
}
    .modulo-novedad__imagen{
        display: table;
        width: 100%;
        height: 198px;
        padding: 5px;
        border: 1px solid #D8DADE;
        margin-bottom: 20px;
        vertical-align: middle;
        position: relative;        
    }
    .modulo-novedad__imagen a{
        display: table-cell;
        vertical-align: middle;
    }
    .modulo-novedad__texto{
        height: 225px;
        padding-bottom: 50px;
        position: relative;
    }
        .modulo-novedad__texto .tag {
            display: inline-block;
            text-transform: uppercase;
            font-weight: 700;
            color: #fff;
            padding: 0px 10px;
            background: #ccc;
            font-size: 12px;
            margin-bottom: 10px;
            vertical-align: top;
            line-height: 18px;
        }
        .modulo-novedad__texto .tag-noticia {
            background: #000;
        }
        .modulo-novedad__texto .tag-evento {
            background: #12A0D0;
        }
        .modulo-novedad__texto .tag-entrenamiento {
            background: #66bb6a;
        }
        .modulo-novedad__texto .tag-webinar {
            background: #26a69a;
        }
        .modulo-novedad__texto .tag-registro-anmat {
            background: #063965;
        }
        .modulo-novedad__texto p{
            line-height: 18px;
        }
    .modulo-novedad__texto .leer-mas{
        position: absolute;
        bottom: 0;
    }

@media (max-width: 767px){
    .modulo-novedad{
        display: inline-block;
        max-width: 263px;
        height: auto;
        padding: 20px 0;
    }
    .modulo-novedad__imagen{
        margin-bottom: 10px;     
    }
    .modulo-novedad h6{
        font-size: 18px;
        line-height: 18px;
    }
    .modulo-novedad__texto{
        min-height: 140px;
        height: auto;
    }
}



/*------|| $COMPONENTES ||------*/
/*CABECERA*/
.cabecera{
    width: 100%;
    padding-top: 53px;
    background: #FFF;
}
    .cabecera h1{
        margin: 5px 0;
    }
        .cabecera h1 img{
            max-width: 246px;
            width: 100%;
            height: auto;
        }
        .cabecera h1 span{
            display: none;
        }
        .cabecera .navbar-collapse{
            padding: 0;
        }
        .cabecera .navbar{
            width: 100%;
            border: none;
            border-radius: 0;
            padding: 0;
            margin: 0;
            background: #FFF;
            position: fixed;
            top: 0;
            z-index: 600;            
        }
        .nav{
            padding-left: 0;
            margin: 25px 0 0;
            list-style: none;
            float: right;
        }
        nav .static{
            position: static;
        }
        .nav > li{
            padding: 0 15px;
            position: static;
        }
            .nav > li:first-of-type{
                padding-left: 0;
            }
            .nav > li:last-of-type{
                padding-right: 0;
            }
        .nav > li > a,
        .nav > li > a:focus{
            display: block;
            font-family: 'Open Sans Condensed', sans-serif;
            font-size: 15px;
            line-height: 16px;
            text-transform: uppercase;
            color: #1E120D;
            text-align: center;
            padding: 0 0 15px;
            cursor: pointer;
        }
            .nav > li > a .fa{
                color: #12A0D0;
            }
            .nav .nav-principal__home span{
                display: none;
            }
                .nav .nav-principal__home .fa-home{
                    color: #A8A9AD;
                }
                .nav .nav-principal__home:hover .fa-home{
                    color: #12A0D0;
                    -webkit-transition: all .20s ease-in-out;
                    -moz-transition:     all .20s ease-in-out;
                    -o-transition:         all .20s ease-in-out;
                    -ms-transition:     all .20s ease-in-out;
                    transition:         all .20s ease-in-out;
                }
                .nav li .nav-principal__idioma{
                    font-family: 'Open Sans', sans-serif;
                    font-weight: 400;
                }
            .nav > li > a:hover,
            .nav > li > a.activo{
                color: #12A0D0;
                text-decoration: none;
                background-color: transparent;
                -webkit-transition: all .20s ease-in-out;
                -moz-transition:    all .20s ease-in-out;
                -o-transition:      all .20s ease-in-out;
                -ms-transition:     all .20s ease-in-out;
                transition:         all .20s ease-in-out;
            }   

            .desplegable{
                width: 100%;
                padding: 40px 0 60px;
                border-top: 2px solid #0687B1;
                background: #12A0D0;
                position: absolute;
                top: 53px;
                left: 0px;
                z-index: 400;
                
            }
                .desplegable h4{
                    font-size: 16px;
                    font-weight: bold;
                    line-height: 16px;
                    text-transform: uppercase;
                    color: #1E120D;
                    margin: 0 0 20px;
                }
                .desplegable ul{
                    width: 100%;
                }
                .desplegable li{
                    padding: 10px 0;
                    position: relative;
                    cursor: pointer;
                }
                    .desplegable li:before{
                        content: '\f054';
                        display: inline-block;
                        font: normal normal normal 14px/1 FontAwesome;
                        font-size: 12px;
                        text-rendering: auto;
                        -webkit-font-smoothing: antialiased;
                        -moz-osx-font-smoothing: grayscale;
                        margin-right: 10px;
                        color: #FFF;
                        opacity: 0.6;
                    }
                    .desplegable li a,
                    .desplegable li a:focus{
                        font-size: 14px;
                        line-height: 14px;
                        color: #FFF;
                        text-align: left;
                    }
                        .desplegable li a:hover{
                            color: #1E120D;
                            -webkit-transition: all .20s ease-in-out;
                            -moz-transition:    all .20s ease-in-out;
                            -o-transition:      all .20s ease-in-out;
                            -ms-transition:     all .20s ease-in-out;
                            transition:         all .20s ease-in-out;
                        }

        .navbar .navbar-toggle{
            margin: 0;
            border-color: transparent;
            padding: 5px;
            background: #12A0D0;
            position: absolute;
            top: 15px;
            right: 20px;
        }
        .navbar .navbar-toggle .icon-bar{
          background-color: #FFF;
        }
        @media (max-width:340px){
            .navbar .navbar-toggle{
                right: 0px;
            }
        }

.cabecera.scroll .navbar{
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.4);
}
    .cabecera.scroll h1{
        margin: 5px 0;
    }
        .cabecera.scroll h1 img{
            max-width: 190px;
        }
    .cabecera.scroll .nav{
        margin: 20px 0 0;
    }
        .cabecera.scroll .nav > li > a,
        .cabecera.scroll .nav > li > a:focus{
            padding: 0 0 15px;
        }
            .cabecera.scroll .desplegable{
                top: 50px;
            }

@media (max-width: 1199px){
    .nav > li{
        padding: 0 10px;
    }
    .nav > li > a {
        font-size: 14px;
    }
}          
@media (max-width: 991px){
    .nav {
        float: none;
        margin: 19px 0 0;
    }
    .nav > li{
        padding: 0 4px;
    }
    .nav > li > a,
    .nav > li > a:focus{
        font-size: 12px;
        line-height: 22px;
        padding: 0;
    }
}
@media (max-width: 767px){
    .cabecera{
        padding-top: 60px;
        overflow: visible;
    }
    .cabecera .navbar{
        overflow: visible;
        position: absolute;
    }
    .cabecera h1{
        margin: 10px 0 5px;
    }
    .cabecera h1 img{
        max-width: 190px;
    }
    .cabecera.scroll .nav{
        margin: 10px 0 0;
    }
    .nav{
        float: none;
        padding-bottom: 10px;
    }
    .cabecera .navbar-collapse{
        padding: 0;
    }
    .nav > li{
        padding: 5px 0;
        overflow: visible;
    }
    .cabecera.scroll .nav > li > a,
    .cabecera.scroll .nav > li > a:focus,
    .nav > li > a,
    .nav > li > a:focus{
        padding: 0;
    }
    .desplegable{
        padding: 10px 0;
        position: static;
    }
    .desplegable h4{
        margin: 0 0 10px;
    }
    .desplegable li{
        padding: 5px 0;
    }
}


/*PIE*/
.pie{
    padding-top: 15px;
    background: #1F110E;
    position: relative;
    z-index: 300;
}
        .pie .pie__logo .logo span{
            display: none;
        }
        .pie .pie__logo p{
            font-size: 13px;
            color: #FFF;
            padding-top: 5px;
        }
            .pie .pie__logo p a,
            .pie .pie__logo p a:focus{
                color: #FFF;
            }
                .pie .pie__logo p a:hover{
                    color: #12A0D0;
                    -webkit-transition: all .20s ease-in-out;
                    -moz-transition:     all .20s ease-in-out;
                    -o-transition:         all .20s ease-in-out;
                    -ms-transition:     all .20s ease-in-out;
                    transition:         all .20s ease-in-out;
                }
    .pie__nav-principal{
        padding: 15px 0;
        border-top: 1px solid rgba(255,255,255,0.3);
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }
        .pie__menu li{
            display: inline-block;
            padding: 0 20px;
        }
            .pie__menu li:first-of-type{
                padding-left: 0;
            }
            .pie__menu li:last-of-type{
                padding-right: 0;
            }
            .pie__menu li > a,
            .pie__menu li > a:focus{
                display: block;
                font-size: 16px;
                line-height: 16px;
                color: #12A0D0;
                text-align: center;
            }
                .pie__menu li > a:hover{
                    color: #FFF;
                    -webkit-transition: all .20s ease-in-out;
                    -moz-transition:     all .20s ease-in-out;
                    -o-transition:         all .20s ease-in-out;
                    -ms-transition:     all .20s ease-in-out;
                    transition:         all .20s ease-in-out;
                }
                
            .pie__redes li{
                display: inline-block;
                padding: 0 18px;
            }
                .pie__redes li:first-of-type{
                    padding-left: 0;
                }
                .pie__redes li:last-of-type{
                    padding-right: 0;
                }
                .pie__redes li a,
                .pie__redes li a:focus{
                    display: block;
                    width: 28px;
                    height: 28px;
                    font-size: 14px;
                    line-height: 28px;
                    text-align: center;
                    color: #FFF;
                    border-radius: 50%;
                }
                    .pie__redes li a span{
                        display: none;
                    }
                    .pie__redes .facebook{
                        background: #1B4B88;
                    }
                    .pie__redes .linkedin{
                        background: #1265A3;
                    }
                    .pie__redes .youtube{
                        background: #E71620;
                    }
                    .pie__redes li a:hover{
                        color: #FFF;
                        opacity: 0.7;
                        -webkit-transition: all .20s ease-in-out;
                        -moz-transition:    all .20s ease-in-out;
                        -o-transition:      all .20s ease-in-out;
                        -ms-transition:     all .20s ease-in-out;
                        transition:         all .20s ease-in-out;
                    }
    .pie__nav{
        padding: 25px 0 30px;
    }
        .pie__nav .con-flechas li{
            line-height: 13px;
            margin-bottom: 5px;
        }
            .pie__nav .con-flechas li a{
                font-size: 13px;
                line-height: 13px;
                color: #FFF;
            }
            .con-flechas li:before{
                content: '»';
                color: #FFF;
                margin-right: 5px;
            }
                .pie__nav .con-flechas li a:hover{
                    opacity: 0.6;
                    -webkit-transition: all .20s ease-in-out;
                    -moz-transition:     all .20s ease-in-out;
                    -o-transition:         all .20s ease-in-out;
                    -ms-transition:     all .20s ease-in-out;
                    transition:         all .20s ease-in-out;
                }
            .pie__nav .con-flechas.celeste li a,
            .con-flechas.celeste li:before{
                color: #12A0D0;
            }

    .pie__copyright{
        padding: 10px 0;
        background: #000;
    }
        .pie__copyright p{
            font-size: 13px;
            line-height: 15px;
            color: #FFF;
            margin: 0;
        }
        .synapsis{
            display: inline-block;
            font-family: 'Open Sans', sans-serif;
            font-size: 13px;
            color: #FFF;            
            line-height: 18px;
            padding-right: 20px;
            background: url('../images/logo_synapsis.png') no-repeat center right;
            opacity: 0.5;
            float: right;
        }
            .synapsis:hover{
                color: #FFF;
                opacity: 1;
                -webkit-transition: all .20s ease-in-out;
                -moz-transition: all .20s ease-in-out;
                -o-transition: all .20s ease-in-out;
                -ms-transition: all .20s ease-in-out;
                transition: all .20s ease-in-out;
            }

@media (max-width: 1199px){
    .pie__menu li,
    .pie__redes li{
        padding: 0 10px;
    }
    .pie__menu li > a,
    .pie__menu li > a:focus{
        display: block;
        font-size: 16px;
        line-height: 16px;
        color: #12A0D0;
        text-align: center;
    }
}
@media (max-width: 991px){
    .pie__redes{
        text-align: center;
    }
    .synapsis{
        float: none;
        margin: 15px 0 0;
    }
    .pie__copyright p {
        text-align: center;
    }
}
@media (max-width: 767px){
    .pie__nav-principal{
        border-bottom: none;
    }
}

/*HEADERS*/
#headerimgs{
    width: 100%;
    text-align: center;
    margin: 0 auto;
    background: #FFF;
}   
    .headerimg{
        width: 100%;
        margin: 0 auto 10px;
        position: relative;
    }
        .headerimg__texto{
            width: 100%;
            position: absolute;
            top: 30%;
            left: 0;
        }
        @media(max-width: 991px) {
            .headerimg__texto {
                top: 15px;
            }
        }
        @media (max-width: 470px){
            .headerimg__texto {
                top: 20%;
            }
        }
        .s_home .headerimg__texto h2{
            font-size: 36px;
            color: #FFF;
            text-shadow: 2px 2px 2px rgba(0,0,0,0.6);
            margin: 0 0 50px;
        }
            .s_home .headerimg__texto h2 strong{
                display: block;
            }
        @media(max-width: 991px) {
            .s_home .headerimg__texto h2 {
                margin: 0 0 10px;
            }
        }

/*.s_ficha_productos .headerimg{
        height: 315px;
        background: #12A0D0;
    }
        .s_ficha_productos .headerimg__imagen{
            display: table;
            padding-top: 25px;
        }
        .s_ficha_productos .headerimg__imagen-aling{
            display: table-cell;
            vertical-align: middle;
        }
        .s_ficha_productos .headerimg__imagen img{
            width: auto;
            max-width: 100%;
            max-height: 315px;
        }*/

        .s_novedades .headerimg__texto h2,
        .s_ficha_novedad .headerimg__texto h2{
            color: #FFF;
        }
        .s_ficha_productos .headerimg__texto h2{
            width: 50%;
            color: #FFF;
        }

@media (max-width: 990px){
    .s_home .headerimg__texto h2{
        font-size: 24px;
        line-height: 36px;
        margin: 0 0 20px;
    }
    /*.s_ficha_productos .headerimg{
        height: 250px;
    }
    .s_ficha_productos .headerimg__imagen img{
        max-height: 250px;
    }*/
}
@media (max-width: 767px){
    .headerimg__texto h2{
        font-size: 36px;
        line-height: 36px;
        margin: 0;
    }
    .s_home .headerimg__texto{
        position: static;
        padding: 20px 0;
        background: #15A1D4;
    }
}
@media (max-width: 650px){
    /*.s_ficha_productos .headerimg{
        height: 200px;
    }
    .s_ficha_productos .headerimg__imagen img{
        max-height: 200px;
    }*/
}
@media (max-width: 580px){
    .headerimg__texto h2{
        font-size: 24px;
        font-weight: 400;
        line-height: 24px;
    }
    .s_home .headerimg__texto h2{
        font-size: 16px;
        line-height: 24px;
        margin: 0 0 20px;
    }
}
@media (max-width: 500px){
    /*.s_ficha_productos .headerimg{
        height: 150px;
    }
    .s_ficha_productos .headerimg__imagen img{
        max-height: 150px;
    }*/
}



/*------|| $ELEMENTOS ||------*/
/*HOME*/
.s_home main{
    padding-bottom: 0;
}
.slider-empresas{
    width: 100%;
    text-align: center;
    padding: 0 20px;
    margin: 20px auto 40px;
    background: #FFF;
}
    .slider-empresas .container{
        position: relative;
    }
    .slider-empresas .bx-wrapper .bx-viewport {
        min-height: auto;
    }
    .slider-empresas h4{
        font-weight: 300;
        color: #1E120D;
        margin: 0 0 20px;
    }
    .slider-empresas li{
        width: 100%;
        margin: 0 auto;
    }
        .s_home .slider-empresas li .logos__contenedor{
            display: inline-block;
        }
        .s_home .slider-empresas li .logos__contenedor a{
            display: table;
            vertical-align: middle;
        }
            .s_home .slider-empresas li .logos__contenedor a:hover img{
                -webkit-filter: grayscale(1);
                filter: grayscale(1);
                -webkit-transition: all .20s ease-in-out;
                -moz-transition:     all .20s ease-in-out;
                -o-transition:         all .20s ease-in-out;
                -ms-transition:     all .20s ease-in-out;
                transition:         all .20s ease-in-out;
            }
            .s_home .slider-empresas li .logos__imagen{
                display: table-cell;
                height: 62px;
                vertical-align: middle;
               padding-left: 5px;
               padding-right: 5px;
            }

            .slider-empresas-prev,
            .slider-empresas-next{
                display: block;
                font-size: 26px;
                line-height: 32px;
                color: #1E120D;
                cursor: pointer;
                position: absolute;
                top: 22%;
                margin-top: -16px;

            }
            .slider-empresas-prev{
                left: 0;
            }
            .slider-empresas-next{
                right: 0;
            }
            .slider-empresas-prev:hover,
            .slider-empresas-next:hover{
                  color: #12A0D0;
                    -webkit-transition: all .20s ease-in-out;
                    -moz-transition: all .20s ease-in-out;
                    -o-transition: all .20s ease-in-out;
                    -ms-transition: all .20s ease-in-out;
                    transition: all .20s ease-in-out;
                }
                .slider-empresas-prev a,
                .slider-empresas-next a{
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    left: 0;
                }

        .slider-empresas .bx-controls{
            width: 100%;
            text-align: center;
            margin: 10px 0 0;
            position: absolute;
            bottom: 0;
            right: 0;
        }
            .slider-empresas .bx-wrapper .bx-pager .bx-pager-item{
                display: inline-block;
                margin-left: 5px;
            }
                .slider-empresas .bx-wrapper .bx-pager .bx-pager-item a{
                    display: block;
                    width: 10px;
                    height: 10px;
                    text-align: center;
                    text-indent: -99999px;
                    border-radius: 50%;
                    background: #A8A9AD;
                    margin: 0;
                }
                    .slider-empresas .bx-wrapper .bx-pager.bx-default-pager a:hover,
                    .slider-empresas .bx-wrapper .bx-pager.bx-default-pager a.active{
                        background: #12A0D0;
                        -webkit-transition: all .20s ease-in-out;
                        -moz-transition:    all .20s ease-in-out;
                        -o-transition:      all .20s ease-in-out;
                        -ms-transition:     all .20s ease-in-out;
                        transition:         all .20s ease-in-out;
                    } 
        .slider-empresas p {
            margin: 20px auto;
            color: #12A0D0;
            font-size: 18px;
            line-height: 28px;
            width: 82%;
            font-weight: 300;
        }   
                @media(max-width: 1199px) {
                    .slider-empresas p {
                        width: 100%;
                    }
                }
.s_home .banda-celeste h4{
    line-height: 30px;
    color: #1E120D;
}
.s_home .banda-celeste p{
    font-size: 18px;
    line-height: 30px;
}

.slider-productos{
    width: 100%;
    text-align: center;
    padding: 0 20px;
    margin: 20px auto 40px;
    border-bottom: 2px solid #EDEDED;
    background: #FFF;
}
    .slider-productos .container{
        position: relative;
    }
    .slider-productos li{
        width: 100%;
        padding-bottom: 30px;
        margin: 0 auto;
    }
        .slider-productos h3{
            font-size: 48px;
            font-weight: 700;
            line-height: 48px;
            color: #12A0D0;
            margin: 50px 0 25px;
        }
        .slider-productos p{
            font-size: 16px;
            line-height: 24px;
        }
        .slider-productos-prev,
        .slider-productos-next{
            display: block;
            font-size: 32px;
            line-height: 32px;
            color: #12A0D0;
            cursor: pointer;
            position: absolute;
            top: 50%;
            margin-top: -16px;

        }
        .slider-productos-prev{
            left: 0;
        }
        .slider-productos-next{
            right: 0;
        }
        .slider-productos-prev:hover,
        .slider-productos-next:hover{
                color: #1C1C1C;
                -webkit-transition: all .20s ease-in-out;
                -moz-transition: all .20s ease-in-out;
                -o-transition: all .20s ease-in-out;
                -ms-transition: all .20s ease-in-out;
                transition: all .20s ease-in-out;
            }
            .slider-productos-prev a,
            .slider-productos-next a{
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0;
                margin: 0 15px 10px 0;
            }
           
@media (max-width: 767px){
    .s_home main{
        padding-top: 10px;
    }
    .slider-empresas{
        margin: 10px auto;
    }
    .slider-empresas .bx-wrapper{
        margin: 0 auto 30px;
    }
    .slider-empresas .bx-controls{
        margin: 0;
    }
    .s_home .slider-empresas .logos__contenedor{
        margin: 15px 0px;
    }
    .s_home .slider-empresas .bx-wrapper .bx-pager .bx-pager-item {
        margin-right:6px;
    }
    .s_home .slider-empresas .bx-wrapper .bx-pager .bx-pager-item a {
        display: block;
        width: 18px;
        height: 18px;
    }
    .s_home .banda-celeste{
        padding: 10px 0;
        margin: 0;
    }
    .slider-productos{
        margin: 10px auto 20px;
    }
    .slider-productos h3{
        margin: 20px 0;
    }
    .novedades h4{
        padding-right:35px;
        margin-bottom: 30px;
    }
    .novedades h4:after{
        content: "\f055";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 22px;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: translate(0, 0);
        position: absolute;
        top: 12px;
        right: 30px;
        cursor: pointer;
        margin-top:-11px;
    }
    .novedades .desplegado h4:after{
          content: "\f056";
    }
    .novedades .js-slide-content{
        margin-top:20px;
    }
    .newsletter{
        padding: 10px 0;
    }
    .newsletter h4{
        padding-right:35px;
        margin-bottom: 10px;
    }
    .newsletter h4:after{
        content: "\f055";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 22px;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: translate(0, 0);
        position: absolute;
        top: 12px;
        right: 30px;
        cursor: pointer;
        margin-top:-11px;
    }
    .newsletter .desplegado h4:after{
          content: "\f056";
    }
    .newsletter .js-slide-content{
        margin-top:20px;
    }
    .newsletter p{
        margin: 0;
    }
}
@media (max-width: 550px){
    .slider-empresas .bx-controls{
        display: none;
    }
    .slider-productos h3{
        font-size: 28px;
        line-height: 30px;
    }
}

/*EMPRESA*/
    .s_empresa .banda-celeste h4{
        color: #1E120D;
    }
    .s_empresa .banda-celeste p{
        font-size: 16px;
    }

.s_empresa_divisiones .bandas-logos .logos{
    padding: 40px 0 45px;
    border-top: 2px solid #EEE;
}
    .s_empresa_divisiones .bandas-logos .logos h5{
        color: #12A0D0;
    }
    .s_empresa_divisiones .bandas-logos .logos__contenedor{
        display: inline-block;
        width: 162px;
        margin: 15px 10px;
    }
    .s_empresa_divisiones .bandas-logos .logos a{
        display: table;
        vertical-align: middle;
    }
        .s_empresa_divisiones .bandas-logos .logos a:hover img{
            -webkit-filter: grayscale(1);
            filter: grayscale(1);
            -webkit-transition: all .20s ease-in-out;
            -moz-transition:     all .20s ease-in-out;
            -o-transition:         all .20s ease-in-out;
            -ms-transition:     all .20s ease-in-out;
            transition:         all .20s ease-in-out;
        }
        .s_empresa_divisiones .bandas-logos .logos__imagen{
            display: table-cell;
            height: 100px;
            vertical-align: middle;
        }

@media (max-width: 767px){
    .s_nosotros .banda-celeste{
        padding: 20px 0;
        margin: 20px 0;
    }
    .iso{
        max-width: 100px;
    }
    .s_empresa_divisiones .bandas-logos .logos {
        padding: 20px 0 0;
    }
    .s_empresa_divisiones .bandas-logos .logos__contenedor {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .s_empresa_divisiones .bandas-logos .logos__imagen{
       height:70px;
    }
    .logos h5{
        padding-right:35px;
        margin-bottom: 30px;
    }
    .logos h5:after{
        content: "\f055";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 22px;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: translate(0, 0);
        position: absolute;
        top: 12px;
        right: 30px;
        cursor: pointer;
        margin-top:-11px;
    }
    .logos .desplegado h5:after{
          content: "\f056";
    }
    .logos .js-slide-content{
        margin-top:20px;
    }

}

.s_encuesta h5{
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: #12A0D0;
    margin: 0 0 20px;
}

.tab-seccion{
    margin: 30px 0;
}
    .tabs-body div.tabs-panel{
            overflow: auto;
            display: none;
        }
            .tabs-body div.tabs-panel-selected{
                display: block;
                overflow: visible;
            }
        .tab-seccion nav{
            display: table;
            width: 100%;
            border-bottom: 3px solid #12A0D0;
        }
            .tab-nav,
            .tab-nav:focus{
                display: table-cell;
                font-size: 12px;
                font-weight: 700;
                color: #FFF;
                text-align: center;
                text-transform: uppercase;
                padding: 15px;
                background: #A8A9AD;
                cursor: pointer;
            }
                .tab-nav:hover{
                    color: #FFF;
                    background: #12A0D0;
                }
                .tab-nav.tabs-selected{
                    background: #12A0D0;
                }
                .tab-nav.tabs-selected:focus{
                    color: #FFF;
                    outline: 0;
                    cursor: default;
                } 
                .tab-container{
                    padding: 25px 0;
                }
                    .tab-content .destacado{
                        font-weight: 600;
                        text-align: left;
                        margin-top: 60px;
                    }
                    .tab-content h4{
                        font-size: 36px;
                        margin-bottom: 25px;
                    }

.s_encuesta .radio-borde{
    padding: 20px 0;
    border-bottom: 2px solid #D8DADE;
}
    .s_encuesta .control-label{
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        line-height: 18px;
        text-align: left;
        color: #1E120D;
        padding: 15px 0 0;
        margin: 0;
        border: none;
    }
    .s_encuesta .grupo-radios{
        display: table;
        width: 100%;
        padding-bottom: 5px;
    }
        .s_encuesta .radio{
            display: table-cell;
            text-align: center;
            padding: 0 0 30px;
            position: relative;
        }
            .s_encuesta .radio label{
                font-family: 'Open Sans', sans-serif;
                font-size: 14px;
                line-height: 24px;
                text-align: center;
                color: #1E120D;
                padding: 0;
                margin: 0;
                border: none;
            }
            .s_encuesta .radio input{
                display: inline-block;
                margin: 0 auto;
                visibility: hidden;
            }
            .s_encuesta .radio .caja{
                width: 15px;
                height: 15px;
                border: 2px solid #A8A9AD;
                border-radius: 50%;
                margin-top: 5px;
                background: #FFF;
                position: absolute;
                top: 24px;
                left: 50%;
                left: calc(50% - 10px);
            }
                .s_encuesta .radio .caja .seleccionado{
                    opacity: 0;
                    display: inline-block;
                    width: 9px;
                    height: 9px;
                    text-align: center;
                    border-radius: 50%;
                    background: #A8A9AD;
                    position: absolute;
                    top: 1px;
                    left: 1px;
                }
                .s_encuesta .radio input:checked + .caja .seleccionado{
                    opacity: 1;
                }

    .s_encuesta fieldset{
        padding: 5px 10px;
    }
        .s_encuesta fieldset:nth-child(even){
            background-color: #EAEAEA;
        }
    .s_encuesta #tab-1 fieldset{
        min-height: 76px;
    }
    .s_encuesta textarea.form-control{
        height: 190px;
    }

@media (max-width: 767px){
    .s_encuesta .control-label{
        font-size: 16px;
        line-height: 24px;
    }
    .s_encuesta .radio label{
        font-size: 12px;
    }
    .s_encuesta .radio{
        padding: 0 0 20px;
    }
    .s_encuesta .radio .caja{
        width: 15px;
        height: 15px;
    }
    .s_encuesta .radio .caja .seleccionado{
        width: 9px;
        height: 9px;
        top: 1px;
        left: 1px;
    }
    .tab-nav{
        display: none;
    }
    .tab-nav.tabs-selected{
        display: block;
    }
}



/*SOPORTE TECNICO*/
@media (max-width: 767px){
    .s_soporte h3{
        font-size: 26px;
        line-height: 26px;
    }
}



/*CLIENTES*/
.s_clientes h3{
    margin: 0 0 60px;
}

@media (max-width: 990px){
    .s_clientes h3{
        margin: 0 0 30px;
    }
    .s_clientes h5{
        margin-top: 30px;
    }
    .s_clientes .con-punta{
        margin-bottom: 0;
    }
}



/*FICHA PRODUCTOS*/
.s_ficha_productos .logo-empresa{
    display: table;
    width: 100%;
    height: 175px;
    padding: 20px;
    margin: 0 auto;
    border: 1px solid #D8DADE;
    background: #FFF;
}
    .s_ficha_productos .logo-empresa-align{
        display: table-cell;
        vertical-align: middle;
    }
    .s_ficha_productos .descripcion-empresa{
        min-height: 175px;
        padding: 25px 0 20px;
        position: relative;
    }
        .s_ficha_productos .descripcion-empresa .destacado-2{
            margin: 0 0 10px;
        }
        .s_ficha_productos .descripcion-empresa .ver-video{
            position: absolute;
            bottom: 0;
        }

.modulo-producto{
    padding: 5px;
    border: 1px solid #D8DADE;
    margin: 15px 0;
}
    .modulo-producto h5{
        font-weight: 600;
        line-height:1.2;
        color: #FFF;
        padding: 15px;
        background: #12A0D0;
        position:relative;
    }


    /*Estilos del texto administrable */
    .modulo-producto__texto{
        padding: 0 10px 20px;
    }
        .modulo-producto__texto table{
            width: 100%;
            border: 1px solid #A8A9AD !important;
            margin: 20px 0;
        }
            .modulo-producto__texto table tr td{
                font-size: 12px !important;
                line-height: 16px !important;
                color: #1E120D !important;
                text-align: center !important;
                padding: 5px 10px !important;
                border: none !important;
                background: #FFF !important;
            }
                .modulo-producto__texto table tr td span{
                    font-size: 12px !important;
                    line-height: 16px !important;
                    color: #1E120D !important;
                    text-align: center !important;
                    background: #FFF !important;
                }
            .modulo-producto__texto table tr:first-of-type td{
                width: 33% !important;
                font-size: 14px !important;
                font-weight: 700 !important;
                line-height: 16px !important;
                color: #FFF !important;
                text-transform: uppercase !important;
                padding: 5px 15px !important;
                background: #A8A9AD !important;
            }
                .modulo-producto__texto table tr:first-of-type td span{
                    font-size: 14px !important;
                    font-weight: 700 !important;
                    line-height: 16px !important;
                    color: #FFF !important;
                    text-transform: uppercase !important;
                    background: #A8A9AD !important;
                }
                .modulo-producto__texto table tr td p{
                    margin: 0 !important;
                }
                
        .modulo-producto__texto span,
        .modulo-producto__texto p span{
            font-family: 'Open Sans', sans-serif !important;
            font-size: 14px !important;
            line-height: 24px !important;
            color: #1E120D !important;
        }
        .modulo-producto__texto ul li{
            list-style-type: none !important;
            padding-left:20px;
            position:relative;
        }
        .modulo-producto__texto ul li:before{
            content: "\f00c";
            display: inline-block;
            font: normal normal normal 14px/1 FontAwesome;
            font-size: inherit;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
             color: #12A0D0;
            margin-right: 5px;
            position:absolute;
            top:3px;
            left:0;
        }
        .modulo-producto__texto ul{
           margin-bottom: 25px !important;
        }
       
@media (max-width:767px){
    .s_ficha_productos main{
        padding-top: 10px;
    }
    .s_ficha_productos .logo-empresa{
        height: 100px;
        padding: 0;
    }
    .modulo-producto h5{
        padding-right:35px;
        margin-bottom: 0;
    }
    .modulo-producto h5:after{
        content: "\f055";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 22px;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: translate(0, 0);
        position: absolute;
        top: 50%;
        right: 10px;
        cursor: pointer;
        margin-top:-11px;
    }
    .modulo-producto.desplegado h5:after{
          content: "\f056";
    }
    .modulo-producto .js-slide-content{
        margin-top:20px;
    }
    .modulo-producto__texto table tr:first-of-type td,
    .modulo-producto__texto table tr:first-of-type td span span{
        font-size: 10px !important;
        line-height: 12px !important;
        padding: 5px !important;
    }
    .modulo-producto__texto table tr:first-of-type td span{
        padding: 0 !important;
        margin: 0 !important;
    }
    .modulo-producto__texto table tr:first-of-type td div{
        line-height: 10px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/*NOVEDADES*/
.s_novedades .banda .container {
    position: relative;
    padding-top: 60px;
}
.s_novedades .filtrar {
    position: absolute;
    right: 15px;
    top: 0;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #D8DADE;
    width: 120px;
}
.s_novedades .btn_filtrar {
    position: absolute;
        top: 0;
        right: 150px;
        background: transparent;
        padding: 3px;
        border-radius: 3px;
        border: 1px solid #D8DADE;
        width: 90px;
        box-shadow: 0px 0px 5px 0px rgba(182, 182, 182, 0.7);
}
.s_novedades .modulo-novedad{
    display: inline-block;
    max-width: 260px;
    height: 415px;
    margin-bottom: 25px;
}
    .s_novedades .modulo-novedad__imagen{
        height: 153px;       
    }
.s_novedades .modulo-novedad h6{
    font-weight: 600;
    line-height: 18px;
    color: #12A0D0;
}
    .s_novedades .modulo-novedad h6:hover{
        color: #A8A9AD;
        -webkit-transition: all .20s ease-in-out;
        -moz-transition:     all .20s ease-in-out;
        -o-transition:         all .20s ease-in-out;
        -ms-transition:     all .20s ease-in-out;
        transition:         all .20s ease-in-out;
    }

.s_ficha_novedad h3{
    font-size: 30px;
    text-align: left;
}
.contenido-novedad{
    margin-bottom: 50px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: left;
}
    .contenido-novedad p{
        font-family: 'Open Sans', sans-serif !important;
        font-size: 14px !important;
        line-height: 20px !important;
        text-align: left !important;
        color: #1E120D !important;

    }
        .contenido-novedad p span{
            font-family: 'Open Sans', sans-serif !important;
            font-size: 14px !important;
            line-height: 20px !important;
            text-align: left !important;
            color: #1E120D !important;

        }
    .contenido-novedad img{
        display: block !important;
        width: 100%;
        max-width: 100% !important;
        height: auto;
        margin: 0 auto !important;
        float: none !important;
    }
    .contenido-novedad p a,
    .contenido-novedad p a:focus{
        display: block !important;
        text-align: left !important;
        color: #12A0D0 !important;
        margin: 10px 0 !important;
    }
        .contenido-novedad p a:hover{
            color: #A8A9AD !important;
            -webkit-transition: all .20s ease-in-out;
            -moz-transition:     all .20s ease-in-out;
            -o-transition:         all .20s ease-in-out;
            -ms-transition:     all .20s ease-in-out;
            transition:         all .20s ease-in-out;
        }
.documentos-novedad {
    margin-bottom: 50px;
}
.documentos-novedad ul {
    list-style-type: none;
    font-size: 0;
    text-align: left;
}
    .documentos-novedad ul li {
        list-style-type: none;
        display: inline-block;
        vertical-align: top;
        width: 45%;
        margin-bottom: 45px;
        padding-right: 25px;
        min-height: 54px;
    }
        .documentos-novedad ul li a {
            font-size: 16px;
            position: relative;
            transition: all 200ms ease-in-out;
            display: block;
        }
        .documentos-novedad ul li a:before {
            content: '';
            width: 43px;
            height: 54px;
            position: absolute;
            left: 0;
            background-size: contain;
            background-repeat: no-repeat;
            background-image: url('../images/default-icon.png');
        }
        .documentos-novedad ul li a:hover {
            opacity: 0.7;
        }
            .documentos-novedad ul li a span {
                display: block;
                padding: 5px 0 0 70px;
                line-height: 20px;
                color: #000;
            }
        .documentos-novedad ul li a.pdf:before {
            background-image: url('../images/pdf-icon.png');
        }
        .documentos-novedad ul li a.doc:before {
            background-image: url('../images/doc-icon.png');
        }
@media(max-width: 1199px) {
    .documentos-novedad ul li {
        width: 50%;
    }
}
@media(max-width: 991px) {
    .video-novedad {
        margin-bottom: 50px;
    }
}
@media(max-width: 479px) {
    .documentos-novedad ul li {
        width: 100%;
    }
}
.slider-novedad {
    margin-bottom: 50px;
    position: relative;
}
    .slider-novedad li{
        display: none;
    }
    .slider-novedad .bx-wrapper li{
        display: block;
    }
    .slider-novedad-prev,
    .slider-novedad-next{
        display: block;
        font-size: 0;
        line-height: 32px;
        color: #12A0D0;
        cursor: pointer;
        position: absolute;
        top: 50%;
        margin-top: -16px;

    }
    .slider-novedad-prev{
        left: 0;
    }
    .slider-novedad-next{
        right: 0;
    }
    .slider-novedad-prev:hover,
    .slider-novedad-next:hover{
          color: #12A0D0;
            -webkit-transition: all .20s ease-in-out;
            -moz-transition: all .20s ease-in-out;
            -o-transition: all .20s ease-in-out;
            -ms-transition: all .20s ease-in-out;
            transition: all .20s ease-in-out;
        }
        .slider-novedad-prev a,
        .slider-novedad-next a{
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
        }
        .slider-novedad-prev i,
        .slider-novedad-next i {
            font-size: 24px;
        }

.slider-novedad .bx-controls{
    width: 100%;
    text-align: center;
    margin: 10px 0 0;
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 767px){
    .s_novedades .modulo-novedad{
        height: auto;
    }
    .s_novedades .modulo-novedad__imagen{
        margin-bottom: 10px;     
    }
    .s_novedades .modulo-novedad__texto{
        min-height: 140px;
        height: auto;
    }
}


/*CONTACTO*/
.s_contacto main, .s_gracias main{
    padding-bottom: 0;
}
.s_encuesta .obligatorios,
.s_contacto .obligatorios,
.s_trabaja .obligatorios{
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 10px;
}
.s_encuesta form,
.s_contacto form,
.s_trabaja form{
        padding: 0;
        margin: 0 0 120px;
    }
    .s_encuesta .form-group,
    .s_contacto .form-group,
    .s_trabaja .form-group{
        margin-bottom: 0;
    }
    .s_encuesta .form-control,
    .s_contacto .form-control,
    .s_trabaja .form-control{
        display: block;
        width: 100%;
        height: 36px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        line-height: 36px;
        color: #1E120D;
        padding: 10px 15px;
        margin-bottom: 15px;
        border: 1px solid #B0AFB5;
        border-radius: 5px;
        background-color: #FFF;
        background-image: none;                
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
              box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
           -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
              transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    }
        .s_contacto textarea.form-control,
        .s_trabaja textarea.form-control{
            height: 105px;
        }
        .s_trabaja .form-control.adjunto{
            height: 45px;
            line-height: 20px;
            position: relative;
        }
        .s_encuesta ::-webkit-input-placeholder,
        .s_contacto ::-webkit-input-placeholder,
        .s_trabaja ::-webkit-input-placeholder{
           color: #1E120D;
        }
        .s_encuesta :-moz-placeholder,
        .s_contacto :-moz-placeholder,
        .s_trabaja :-moz-placeholder{ /* Firefox 18- */
           color: #1E120D;  
        }
        .s_encuesta ::-moz-placeholder,
        .s_contacto ::-moz-placeholder,
        .s_trabaja ::-moz-placeholder{  /* Firefox 19+ */
           color: #1E120D;  
        }
        .s_encuesta :-ms-input-placeholder, 
        .s_contacto :-ms-input-placeholder, 
        .s_trabaja :-ms-input-placeholder {  
           color: #1E120D;  
        }
        .s_encuesta .boton,
        .s_contacto .boton,
        .s_trabaja .boton{
            border: none;
            padding: 15px 50px;
            margin: 20px 0;
        }

.s_contacto .mapa{
    height: 250px;
}
.s_contacto .lateral .mapa{
    display: none;
}

@media (max-width: 990px){
    .s_encuesta form,
    .s_contacto form,
    .s_trabaja form{
            padding: 0;
            margin: 0;
    }
    .s_contacto .mapa{
        display: none;
    }
    .s_contacto .lateral .mapa{
        display: block;
    }
}
@media (max-width: 767px){
    .s_encuesta .boton,
    .s_contacto .boton,
    .s_trabaja .boton{
        padding: 15px;
    }
}

/*Tecnologías y aplicaciones*/
.s_tecnologias .banda .container .row{
    position: relative;
    /*padding-top: 60px;*/
}
.js-empresas-titulo h4 {
    margin-bottom: 20px;
}
.s_tecnologias .js-filtro-empresas {
    width: 100%;
    text-align: right;
    margin: 0 0 20px;
}
.s_tecnologias .filtrar {
    /*position: absolute;*/
    /*right: 15px;*/
    /*top: 0;*/
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #D8DADE;
    /*width: 120px;*/
}
.s_tecnologias .btn_filtrar {
    /*position: absolute;*/
    /*top: 0;*/
    right: 150px;
    background: transparent;
    padding: 3px;
    border-radius: 3px;
    border: 1px solid #D8DADE;
    width: 90px;
    box-shadow: 0px 0px 5px 0px rgba(182, 182, 182, 0.7);
}
.s_tecnologias .banda h3 {
    margin-bottom: 50px;
}
/*.modulo-tecnologias {
    height: 500px;
}*/
.modulo-tecnologias .cont-img {
    width: 100%;
    border: 1px solid #ededed;
    margin-bottom: 20px;
    text-align: center;
    height: 175px;
}
.modulo-tecnologias .cont-img img {

}
.modulo-tecnologias h4 {
    font-size: 18px;
    font-weight: 700;
}
.modulo-tecnologias ul {
    list-style-type: none;
    margin-bottom: 20px;
}
    .modulo-tecnologias ul li {
        position: relative;
        padding-left: 20px;
    }
        .modulo-tecnologias ul li:before {
            content: '';
            position: absolute;
            left: 5px;
            top: 5px;
            width: 0; 
            height: 0; 
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 8px solid #12A0D0;
        }
        .modulo-tecnologias ul li h5 {
            text-transform: uppercase;
            font-size: 14px;
            display: inline;
            margin: 0;
        }
        .modulo-tecnologias ul li span {
            font-size: 14px;
            display: inline;
        }
.modulo-tecnologias p {
    font-size: 14px;
    line-height: 20px;
}
.modulo-tecnologias .leer-mas-tec {
    text-transform: uppercase;
    color: #12A0D0;
    transition: all 200ms ease-in-out;
}
    .modulo-tecnologias .leer-mas-tec:hover {
        color: #000;
    }

.s_tecnologias .borde {
    clear: both;
    width: 100%;
    border-bottom: 2px solid #DCDCDC;
    padding: 20px 0 0;
    margin-bottom: 45px;
}

@media(max-width: 768px) {
    .modulo-tecnologias {
        margin-bottom: 50px;
    }
}

/*Encuestas*/
.encuesta-modulo {
    border: 1px solid #ccc;
    margin-bottom: 40px;
    transition: all 200ms ease-in-out;
    height: 320px;
}
    .encuesta-modulo:hover {
        box-shadow: 0px 1px 5px 0px rgb(217, 217, 217);
        border-color: #12A0D0;
    }
    .encuesta-modulo img {
        width: 100%;
        margin-bottom: 25px;
    }
    .encuesta-modulo h5,
    .encuesta-modulo h4 {
        padding: 0 15px;
    }
    .encuesta-modulo h5 {
        color: #12A0D0;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .encuesta-modulo h4 {
        color: #000;
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 20px;
        line-height: 20px;
    }
@media(max-width: 767px) {
    .encuesta-modulo {
        width: 280px;
        margin: 0 auto 40px;
        min-height: 320px;
        height: auto;
    }
}
@media(max-width: 479px) {
    .encuesta-modulo {
        width: 100%;
    }
}
.encuesta-google h4 {
    font-size: 34px;
    line-height: 35px;
}
/*------|| $MISCELÁNEAS ||------*/
.margen{
    margin-bottom: 20px;
}

/* Animación suave */
.anim-suave{
    -webkit-transition: all .25s ease-in-out;
    -moz-transition:    all .25s ease-in-out;
    -o-transition:      all .25s ease-in-out;
    -ms-transition:     all .25s ease-in-out;
    transition:         all .25s ease-in-out;
}

/*Pagina de gracias*/
.gracias{
    background-color: #12A0D0;
    text-align: center;
    padding-top: 50px;
    max-width: 768px;
    width: 100%;
    margin: 40px 0 110px;
}
.gracias h3{
    font-size: 36px;
    line-height: 48px;
    padding: 55px 90px 0;
    color: #fff;
}
.gracias a{
    color: #fff;
    font-size: 18px;
    line-height: 48px;
    padding-bottom: 20px;
}
.gracias i:before{
    font-weight: lighter;
}
.gracias i:last-child:before{
    padding-right: 10px;
}

