.about {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.about-title {
    font-size: 48px;
    font-weight: 600;
    color: black;
}

.about-content-text {
    margin-top: 1em;
    padding: 1em;
    font-size: 22px;
    text-align: center;
    padding-top: 1em;
    line-height: 24px;
}

.about-list {
    list-style: none;
    padding: 1em;
    display: flex;
    font-size: 14px;
}

.about-description {
    width: 100vw;
    text-align: justify;
}

/* RIGHT AREA */

.img-about {
    width: 450px;
    height: 337px;
    border-radius: 10px 100px / 120px;
    z-index: 2;
}

.img-about-border-copy {
    position: absolute;
    margin-top: -60px;
    margin-right: -50px;
    width: 450px;
    height: 337px;
    border: 6px solid var(--primary-gold);
    border-radius: 10px 100px / 120px;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .about {
        flex-direction: column-reverse;
        height: 100%;
        margin-top: 5em;
    }

    .about-content {
        width: 100%;
    }

    .img-about {
        width: 300px;
        height: 225px;
    }

    .img-about-border-copy {
        width: 300px;
        height: 225px;
        margin-top: -50px;
        margin-right: -20px;
    }

}