html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000000;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.light {
    font-weight: 300;
}
.semi-bold {
    font-weight: 600;
}
.bold {
    font-weight: 700;
}

#Cover {
    position: relative;
    display: table;
    height: 100%;
    width: 100%;
    min-height: 100%;
    background-image: url('images/hero2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

#CoverLogo {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#CoverLogo > img {
    max-width: 75%;
}

#CoverArrow {
    position: absolute;
    bottom: 70px;
    width: 100%;
    text-align: center;
}

#Intro {
    background-color: #69ACC8;
    background-image: url('images/swirls.png');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

#Intro h1 {
    font-size: 59px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

#Intro p {
    font-size: 19px;
}

#Brands {
    background-color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    color: #666666;
}

#BrandsTitle {
    color: #6e4349;
    text-transform: uppercase;
    letter-spacing: 4px;
    word-spacing: 3px;
    margin-bottom: 90px;
    font-size: 14px;
}

#Brands img {
    margin-bottom: 30px;
}

.brandText {
    line-height: 26px;
    font-size: 15px;
    margin-bottom: 40px;
}

#Brands .brandText + .brandLink {
    display: none;
}

.brandLink a, .brandLink a:focus, .brandLink a:visited, .brandLink a:hover, .brandLink a:active {
    color: #69ACC8;
    text-decoration: underline;
}

#Intermission {
    height: 470px;
    background-image: url('images/intermission.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#Contact {
    background-color: #956559;
    color: #FFFFFF;
    padding: 70px 0;
}

#Contact .row {
    display: table;
    width: 100%;
}

#Contact .row > .contactCol {
    display: table-cell;
    vertical-align: middle;
    float: none;
    text-align: center;
    padding: 15px 0;
    font-size: 15px;
}

#Contact .row > .contactCol p {
    line-height: 26px;
}

#Contact .row > .contactCol a,
#Contact .row > .contactCol a:focus,
#Contact .row > .contactCol a:hover,
#Contact .row > .contactCol a:active {
    color: #ffc9bb;
    text-decoration: underline;
}

#Contact .row > .contactCol span.semi-bold {
    font-size: 19px;
}

#Contact .row > .contactCol:nth-child(2) {
    border-left: 1px solid #b07e72;
    border-right: 1px solid #b07e72;
}

#Contact .row > .contactCol:nth-child(2) p {
    margin-top: 35px;
}

#Footer {
    background-color: #6B473E;
    color: #C59D94;
    border-top: 4px solid #ffc9bb;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    padding: 30px 0;
    letter-spacing: 2px;
}


/* MOBILE STYLES */

@media (max-width: 991px) {
    #Brands .brandText + .brandLink {
        display: block;
        margin-bottom: 40px;
    }
    
    #BrandsLinkRow {
        display: none;
    }
}

@media (max-width: 500px) {
    #Intro {
        background-image: none;
    }
    #Intro h1 {
        font-size: 30px;
    }
    #Intro p {
        font-size: 17px;
    }
    #BrandsTitle {
        margin-bottom: 70px;
    }
    
    #Intermission {
        display: none;
    }
    
    #Contact .row {
        display: block;
        width: auto;
    }
    
    #Contact .row > .contactCol {
        display: block;
    }
    
    #Contact .row > .contactCol:nth-child(1) p {
        margin-top: 35px;
    }
    
    #Contact .row > .contactCol:nth-child(2) p {
        margin-top: 0px;
    }
}
