* {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
}

body {
    width: 100%;
    overflow-x: hidden;
    background-color: #f2f2f2;
}

.wrapper {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
}

.flexRow {
    display: flex;
    flex-flow: row nowrap;
}

.rightMost { margin-left: auto; }

header {
    padding: 10px 0;
    background-color: #d14200;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    -webkit-box-shadow: 0 2px 3px 0 #878787;
    box-shadow: 0 2px 3px 0 #878787;
}

a#menu { display: none; }

header div.flexRow { align-items: center; }

header a#MBI {
    text-decoration: none;
    font-size: 38px;
    font-weight: bold;
    font-family: 'Quicksand', sans-serif;
    color: #fff;
}

header a#MBI span {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1d9dd8;
}

header nav a {
    font-size: 18px;
    margin-left: 50px;
    text-decoration: none;
    color: #fff;
    transition: 0.2s all linear;
    text-transform: uppercase;
}

header nav a:hover { color: #1d9dd8; }

header nav a:first-child { margin-left: 0; }

section#home {
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/banner.jpg');
}

section#home.flexRow {
    align-items: center;
    justify-content: center;
}

section#home aside {
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    color: #ffffff;
    text-align: center;
}

section#home aside h1 {
    font-weight: normal;
    font-size: 35px;
    font-family: 'Quicksand', sans-serif;
}

section#home aside h2 {
    font-size: 18px;
    margin: 10px 0;
}

section#home aside a {
    display: inline-block;
    background-color: #d14200;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
    padding: 8px 20px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    transition: 0.2s all linear;
}

section#home aside a:hover { background-color: #1d9dd8; }

section#products {
    padding: 80px 0;
    background-color: #ffffff;
}

section#products h2 {
    font-weight: normal;
    font-size: 40px;
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

section#products p { font-size: 16px; line-height: 28px; }

section#products div.flexRow { margin-top: 30px; }

section#products div.flexRow aside {
    width: calc(100% / 3);
    margin: 20px;
    background-color: #ffffff;
    text-align: center;
    -webkit-box-shadow: 0 2px 3px 0 #B0B0B0;
    box-shadow: 0 2px 3px 0 #B0B0B0;
}

section#products div.flexRow aside div.proImg {
    width: 100%;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

section#products div.flexRow aside h3 {
    padding: 10px 0;
    color: #fff;
    background-color: #d14200;
    letter-spacing: 3px;
    text-transform: uppercase;
}

section#values {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/mbi-value.jpeg');
}

section#values article,
section#values aside {
    min-height: 550px;
    width: 50%;
}

section#values article { background-color: rgba(29, 157, 216, 0.8) }

section#values article,
section#contact address {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

section#values article div.inner,
section#contact address div.inner { padding: 30px 50px; }

section#values article h2,
section#values article h2 span,
section#contact address h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
    color: #ffffff;
}

section#values article h2 span {
    color: #d14200;
}

section#values article p,
section#contact address p {
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
}

section#values aside {
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/mbi-value.jpeg'); */
}

section#contact address,
section#contact aside {
    width: 50%;
    min-height: 350px;
    background-color: #fff;
}

section#contact address { font-style: normal }

section#contact address h2,
section#contact address p { color: #282828; }

section#contact address h4 {
    margin-top: 30px;
    font-size: 20px;
    color: #d14200;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
    width: 95%;
    padding: 5px 8px;
    font-size: 15px;
    margin: 10px 0;
    border: #ccc solid thin;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

textarea {
    resize: vertical;
    height: 80px;
}

button[type=submit] {
    background-color: #d14200;
    padding: 5px 30px;
    border: none;
    font-size: 15px;
    color: #ffffff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    cursor: pointer;
}

section#contact aside {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/contact-us.jpeg');
}

footer {
    padding: 20px 0;
    font-size: 12px;
    color: #686868;
}

footer nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #d14200;
    font-size: 14px;
    transition: 0.2s all linear;
}

footer nav a:first-child { margin-left: 0; }

footer nav a:hover { color: #696969; }

@media screen
    and (min-width: 300px)
    and (max-width: 850px) {
        section#products div.flexRow { flex-flow: row wrap; }

        section#products div.flexRow aside { width: 48%; }

        section#products div.flexRow aside:first-child { margin-left: 0; }

        section#products div.flexRow aside:nth-child(2) { margin-right: 0; margin-left: auto; }

        section#products div.flexRow aside:last-child { width: 100%; margin: 20px 0; }
}


@media screen
   and (min-width: 300px)
   and (max-width: 750px) {

       a#menu {
           display: block;
           cursor: pointer;
           width: 30px;
           height: 30px;
           background-position: center;
           background-repeat: no-repeat;
           background-size: cover;
           background-image: url('../images/menu.svg');
       }

       header nav {
           display: none;
           position: absolute;
           left: 0;
           right: 0;
           top: 55px;
           background-color: #d14200;
           transition: 0.2s all linear;
       }

       header nav.active { display: block; }

       header nav a {
           display: inline-block;
           width: 100%;
           margin: 2px 0;
           padding: 8px 0;
           text-indent: 20px;
           border-bottom: #efefef solid thin;
       }

       section#home aside { padding: 20px; }

       section#home aside h1 { font-size: 30px; }

       section#home aside h2 { font-size: 16px; }

       section#values.flexRow,
       section#contact.flexRow {
           flex-flow: column nowrap;
       }

        section#values article,
        section#values aside,
        section#contact address,
        section#contact aside {
            width: 100%;
        }

}

@media screen
   and (min-width: 300px)
   and (max-width: 550px) {

       section#home { background-attachment: scroll; }

       section#home aside h1 { font-size: 25px; }
       section#home aside h2 { font-size: 15px; }

       section#products div.flexRow aside { width: 100%; margin: 20px 0; }

       section#values article div.inner,
        section#contact address div.inner { padding: 20px 20px; }

        footer { text-align: center; }

        footer div.flexRow { flex-flow: column nowrap; }

        footer div.flexRow nav.rightMost { margin-left: 0; margin-top: 10px; }
}

@media screen
   and (min-width: 300px)
   and (max-width: 480px) {
       header a#MBI {
        font-size: 28px;
        }
}