.therapeutic-section {
    position: relative;
    padding-bottom: 80px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.row.reverse {
    flex-direction: row-reverse;
}

.col {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.therapeutic-section .row {
    margin-bottom: 14px;
}

.therapeutic-image-wrap {
    position: relative;
    display: inline-block;
    padding-right: 28%;
}

.therapeutic-main-img {
    width: 100%;
    border-radius: 30px;
    display: block;
    z-index: 2;
    position: relative;
}

.therapeutic-small-img {
    position: absolute;
    top: 37%;
    right: 0;
    width: 73.7%;
    z-index: 1;
    object-fit: cover;
    border-radius: 30px;
    background-color: #dddddd;
}

.row.reverse .therapeutic-small-img {
    top: 0;
    right: 0;
}

.row.reverse .therapeutic-image-wrap {
    padding-top: 29%;
    padding-right: 17%;
    padding-bottom: 0;
}

.therapeutic-section .approach-list ul li {
    font-family: 'Montserrat';
    font-weight: 700;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0 15px;
    padding-left: 0;
    margin: 0 !important;
}

.therapeutic-section .approach-list ul li::before {
    display: none;
}

.therapeutic-section .approach-list ul {
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.therapeutic-section .approach-icon img {
    display: inline-flex;
}

.therapeutic-section .approach-list ul li .approach-icon {
    width: 60px;
    display: inline-flex;
}

.therapeutic-section .approach-list ul li .approach-list-text {
    width: calc(100% - 75px);
}

.therapeutic-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.therapeutic-section ul li {
    position: relative;
    padding-left: 23px;
}

.therapeutic-section ul li+li {
    margin-top: 20px;
}

.therapeutic-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    color: #8dc63f;
    background-image: url("../../assets/images/list.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

.leaf-wrapper {
    display: none;
}

@media (min-width: 1024px) {
    .therapeutic-section.show-leaf .leaf-wrapper {
        position: absolute;
        left: 0;
        bottom: 15px;
        display: block;
        z-index: -1;
    }
}

@media (max-width: 1024px) {
    .therapeutic-section .approach-list ul {
        gap: 10px;
    }
    .therapeutic-section .approach-list ul li .approach-icon {
        width: 50px;
    }
    .approach-icon img {
        width: 50px;
        height: 50px;
    }
    .therapeutic-section .approach-list ul li {
        gap: 0 8px;
    }
    .therapeutic-section .approach-list ul li .approach-list-text {
        width: calc(100% - 55px);
    }
    .therapeutic-section .approach-list ul li {
        line-height: 18px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .therapeutic-section {
        padding-bottom: 60px;
    }
    .therapeutic-image-wrap {
        text-align: center;
    }
    .therapeutic-main-img,
    .therapeutic-small-img {
        border-radius: 15px;
    }
    .therapeutic-section .approach-icon img {
        width: 40px;
        height: 40px;
    }
    .therapeutic-section .approach-list ul li .approach-icon {
        width: 40px;
    }
}

@media (max-width: 767px) {
    .row,
    .row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .therapeutic-section {
        padding-bottom: 40px;
    }
    .col {
        gap: 10px;
    }
    .therapeutic-main-img,
    .therapeutic-small-img {
        border-radius: 10px;
    }
    .therapeutic-section ul li+li {
        margin-top: 10px;
    }
    .therapeutic-section ul li {
        padding-left: 18px;
    }
    .therapeutic-section ul li::before {
        width: 12px;
        height: 12px;
    }
    .therapeutic-section ul li {
        padding-left: 16px;
    }
}

@media (max-width: 480px) {
    .therapeutic-section .approach-list ul {
        grid-template-columns: 1fr;
    }
}