.block-text-with-sidebar .title {
    position: relative;
    text-align: center;
    margin-bottom: 5.714rem;
}
.block-text-with-sidebar .title:after {
    display: block;
    content: '';
    height: 1px;
    width: 8.571rem;
    margin: 1.071rem auto 0;
    position: relative;
    background: var(--color-primary);
}
.block-text-with-sidebar .title > * {
    font-size: 2.571rem;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}
.block-text-with-sidebar strong {
    color: inherit;
}
.block-text-with-sidebar h5, .block-text-with-sidebar .h5 {
    color: var(--color-secondary);
}

.block-text-with-sidebar .text-sidebar-wrapper {
    display: flex;
}

.block-text-with-sidebar .text-sidebar-wrapper .text-sidebar {
    width: 25%;
    flex-shrink: 0;
    margin-right: 2.143rem;
}

/* Responsive */
@media only screen and (max-width: 767px) {
    .block-text-with-sidebar .text-sidebar-wrapper {
        flex-direction: column;
        gap: 1.429rem;
    }
    .block-text-with-sidebar .text-sidebar-wrapper .text-sidebar {
        width: 100%;
        margin-right: 0;
    }
}