.about-us-wrapper {
    display: flex;
    justify-content: space-between;
}

.about-us-image-wrapper {
    flex: 0 0 50%;
}

img.about-us-image {
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-med);
    flex: 0 0 42%;
}

.about-us-text-wrapper {
    background: var(--color-black);
    color: var(--color-white);
}

.about-us-text.h3 {
    width: 85%;
}

/* BG */

.about-us-section {
    position: relative;
    padding-top: 200px;
}

.about-us-section .bg-svg {
    position: absolute;
    left: 0;
    right: 0;
    top: -2px;
    z-index: -1;
}

.about-us-section .bg-svg svg {
    max-width: 100%;
}

.about-us-section .bg-svg svg path {
    fill: var(--color-black);
}


/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {

    .about-us-section {
        padding-top: 100px;
    }

}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {

    .about-us-section {
        padding-top: 40px;
    }

    .about-us-wrapper {
        gap: 20px;
        flex-direction: column;
    }

    .about-us-subtitle {
        margin-bottom: 16px;
    }
}