section.about {
    width: 1200px;
    justify-self: center;
}

.about-wrapper {
    display: flex;
    background: #E6C3A3;
    background: linear-gradient(270deg, rgba(230, 195, 163, 1) 0%, rgba(30, 66, 64, 1) 100%);
    border-radius: 20px;
    height: 500px;
    position: relative;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 0 50px;
    gap: 40px;
}

.about-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    padding: 2px;
    background: white;

}

.about-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    background-position: top;
    object-position: top;
}

.about-box {
    width: 60%;
    color: white;
}

.about-box h2 {
    margin: 0;
}

.about-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8em;
    margin: 10px 0;
}

@media(max-width: 1024px) {
    section.about {
        width: 100%;
    }

    .about-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
        padding: 20px;
        height: 600px;
    }

    .about-image {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        padding: 2px;
        background: white;
    }

    .about-image img {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        background-position: top;
        object-position: top;
    }

    .about-box {
        width: 100%;
    }

    .about-box p {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.8em;
        margin: 10px 0;
    }
}