.hero {
    position: relative;
    margin-top: 110px;
    padding: 100px 10px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero .hero-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 39px;
    font-weight: 500;
    margin: 0px;
}

@media (max-width: 767px) {
    .hero {
        padding: 70px 10px;
    }
    .hero .hero-title {
        font-size: 32px;
    }
}

[dir="ltr"] {
    .hero .hero-title {
        font-family: Syne;
    }
}
