.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav {
	margin: 0;
	padding: 0;
	z-index: 999;
}


/* 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;
}
.menu-wrap {
    clear: none;
    float: right;
    width: 70%;
    z-index: 900;
    margin-top: 8px;
    padding-top: 0;
    padding-right: 10px;
}
.menu-wrap2 {
    clear: none;
    float: right;
    width: 70%;
    z-index: 900;
    margin-top: 15px;
    padding-top: 0;
    padding-right: 10px;
    text-align: right;
}

#logo {
    display: block;
    float: left;
    padding-right: 0;
    padding-left: 0;
    z-index: 999;
    width: 200px;
    height: auto;
}
#logo a:hover {
	z-index: 999;
	background-color: rgba(255,255,255,0.0);
}


.logo-landing {
    display: block;
    float: left;
    padding-top: 5px;
    padding-right: 0;
    padding-bottom: 5px;
    padding-left: 15px;
    z-index: 999;
    width: 157px;
    height: auto;
}




.tagline {
    text-align: right;
    float: right;
    font-size: 24px;
    font-weight: 600;
    padding-right: 20px;
    margin-bottom: 5px;
    width: 64%;
    line-height: 27px;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.tagline.landing {
    margin-top: 20px;
}
.tagline a {
    color: #758a58;
}
.tagline h4 {
    font-size: 26px;
    line-height: 29px;
    font-weight: 600;
    margin-bottom: 5px;
}
.tagline h5 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    display: block;
    padding-top: 1px;
}
/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	z-index: 999;
	}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0;
    display: inline-block;
    float: left;
	}


/* Background color change on Hover */
nav ul li.selected,
nav ul li a.selected
 {
    color: #b1c253;
    font-weight: 700;
}

/* Login button - desktop */
nav ul li.menu-login {
    margin-left: 10px;
}

nav ul li.menu-login a {
    background-color: #b1c253;
    color: #FFFFFF;
    border-radius: 4px;
    padding-right: 22px;
    padding-left: 22px;
    text-transform: none;
}

nav ul li a {
    color: #3d3d3d;
    display: block;
    font-size: 16px;
    text-decoration: none;
    padding-right: 15px;
    padding-left: 15px;
    line-height: 40px;
    font-weight: 500;
    padding-bottom: 0;
}


/* Background color change on Hover */
nav ul li a:hover {
    background-color: #b1c253;
    color: #FFFFFF;
    text-decoration: none;
}

nav ul li ul li:hover {
    background-color: #295dc7;
}

/* 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;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    float: none;
    display: list-item;
    position: relative;
    color: #FFFFFF;
    width: 300px;
    padding-top: 0;
    margin-left: 0;    /*border-bottom: 1px solid #758a58;*/
}

/* submenu colour */
nav ul ul li a {
    position: relative;
    color: #FFFFFF;
    height: 40px;
    font-weight: 500;
    font-size: 16px;
    width: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    background-color: #b1c253;
}

nav ul ul li a:hover {
    color: #FFFFFF;
    background-color: #758a58;
}

nav ul ul li.selected,
nav ul ul li a.selected {
    position: relative;
    color: #FFFFFF;
    background-color: #758a58;
    left: auto;
    font-weight: 500;
}





/* 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: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 300px;
}


nav ul li:hover > a {
	color: white;
}




/* Desktop menu rounded corners
--------------------------------------------- */
@media all and (min-width: 1401px) {

    /* Keep the parent tab visible while the pointer is inside its submenu. */
    nav ul.menu > li:hover {
        background-color: transparent;
    }

    nav ul.menu > li:not(.menu-login):hover > a {
        background-color: #b1c253;
        color: #FFFFFF;
        border-radius: 4px 4px 0 0;
    }

    /* Dropdown outer corners. */
    nav ul.menu > li > ul {
        border-radius: 0 4px 4px 4px;
        overflow: hidden;
    }

    nav ul.menu > li > ul > li:first-child,
    nav ul.menu > li > ul > li:first-child > a {
        border-radius: 0 4px 0 0;
    }

    nav ul.menu > li > ul > li:last-child,
    nav ul.menu > li > ul > li:last-child > a {
        border-radius: 0 0 4px 4px;
    }

    /* Login button. */
    nav ul.menu > li.menu-login:hover {
        background-color: transparent;
    }

    nav ul.menu > li.menu-login > a,
    nav ul.menu > li.menu-login > a:hover {
        border-radius: 4px;
    }

    nav ul.menu > li.menu-login > a:hover {
        background-color: #758a58;
        color: #FFFFFF;
    }
}

/* Media Queries
--------------------------------------------- */

@media all and (max-width : 1400px) {

**TABLET** {
}


	#logo {
    padding-left: 0px;
    margin-left: 4%;
	}
	
	
	.logo-landing {
    display: inline-block;
    float: left;
    padding-top: 5px;
    padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
    z-index: 999;
    width: 20%;
    height: auto;
    margin-left: 40%;
    margin-right: 40%;
}


	.tagline {
	display: none;
}

	nav {
		margin: 0;
	}


	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	.menu-wrap {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
}
    
    .menu-wrap2 {
    display:none;
}


	/* Stylinf the toggle lable */
	.toggle {
    display: block;
    font-size: 18px;
    text-decoration: none;
    border: none;
    padding-right: 20px;
    padding-left: 20px;
    line-height: 50px;
    text-align: left;
    content: '+';
    /*background-image: url(/images/icon-menu.png);*/
    background-repeat: no-repeat;
    background-position: 96% center;
    font-weight: 500;
	}
	


	.toggle:hover {
    background-color: #758a58;
	}

	
		/* Move main toggle button into header. */
	.toggle-main {
    position: absolute;
    top: 25px;
    right: 4%;
    width: 28px;
    height: 19px;
    background-image: url(/images/icon-menu-main.png) !important;
    padding: 0;
    margin: 0;
    font-weight: 500;
	}
	.toggle-main:hover {
    background-color: #FFFFFF;
	}
	
	
	
	
	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	nav ul {
	float: left;
	width: 100%;
	}


	/* Change menu item's width to 100% */
	nav ul li {
    display: block;
    width: 100%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #9ead4a;
    background-image: none;
    margin-left: 0px;
    margin-right: 0px;
    background-color: #b1c253;
    color: #FFFFFF;
		}

	nav ul li a {
    background-color: #b1c253;
    color: #FFFFFF;
    padding-left: 20px;
    height: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 0px;
    margin-right: 0px;
}
nav ul li a:hover {
    background-color: #758a58;
    color: #FFF;
}
/* From tablet (1400px) onwards, Login follows the standard menu format. */
nav ul li.menu-login {
    margin-left: 0px;
}

nav ul li.menu-login a,
nav ul li.menu-login a:hover {
    border-radius: 0px;
    padding-right: 15px;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
}

nav ul li a.book  {
    background-color: #a99e73;
    color: #FFF;
    padding-left: 20px;
    height: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 0px;
    margin-right: 0px;
}

	nav ul ul .toggle,
	nav ul ul a {
    padding: 0 40px;
    color: #FFF;
    background-color: undefined;
	}

	nav ul ul ul a {
    padding: 0 80px;
    color: #FFFFFF;
	}
nav ul li ul li .toggle,
	nav ul ul a,
  nav ul ul ul a{
    color: #E00B0E;
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
	}


	/* Hide Dropdowns by Default */
	nav ul ul {
	float: none;
	position: static;
	color: #ffffff;
	background-image: none;		/* 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: none;
	}

	/* Fisrt Tier Dropdown */
	nav ul ul li {
	display: block;
	width: 100%;
	border-top-width: 1px;
	border-top-style: solid;
	border-bottom-style: none;
	border-top-color: #9ead4a;
	}
    
    /* Fisrt Tier Dropdown */
	nav ul ul li a {
    color: #333333;
    line-height: 40px;
    background-color: #c1ce75;
    font-weight: 400;
	}
    

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */

	}
	
nav ul li.selected,
nav ul li a.selected
 {
    font-weight: 500;
    color: #FFFFFF;
    background-color: #758a58;
}	
	
	

}



@media all and (max-width : 481px) {

**MOBILE** {
}
	
#logo {
    text-align: left;
    float: left;
    width: 140px;
    padding-top: 0px;
    margin-top: 15px;
    margin-left: 8%;
	}
	
	
	.logo-landing {
   width: 30%;
    margin-left: 35%;
    margin-right: 35%;
}	
	
	
.toggle-main {
    top: 30px;
    margin-right: 20px;
	}
	
.tagline2 {
    text-align: center;
    padding-top: 0px;
    margin-bottom: 25px;
    width: 100%;
}
.tagline2 a {
    color: #a99e73;
}

.tagline2 h5 {
    font-size: 30px;
    font-weight: 600;
    color: #a99e73;
}	
	
}
