.tf-tabs .tab-title-text {
    font-family: 'Josefin Sans';
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #161E2D;
    padding-left: 13px;
    border-left: 3px solid transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-left: -1px;
}

.tf-tabs .tablinks {
    cursor: pointer;
    margin-bottom: 39px;
}

.tf-tabs .tablinks:last-child {
    margin-bottom: 0;
}

.tf-tabs .tf-tabnav>ul {
    position: relative;
    border-left: 1px solid #E4E4E4;
}

.tf-tabs .tablinks.active .tab-title-text,
.tf-tabs .tablinks.set-active-tab .tab-title-text {
    border-color: var(--theme-primary-color);
}

.tf-tabs .tf-tabcontent .tf-tabcontent-inner {
    display: none;
}

.tf-tabs .tf-tabcontent .tf-tabcontent-inner.active,
.tf-tabs .tf-tabcontent .tf-tabcontent-inner.set-active-tab  {
    display: block;
}

.tf-tabs .tf-tabcontent .tf-tabcontent-inner {
    font-family: 'Josefin Sans';
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #5C6368;
}

.tf-tabs .tf-tabcontent .tf-tabcontent-inner ul {
    list-style: inside;
    padding-top: 12px;
    padding-left: 10px;
}

.tf-tabs .tf-tabcontent .tf-tabcontent-inner ul li {
color: #161E2D;
margin-bottom: -2px;
}

.tf-tabs .tf-tabcontent .tf-tabcontent-inner ul li::marker {
    font-size: 13px;
}

.tf-tabs .tf-tabcontent .tf-tabcontent-inner h1,
.tf-tabs .tf-tabcontent .tf-tabcontent-inner h2,
.tf-tabs .tf-tabcontent .tf-tabcontent-inner h3,
.tf-tabs .tf-tabcontent .tf-tabcontent-inner h4,
.tf-tabs .tf-tabcontent .tf-tabcontent-inner h5,
.tf-tabs .tf-tabcontent .tf-tabcontent-inner h6 {
    margin-bottom: 12px;
}

.tf-tabs {
    display: flex;
    column-gap: 50px;
    row-gap: 30px;
}

.tf-tabs .tf-tabnav {
    width: 40%;
    position: sticky;
    top: 150px;
    margin-bottom: auto;
}

.tf-tabs .tf-tabcontent {
    width: 60%;
}

@media (max-width: 767px) {
    .tf-tabs {
        flex-wrap: wrap;
    }
    .tf-tabs .tf-tabnav,
    .tf-tabs .tf-tabcontent {
        width: 100%;
    }

    .tf-tabs .tf-tabnav {
        position: relative;
        top: unset;
        margin-bottom: unset;
    }
}