.soma-therapy {
    box-sizing: border-box;
    width: 100%;
    margin: auto;
    padding: 60px;
    text-align: left;
    line-height: 150%;
}

.therapy-label {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.022em;
    line-height: 150%;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #131527;
}

.therapy-content {
    display: flex;
    margin: 20px 0;
}

.therapy-title {
    font-size: 36px;
    line-height: 120%;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #131527;
    width: 50%;
    margin-top: 0;
}

.therapy-points {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.therapy-points>div {
    flex: 1 1 calc(33% - 20px);
    box-sizing: border-box;
    display: flex;
}

.therapy-points>div p {
    padding: 0.2rem;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.022em;
    color: #000000;
    margin-top: 0;
}

.therapy-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.therapy-text {
    font-size: 16px;
    color: #000000;
    line-height: 150%;
    letter-spacing: -0.022em;
    margin-bottom: 15px;
    font-weight: 500;
    width: 50%;
    margin-top: 0;
}

.therapy-proof {
    margin-top: 15px;
    margin-bottom: 0px;
    color: #000000CC;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.022em;
}

.therapy-work {
    display: flex;
    margin: 20px 0px;
}

.therapy-work-image {
    width: 40%;
    height: auto;
    margin-right: 20px;
    object-fit: cover;
}

.therapy-work-content {
    width: 60%;
}

hr {
    border-top: 1px solid #000000;
    margin: 24px 0;
}

.therapy-extras {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #000000;
}

.therapy-extras>div {
    flex: 1 1 calc(33% - 20px);
    box-sizing: border-box;
}

.therapy-extra-image {
    margin-top: 20px;
}

.therapy-extras h6 {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.019em;
    text-transform: capitalize;
    margin: 15px 0;
    color: #000000CC;
}

.therapy-extras>div>p {
    line-height: 150%;
    letter-spacing: -0.022em;
}

/* Tabs */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    /* margin-bottom: 60px; */
    /* margin-top: 60px; */
}

.tab {
    padding: 12px 16px;
    border-radius: 22px;
    background: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s ease;
    /* white-space: nowrap; */
    /* font-weight: 600; */
}

button.tab:hover {
    text-decoration: none !important;
    color: #fff;
    background-color: #0D7C68;
}

.tab.active {
    background: #0D7C68;
    border-color: #0D7C68;
    color: white;
}

/* Content */
.tab-content {
    display: none;
    animation: fade .3s ease forwards;
}

.tab-content.active {
    display: block;
}

section.soma-tabs-wrapper {
    border-bottom: 1px solid #fff;
    padding: 30px 60px;
    background-color: #F6F6F6;
    /* position: sticky;
    top: 0;
    z-index: 99; */
}

@media (max-width: 1024px) {

    .therapy-work-image,
    .therapy-work-content {
        width: 50%;
        /* margin-bottom: 20px; */

    }
}

@media (max-width: 768px) {


    /* --------Standard section----- */
    .therapy-title {
        font-size: 26px;
    }

    .therapy-work {
        flex-direction: column;
    }

    .therapy-work-image {
        width: 70%;
        margin: auto;
    }

    .therapy-work-content {
        width: 100%;
        /* margin-bottom: 20px; */
    }

    .therapy-work-content h4.therapy-label {
        margin-top: 20px !important;
    }

    .tabs {
        gap: 8px;
    }

    .tab {
        font-size: 13px;
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .therapy-content {
        flex-direction: column;
    }

    .therapy-title,
    .therapy-text {
        width: 100%;
    }

    .therapy-points {
        flex-direction: column;
    }

    .therapy-points>div p {
        padding: 0px;
        margin: 0 5px 0 5px;
    }

    .therapy-extras {
        flex-direction: column;
        gap: 10px;
    }

    .therapy-extras p {
        margin: 0px;
    }

    .therapy-work-image {
        width: 100%;
    }
    .tab {
        width: 100%;
        text-align: center;
    }
    section.soma-tabs-wrapper {
       padding: 25px;
    }
}

@media (max-width: 425px) {
    .soma-therapy {
        padding: 20px;
    }
}