/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

img {
    max-width: 100% !important;
    height: auto !important;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* ==========================================================================
CUSTOM
========================================================================== */

.hvr-grow {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


/*------------------------------------*\
LAYOUT
\*------------------------------------*/

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.space { padding: 1em; }

.more-space { padding: 1.5em; }

.col {
    float: left;
    position: relative;
    word-wrap: break-word;
    box-sizing: border-box !important;
    margin-right: 4%;
}

.col.four-fifth { width: 79.2%; }

.col.three-quarter { width: 74%; }

.col.two-third { width: 65.334%; }

.col.half { width: 47%; }

.col.third { width: 30.666%; }

.col.quarter { width: 22%; }

.col.fifth { width: 16.8%; }

.col.last {
    float: right;
    clear: right;
    margin-right: 0px;
}

/*------------------------------------*\
HEADER
\*------------------------------------*/

.site-header { text-align: center; }

.site-header .top { background: #1d285a; }

.site-header .top .serving {
    font-family: 'Schoolbell', cursive;
    color: #fff;
    font-size: 1.625em;
    line-height: 1;
}

.site-header .main-logo { margin-bottom: 1em; }

.site-header .mid span.products {
    font-family: 'Schoolbell', cursive;
    color: #1d285a;
    font-size: 2.25em;
    line-height: 1.5;
    display: inline-block;
    margin-bottom: .5em;
}

.site-header .mid span.products:nth-of-type(1) {
    background: url("../img/triangle.png") no-repeat center right;
    padding-right: 50px;
}

.site-header .mid span.products:nth-of-type(2) {
    background: url("../img/circle.png") no-repeat center right;
    padding: 0 50px 0 10px;
}

.site-header .mid span.products:nth-of-type(3) { padding-left: 15px; }

.site-header .rent {
    font-family: 'Schoolbell', cursive;
    font-size: 3.75em;
    line-height: 1;
    color: #db2328;
    margin-bottom: .4em;
}

.site-header .phone {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.875em;
    line-height: 1;
    color: #1d285a;
    font-weight: 700;
    display: inline-block;
    margin: 0 1em;
}

.site-header .phone small {
    font-size: .7em;
    font-weight: 400;
}

.site-header .social-buttons img { margin: 1.25em .25em .5em .25em; }

/*------------------------------------*\
MAIN NAVIGATION
\*------------------------------------*/

.main-navigation {
    background: #9bd02a; 
    clear: both;
    display: block;
    float: left;
    width: 100%;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation li {
    float: left;
    position: relative;
    width: 16.66%;
}

.main-navigation a {
    font-family: 'Schoolbell', cursive;
    color: #fff;
    font-size: 1.875em;
    background: #9bd02a;
    border-bottom: 3px solid #9bd02a;
    display: block;
    text-decoration: none;
    padding: .65em 0;
}

.main-navigation ul ul {
    text-align: left;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 4.5em;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul a {
    width: 290px;
    padding: .25em 0 .25em .5em;
}

.main-navigation ul li:nth-of-type(6) ul a {
    width: 100%;
}

.main-navigation ul ul li {
    width: 100%;
}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
    background: #77a711;
    border-bottom: 3px solid #fff;
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation ul li:nth-of-type(6):hover > ul,
.main-navigation ul li:nth-of-type(6).focus > ul {
    left: 0;
    right: 15px;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    left: 100%;
}

.slicknav_menu {
    display:none;
}

.main-navigation a.current {
    background: #77a711;
    border-bottom: 3px solid #fff;
}

/*------------------------------------*\
CONTENT
\*------------------------------------*/

.bg1, .bg2, .bg3, .bg4 { overflow: hidden; }

.bg1 { background: #1d285a; }

.bg2 { background: #e1e0fe; }

.bg3 { background: #f8f8f8; }

.bg4 { background: #9a98ca; }

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Schoolbell', cursive; font-weight: normal;
}

.content .section1 h2 {
    font-size: 2.5em;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    line-height: 1.75;
    color: #333333;
    margin-bottom: 1.5em;
}

.content a {
    color: #1d285a;
    text-decoration: underline;
    transition: all .3s ease;
}

.content a:hover {
    color: #db2328;
    text-decoration: none;
}

/*------------------------------------*\
BLOG
\*------------------------------------*/

.content.blog .bg1 h1,
.content.blog .bg1 h2 {
    color: #fff;
}

.content.blog .bg1 p {
    color: #fff;
}

.content.blog .bg1 .blog-date {
    color: #e1e0fe;
    font-style: italic;
    margin-bottom: 1em;
}

.content.blog .bg1 a {
    color: #e1e0fe;
    text-decoration: underline;
}

.content.blog .bg1 a:hover {
    color: #fff;
}

.content.blog .blog-post {
    margin-bottom: 3em;
    padding-bottom: 2em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.content.blog .blog-post:last-child {
    border-bottom: none;
}

/*------------------------------------*\
HOME
\*------------------------------------*/

.home .section2 h1 {
    font-size: 1.875em;
    line-height: 1;
    color: #1d285a;
    margin-bottom: .5em;
}

.home .section3 h2 {
    font-size: 1.875em;
    line-height: 1.4;
    color: #1d285a;
    margin-bottom: .5em;
    padding-top: .5em;
}

.home .section4 h2 {
    font-size: 2.25em;
    line-height: 1;
    color: #fff;
    margin-bottom: .4em;
}

.home .section4 p,
.home .section4 ul {
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    list-style: inside;
    margin-bottom: .5em;
}

.home .section4 em {
    font-size: .9em;
    font-weight: 400;
}

.home .col.half.section5 {
    width: 42%;
    padding: .8em 1em 0 1em;
}

.home .col.half.section6 {
    width: 53.6%;
}

.home .section7 .col.third {
    text-align: center;
    background: #ffffd8;
    border-radius: 5px;
    box-shadow: -2px 2px 2px rgba(0, 0, 0, .6);
    margin-bottom: 1.5em;
}

.home .section7 .col.third img {
    min-height: 136px;
    margin-bottom: 1em;
}

.home .section7 h2 {
    font-size: 1.3125em;
    line-height: 1;
    color: #1d285a;
    margin-bottom: .25em;
}

.home .section7 a {
    color: inherit;
    text-decoration: none;
    transition: none;
}

.home .section7 a:hover {
    font-weight: 700;
    color: #1d285a;
}

.home .section8 .col.third p {
    font-size: 1.875em;
    line-height: 1;
    font-weight: 700;
    color: #ffffd8;
    margin-bottom: 1em;
}

.home .section8 .col.two-third p {
    font-size: 1.625em;
    line-height: 1.5;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    margin-bottom: 1em;
}

.home .section9 h2 {
    font-size: 1.875em;
    line-height: 1.4;
    color: #1d285a;
    margin-bottom: .5em;
    padding-top: .5em;
}

.home .section9 p {
    margin-bottom: 1.5em;
}

/*------------------------------------*\
ABOUT
\*------------------------------------*/

.about section {
    margin-bottom: 2em;
}

.about .section1 {
    margin-bottom: 0;
}

.about .section2 h1,
.about h2 {
    font-size: 1.875em;
    line-height: 1;
    color: #1d285a;
    margin-bottom: .5em;
}

.about .indent {
    padding-left: 2em;
}

/*------------------------------------*\
RENTALS
\*------------------------------------*/

.rentals .section1 h1 {
    font-size: 2.5em;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.rentals .section3 {
    overflow: hidden;
    margin-bottom: 1.5em;
}

.rentals .section3 h2 {
    color: #fff;
    font-size: 1.5em;
    line-height: 1;
    background: #9a98c9;
    border-radius: 10px;
    text-align: center;
    text-transform: uppercase;
    padding: .25em 0;
    width: 100%;
}

.rentals .section3 table {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    line-height: 1.3;
    color: #333333;
    float: left;
    width: 100%;
}

.rentals .section3 table em {
    font-size: 80%;
}

.rentals .section3 thead tr {
    float: right;
    width: 100%;
}

.rentals .section3 thead tr td:nth-of-type(1) {
    float: left;
    width: 64%;
}

.rentals .section3 thead tr td:nth-of-type(2),
.rentals .section3 thead tr td:nth-of-type(3),
.rentals .section3 thead tr td:nth-of-type(4) {
    font-size: .75em;
    float: left;
    width: 12%;
    margin: 1em 0;
}

.rentals .section3 tbody tr {
    float: left;
    width: 100%;
    margin-bottom: .75em;
}

.rentals .section3 tbody tr td:nth-of-type(1) {
    float: left;
    width: 64%;
}

.rentals .section3 tbody tr td:nth-of-type(2),
.rentals .section3 tbody tr td:nth-of-type(3),
.rentals .section3 tbody tr td:nth-of-type(4) {
    float: left;
    width: 12%;
}

.rentals .section4 h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5em;
    line-height: 1;
    font-weight: 700;
    color: #1d285a;
    text-align: center;
    margin: 1.5em 0;
}

.rentals .section4 h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    line-height: 1;
    font-weight: 700;
    color: #1d285a;
    text-transform: uppercase;
    margin: 0 0 .75em 0;
}

/*------------------------------------*\
PRODUCTS
\*------------------------------------*/

.products .section1 h1 {
    font-size: 2.5em;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.products p {
    text-align: center;
}

.products .section2 {
    padding-top: 2em;
}

.products .section2 .col {
    text-align: center;
    margin-bottom: 2em;
}

.products .section2 .image {
    width: 100%;
    height: 215px;
    margin-bottom: 2em;
}

.products .section2 h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3125em;
    line-height: 1;
    color: #1d285a;
    font-weight: 700;
    margin-bottom: .5em;
}

.products .section2 p {
    line-height: 1.2;
    margin-bottom: .75em;
    padding: 0 .75em;
}

/*------------------------------------*\
RESERVATIONS
\*------------------------------------*/

.reserve .section1 h1 {
    font-size: 2.5em;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

/*------------------------------------*\
CONTACT
\*------------------------------------*/

.contact .section1 h1 {
    font-size: 2.5em;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.contact .section2 {
    padding-bottom: 2.5em;
}

.contact .section3 h2 {
    font-size: 2.5em;
    line-height: 1;
    color: #1d285a;
    margin-bottom: .5em;
}

.thank-you h1 {
    font-size: 2.5em;
    color: #1d285a;
    text-align: center;
    padding: 2em 0;
}

/*------------------------------------*\
PRIVACY POLICY
\*------------------------------------*/

.privacy p {
    text-align: justify;
}

.privacy b {
    display: block;
    margin-top: 2em;
}

/*------------------------------------*\
FOOTER
\*------------------------------------*/

.site-footer {
    width: 100%;
    clear: both;
}

.site-footer .top {
    background: #9bd02a;
    overflow: hidden;
}

.site-footer .top {
    text-align: right;
}

.site-footer .top .col.section1 {
    width: 38.5%;
}

.site-footer .top .col.section2 {
    width: 57%;
}

.site-footer .top .footer-logo {
    margin-bottom: 1em;
}

.site-footer .top .address {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    line-height: 1.2;
    color: #1d285a;
    margin-bottom: 1em;
}

.site-footer .top .social-icons {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125em;
    line-height: 1;
    color: #1d285a;
    font-weight: 700;
}

.site-footer .top .social-icons img {
    margin-left: 1em;
}

@media only screen and (max-width:50.69em) {
    .site-footer .top .social-icons span {
        display: inline-block;
        margin-top: .5em;
    }
}

.site-footer .top h2 {
    font-family: 'Schoolbell', sans-serif;
    font-size: 1.875em;
    line-height: 1;
    color: #1d285a;
    text-align: left;
    border-bottom: 3px solid #9a98c9;
    float: left;
    padding-bottom: .3em;
    margin-bottom: .5em;
}

.site-footer .top .reserve-info {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125em;
    line-height: 1.2;
    color: #1d285a;
    text-align: left;
    font-weight: 700;
    margin-bottom: 1.25em;
    clear: both;
}

.site-footer .top .footer-navigation {
    clear: both;
}

.site-footer .top .footer-navigation li {
    list-style: none;
    text-align: left;
    margin-bottom: .3em;
}

.site-footer .top .footer-navigation a {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125em;
    line-height: 1.2;
    color: #1d285a;
    text-align: left;
    font-weight: 700;
    text-decoration: none;
}

.site-footer .top .footer-navigation a:hover {
    color: #fff;
}

.site-footer .top .footer-navigation a.current {
    color: #fff;
}

.site-footer .top a {
    color: inherit;
    text-decoration: underline;
}

.site-footer .top a:hover {
    color: #fff;
    text-decoration: none;
}

.site-footer .bottom {
    text-align: center;
    background: #1d285a;
}

.site-footer .bottom .copyright {
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: .875em;
    line-height: 1.3;
}

.site-footer .bottom .copyright a {
    color: inherit;
    text-decoration: underline;
}

.site-footer .bottom .copyright a:hover {
    text-decoration: none;
}


/*
*********************************************
SMALL
*********************************************
*/

@media only screen and (min-width: 1em) and (max-width: 34.99em) {

    /*------------------------------------*\
    LAYOUT
    \*------------------------------------*/

    .col.four-fifth,
    .col.three-quarter, 
    .col.two-third, 
    .col.half, 
    .col.third, 
    .col.quarter,
    .col.fifth {
        float: none;
        width: 100%;
        margin-right: 0px;
    }
    
    /*------------------------------------*\
    HEADER
    \*------------------------------------*/

    .site-header .top .serving {
        font-size: 1em;
    }

    .site-header .main-logo {
        margin-bottom: 1.5em;
    }

    .site-header .mid span.products {
        background: none !important;
        font-size: 2em;
        line-height: 1;
        padding: 0 !important;
    }
    
    .site-header .mid .rent {
        font-size: 2.4em;
    }

    .site-header .mid .phone {
        font-size: 1.6em;
        line-height: 1.25;
    }
    
    /*------------------------------------*\
    MAIN NAVIGATION
    \*------------------------------------*/
    
    .js #menu {
        display:none;
    }

    .js .slicknav_menu {
        display:block;
    }
    
    .site-header {
        padding-top: 47px;
    }
    
    /*------------------------------------*\
    HOME
    \*------------------------------------*/

    .home .section2 p:last-of-type {
        margin-bottom: 0;
    }
    
    .home .section4 h2,
    .home .section4 p,
    .home .section4 ul,
    .home .col.half.section5,
    .home .col.half.section6 {
        width: 100%;
        text-align: center;
    }
    
    .home .section7 .col.third {
        max-width: 304px;
        margin: 0 auto 1.5em auto;
    }
    
    .home .section7 .col.third.last,
    .home .section7 .col.third p:last-of-type,
    .home .section8 .col.two-third p {
        margin-bottom: 0;
    }
    
    /*------------------------------------*\
    RENTALS
    \*------------------------------------*/
    
    .rentals .section3 table {
        font-size: .8em;
    }
    
    /*------------------------------------*\
    FOOTER
    \*------------------------------------*/
    
    .site-footer .top .col.section1,
    .site-footer .top .col.section2,
    .site-footer .top .reserve-info,
    .site-footer .top h2,
    .site-footer .top .footer-navigation li {
        text-align: center;
        width: 100%;
    }
    
    .site-footer .top .col.section1 {
        margin-bottom: 1.5em;
    }

}


/*
*********************************************
MEDIUM
*********************************************
*/

@media only screen and (min-width: 35em) and (max-width: 44.99em) {

    /*------------------------------------*\
    LAYOUT
    \*------------------------------------*/

    .col.four-fifth,
    .col.three-quarter, 
    .col.two-third, 
    .col.half, 
    .col.third, 
    .col.quarter,
    .col.fifth {
        float: none;
        width: 100%;
        margin-right: 0px;
    }
    
    /*------------------------------------*\
    HEADER
    \*------------------------------------*/

    .site-header .top .serving {
        font-size: 1.25em;
    }

    .site-header .main-logo {
        margin-bottom: 1.5em;
    }

    .site-header .mid span.products {
        line-height: 1;
    }

    .site-header .mid .phone {
        line-height: 1.25;
    }
    
    .site-header {
        padding-top: 47px;
    }
    
    /*------------------------------------*\
    MAIN NAVIGATION
    \*------------------------------------*/

    .js #menu {
        display:none;
    }

    .js .slicknav_menu {
        display:block;
    }
    
    /*------------------------------------*\
    HOME
    \*------------------------------------*/
    
    .home .section2 p:last-of-type {
        margin-bottom: 0;
    }
    
    .home .section4 h2,
    .home .section4 p,
    .home .section4 ul,
    .home .col.half.section5,
    .home .col.half.section6 {
        width: 100%;
        text-align: center;
    }
    
    .home .section7 .col.third {
        max-width: 304px;
        margin: 0 auto 1.5em auto;
    }
    
    .home .section7 .col.third.last,
    .home .section7 .col.third p:last-of-type,
    .home .section8 .col.two-third p {
        margin-bottom: 0;
    }
    
    /*------------------------------------*\
    FOOTER
    \*------------------------------------*/

    .site-footer .top .col.section1,
    .site-footer .top .col.section2,
    .site-footer .top .reserve-info,
    .site-footer .top h2,
    .site-footer .top .footer-navigation li {
        text-align: center;
        width: 100%;
    }

    .site-footer .top .col.section1 {
        margin-bottom: 1.5em;
    }

}


/*
*********************************************
LARGE
*********************************************
*/

@media only screen and (min-width: 45em) and (max-width: 63.99em) {

    /*------------------------------------*\
    HEADER
    \*------------------------------------*/
    
    .site-header .top .serving {
        font-size: 1.25em;
    }
    
    .site-header .main-logo {
        margin-bottom: 1.5em;
    }
    
    .site-header .mid span.products {
        line-height: 1;
    }
    
    .site-header .mid .phone {
        line-height: 1.25;
    }
    
    /*------------------------------------*\
    MAIN NAVIGATION
    \*------------------------------------*/
    
    .main-navigation a {
        font-size: 1.5em;
        padding: .65em 0;
    }
    
    .main-navigation ul ul {
        top: 3.6em;
    }
    
    .main-navigation ul ul a {
        width: 235px;
        padding: .25em 0 .25em .5em;
    }
    
    /*------------------------------------*\
    CONTENT
    \*------------------------------------*/

    section p:last-of-type,
    .col p:last-of-type {
        margin-bottom: 0;
    }
    
    /*------------------------------------*\
    HOME
    \*------------------------------------*/
    
    .home .section3 p {
        margin-bottom: 2.5em;
    }
    
    .home .section8 .col.third p {
        text-align: right;
    }
    
    .home .section8 big {
        font-size: 120%;
    }
    
    /*------------------------------------*\
    PRODUCTS
    \*------------------------------------*/

    .products .section2 .col {
        margin-bottom: 4em;
    }

}

/*
*********************************************
FULL
*********************************************
*/

@media only screen and (min-width: 64em) {
    
    /*------------------------------------*\
    CONTENT
    \*------------------------------------*/
    
    section p:last-of-type,
    .col p:last-of-type {
        margin-bottom: 0;
    }

    /*------------------------------------*\
    HOME
    \*------------------------------------*/

    .home .section3 p {
        margin-bottom: 2.5em;
    }
    
    .home .section8 .col.third p {
        text-align: right;
    }
    
    /*------------------------------------*\
    PRODUCTS
    \*------------------------------------*/
    
    .products .section2 .col {
        margin-bottom: 4em;
    }

}