.hero {
    height: 40vh;
    margin-top: 100px;
}

@media (max-width: 992px) {
    .hero {
        margin-top: 60px;
    }
}

.hero {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero p {
    font-size: 3rem;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
}

.hero-content {
    max-width: 70%;
}