.section-sol-voz {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-sol-voz .br-sol-voz {
    display: block;
}

@media (max-width:768px) {
    .section-sol-voz .br-sol-voz {
        display: none;
    }
}

.section-sol-voz .title {
    color: #0b2739;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
}

@media (max-width:768px) {
    .section-sol-voz .title {
        font-size: 16px;
        margin: 0 17%;
    }
}


.section-sol-voz .descript {
    color: #454748;
    font-weight: 400;
    text-align: center;
    font-size: 22px;
    margin-bottom: 50px;
}

@media (max-width:768px) {
    .section-sol-voz .descript {
        margin: 20px 5%;
        font-size: 14px;
        line-height: 18px;
    }
}

[data-tab-content] {
    display: none;
}

.section-sol-voz .active[data-tab-content] {
    display: block;
}


.section-sol-voz .tabs {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    margin: 0;
    padding: 12px;
    border-radius: 52px;
    box-shadow: 0px 0px 9px 1px rgb(0 0 0 / 20%);
}

@media (max-width:768px) {
    .section-sol-voz .tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        box-shadow: none;
        border-radius: 0;

    }
}

.section-sol-voz .tab {
    cursor: pointer;
    border-radius: 25px;
    padding: 5px 30px;
    color: #0b2739;
    background-color: #f5f5f5;
    font-weight: bold;
    text-align: center;
    line-height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

@media (max-width:768px) {
    .section-sol-voz .tab {
        font-size: 10px;
        padding: 5px 0;
        line-height: 12px;
        background-color: #fff;
        border: 1px solid #0b2739;
    }
}

.section-sol-voz .tab.active {
    background-color: #0b2739;
    color: #fff;
}



.section-sol-voz .tab-content {
    margin-left: 20px;
    margin-right: 20px;
}