/* SECTION ABOUT */
.about section.about {
    gap: 32px;
}

.about section.about .about-part:first-child {
    padding-bottom: 32px;
    border-bottom: var(--border-solid) rgba(var(--dark-color), 0.12);
}

.about section.about .about-part .part-header {
    height: 100%;
}

.about section.about .about-part .part-header .header-wrapper {
    position: sticky;
}

.about section.about .about-part .part-header .header-wrapper .header-title {
    position: relative;
    width: 100%;
}

.about section.about .about-part .part-header .header-wrapper .header-title span {
    position: relative;
    font-size: 0.913rem;
    color: rgba(var(--primary-color), 1);
    font-family: var(--font-playfair-display-sc-regular);
    background-color: rgba(var(--light-color), 1);
    padding-right: 8px;
}

.about section.about .about-part .part-header .header-wrapper .header-title:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    background-color: rgba(var(--primary-color), 1);
    width: 100%;
    height: 1px;
}

.about section.about .about-part .part-content .content-title {
    font-size: 2rem;
    line-height: 124%;
    font-family: var(--font-playfair-display-sc-regular);
    margin-bottom: 12px;
}

.about section.about .about-part .part-content .wrapper-description {
    gap: 8px;
}

.about section.about .about-part .part-content .content-point .card-point,
.modal .card-point {
    padding: 20px;
    border-radius: 4px;
    border: var(--border-solid) rgba(var(--dark-color), 0.12);
    background-color: rgba(var(--light-color), 1);
}

.about section.about .about-part .part-content .content-point .card-point:hover {
    border: var(--border-solid) rgba(var(--dark-color), 0.24);
}

.about section.about .about-part .part-content .content-point .card-point .point-title,
.modal .card-point .point-title {
    font-size: 0.913rem;
    font-family: var(--font-playfair-display-sc-regular);
    margin-bottom: 4px;
    line-height: 124%;
}

.about section.about .about-part .part-content .content-point .card-point .point-description,
.modal .card-point .point-description {
    font-size: 0.813rem;
    color: rgba(var(--dark-color), 0.62);
}
/* END SECTION ABOUT */

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .about section.about .about-part .part-header {
        margin-bottom: 12px;
    }

    .about section.about .about-part .part-header .header-wrapper .header-title {
        width: fit-content;
    }

    .about section.about .about-part .part-header .header-wrapper .header-title span {
        margin-left: 50px;
        padding-right: 0;
        padding-left: 12px;
        font-size: 0.875rem;
    }

    .about section.about .about-part .part-content .content-title {
        font-size: 1.75rem;
    }

    .about section.about .about-part .part-content .content-point .card-point .point-title,
    .modal .card-point .point-title {
        -webkit-line-clamp: 2;
        margin-bottom: 6px;
    }

    .about section.about .about-part .part-content .content-point .card-point .point-description,
    .modal .card-point .point-description {
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 767.98px) {
    .about section.about .about-part .part-content .content-title {
        font-size: 1.5rem;
    }

    .about section.about .about-part .part-content .content-point {
        margin-top: 8px;
    }
}
/* END RESPONSIVE */
