/* About section */
.about_container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.about_img--container {
    max-width: 50%;
}

.about_content {
    max-width: 1300px;
}

.about_text {
    text-align: left;
}

.about_img {
    width: auto;
    max-height: 640px;
    float: left;
    padding: 1rem 4rem;
}

.about_img img {
    /* margin-top: 1rem; */
    width: 100%;
    border: 1rem solid var(--accent-color);
    border-radius: 100%;
}

@media screen and (max-width: 960px) {

    .about_img--container {
        display: flex;
        justify-content: center;
        max-width: none;
        margin-bottom: 5rem;
    }

    .about_img {
        float: none;
    }

    .about_img img {
        height: 100%;
        width: auto;
        max-width: 100%;
    }

    .about_text {
        text-align: center;
    }
}