.os-header{
    width: 100%;
    height: 100px;
    background-color: #000;
    letter-spacing: 0px;
    z-index: 3;
    font-family: 'Lato', sans-serif;
}
.os-header__content{
    height: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
}
.os-header__logo {
    width: 9%;
    max-width: 83px;
}
.os-header__logo img {
    width: 100%;
}
.os-header__menu {
    display: flex;
    height: 100%;
    justify-content: end;
}
.os-header__menu li,
.os-header__menu a{
    color: #fff;
    font-size: 12px !important;
    letter-spacing: -.3px;
}
.os-header__menu li{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    padding-right: 6px;
}
.os-header__menu li:hover,
.os-header__menu a:hover{
    color: #F0A243;
}
.os-header__menu i{
    font-size: 28px;
}
.os-header__menu .login{
    width: 65px;
    height: 100%;
    line-height: 100px;
    background-color:#F0A243;
}
.os-header__menu .login a{
    width: 100%;
    display: inline-block;
    position: relative;
    color: #000;
    text-align: center;
    cursor: pointer;
}
.os-header__menu .login a::after{
    content: attr(data-value);
    position: absolute;
    width: 100%;
    font-size: 8px;
    text-align: center;
    left: 0;
    top: 65px;
    line-height: 1;
}
.os-header__menu .login a:hover{
    color: #fff;
}
.os-header__content.mobile{
    display: none;
}
/* SUBMENU EMPRESAS */
.submenu{
    position: relative;
}
#btnClientes{
    cursor: pointer;
}
#listaClientes{
    position: absolute;
    width: 100%;
    bottom: -20px;
    background-color: #000;
    padding: 5px;
    display: none;
}
#listaClientes li{
    padding: 0;
}
#listaClientes a{
    text-align: center;
    line-height: 2.2;
    width: 100%;
}
#listaClientes a:hover{
    color: #F0A243;
}
/* MENU MOBILE */
.os-header__menu-mobile-btn{
    color: #F0A243;
    font-size: 21px !important;
    line-height: 1;
    margin-left: 19px;
}
.os-header__menu-mobile-btn:nth-of-type(2){
    font-size: 25px !important;
    line-height: 1;
    z-index: 8;
}
#btnMenuMobile.os-header__menu-mobile-btn{
    font-size: 28px !important;
}
.os-header__mobile{
    position: relative;
    display: none;
    position: relative;
    cursor: pointer;
}
.os-header__mobile-lista{
    position: absolute;
    right: -10px;
    top: 39px;
    padding:10px 0;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(44, 44, 44, 0.9);
    -moz-box-shadow: 0px 3px 5px 0px rgba(44, 44, 44, 0.9);
    box-shadow: 0px 3px 5px 0px rgba(44, 44, 44, 0.9);
    z-index: 5;
}
.os-header__mobile-lista ul{
    display: flex;
    flex-direction: column;
    width: 220px;
}
.os-header__mobile-lista ul li a{
    padding-left: 20px;
}
.os-header__mobile-lista ul li,
.os-header__mobile-lista ul li a{
    display: inline-block;
    width: 100%;
    line-height: 2;
    text-align: left;
    font-size: 14px !important;
    letter-spacing: -.3px;
    color: #000;
}
#btnClientesMobile:hover{
    background-color: #fff !important;
    cursor: initial;
}
#btnClientesMobile i{
    writing-mode: vertical-lr;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    display: inline-flex;
    width: 12px;
    align-items: end;
    font-size: 9px;
}
.os-header__mobile-lista ul li a:hover{
    background-color: #f0f0f0 !important;
}
#listaClientesMobile li a{
    display: inline-block;
    width: 100%;
    padding-left: 40px;
}

@media screen and (max-width: 1024px){
    .os-header__content{
        padding: 0 15px;
    }
}
@media screen and (max-width: 960px){
    .os-header__menu li,
    .os-header__menu a{
        font-size: 10px !important;
        letter-spacing: -.5px;
    }
}
@media screen and (max-width: 768px){
    .os-header__menu{
        display: none;
    }
    .os-header__mobile{
        display: inline-block;
    }
    .os-header__content{
        height: 50%;
    }
    .os-header__content.mobile{
        display: flex;
    }
    .os-header__redes .os-btn__redes{
        width: 20px !important;
        height: 20px !important;
        font-size: 16px !important;
    }
    .os-header__lineaos img {
        max-width: 65px;
    }
    .os-header__logo {
        width: 18%;
        max-width: 54px;
    }
}
@media screen and (max-width: 500px){
    .os-header__mobile-lista{
        right: -15px;
    }
    .os-header__mobile-lista ul{
        width: 100vw;
    }
    .os-header__mobile-lista ul li,
    .os-header__mobile-lista ul li a{
        line-height: 3;
        font-size: 11px !important;
    }
}

.os-footer{
    width: 100%;
    height: fit-content;
    background-color: #000;
    font-family: 'Lato', sans-serif;
}
.os-footer__content{
    width: 100%;
    height: 100%;
    max-width: 1024px;
    padding-top: 5px;
    padding-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
    color: #fff;
}
.os-footer__content a{
    color: #fff;
}
.os-footer__lineaos img{
    width: 70%;
    max-width: 200px;
}
.os-footer__seccion{
    min-height: fit-content;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.os-footer__seccion-linea{
    justify-content: center;
}
.os-footer__seccion.contacto{
    text-align: left;
}
.os-footer__enlace:hover{
    color: #F0A243;
}
.os-footer__enlace i{
    font-size: 26px !important;
    color: #F0A243;
    margin-right: 7px;
}
.os-footer__enlace.enlace_contacto{
    display: flex;
    align-items: center;
    line-height: 2.4;
}
.os-footer__seccion.redes p:first-of-type{
        margin-bottom: 20px;
    }
.os-btn__redes{
    height: 30px;
    width: 30px;
    background-color: #F0A243;
    color: #000 !important;
    font-size: 23px !important;
    line-height: 1.2;
    margin: 0 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.os-btn__redes:hover{
    color: #FFF !important;
}
@media screen and (max-width: 1024px){
    .os-footer__content{
        justify-content: space-evenly;
    }
}
@media screen and (max-width: 768px){
    .os-footer__content{
        flex-wrap: wrap;
        padding: 20px;
        padding-bottom: 60px;
    }
    /* .os-footer__seccion{
        border: 1px solid red;
    } */
    .os-footer__seccion.linea,
    .os-footer__seccion.contacto{
        width: 50%;
        min-height: 100px;
        display: inline-flex;
    }
    .os-footer__seccion.linea{
        justify-content: flex-start;
        align-items: flex-start;
    }
    .os-footer__seccion.linea img{
        max-width: 160px;
    }
    .os-footer__seccion.contacto{
        justify-content: flex-start;
        align-items: flex-end;
        text-align: right;
    }
    .os-footer__enlace{
        display: flex;
        flex-direction: row-reverse;
        line-height: 2.5;
        align-items: center;
    }
    .os-footer__enlace i{
        margin: 0;
        margin-left: 20px;
    }
    .os-footer__seccion.redes{
        width: 100%;
        height: unset !important;
        line-height: 1;
        flex-direction: row;
        justify-content: end;
        text-align: right;
    }
    .os-footer__seccion.redes p:first-of-type{
        margin: 0;
        margin-right: 20px;
    }
}
@media screen and (max-width: 430px){
    .os-footer__enlace{
        font-size: 12px !important;
        letter-spacing: 0px;
    }
    .os-footer__enlace i{
        margin-left: 10px;
    }
    .os-footer__seccion.redes{
        justify-content: center;
        text-align: center;
        padding-left: 0px;
    }
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    transition: all 0.3s ease 0s;
    font-display: swap;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}
/* body,a,button {
    font-family: 'Open Sans', sans-serif;
}
*/
button{
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}
.os-ul {
    list-style: none;
}
a{
    text-decoration: none;
}
.img-responsive {
    width: 100%;
}
/* GENERALES */
.os-main-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.os-main__content{
    min-height: calc(100vh - 233px);
}
.os-container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto !important;
    margin-right: auto !important;
}
.os-max-container {
    width: 100%;
    max-width: 1446px;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.mt-10 {
    margin-top: 10px !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.ml-10 {
    margin-left: 10px !important;
}
.mr-10 {
    margin-right: 10px !important;
}
.mx-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}
.my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}
.m-10 {
    margin: 20px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.ml-20 {
    margin-left: 20px !important;
}
.mr-20 {
    margin-right: 20px !important;
}
.mx-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}
.my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}
.m-20 {
    margin: 20px !important;
}
/* FLEX */
.flex {
    display: flex;
}
.wrap {
    flex-wrap: wrap;
}
.flex-column {
    flex-direction: column;
}
.flex-center {
    justify-content: center;
}
.flex-between {
    justify-content: space-between;
}
.flex-even {
    justify-content: space-evenly;
}
.flex-vcenter {
    align-items: center;
}
/* COLORES */
.yellow {
    background-color: #f0a243 !important;
}
.grey1 {
    background-color: #343f4b !important;
}
.grey2 {
    background-color: #c0c1c3 !important;
}
.grey3 {
    background-color: #f0f0f0 !important;
}
.black {
    background-color: #000 !important;
}
.white {
    background-color: #fff !important;
}
.yellow-text {
    color: #f0a243 !important;
}
.grey-text {
    color: #343f4b !important;
}
.grey2-text {
    color: #8190a5 !important;
}
.black-text {
    color: #000 !important;
}
.white-text {
    color: #fff !important;
}
.os-btn {
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
    height: 40px;
    min-width: 140px;
    max-width: 340px;
    font-size: 18px !important;
    border: none !important;
    border-radius: 3px;
    background-color: #000;
    color: #fff;
    padding: 0 15px;
    letter-spacing: -0.5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    cursor: pointer !important;
}
.os-btn:hover{
    opacity: .85 !important;
}
.os-btn:focus,
.os-btn:active {
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
}
.os-btn__redes-linkedin {
    height: 40px;
    width: 40px;
    background-color: #0077b5;
    color: #fff !important;
    font-size: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.os-btn__redes-linkedin.disabled {
    background-color: #8190a5 !important;
    color: rgba(255, 255, 255, 0.767) !important;
    cursor: not-allowed !important;
}
.os-btn__redes-linkedin:hover {
    color: rgba(255, 255, 255, 0.767) !important;
}
.os-btn-flotante {
    position: fixed;
    bottom: 12px;
    right: 12px;
    background-color: black;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px #868686;
    -moz-box-shadow: 0px 0px 5px 0px #868686;
    box-shadow: 0px 0px 5px 0px #868686;
}
.os-h1,
.os-h2 {
    font-size: 30px !important;
}
.os-h3 {
    font-size: 24.5px !important;
    font-weight: 400 !important;
}
.os-h4 {
    font-size: 22px !important;
}
.os-h5 {
    font-size: 20px !important;
}
.os-h6 {
    font-size: 13px !important;
}
.os-p,
.os-link {
    font-size: 17px !important;
}
.home-seccion {
    font-family: "Lato", serif;
    padding: 5rem 0;
}
.seccion-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.titulo-seccion {
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    padding-left: 8%;
    padding-right: 8%;
}
.video__container {
    position: relative;
    padding-bottom: 54%;
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
}
.video__container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 100%;
}
.os-container p {
    max-width: 980px;
}
/* HOME */
.home-slider {
    max-height: 530px;
    overflow: hidden !important;
}
#slider-background {
    position: absolute;
    margin-top: -8px;
    width: 102%;
    height: 102%;
    max-width: 1446px;
    max-height: 474px !important;
    background-color: #343f4b;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    z-index: -1;
}
.slider-banner {
    font-family: "Lato", serif;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 0;
}
.seccion-container .video {
    width: 90%;
    max-width: 600px;
    margin-top: 3.3rem;
    text-align: center;
}
.webinars {
    font-family: "Lato", serif;
}
.webinars-banner__img {
    width: 20%;
    max-width: 150px;
}
.webinars-banner__txt {
    padding-top: 4rem;
    width: 70%;
    font-weight: 500 !important;
    line-height: 1.7;
}
.home .comparador-banner {
    background-color: #000 !important;
}
.home .comparador-banner .os-btn {
    background-color: #ed962b !important;
    /* background-color: #f0a243 !important; */
}
/* tabs clientes */
.tabs-clientes {
    font-family: "Lato", serif;
}
.tabs-clientes .tabs div {
    width: 30%;
    max-width: 270px;
    animation: backgroundIn 1s ease-in;
}
.tabs-clientes .tab {
    display: block;
    margin: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    text-decoration: none;
    padding-bottom: 8px;
    cursor: pointer;
}
.tabs-clientes .tabs div:hover {
    background-color: #c0c1c3;
}
.tabs-clientes .tabs div.active:hover,
.active {
    background-color: #f0a243;
}
.tabs-clientes {
    min-height: 180px !important;
    position: relative;
}
.tabs-contenido{
    height: 250px;
}
.tabs-clientes .carrusel {
    animation: fadeIn 1.2s ease-in;
}
.tabs-clientes .tab-item {
    display: none;
    animation: fadeIn .9s ease-in;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}
/* VIDEOS CARRUSEL */
.clientes .seccion-container {
    justify-content: space-around !important;
}
.carrusel-container {
    width: 100%;
    max-width: 1024px;
    padding: 0 40px;
}
.carrusel .slick-prev,
.carrusel .slick-next {
    top: 42%;
}
.carrusel .slick-prev::before,
.carrusel .slick-next::before {
    color: #343f4b;
}
.carrusel-item {
    min-width: 100px;
    min-height: 90px;
    padding: 5px;
}
.video-item,
.conoce-video-trigger {
    cursor: pointer !important;
}

.persona-item {
    cursor: pointer;
}
.persona-item,
.soportes-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 25vw;
    max-width: 250px;
    text-align: center;
}
.persona-item .persona-img,
.soportes-item .soportes-img {
    width: 24vw;
    height: 24vw;
    max-width: 220px;
    max-height: 220px;
    border-radius: 50%;
    border: 9px solid #f0a243;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
}
.persona-item .persona-img img,
.soportes-item .soportes-img img {
    height: 101%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.persona-item h4,
.soportes-item h4 {
    max-width: 240px;
    letter-spacing: 0.6px;
    text-align: center;
    font-weight: 400;
    color: #343f4b;
}
/* VISTA PYMES */
.atributos-contenedor {
    padding: 0;
    margin: 0;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}
.ventajas-item {
    width: 30%;
    color: #343f4b;
}
.ventajas-item .icono {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.ventajas-item .icono i {
    font-size: 60px;
    color: #f0a243;
}
.ventajas-item h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
}
.ventajas-item p {
    letter-spacing: 3px;
}
.proceso-container {
    align-items: flex-start;
}
.proceso-item {
    width: 25vw;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.proceso-item .icono {
    width: 21vw;
    height: 21vw;
    max-width: 170px;
    max-height: 170px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}
.proceso-item .icono img {
    width: 102%;
}
.proceso-item h5 {
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.popup-window {
    font-family: 'Lato', serif;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(41, 41, 41, 0.8);
    z-index: 5;
    overflow: hidden;
}
.popup-container {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 100%;
    max-height: 520px;
    padding: 20px;
    background-color: #f0f0f0;
}
.popup-content.popup-login {
    max-height: 550px;
}
#webinarsPopup .popup-content{
    max-height: 400px;
}
.popup-content img {
    max-width: 96px;
}
.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #c0c1c3;
    font-size: 27px;
    cursor: pointer;
}
.popup-content.video {
    background-color: rgba(92, 92, 92, 0);
    padding: 0;
    height: auto;
}
.popup-content.video .popup-close {
    z-index: 2;
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0, 0, 5, 0.8);
}
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.loader .spiner {
    display: inline-block;
    border: solid #fff;
    border-width: 0 1px 5px 0;
    border-radius: 50%;
    padding: 30px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    animation: spin 0.5s linear infinite;
    transition-property: transform;
    animation-fill-mode: forwards;
}
.popup-content.video .loader {
    padding-top: 21%;
}
.cotiza .loader {
    padding: 20% 0;
}
.cotiza .loader .spiner {
    border: solid #f0a243;
    border-width: 0 1px 5px 0;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#buscadorlanding .v-dialog__content.v-dialog__content--active {
    background: rgba(0, 0, 0, 0.6);
}
#buscadorlanding .v-card.v-sheet.theme--dark.primary {
    background-color: #f0a243 !important;
}
/* COTIZAR--CONTACTO */
.cotiza .texto-banner.os-max-container.yellow,
.cotiza .os-btn.yellow {
    background-color: #f0a243 !important;
}

.cotiza .testimoniales.home-seccion {
    background-color: #f0f0f0;
}
form.os-container {
    /* background-color: palevioletred; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
form .error {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 25px;
    color: #a10000;
    font-size: 13px;
    display: none;
    font-weight: 500;
}
.form-input,
.form-btncontainer {
    width: 100%;
    max-width: 680px;
}
.form-input input,
.form-input select,
.form-input textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    font-family: "Lato", sans-serif !important;
    width: 100%;
    height: 35px;
    background-color: #fff;
    border: 1px solid #c0c1c3;
    border-radius: 3px;
    padding: 0 25px;
    margin-top: 18px;
    font-size: 12px;
}
.form-input.doble input {
    width: 48%;
}
.form-input.doble {
    display: flex;
    justify-content: space-between;
}
.form-input textarea {
    min-height: 60px;
    height: unset;
    padding-top: 20px;
}
.form-input .form-input {
    max-width: 330px;
}

.login-options__texto{
    font-size: 12px;
}
.login-options__btn{
    padding: 3px;
    border-radius: 2px;
}
.login-options__btn:hover{
    background-color: #ffffff !important;
}
#pswMensaje{
    height: 60%;
}
@-moz-document url-prefix() {
    .form-input .form-input {
        position: relative;
    }
    .form-input .form-input input.inicio {
        padding-left: 117px;
    }
    .form-input .form-input input.fin {
        padding-left: 140px;
    }
    .form-input .form-input::after {
        position: absolute;
        content: "Fecha de Inicio";
        color: #8190a5;
        font-size: 14px;
        letter-spacing: -0.3px;
        text-align: right;
        bottom: 9px;
        left: 20px;
    }
    .form-input .form-input:last-of-type::after {
        content: "Fecha de Término";
    }
}
.form-input .form-input input[type="date"]:before {
    content: attr(placeholder) !important;
    color: #8190a5;
    margin-right: 0.5em;
}
.form-input .form-input input[type="date"]:focus:before,
.form-input .form-input input[type="date"]:valid:before {
    content: "";
}

.g-recaptcha{
    margin-top: 1rem;
}
.form-btn {
    width: 300px;
    margin-top: 1rem;
}
.form-btn.os-btn.yellow {
    background-color: #f39b31 !important;
    /* background-color: #f0a243 !important; */
}
.os-btn[disabled="true"],
.form-btn.os-btn.yellow[disabled] {
    background-color: #868686 !important;
    cursor: not-allowed !important;
}
.os-btn[disabled="true"]:hover,
.form-btn.os-btn.yellow[disabled]:hover {
    opacity: 1 !important;
}

.contacto-form .form-input {
    max-width: 440px;
}
#btnReg {
    text-transform: uppercase;
}
/* CLIENTES DIRECTOS */
.cobertura-item {
    width: 31%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cobertura-item .img {
    width: 100%;
    max-width: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cobertura-item h2 {
    font-size: 42px !important;
    line-height: 1;
    margin-top: 15px;
}
.bigdata-banner {
    font-family: "Lato", serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-image: url('../../img/landing/banners/banner-bigdata.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.bigdata-banner__texto {
    font-family: "Lato", sans-serif !important;
    font-size: 1.5rem;
    line-height: 2;
    font-weight: 100;
    text-transform: uppercase;
    background-blend-mode: hard-light;
}
.bigdata-banner__texto b {
    font-weight: 700;
}
.plataforma-banner {
    font-family: "Lato", serif;
}

.clientes-directos .plataforma-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.clientes-directos .plataforma-banner .seccion-container {
    justify-content: center;
    flex-direction: row !important;
}
.clientes-directos .plataforma-item:last-of-type {
    margin-left: 25px;
    width: 38%;
}
.clientes-directos .plataforma-item h2 {
    font-size: 50px !important;
    line-height: 0.9;
}
/* AGENCIAS */
.cobertura-agencia .cobertura-item {
    width: 37%;
}
.cobertura-agencia .cobertura-item .img {
    width: 100%;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.agencias .banner-plataforma .encabezado {
    font-size: 40px !important;
    letter-spacing: 2px;
}
.agencias .banner-plataforma h2 i {
    font-size: 90px !important;
    margin-right: 20px;
}
.agencias .banner-plataforma .os-btn {
    padding-left: 2rem;
    padding-right: 2rem;
}
.agencias .os-btn i {
    font-size: 25px !important;
}
.comofunc-item {
    width: 31%;
    max-width: 265px;
    letter-spacing: 3px;
    color: #343f4b;
    margin-top: 2rem;
}
.comofunc-item .icono {
    font-size: 56px;
    color: #f0a243;
    line-height: 1.6;
}
.conoce .seccion-container {
    align-items: flex-end !important;
    justify-content: space-evenly !important;
}
.conoce-item {
    width: 40% !important;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 !important;
}
.conoce-item .conoce-img {
    width: 60%;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.conoce-item.video .conoce-img {
    width: 99%;
    max-width: 350px;
}
/* CLIENTES DIRECTOS */
.cobertura-agencia .seccion-container {
    justify-content: center;
}
/* WEBINARS */
.webinar-item {
    width: 33.3%;
    /* max-width: 300px; */
    min-height: 100px;
    padding: 10px;
    margin-bottom: 20px;
    line-height: 0.9;
}
.webinar-item .video__container {
    padding-bottom: 59%;
}
/* COMPARADOR */
.cabecera-container {
    max-width: 900px;
    margin: 0 auto;
}
.cabecera-container .os-h2 {
    font-size: 40px !important;
}
.cabecera-container .os-h1 {
    font-size: 60px !important;
    padding: 20px;
}
.comparador-tabla .tabla-cabecera {
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 20px;
}
.comparador-tabla .tabla-cabecera img {
    width: 90%;
}
.comparador-tabla .tabla-cabecera h6 {
    letter-spacing: 0px;
    font-weight: 400 !important;
    color: #343f4b;
}
.comparador-tabla .concepto {
    width: calc(100% - 40px);
    height: 45px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 1;
}
.comparador-tabla .prov {
    width: 100px;
    margin-left: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px !important;
}
.comparador-tabla .tabla-contenido {
    position: relative;
}
.comparador-tabla .tabla-contenido:hover::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(240, 162, 67, 0.15);
    background-blend-mode: multiply;
}
/* NOSOTROS */
.nosotros .outdoorstore.home-seccion {
    padding-bottom: 0;
}
.directivos.home-seccion {
    padding-top: 0 !important;
}
.circulo {
    width: 28vw;
    height: 28vw;
    max-width: 240px;
    max-height: 240px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #c0c1c3;
}
.circulo img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 101%;
}
.directivos-item {
    padding-top: 5rem;
}
.directivos-info {
    max-width: calc(100% - 270px);
    padding-top: 40px;
}
.directivos-info .os-btn__redes-linkedin {
    display: none;
}
.directivos-info h3 {
    font-weight: 700 !important;
}
.directivos-info h4 {
    font-weight: 400 !important;
}
.directivos-info p {
    font-family: "Lato", sans-serif;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
}
.directivos-info p br {
    margin-bottom: 20px;
}
.directivos-info ul {
    margin-left: 20px;
}
.equipo {
    font-family: "Lato", sans-serif;
}
.equipo-item {
    width: 30%;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    margin-bottom: 3.5rem;
}
.equipo-item .circulo {
    max-width: 220px;
    max-height: 220px;
    margin-bottom: 30px;
}
.equipo-item h4 {
    margin-bottom: 10px;
}
/* GRACIAS */
.gracias-container {
    min-height: calc(100vh - 311px);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 5rem 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Lato", sans-serif !important;
}
.gracias-container .gracias-icono {
    width: 180px;
    height: 180px;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gracias-container .gracias-titulo {
    font-size: 35px !important;
    margin: 1rem 0;
}
.gracias-container #reg-timer {
    font-size: 40px;
    margin: 2rem 0;
    font-weight: 800;
    color: #868686;
}
.gracias-container #manualLink {
    margin-top: 1rem;
    color: #868686;
    cursor: pointer;
    display: none;
}
.gracias-container #manualLink:hover {
    color: #f0a243;
}

/* ---------------- ELEMENTOS REPETIDOS ------------------ */
/* COMPARADOR BANNER */
.comparador-banner {
    font-family: "Lato", sans-serif !important;
    height: 35vh;
    max-height: 270px;
    display: flex;
    flex-wrap: wrap;
}
.comparador-banner__img {
    height: 100%;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.comparador-banner__img img {
    width: 110%;
}
.comparador-banner__texto {
    width: 35%;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.comparador-banner__texto h4 {
    font-weight: 700 !important;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
/* 10PUNTOS BANNER */
.puntos-banner {
    font-family: "Lato", serif;
    height: 60vh;
    max-height: 500px;
    background-color: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.puntos-banner__img {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.puntos-banner__img img {
    height: 101%;
}
.puntos-banner__texto {
    width: 45%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.puntos-banner__texto h4 {
    font-weight: 400 !important;
    text-align: left;
    margin-bottom: 15px;
}
/* COTIZAR BANNER */
.cotizar-banner {
    font-family: "Lato", sans-serif;
    min-height: 156px;
    background-color: #f0f0f0;
    display: flex;
}
.cotizar-banner .container {
    justify-content: space-between;
}
.cotizar-banner__seccion {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 24px;
    text-align: left;
}
.cotizar-banner__seccion:first-of-type {
    max-width: 66%;
}
/* OUTDOORSTORE */
.clientes-directos .outdoorstore.home-seccion,
.nosotros .outdoorstore.home-seccion {
    background-color: #fff !important;
}
/* TESTIMONIALES */
.testimoniales-item {
    font-family: "Lato", serif;
    width: 45%;
    display: flex;
    justify-content: space-between;
}
.testimoniales-foto {
    width: 10vw;
    max-width: 90px;
    height: 11vw;
    max-height: 92px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.testimoniales-texto {
    width: calc(100% - 110px);
}
.testimoniales-texto .nombre {
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 1rem;
}
/* TEXTO BANNER */
.texto-banner {
    font-family: "Lato", serif;
}
.texto-banner .os-container {
    color: #000;
    text-align: center;
    line-height: 1.2;
    padding: 45px;
}
.texto-banner .os-container h2 {
    max-width: 900px;
}
/* IMAGEN BANNER */
.imagen-banner {
    max-height: 460px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.imagen-banner img {
    width: 102%;
}
/* UBICACIÓN */
.ubicacion h2 i {
    font-size: 40px;
}
.ubicacion-horarios {
    line-height: 1.5;
    padding-right: 40px;
}
.ubicacion-horarios .titulo {
    letter-spacing: 3px;
}
.ubicacion-horarios .titulo,
.ubicacion-horarios ul {
    margin-bottom: 25px;
    line-height: 1.5;
}
.ubicacion-horarios li p:first-of-type {
    width: 90px;
}
.ubicacion-horarios a {
    display: block;
    color: #000;
    margin-top: 15px;
}
.ubicacion-horarios a i {
    font-size: 22px;
}
.ubicacion-mapa {
    width: 60%;
    max-width: 680px;
}
.ubicacion-mapa .titulo-seccion {
    display: none;
}
.ubicacion-mapa #mapa {
    width: 100%;
    height: 360px;
    background-color: paleturquoise;
    margin-bottom: 30px;
}
.ubicacion-mapa p {
    width: 60%;
    letter-spacing: 1px;
}
#maparuta {
    position: relative;
    color: #000;
    cursor: pointer;
}
#maparuta::after {
    content:'CÓMO LLEGAR';
    transition: all .3s ease 0s;
    opacity: 0;
    position: absolute;
    top: -20px;
    left: 0;
    padding: 3px 4px;
    background-color: rgba(56, 56, 56, 0.7);
    border-radius: 3px;
    color: #fff;
    z-index: 99;
    font-size: 10px;
    text-transform: none;
}
#maparuta:hover {
    color: #f0a243;
}
#maparuta:hover::after {
    opacity: 1;
    transition: ease;
    transition-delay: .2s;
}
.ubicacion-mapa i {
    font-size: 42px;
    margin-left: 0px;
}
/* PARTNERS */
.partners .seccion-container {
    justify-content: space-evenly;
}
.partners-item {
    width: 30%;
    max-width: 200px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 15px;
}
.partners-item img {
    max-height: 90%;
}
.partners-item:first-of-type img,
.partners-item:nth-of-type(2) img,
.partners-item:nth-of-type(3) img {
    height: 70%;
}

/* FORM UNETE */
.semilleros{
    max-width: 1024px;
    padding: 2.5rem 0;
}
.semilleros-presentacion{
    max-width: 680px;
    font-family:'Lato', Arial, 'Calibri', sans-serif;
}
.semilleros-presentacion img{
    width: 100%;
    max-width: 680px;
    margin-bottom: 2.5rem;
}
.semilleros-presentacion p{
    max-width: 650px;
    font-size: 14px;
    font-weight: 100;
    line-height: 2;
    margin: auto;
    margin-bottom: 1rem;
}
.semilleros-hashtags{
    margin: 3rem 0;
}
.semilleros-hashtags h4{
    font-weight: 100;
}
.semilleros-form input::placeholder {
    color: black;
    opacity: 1;
}
.semilleros-form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: black;
    opacity: 1;
}
.semilleros-form input::-moz-placeholder { /* Firefox 19+ */
    color: black;
    opacity: 1;
}
.semilleros-form input:-ms-input-placeholder { /* IE 10+ */
    color: black;
    opacity: 1;
}
.semilleros-form input:-moz-placeholder { /* Firefox 18- */
    color: black;
    opacity: 1;
}
.semilleros-form .form-input.file {
    position: relative;
}
.semilleros-form input.formulario-file {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline;
    max-width: 50%;
    background-color: transparent;
    text-align: right !important;
    line-height: 35px;
}
.semilleros-form label.formulario-file {
    display: block;
    font-family: "Lato", sans-serif !important;
    width: 100%;
    height: 35px;
    background-color: #fff;
    border: 1px solid #c0c1c3;
    border-radius: 3px;
    padding: 0 25px;
    margin-top: 18px;
    font-size: 12px;
    line-height: 35px;
}
.semilleros-form label.formulario-file.mobile {
    display: none;
}
.semilleros-form .msj_error {
    font-size: 16px;
    letter-spacing: 0;
    color: red;
    display: none;
}
.semilleros .loader{
    position: fixed !important;
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 10px;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease 0s;
}
.semilleros .loader__contenedor {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.semilleros .loader__contenido {
    width: 150px;
    padding: 1rem;
    /* background-color: #303030; */
    display: flex;
    justify-content: center;
    border-radius: 5px;
}
.semilleros .loader__circle {
    width: 15px;
    height: 15px;
    background-color:#fff;
    border-radius: 50%;
    margin: 5px;
    animation: jump 0.7s ease-in infinite;
}
.semilleros .loader__circle:nth-of-type(2) {
    animation-delay: 0.1s;
    background-color: #f0a243;
}
.semilleros .loader__circle:nth-of-type(3) {
    animation-delay: 0.2s;
    background-color: #413127;
}
@keyframes jump {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ---------------- MEDIA QUERIES ------------------ */
@media screen and (max-width: 1199px) {
    #slider-background {
        display: none;
    }
    .puntos-banner__img {
        height: auto !important;
    }
}
@media screen and (max-width: 1024px) {
    .home-seccion {
        padding-left: 20px;
        padding-right: 20px;
    }
    /* NOSOTROS */
    .directivos,
    .equipo {
        padding-left: 20px;
        padding-right: 20px;
    }
    /* COTIZAR BANNER */
    .cotizar-banner .container {
        padding: 0 15px;
    }
    /* UBICACIÓN */
    .ubicacion-mapa p {
        letter-spacing: 0px;
    }
}
@media screen and (max-width: 960px) {
    h1,
    h2 {
        font-size: 25px !important;
    }
    /* tabs clientes */
    .tabs-clientes .tab {
        height: 40px;
        padding-bottom: 0;
    }
    .puntos-banner__texto {
        padding: 20px;
    }
    /* COTIZAR BANNER */
    .cotizar-banner {
        height: unset;
    }
    .cotizar-banner .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px;
    }
    .cotizar-banner__seccion {
        text-align: center;
        letter-spacing: -0.5px;
    }
    .cotizar-banner__seccion:first-of-type {
        max-width: 95%;
    }
    .cotizar-banner__seccion .os-btn {
        margin-top: 15px;
    }
}
@media screen and (max-width: 900px) {
    .puntos-banner {
        height: unset;
        max-height: unset;
        flex-direction: column;
    }
    .puntos-banner__img,
    .puntos-banner__texto {
        width: 100%;
    }
    .puntos-banner__img img {
        width: 100%;
        height: auto;
    }
    .puntos-banner__texto {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .puntos-banner__texto h4 {
        text-align: center;
        max-width: 600px;
    }
    /* COMPARADOR */
    .cabecera-container {
        max-width: 90%;
    }
    .cabecera-container .os-h2 {
        font-size: 30px !important;
    }
    .cabecera-container .os-h1 {
        font-size: 40px !important;
        line-height: 1;
        padding: 6px 0;
    }
}
@media screen and (max-width: 768px) {
    .os-h1,
    .os-h2 {
        font-size: 20px !important;
    }
    .os-h3 {
        font-size: 18px !important;
    }
    .os-h4 {
        font-size: 16px !important;
    }
    .os-h5 {
        font-size: 15px !important;
    }
    .os-p,
    a {
        font-size: 13px !important;
    }
    .os-btn {
        font-size: 14px !important;
    }
    .titulo-seccion {
        letter-spacing: 1.5px;
        margin-bottom: 2rem;
    }
    .seccion-container .video {
        margin-top: 2.3rem;
    }
    /* HOME */
    .webinars-banner .seccion-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .webinars-banner__img {
        width: 20%;
        max-width: 150px;
    }
    .webinars-banner__txt {
        padding-top: 2rem;
        width: 94%;
        text-align: center;
    }
    .persona-item,
    .soportes-item {
        width: 26vw;
    }
    .persona-item .persona-img,
    .soportes-item .soportes-img {
        width: 26vw;
        height: 26vw;
        border: 6px solid #f0a243;
        margin-bottom: 15px;
    }
    .persona-item h4,
    .soportes-item h4 {
        max-width: 100%;
        letter-spacing: -0.3px;
    }
    /* PYMES */
    .atributos-item:nth-of-type(1) {
        order: 2;
    }
    .atributos-item:nth-of-type(2) {
        order: 1;
    }
    .atributos-item:nth-of-type(3) {
        order: 3;
    }
    .home-seccion.soportes {
        background-color: #fff !important;
    }
    .home-seccion.ventajas {
        background-color: #f0f0f0 !important;
    }
    .ventajas .seccion-container {
        justify-content: space-around;
    }
    .ventajas-item {
        width: 44%;
        margin-bottom: 2rem;
    }
    .ventajas-item .icono {
        height: unset;
    }
    .ventajas-item .icono i {
        font-size: 37px;
    }
    .ventajas-item p {
        letter-spacing: -0.2px;
    }
    .proceso .seccion-container {
        align-items: flex-start;
        justify-content: space-between;
    }
    .proceso-item {
        width: 32.5%;
    }
    .proceso-item .icono {
        width: 23vw;
        height: 23vw;
    }
    .proceso-item h5 {
        line-height: 0.9;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }
    .clientes .seccion-container {
        justify-content: space-between !important;
    }
    .comparador-banner__img,
    .comparador-banner__texto {
        width: 100%;
    }
    .comparador-banner {
        height: 40vh;
        max-height: unset;
        font-family: "Lato", serif;
    }
    .comparador-banner__img {
        height: 60%;
        justify-content: flex-start;
    }
    .comparador-banner__texto {
        padding: 20px;
        padding-top: 5px;
    }
    .comparador-banner__texto div.text-center {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .comparador-banner__texto h4 {
        letter-spacing: 0px;
        margin-bottom: 10px;
    }
    .comparador-banner__texto br {
        display: none;
    }
    /* CLIENTES/AGENCIAS */
    .cobertura-item h2 {
        font-size: 36px !important;
    }
    .clientes-directos .plataforma-banner {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .clientes-directos .plataforma-banner .seccion-container {
        justify-content: center;
        flex-direction: row !important;
    }
    .clientes-directos .plataforma-item {
        width: 47% !important;
    }
    .clientes-directos .plataforma-item:last-of-type {
        margin-left: 15px;
    }
    .clientes-directos .plataforma-item h2 {
        font-size: 38px !important;
    }
    .bigdata-banner {
        text-align: center;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    /* AGENCIAS */
    .agencias .banner-plataforma .encabezado {
        font-size: 30px !important;
        letter-spacing: 1px;
    }
    .agencias .banner-plataforma h2 i {
        font-size: 60px !important;
    }
    .agencias .os-btn i {
        font-size: 22px !important;
    }
    .comofunc-item {
        letter-spacing: 2px;
        margin-top: 1rem;
    }
    .comofunc-item .icono {
        font-size: 46px;
    }
    /* WEBINARS */
    .webinar-item {
        width: 50%;
    }
    /* NOSOTROS */
    .circulo {
        width: 36vw;
        height: 36vw;
        max-width: 150px;
        max-height: 150px;
    }
    .directivos-item {
        padding-top: 2.5rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .directivos-info {
        max-width: 100%;
        padding-top: 20px;
    }
    .directivos-foto .os-btn__redes-linkedin {
        display: none;
    }
    .directivos-info .os-btn__redes-linkedin {
        display: inline-flex;
    }
    .directivos-info p {
        margin-top: 15px;
        line-height: 1.4;
    }
    .directivos-info p br {
        margin-bottom: 15px;
    }
    .directivos-info p br {
        margin-bottom: 15px;
    }
    .directivos-info .lista {
        font-size: 13px !important;
    }
    .equipo-item {
        width: 31%;
        margin-bottom: 2rem;
        /* justify-content: flex-start; */
    }
    .equipo-item .circulo {
        max-width: 95px;
        max-height: 95px;
        margin-bottom: 15px;
    }
    .equipo-item h4,
    .equipo-item p {
        margin: 0;
        line-height: 0.9;
        height: 26px;
        /* border: 1px solid hotpink; */
    }
    .equipo-item h4 {
        margin-bottom: 5px;
    }
    .equipo-item .os-btn__redes-linkedin {
        margin-top: 10px;
    }
    /* UBICACIÓN */
    .ubicacion .seccion-container {
        flex-direction: column;
        align-items: center;
    }
    .ubicacion .titulo-seccion {
        display: none;
    }
    .ubicacion-horarios {
        padding-right: 0;
    }
    .ubicacion-horarios .titulo,
    .ubicacion-horarios a {
        text-align: center;
    }
    .ubicacion-mapa .titulo-seccion {
        display: block;
        letter-spacing: 0px !important;
        padding: 0;
    }
    .ubicacion-mapa {
        width: 100%;
        margin-top: 20px;
    }
    .ubicacion-mapa p {
        width: 70%;
    }
    .ubicacion-mapa i {
        font-size: 35px;
    }
    /* CLIENTES */
    .clientes-item {
        width: 46%;
    }
    .clientes-item:last-of-type {
        display: none;
    }
}
@media screen and (max-width: 600px) {
    .tabs-clientes .tabs div {
        width: 33.3%;
        max-width: 300px;
    }
    .tabs-contenido{
        height: 210px;
    }
    /* CLIENTES */
    .clientes-directos .plataforma-item {
        width: 43% !important;
    }
    .clientes-directos .plataforma-item h2 {
        font-size: 30px !important;
    }
    /* COTIZAR */
    .form-input.flex.flex-between {
        flex-direction: column;
    }
    .form-input .form-input {
        max-width: 680px;
    }
    /* PARTNERS */
    .partners-item {
        width: unset;
        max-width: unset;
        height: 85px;
        margin: 5px;
        margin-bottom: 20px;
    }
    /* TESTIMONIALES */
    .testimoniales-item {
        width: 47%;
    }
    .testimoniales-foto {
        max-height: 11vw;
    }
    .testimoniales-texto {
        width: 70%;
    }
}
@media screen and (max-width: 500px) {
    .os-h1,
    .os-h2 {
        font-size: 18px !important;
        letter-spacing: -0.2px;
    }
    .os-h3 {
        font-size: 15.5px !important;
    }
    .os-h4 {
        font-size: 13px !important;
    }
    .os-h5 {
        font-size: 12px !important;
    }
    .os-p,
    a {
        font-size: 10px !important;
    }
    .os-btn {
        font-size: 13px !important;
    }
    form .error {
        top: 35px;
        font-size: 10px;
    }
    .login-options__texto{
        font-size: 10px;
    }
    .login-options__btn{
        letter-spacing: -.5px;
        font-size: 9px;
        font-weight: 300;
    }
    .clientes-directos .plataforma-item h2 {
        font-size: 23px !important;
        letter-spacing: .5px;
    }
    .carrusel .slick-prev{
        left: -20px;
    }
    .carrusel .slick-next {
        right: -20px;
    }
    /* HOME */
    .home-seccion {
        padding: 2.6rem 20px;
    }
    .webinars-banner__txt {
        letter-spacing: -.5px;
    }
    /* CLIENTES/AGENCIAS */
    .cobertura-item h2 {
        font-size: 22px !important;
        line-height: 0.9;
        margin-top: 8px;
    }
    /* AGENCIAS */
    .agencias .banner-plataforma .encabezado {
        font-size: 16px !important;
        letter-spacing: 0px;
    }
    .agencias .banner-plataforma h2 i {
        font-size: 42px !important;
        margin-right: 10px;
    }
    .comofunc-item {
        letter-spacing: 1px;
    }
    .comofunc-item .icono {
        font-size: 35px;
    }
    .conoce-item .os-btn.yellow {
        height: 30px !important;
        font-size: 10px !important;
        letter-spacing: -0.5px;
        min-width: 110px;
        padding: 0 8px !important;
    }
    /* COMPARADOR */
    .cabecera-container .os-h2 {
        font-size: 19px !important;
    }
    .cabecera-container .os-h1 {
        font-size: 25px !important;
    }
    h6 {
        font-size: 9px !important;
    }
    .comparador-tabla .tabla-contenido .concepto {
        font-size: 10px !important;
        line-height: 11px;
    }
    .comparador-tabla .tabla-contenido i {
        font-size: 24px !important;
        line-height: 11px;
    }
    .comparador-tabla .prov {
        width: 90px;
        margin-left: 20px;
    }
    /* NOSOTROS */
    .directivos-info .lista {
        font-size: 10px !important;
    }
    .testimoniales-texto p {
        font-size: 8px !important;
        letter-spacing: 0px !important;
    }
    .popup-content {
        overflow-y: scroll;
    }
    .form-input.doble input {
        width: 100%;
    }
    .form-input.doble {
        display: block;
    }
    #formRegister{
        padding-bottom: 20px;
    }
    .gracias-container .gracias-icono {
        width: 120px;
        height: 120px;
    }
    .gracias-container .gracias-titulo {
        font-size: 28px !important;
        margin: 1rem 0;
    }
    .semilleros-form label.formulario-file.mobile{
        display: block;
    }
    .semilleros-form label.formulario-file.desk{
        display: none;
    }
    .semilleros-form label.formulario-file{
        height: 60px;
    }
    .semilleros-form input.formulario-file{
        max-width: 100%;
    }
}
@media screen and (max-width: 350px) {
    .form-btn {
        width: 240px;
    }
    .login-options__texto{
        display: none;
    }
    .bigdata-banner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .bigdata-banner__texto {
        line-height: 1.3;
    }
    .clientes-directos .plataforma-item h2 {
        font-size: 18px !important;
        line-height: 1.2;
    }
    /* .semilleros-form label.formulario-file {
        bottom: unset;
        top: 2px;
    } */
}
