.brand22.hero22 h1 {
    margin-bottom: 0;
    font-size: var(--fs-xxl);
    line-height: var(--lh-xxl);
}
.brand22.mk-interior h3 {
    margin-bottom: var(--espacio-sm);
}
.brand22.cta22 h3,
.brand22.cta22.darkbg h4{
    font-size: var(--fs-xxl);
    line-height: var(--lh-xxl);
    font-weight: var(--fw-medium);
}



.mk-interior .vc_column-inner .vc_column-inner > div,
.mk-interior .vc_column-inner .vc_column-inner > div > div,
.mk-interior .vc_column-inner .vc_column-inner > div > div > div {
    height: 100%;
}
.mk-interior img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}



.bloque-info {
    --padding-more-info: var(--espacio-xxxs);
    --size-more-info: calc(var(--lh-md) + var(--padding-more-info) * 2);
}
.bloque-info .last-paragraph-no-margin {
    width: 100%;
    background: var(--c-blanco);
    color: var(--c-azul);
    padding: var(--espacio-xs);
    position: relative;
    min-height: 14ch;
    display: flex;
    align-items: center;
}
.bloque-info .last-paragraph-no-margin::before {
    content: "+ Información";
    display: block;
    position: absolute;
    left: calc(var(--size-more-info) * -1);
    padding-block: var(--padding-more-info);
    bottom: 0;
    writing-mode: vertical-lr;
    background: var(--c-amarillo);
    color: var(--c-blanco);
    height: 100%;
    text-align: center;
    width: var(--size-more-info);
    font-weight: var(--fw-semibold);
    transform: rotate(180deg);
}
.bloque-info table {
    margin: 0;
}
.bloque-info tr > td {
    font-weight: var(--fw-medium);
    padding: var(--espacio-xxs);
    border-bottom: 0 none;
    position: relative;
    color: var(--c-azul);
    vertical-align: top;
}
.bloque-info tr > td:first-child {
    border-right: 2px solid var(--c-amarillo);
    font-weight: var(--fw-semibold);
    width: calc(14ch + var(--espacio-xs) * 2);
}
.brand22.bloque-info h4 {
    font-size: var(--fs-xl);
    line-height: var(--lh-xl);
    font-weight: var(--fw-semibold);
    margin-block: var(--espacio-xs);
}
.brand22.bloque-info p {
    font-size: var(--fs-xl);
    line-height: var(--lh-xl);
    font-weight: var(--fw-regular);
}




.brand22 .iconos-caracteristicas p {
    text-align: center;
    font-size: var(--fs-sm);
    line-height: var(--lh-sm);
    font-weight: var(--fw-regular);
}
.brand22 .iconos-caracteristicas img {
    max-width: 7rem;
    margin-bottom: 2rem;
    transition: transform 0.5s, filter 0.5s;
}
.brand22 .iconos-caracteristicas .wpb_wrapper:hover figure {
    transform: scale(1.25);
}
/*.brand22 .iconos-caracteristicas p:first-child {*/
/*    font-size:var(--fs-lg);*/
/*    line-height:var(--lh-lg);*/
/*    padding-bottom: var(--espacio-xs);*/
/*}*/



.collapsable {
    padding-bottom: var(--espacio-sm);
    position: relative;
}
.collapsable-title:before {
    content: "";
    position: absolute;
    left: -3rem;
    top: 0.6rem;
    height: var(--fs-xl);
    width: var(--fs-xl);
    background: url(/wp-content/uploads/2022/03/techie225.png) no-repeat center center;
    background-size: contain;
    transition: transform 0.5s;
}
.collapsable-title:hover:before {
    transform: scale(1.2);
}
.collapsable.opened .collapsable-title:before {
    transform: rotate(90deg);
}
.collapsable-title h3 {
    font-weight: var(--fw-semibold);
}
.collapsable-title h3:hover {
    cursor: pointer;
    color: var(--c-amarillo);
    /*text-decoration: underline;*/
}
.collapsable-title {
    padding-bottom: var(--espacio-xxs);
}
.collapsable-content a.btn22 {
    margin-block: var(--espacio-xs);
}
@media(max-width:768px) {
    .collapsable-title:before {
        left: -2rem;
    }
}
.collapsable-list .last-paragraph-no-margin p:last-of-type {
    margin-bottom: var(--espacio-xs);
}
.collapsable-content {
    transition: height 0.5s;
    overflow: hidden;
    height: auto;
}
.collapsable-content .wpb_wrapper {
    padding-block: var(--espacio-xs);
}
.collapsable-content h6 {
    margin: var(--espacio-sm) 0 var(--espacio-xs) 0;
}



/* slider */

.nosSlider {
    display: grid;
    grid-template-areas:
        "tabs . title"
        "tabs . text"
;
    grid-template-columns: 3fr calc(var(--espacio-md)* 2) 5fr;
    grid-template-rows: 0 auto;
}
@media screen and (max-width: 767px) {
    .nosSlider {
        grid-template-areas:
            "tabs"
            "title"
            "text"
    ;
        grid-template-columns: 1fr;
        grid-template-rows: unset;
    }
}
.nosSlider-title {
    grid-area: none;
    opacity: 1;
    transition: opacity 0.3s;
    line-height: var(--lh-xxxl);
    font-size: var(--fs-xxxl);
    padding-bottom: var(--espacio-sm);
}
.nosSlider-text::after {
    content: " ";
    display: block;
    border-bottom: 3px solid var(--c-azul);
    width: 50%;
    position: relative;
    bottom: -3rem;
}
.nosSlider-title h5 {
    font-size: var(--fs-xxxl);
    line-height: var(--lh-xxxl);
    display: inline;
    text-transform: uppercase;
}
.nosSlider-title img {
    display: none;
}
.nosSlider-tabs {
    grid-area: tabs;
    /*margin-bottom: var(--espacio-sm);*/
}
.nosSlider-text {
    grid-area: text;
    opacity: 1;
    transition: opacity 0.3s;
    position: relative;
    padding-top: var(--espacio-xxs);
}
.nosSlider-text p {
    font-size: var(--fs-md);
    line-height: var(--lh-md);
}
.nosSlider-text:before {
    content: "";
    display: block;
    position: absolute;
    width: var(--espacio-md);
    height: var(--espacio-md);
    left: calc(var(--espacio-md) * -1.3);
    top: 9px;
    background: url(https://tecnofor.es/wp-content/uploads/2022/03/techie225.png) no-repeat center center;
    background-size: contain;
}
.nosSlider .fadeOut {
    opacity: 0;
}
.nosSlider-tabs h3 {
    font-size: var(--fs-md);
    line-height: var(--lh-md);
}
.nosSlider-tabs .nosSlider-tab h3 a {
    color: var(--c-blanco);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    text-transform: uppercase;
}
.nosSlider-tabs .nosSlider-tab h3 a:hover,
.nosSlider-tabs .nosSlider-tab h3 a.active{
    color: var(--c-amarillo);
    text-decoration: underline;
}
.nosSlider-tab {
    padding-block: var(--espacio-xxs);
}



section.brand22.whitebg,
section.brand22 .whitebg {
    background: var(--c-blanco);
}
.nosSlider-section .whitebg {
    padding: var(--espacio-sm);
}