/*----- Toggle Button -----*/
.toggle-nav {
	display:none;
	z-index:999;
}

/*----- Menu -----*/
@media screen and (min-width: 1000px) {
	.menu {
/* 	width:100%; */
	padding:10px 18px;
/* 	box-shadow:0px 1px 1px rgba(0,0,0,0.15); */
/* 	border-radius:3px; */
/* 	background:#303030; */
	}
}

.menu ul {
	display:inline-block;
}

.menu li {
	margin:0px 50px 0px 0px;
	float:left;
	list-style:none;
	font-size:18px;
	line-height: 22px;
	letter-spacing: -0.015em;
	font-weight: bold;
	
}
.menu li::before{
	content:"\25A0";
	color:#10F2F3;
	margin-right: 5px;
	white-space: nowrap;
}

.menu li:last-child {
	margin-right:0px;
}

.menu a {
	text-shadow:0px 1px 0px rgba(0,0,0,0.5);
	color:#ffffff;
	transition:color linear 0.15s;
}

.menu a:hover, .menu .current-item a {
	text-decoration:none;
/* 	color:#66a992; */
	color:#27FDFF;
}

/*----- Search -----*/
.search-form {
	float:right;
	display:inline-block;
}

.search-form input {
	width:200px;
	height:30px;
	padding:0px 8px;
	float:left;
	border-radius:2px 0px 0px 2px;
	font-size:13px;
}

.search-form button {
	height:30px;
	padding:0px 7px;
	float:right;
	border-radius:0px 2px 2px 0px;
	background:#66a992;
	font-size:13px;
	font-weight:600;
	text-shadow:0px 1px 0px rgba(0,0,0,0.3);
	color:#fff;
}

/*----- Responsive -----*/
@media screen and (max-width: 1150px) {
	.wrap {
		width:90%;
	}
}

@media screen and (max-width: 970px) {
	.search-form input {
		width:120px;
	}
}

@media screen and (max-width: 1000px) {
	.menu {
/* 		position:relative; */
		position:absolute;
		right: 50px;
		top: 60px;
		display:inline-block;
/* 		min-width: 300px; */
		width: 50%;
		
	}

	.menu ul.active {
		display:none;
	}

	.menu ul {
		width:100%;
		position:absolute;
		top:120%;
		left:0px;
		padding:10px 18px;
		box-shadow:0px 1px 1px rgba(0,0,0,0.15);
		border-radius:3px;
		background:#303030;
		border-radius:10px;
	}

	.menu ul:after {
		width:0px;
		height:0px;
		position:absolute;
		top:0%;
		right:22px;
		content:'';
		transform:translate(0%, -100%);
		border-left:7px solid transparent;
		border-right:7px solid transparent;
		border-bottom:7px solid #303030;
	}

	.menu li {
		margin:5px 0px 5px 0px;
		float:none;
/* 		display:block; */
		padding: 2px;
		width:100%;
	}

	.menu a {
		display:inline-block;
		
	}
	
	.menu ul li a {
/* 		font-size:60px; */
		text-decoration: none;
	}

	.toggle-nav {
		padding:10px 15px;
/*  		float:left; */
		display:inline-block;
		position: absolute;
		top: 10px;
    		right: 10px;
		box-shadow:0px 1px 1px rgba(0,0,0,0.15);
		border-radius:5px;
		background:#44837e;
		text-shadow:0px 1px 0px rgba(0,0,0,0.5);
		color:white;
		font-size:1.2em;
		transition:color linear 0.15s;
		text-decoration: none !important;
/* 		background-color: #ff0000; */

	}
	
	#sectionsHeader {
		z-index: 1000;
	}

	.toggle-nav:hover, .toggle-nav.active {
		text-decoration:none;
/* 		color:#66a992; */
	}

	.search-form {
		margin:12px 0px 0px 20px;
		float:left;
	}

	.search-form input {
		box-shadow:-1px 1px 2px rgba(0,0,0,0.1);
	}
}