
/**
 * Banner 2 Setup
 ********************/
 
 section.banner-2 {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--forest2);
    overflow: hidden;
    max-height: 350px;
}
    @media (max-width: 990px){
        section.banner-2 {
            flex-flow: column nowrap;
            align-items: center;
            overflow: auto;
            max-height: 100%;
        }
    }

.banner-2 .block-mustard-container {
    flex: 1 1 20%;
    justify-content: center;
    display: flex;
    padding: 35px;
}
.banner-2 .banner-body {
    flex: 1 1 50%;
    padding: 35px;
}
.banner-2 .banner-image {
    flex: 1 1 30%;
}
    @media (max-width: 990px){
        .banner-2 .block-mustard-container {
            padding-left: 8%;
            padding-right: 8%;
            margin-top: 0;
        }
        .banner-2 .banner-body {
            padding-left: 8%;
            padding-right: 8%;
        }
        .banner-2 .banner-image {
            width: 100%;
            margin-top: 25px;
        }
    }


.banner-2 .banner-img {
    background-size: cover;
    width: 100%;
    height: 250px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}


.banner-2 .block-mustard {
    font-size: var(--p-small);
    font-weight: 700;
    color: var(--forest2);
    background: var(--mustard-transparent);
    padding: 25px 35px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    border: none;
}
