.about-us-section {
    position: relative;
    height: 400px;
    background-image: url('/static/assets/images/about/title.jpg');
    background-size: cover;
    background-position: center;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);


}

.about-us-section h1 {
    position: absolute;
    left: 50px;
    top: 75%;
    color: var(--text-secondary);
    font-size: 42px;
    font-weight: 600;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 10px auto;
}

@media (max-width: 480px) {
    .about-us-section h1 {
        left: 20px;
        font-size: 20px;
        line-height: 28px;
    }
}
