.hero {
    margin-top: 98px;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
}

.hero-button-wrapper {
    position: absolute;
    bottom: 50px;
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-button-wrapper .btn-site{
    padding: 15px 35px;            
    font-weight: 600;
    font-size: 1.5rem;

    background: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 147, 151, 0.4);
    color: white;
}

.hero-button-wrapper .btn-site:hover {            
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(32, 147, 151, 0.8);            
}
@media (max-width: 768px){
    .hero-button-wrapper{
        bottom: 2px;
    }            

    .hero-button-wrapper .btn-site{
        padding: 12px 30px;            
        font-weight: 600;
        font-size: 1rem;
    }
}