.section-troncal-sip [data-tab-content3] {
    display: none;
}

.section-troncal-sip .active[data-tab-content3] {
    display: block;
}



.section-troncal-sip .tabs {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
    width: 50%;
    margin: 30px auto;
    box-shadow: none;

}

@media (max-width:768px) {
    .section-troncal-sip .tabs {
        width: 100%;
        margin: 0 auto;
    }
}


.section-troncal-sip .tab {
    cursor: pointer;
    padding: 8px 10px;
    background-color: #fff;
    border: 1px solid #019cf3;
    position: relative;
}

@media (max-width:768px) {
    .section-troncal-sip .tab {

        padding: 3px 0px;

    }
}

.section-troncal-sip .tab.active {
    background-color: #019cf3;
    color: #fff;
}



.section-troncal-sip .tab-content2 {
    margin-left: 20px;
    margin-right: 20px;
}

.section-troncal-sip .tab-content2 h3 {
    font-size: 22px;
    color: #454748;
    font-weight: bold;
    text-align: center;
}
@media (max-width:768px){
    .section-troncal-sip .tab-content2 h3 {
        margin-top: 20px;
        font-size: 20px;
    }
  
}
.section-troncal-sip .tab-content2 p {
    font-size: 22px;
    color: #454748;
    text-align: center;
    line-height: 25px;
}
@media (max-width:768px){
    .section-troncal-sip .tab-content2 p {
        font-size: 15px;
    }
}

.section-troncal-sip .tab.active::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 13px 0 13px;
    border-color: #019cf3 transparent transparent transparent;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: -13px;
    left: 0;
}
