/*
Setup a basic body
*/
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/*
Header is relative so z-index: 1 guarantees always displayed on top
*/
header#header_hamb {
	background: #ffffffc7;    
	text-decoration: none;
    position: fixed;
    width: 100%;
    z-index: 1;
    /*-webkit-box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.2);*/
    box-shadow: 0px 6px 7px 0px rgba(0,0,0,0.1);
	height: 60px;
	display: table;
	    top: 0;
}

@media (min-width: 992px) {
	header#header_hamb{height:78px;}
}

/*
using background color is important to cover the menu
position absolute isset to cover the whole viewport
*/
#content_hamb {
    background-color: transparent;
    padding: 0;
    position: relative;
	    height: 100%;
    width: 100%;
}

/*
the hamburger button with a little gradient effekt
*/
#hamburger {
	display: block;
    cursor: pointer;
    height: 40px;
    padding: 3px 4px 3px;
    position: relative;
    width: 40px;
    display: table-cell;
    vertical-align: middle;
	border-bottom: 4px solid #1e96d7;
    background: #ffffffa6;
}

#container2_header {display: none}
#hamburger_logo{
	display: block;
	top: -2px;
    position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	width: 220px;
}
.heading_slide {
	background-color: #3b3330;position: relative;z-index: 1000;
	padding-right: 10px;
    margin-top: 20px;
    width: 100%;
    opacity: 0.8;
	visibility: hidden;
}
.subheading_slide{
	color: white;
    text-align: center;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0 20px;
	height: 10%;
}
.footer_slide {
	 display: table;
    background-color: #3b3330;
    padding: 0;
    position: relative;
    z-index: 1000;
    opacity: 0.8;
    width: auto;
    float: none;
    margin: 0 auto;
    margin-top: -140px;
    font-weight: bold; padding: 0 15px;
}
.footer_slide_text {
	color: white;
    text-align: center;      
	text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 15px;  
	text-transform: uppercase;
	display: none;
}
#content.menu_info_general_nh {
	display: none;
}	
@media (min-width: 992px) {
	#hamburger {display: none;}
	#container2_header {display: block}
	.heading_slide{visibility: visible}
	.footer_slide_text{display: block}
	#hamburger_logo{display: none}
	/*header#header_hamb{background: url('image/texture.jpg');}*/
	#nav_hamb {display: none;}
	#header_hamb{margin-left: 0;}
	#content.menu_info_general_nh {display: block;}
}	


/*
The white stripes in the hamburger button
*/
#hamburger div {
       background-color: #19af59;
    border: 1px solid #19af59;
    border-radius: 2px 2px 2px 2px;
    height: 3px;
    margin-top: 5px;
    width: 90%;
}

/*
The navigation container in the background
*/
nav#nav_hamb {
    opacity: 0;
    left: 0px;
    top: 0px;
    position: fixed;
    z-index: 0;
    width: 85%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    background: white;
    -webkit-overflow-scrolling: touch;
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
}

/*
Style the navigation menu
*/
nav#nav_hamb ul {
    list-style: none;
    margin: 0;
    width: 100%;
    padding: 0;
}

nav#nav_hamb li {
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid #19af59;
    padding: 15px;
}

nav#nav_hamb li a {
    color: #19af59;
    text-decoration: none;
}

/*
The Layer that will be layed over the content
so that the content is unclickable while menu is shown
*/
#contentLayer {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 85%;
    z-index: 5;
	    position: fixed;
}

.left_hamb_total {
	margin-left: 85%;
    -webkit-transition: all 1s; 
    -moz-transition: all 1s; 
    -o-transition: all 1s; 
    transition: all 1s;
}	

.left_hamb_zero {
	margin-left: 0;
    -webkit-transition: all 1s; 
    -moz-transition: all 1s; 
    -o-transition: all 1s; 
    transition: all 1s;
}	

.container_none {
	display: none
}

.container_block {
	display: block
}	

.sub-menu li {
    text-align: left;
    cursor: pointer;
    background: #EEEEEE;
    color: #444;
}

#ul_hamb li .hamb_visible {
    display: block;
}

#ul_hamb li .hamb_close {
    display: none;
}

.open-menu-link {
	float: right;
	cursor: pointer;
}	

#header_hamb.t3-mainnav {
width: 100%;
position:fixed;
top:0;
left:0;
transition: top .2s ease-in;
z-index:9999;
}
#header_hamb.js-t3-mainnav-scrolling {
top: -6em; /* Height of the header */
}
@media (max-width:767px) {
#header_hamb.t3-mainnav {
position:fixed;
}
#header_hamb.js-t3-mainnav-scrolling {
top: 0px;
}
}
