.hero{
    width: 100%;
    height: 50vh;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.hero-overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.hero-overlay h1{
    font-size: 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-overlay h1::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    display: block;
    width: 100%;
    height: 4px;
    background-color: orange;
    transform: scaleX(.4);
    z-index: -1;
}

article ul li{
    margin-bottom: 10px;
    line-height: 1.45;
}

footer ul li{
    margin-bottom: unset;
    line-height: unset;
}

@media(min-width: 768px){
    .hero-overlay h1{font-size: 50px;}

}
