.hero {
    height: 414px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__title {
    font-size: var(--fs-48);
    font-family: var(--quicksand);
    color: white;
    text-align: center;
    max-width: 300px;
    margin: auto;
}

.hero .breadcrumb {
    position: absolute;
    top: 20px;
    left: 20px;
}

@media (min-width:768px) {
    .hero .breadcrumb {
        left: 2.5%;
    }

    .hero {
        height: 330px;
    }
}