.about-us-wall {
    width: 90%;
    margin: 0px auto;
    min-height: 400px;
    border: 1px solid var(--border-color-first);
    box-shadow: var(--box-shadow-first);
    border-radius: var(--border-radius-first);
    -webkit-border-radius: var(--border-radius-first);
    -moz-border-radius: var(--border-radius-first);
    -ms-border-radius: var(--border-radius-first);
    -o-border-radius: var(--border-radius-first);
    padding: 30px 10px;
}

.about-us-wall h1 {
    text-transform: uppercase;
    text-align: center;
    font-size: 36px;
    font-family: "Shatrvan";
}

.about-us-wall p {
    margin-top: 20px;
}

.about-us-photo {
    display: flex;
    justify-content: center;
    margin: 30px auto;
    width: 100%;
}

.about-us-photo img,
.about-us-photo video {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius-first);
    -webkit-border-radius: var(--border-radius-first);
    -moz-border-radius: var(--border-radius-first);
    -ms-border-radius: var(--border-radius-first);
    -o-border-radius: var(--border-radius-first);
    display: block;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .about-us-photo img,
    .about-us-photo video {
        max-width: 100%;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }
}