.hero-image {
    height: 42rem;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1;
}

.overlay-hero {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /*background: rgba(0, 0, 0, 0.65);*/
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.overlay-hero h1 {
    font-size: 72px;
    letter-spacing: 0px;
    margin: 0 0 5px;
    font-weight:100;
    font-family: bodonii;
}

.overlay-hero p {
    margin: 0;
    font-size: 28px;
}

.hero-text{
    position: absolute;
    top: -7rem;
    left: 2%;
}

@media(max-width: 992px){
    .hero-text {
        top: -11rem;
    }

    .hero-image {
        height: 40rem;
    }
}

@media(max-width: 768px){
    .hero-image {
        height: 30rem;
    }

    .hero-text {
        top: -9rem;
    }

    .overlay-hero h1 {
        font-size: 54px;
    }
}

@media (max-width: 490px){
    .overlay-hero h1 {
        font-size: 54px;
    }
}