.hero_small {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero_small_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero_small_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero_small_container {
    position: relative;
    z-index: 3;
    color: white;
    text-align: left;
}

.hero_small_container h1 {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero_small_container h2 {
    font-size: 12px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}


@media (max-width: 768px) {
    .hero_small {
        min-height: 300px;
    }
    .hero_small_container h1 {
      margin-top: 30px;
    }
}

