.aboutUsHeader {
    background-color: #3A3A3A14;
}
.aboutUsHeader h2 {
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
    line-height: 2rem;
    text-align: right;
    padding: var(--spacing-sm) 0;
}
.aboutUsContent {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 5rem;
    gap: 2rem;
    flex-direction: column;
    text-align: justify;
}

.aboutUsContent span {
    font-weight: var(--font-weight-medium);
    font-size: 1.2rem;
    line-height: 2rem;
    text-align: right;
    color: var(--base-color);
}

.aboutUsImage {
    height: 29rem;
    width: 100%;
    background-color: #F3F3F3;
    margin-top: 5rem;
}

.aboutUsSection {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}
.aboutUsSectionImage {
    background-color: #F3F3F3;
    width: 150rem;
    height: 24rem;
}
@media (max-width: 62rem) {
    .aboutUsHeader h2 {
        padding: var(--spacing-sm) var(--spacing-md);
        margin: 0;
    }
    .aboutUsContent {
        margin: 0;
        flex-direction: column;
        gap: 2rem;
        padding: var(--spacing-md) var(--spacing-md);
    }
    .aboutUsSection {
        flex-direction: column;
    }
    .desktopMode {
        display: none !important;
    }
    .mobileMode {
        display: flex !important;
    }
    .aboutUsSectionImage {
        height: 12rem;
        width: 100vw;
        position: relative;
        left: 0;
        right: 0;
        margin-left: calc(-50vw + 0px);
        margin-right: calc(-50vw + 0px);
    }
    .aboutUsImage {
        margin-top: 2rem;
    }
}
