body, nav, ul, li, a {
	margin: 0;
	padding: 0;
}
body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a {
	text-decoration: none;
}
header .container {
	position: relative;
	width: 100%;
	/*max-width: 480px;*/
	margin: 0;
	padding: 60px 0 0;
	z-index: 1000;
	background: #0d1630;
	opacity: 0.9;
}
.toggleMenu {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 60px;
	height: 60px;
	/*background: url(../images/btn_menu.png) no-repeat;
    background-size: 52px 48px;*/
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;/*padding: 12px 0 0 10px;*/
}
#nav {
	position: absolute;
	top: 16px;
	left: 8px;
}
.toggleMenu .line {
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	display: block;
	width: 36px;
	height: 4px;
	margin-bottom: 6px;
	background-color: #fff;
}
.toggleMenu.active .line {
	position: absolute;
	top: 10px;
	left: 0;
}
.toggleMenu.active .line:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg)
}
.toggleMenu.active .line:nth-child(2) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg)
}
.toggleMenu.active .line:nth-child(3) {
	opacity: 0
}
/*.toggleMenu.active {

    width: 52px;
    height: 48px;
    background: url(../images/btn_menu_close.png) no-repeat;
    background-size: 52px 48px;
}*/

header .container .toggleNav {
	list-style: none;
 *zoom: 1;
}
header .container .toggleNav:before, header .container .toggleNav:after {
	content: " ";
	display: table;
}
header .container .toggleNav:after {
	clear: both;
}
header .container .toggleNav ul {
	list-style: none;
	width: 9em;
}
header .container .toggleNav a {
	padding: 4.5% 5%;
	display: block;
}
/*header .container .toggleNav li:first-child a {
    border-top: 2px solid #2693d4;
}*/
header .container .toggleNav li.hover a {
	color: #555;
	background: #0095fd;
}
header .container .toggleNav li {
	position: relative;
}
/*--------------------------------------------------------------
ACCORDION
--------------------------------------------------------------*/

.accordion {
	padding: 7em 0 14.5em;
}
.accordion li {
	text-align: center;
}
.accordion li img {
	width: auto;
	height: 16px;
}
.accordion li i {
	position: absolute;
	top: 16px;
	left: 12px;
	font-size: 18px;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.accordion li i.fa-chevron-down {
	right: 12px;
	left: auto;
	font-size: 16px;
}
.accordion li.open .link {
	color: #ffdf4a;
}
.accordion li.open i {
	color: #ffdf4a;
}
.accordion li.open i.fa-chevron-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

@media only screen and (orientation: landscape) {
.accordion {
	padding: 1em 0 6em;
}
header .container .toggleNav a {
	padding: 2% 5%;
	display: block;
}
}
