﻿
.hero-background {
    height: 50vh;
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    -ms-flex-align: end;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .hero-background a {
        margin: 20px 0px;
    }

    .hero-background:after {
        content: "";
        z-index: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }

    .hero-background * {
        position: relative;
        z-index: 1
    }

    .hero-background .overlay {
        position: absolute;
        top: 0;
        left:0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0);
        z-index: 1;
    }

.hero-text {
     color: white;
}

.hero-title {
    font-weight: 900;
    font-style: normal;
    margin: 0;
    text-align: left;
    width: 100%;
    font-size: 3.5rem;
    letter-spacing: .01em;
    line-height: 1em;
}

.hero-title span {
    color: #f2ce00;
}

.hero-description {
    font-weight: 900;
    margin: 0;
    text-align: left;
    width: 50%;
    font-size: 1.2rem;
    font-weight: 600;
}


#picture-section {
    display: none;
}

@media (max-width: 992px) {
    .hero-background {
        overflow: hidden;
        min-height: 400px;
        background-position: center right;

    }

    .hero-background .overlay {
        background-color: rgba(0,0,0,0.4);
    }
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.3rem;
        width: 100%;
    }

    #picture-section {
        display: flex;
    }
}
