/*? about start */
.about-section {
    display: flex;
    justify-content: center;
    gap: 70px;
    padding: 50px 0px;
}
.about-section .about-image {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 50%;
    height: auto;
}

.about-section .about-image img {
    height: 83%;
}

.about-container {
    width: 100%;
    max-width: 850px;
}

.about-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    height: 100%;
    width: 100%;
}

.about-title .about-subtitle {
    font-size: 33px;
    color: #1e88c9;
    margin-bottom: 10px;
}

.about-title .about-main-title {
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 2px;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
}

.about-description .description-text {
    letter-spacing: 1px;
    line-height: 28px;
}

.about-description .description-text:last-child {
    margin-bottom: 30px;
}

.about-therapies {
    display: flex;
    gap: 15px;
}

.about-therapies .therapy-item,
.about-therapies .therapy-item-alt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 10px 12px 20px;
    background-color: #f4ffe2;
    width: 220px;
    text-decoration: none;
    color: black;
    border: 1px solid #88bd50;
}

.about-therapies .therapy-item-alt {
    background-color: #ffe8d3;
    border: 1px solid #e67206;
}

.about-therapies .therapy-item:hover {
    background-color: #eef5da;
}

.about-therapies .therapy-item-alt:hover {
    background-color: #f8d6b7;
}

.about-therapies .therapy-item p,
.about-therapies .therapy-item-alt p {
    padding-top: 8px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

@media (max-width:1200px) {
    .about-title .about-subtitle {
        font-size: 30px;
    }

    .about-title .about-main-title {
        font-size: 35px;
    }

    .about-description {
        width: 100%;
    }

    .about-description .description-text {
        line-height: 24px;
    }

    .about-therapies {
        gap: 15px;
    }

    .about-therapies .therapy-item,
    .about-therapies .therapy-item-alt {
        padding: 10px 8px 10px 16px;
        width: 200px;
    }

    .about-therapies .therapy-item p,
    .about-therapies .therapy-item-alt p {
        padding-top: 8px;
        font-size: 16px;
        line-height: 30px;
        font-weight: 500;
    }
}

@media (max-width:1080px) {
    .about-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .about-section .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50%;
        width: auto;
    }

    .about-section .about-image img {
        display: block;
        margin: 0px;
        height: 400px;
    }

    .about-container {
        height: auto;
        width: 100%;
    }

    .about-content {
        display: flex;
    }

    .about-title {
        display: flex;
        flex-direction: column;
        align-items: start;
        margin-left: 10px;
    }

    .about-title .about-subtitle {
        font-size: 25px;
    }

    .about-title .about-main-title {
        font-size: 30px;
    }

    .about-description {
        width: 90%;
        margin-left: 10px;
        text-align: start;
    }

    .about-description .description-text {
        line-height: 24px;
    }

    .about-therapies {
        gap: 10px;
    }

    .about-therapies .therapy-item,
    .about-therapies .therapy-item-alt {
        padding: 9px 7px 9px 15px;
        width: 200px;
    }

    .about-therapies .therapy-item p,
    .about-therapies .therapy-item-alt p {
        padding-top: 8px;
        font-size: 16px;
        line-height: 30px;
        font-weight: 500;
    }
}

@media (max-width:600px) {
    .about-section .about-image {
        height: 45%;
    }

    .about-section .about-image img {
        display: block;
        margin: 0px;
        height: 350px;
    }
}

@media (max-width:500px) {
    .about-section {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .about-section .about-image {
        height: 35%;
    }

    .about-section .about-image img {
        display: block;
        height: 300px;
    }

    .about-title .about-subtitle {
        font-size: 20px;
    }

    .about-title .about-main-title {
        font-size: 25px;
    }

    .about-description {
        width: 90%;
    }

    .about-description .description-text {
        font-size: 14px;
    }

    .about-therapies {
        display: flex;
        width: 95%;
        justify-content: space-around;
    }

    .about-therapies .therapy-item,
    .about-therapies .therapy-item-alt {
        padding: 7px 0px 7px 13px;
        width: 140px;
    }

    .about-therapies .therapy-item h2,
    .about-therapies .therapy-item-alt h2 {
        font-size: 16px;
    }

    .about-therapies .therapy-item p,
    .about-therapies .therapy-item-alt p {
        padding-top: 5px;
        font-size: 13px;
        line-height: 16px;
        font-weight: 500;
    }
}
/*? about end */