﻿/* CONTAINER */
/* --------- */
.small-hero {
    width: 100%;
    min-height: 300px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* IMAGE */
/* --------- */
.small-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* CONTENT */
/* --------- */
.small-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.small-hero__title {
    font-size: 5rem;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 1;
    margin-top: 9rem;
  	margin-left: 1rem;
  	margin-right: 1rem;
    line-height: 5rem;
}

.small-hero__description {
    font-size: 1.25rem;
    max-width: 1200px;
    margin-bottom: 1.5rem;
    z-index: 1;
    padding: 1rem;
}

.small-hero__breadcrumb {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 2rem;
    border: 1px solid #a2abbd;
    z-index: 1;
    margin-bottom: 9rem;
}

@media (max-width: 768px) {
    .small-hero__title {
        font-size: 3rem;
        line-height: 3rem;
        margin-top: 4rem;
    }
    .small-hero__description {
        font-size: 1rem;
        max-width: 600px;
    }
    .small-hero__breadcrumb {
        margin-bottom: 4rem;
    }
}

.small-hero__breadcrumb-link {
    color: var(--white-color);
    text-decoration: none;
}

.small-hero__breadcrumb-separator {
    margin: 0 0.5rem;
}
