html {
    height: 100%;
}

body {
    background-image: url("images/bg.jpg");
    background-size: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.whitebox {
	background-color:rgba(255,255,255,.5);
	padding: 10px 0;
	margin-bottom: 30px;
	font-size: 150%;
	font-family: "Alegreya", serif;
	font-style: italic;
	font-weight: 200;
	color: #999;
	letter-spacing: 2px;
}

.collage {
    background-image: url("images/collage.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    width: 800px;
    height: 800px;
    border: 4px solid #fff;
}

.textbrown {
    color: chocolate;
    text-transform: uppercase;
    margin-bottom: -1px;
}

.greybg {
    background: #e5e5e5;
    padding-bottom: 10px;
}


.fix {
    position: fixed;
    top: 0;
    z-index: 25;
}

.padtop {
    padding-top: 150px;
}

.padtop250 {
    padding-top: 200px;
}

.padbottom {
    padding-bottom: 20px;
    text-align: center;
}

.padbottom10 {
    padding-bottom: 10px;
}


.fullheight {
    flex: 1 !important;
}

.header {
    max-width: 1200px;
    height: 100px;
    border-bottom: thin solid #ccc;
    margin: 0 auto;
    position: relative;
    z-index: 40;
}

.footer {
    width: 100%;
    background: #ccc;
    padding: 10px 0;
}

.footertext {
    width: auto;
    max-width: 1200px;
    text-align: left;
    letter-spacing: 2px;
}

.footerstrip p {
    font-size: 70%;
    color: #fff;
    letter-spacing: 2px;
}

.footerstrip {
    width: 100%;
    background: #999;
    text-align: center;
    padding: 8px 0;
}

.nopad {
    padding: 0;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #ccc;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ccc;
}

::placeholder {
    color: #ccc;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/*********** MENU **********/

.shop a {
	background: chocolate;
	color: #fff;
	padding: 2px 6px;
	margin-top: 8px;
	line-height: 1.65;
}

.shop a:hover {
	background: sandybrown;
	color: #000;
}

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 25;
    height: 100px;
}

#logo {
    display: block;
    padding: 10px 0 0 0;
    float: left;
    font-size: 20px;
    line-height: 60px;
    width: 100%;
    max-width: 250px;
    height: auto;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:relative" */
nav ul {
    float: right;
    padding: 25px 0 0 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
    background-color: transparent;
    font-family: "Alegreya Sans SC", sans-serif;
    text-transform: uppercase;
}

/* MAIN NAV ITEMS - Styling the links */
nav a {
    display: block;
    padding: 14px 20px;
    color: #000;
    font-size: 17px;
    text-decoration: none;
}

nav a:hover {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}


/* SUBMENUS */

nav ul li li a {
    background-color: #f8f8f8;
    color: chocolate;
}


nav ul li li as:hover {
    background-color: chocolate;
    color: #fff;
}

nav ul li ul li a {
    background-color: #f8f8f8;
    color: chocolate;
}


nav ul li ul li:hover {
    background-color: #b5ae9c;
    color: #fff;
}


/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 40px;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display: inherit;
}

/* First Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
    color: chocolate;
    border-bottom: thin solid #ccc;
}

nav ul ul li a:hover {
    color: #fff;
    /*background-color: #b5ae9c;*/
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -65px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
    border-bottom: thin solid #ccc;
}


/* Change ' +' in order to change the Dropdown symbol */
li > a:after {
    content: ' +';
}

li > a:only-child:after {
    content: '';
}

/****************************** SELECTS ON QUOTE FORM *************************/
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}


/******************************* Media Queries *******************************/

@media screen and (max-width : 768px) {

    .collage {
        background-image: url("images/collagesm.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        width: 100%;
        max-width: 500px !important;
        height: 300px;
        border: 4px solid #fff;
        padding: 0 30px;
        margin: 0 auto 30px auto;
    }

    .padtop {
        padding-top: 200px;
        margin-top: 0;
    }
}

@media screen and (max-width : 1200px) {

    .padtop {
        padding-top: 180px;
    }

    #logo {
        display: block;
        padding: 10px 0 0 0;
        width: 100%;
        text-align: center;
        float: none;
        margin: 0 auto;
    }

    nav {
        margin: 0;
        padding: 0;

    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
        display: none;
    }

    /* Styling the toggle lable */
    .toggle {
        display: block;
        background-color: chocolate;
		border: thin solid sandybrown;
        padding: 10px 0;
        color: #f8f8f8;
        font-size: 20px;
        text-decoration: none;
        text-align: center;
        margin-top: 15px;
        font-family: "Alegreya Sans SC", sans-serif;
		border-radius: 6px;
    }

    .toggle:hover {
        background-color: sandybrown;
        color: #fff;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
        display: block;
        width: 100%;
        margin-top: -30px;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        background-color: #f8f8f8;
        color: chocolate;
        position: relative;
        left: 0;
        text-align: center;
        border-bottom: thin solid #ccc;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        color: sandybrown;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: chocolate;
        font-size: 20px;
        margin-top: -20px;
    }


    nav ul li ul li .toggle,
    nav ul ul a {
        color: sandybrown;
    }

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: chocolate;
        z-index: 30;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover > ul,
    nav ul li:hover > ul {
        display: block;
    }

    /* First Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */

    }

}

@media all and (max-width : 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}
