.hortabs_block_content {
    display: flex;
    gap: 20px; /* Margen entre los dos bloques */
}

.hortabs_block_tabs {
    flex: 0 0 250px; /* Ajusta este valor al ancho deseado para los botones */
    display: flex;
    flex-direction: column;
}

.hortabs_block_tabs .hortabs_tab {
    margin-bottom: 10px; /* Espacio entre los botones */
    background-color: #f8f8f8; /* Color de fondo de los botones */
    border: 1px solid #DADADA;
    cursor: pointer;    
    border-radius: 5px;
    width: 95%;
    min-height: 40px;
    /*padding: 10px 0px;*/

    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #000;

    display: flex;
    justify-content: center;
    align-items: center;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.hortabs_block_tabs .hortabs_tab.active {
    width: 100%;
    background-color: #0fb4d4; /* Color de fondo de los botones */
    background-size: cover;
    border: 1px solid #FFF;
    color: #FFF;
}

.hortabs_block_contents {
    flex: 1; /* El contenido ocupará el resto del espacio disponible */
}
.hortabs_cnt {
    display: none; /* Por defecto, el contenido está oculto */    
    background: #F8F8F8;
    padding: 40px;
    border-radius: 10px;

    color: #000;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

}
.hortabs_cnt.active {
    display: block; /* Solo muestra el contenido cuando tiene la clase active */
}
.hortabs_cnt_title {
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
    color: #0f3780;
    margin-bottom:30px
}
.hortabs_cnt_body_text, 
.hortabs_cnt_intro {
    line-height: 20.8;
    margin-bottom: 40px;
}
.hortabs_cnt_body img {
    max-width: 50%;
    margin-right: 30px;
    margin-bottom: 30px;
}
.hortabs_lnk {
    margin-top: 20px;
}
.hortabs_lnk a {
    display: inline-block;
    background: #F26E1E;
    border: 1px solid #F26E1E;
    padding: 0px 10px;
    color: #FFF;
    border-radius: 5px;
    font-weight: 400;
    line-height: 43px;
    text-align: left;
}
.hortabs_lnk a:hover {
    background: #FFF;
    border: 1px solid #F26E1E;
    color: #F26E1E;    
}
@media(max-width:992px) {
    .hortabs_block_content {
        display: inline-block;
    }
    .hortabs_block_tabs .hortabs_tab {
        margin-bottom: 0px;
        width: 100%;
    }
    .hortabs_cnt_body img {
        max-width: 100%;
        height: auto;
    }
}