/*
Item name: Full Screen Navigation
Author: http://codecanyon.net/user/marcoarib
License: http://codecanyon.net/licenses
*/

/* GENERAL CSS
=========================================*/
.full-screen-nav,
.full-screen-nav *,
.full-screen-nav *:focus{
	box-sizing: border-box;
	z-index: 10000;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}
.full-screen-nav{
	position: fixed;
	width: 100%;
	height: 100%;
	padding: 50px;
	top: 0;
	left: 0;
	display: none;
	background-color: rgba(0, 0, 0, 0.95);
}

/* CONTENT WRAPPER
=========================================*/
.full-screen-nav-content{
	width: 100%;
	height: 100%;
	padding: 10px;
	position: relative;
	color: #f0f0f0;
	display: block;
	overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* CLOSE BUTTON
=========================================*/
.full-screen-nav-close {
	width: 32px;
	height: 32px;
	display: block;
	position: fixed;
	right: 12px;
	top: 12px;
	cursor: pointer;
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}
.full-screen-nav-close:hover {
	-webkit-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
}
.full-screen-nav-close:before, 
.full-screen-nav-close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 2px;
	background-color: #fff;
}
.full-screen-nav-close:before {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.full-screen-nav-close:after {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* NORMAL MENU
=========================================*/
.full-screen-nav-menu{
	width: 400px;
	margin: 0 0 0 -200px;
	padding: 0;
	left: 50%;
	position: absolute;
	list-style: none;
	text-align: center;
}
@media (max-width: 768px){
	.full-screen-nav-menu{
		width: 100%;
		margin: 0;
		left: auto;
		position: relative;
	}
}
.full-screen-nav-menu li a{
	padding: 5px;
	display: block;
	font-size: 40px;
	text-decoration: none;
	color: #999;
	font-weight: 300;
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}
@media (max-width: 480px){
	.full-screen-nav-menu li a{
		font-size: 26px;
	}
}
.full-screen-nav-menu:hover li a{
	opacity: 0.7;
}
.full-screen-nav-menu li:hover a{
	color: #fff;
	opacity: 1 !important;
	background-color: #333;
}

/* MENU OF LISTS
=========================================*/
.full-screen-nav-lists{
	width: 100%;
	text-align: center;
	display: table;
}
.full-screen-nav-list{
	margin: 0;
	padding: 0 10px 0 0;
	display: table-cell;
	list-style: none;
	text-align: center;
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}
.full-screen-nav-list:last-of-type{
	padding: 0;
}
@media (max-width: 768px){
	.full-screen-nav-list{
		width: 100%;
		display: block;
		margin-bottom: 30px;
	}
}
.full-screen-nav-list li{
	width: 100%;
}
.full-screen-nav-list li a{
	width: 100%;
	padding: 5px 0 5px 0;
	display: block;
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
	color: #999;
	-webkit-transition: background .2s linear, opacity .2s linear;
	transition: background .2s linear, opacity .2s linear;
}
.full-screen-nav-list:hover li:not(.full-screen-nav-list-header) a{
	opacity: 0.7;
}
.full-screen-nav-list li:hover a{
	color: #fff;
	opacity: 1 !important;
	background-color: #333;
}
.full-screen-nav-list li.full-screen-nav-list-header a{
	padding: 5px 0 10px 0;
	color: #ccc;
	font-size: 16px;
	font-weight: 700;
	background-color: transparent;
}

/* MENU OF BOXES
=========================================*/
.full-screen-nav-boxes{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
}
.full-screen-nav-boxes li{
	display: inline-block;
	text-align: center;
}
.full-screen-nav-boxes li a{
	width: 160px;
	height: 160px;
	margin: 10px;
	display: inline-block;
	font-size: 14px;
	color: #999;
	text-decoration: none;
	line-height: 60px;
	background-color: rgba(51, 51, 51, 0.8);
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}
.full-screen-nav-boxes li a i{
	width: 100%;
	margin: 30px 0 0;
	text-align: center;
	font-size: 60px;
	float: left;
}
.full-screen-nav-boxes:hover a{
	opacity: 0.7;
}
.full-screen-nav-boxes li:hover a{
	opacity: 1;
	color: #fff;
}

/* MENU OF CIRCLES
=========================================*/
.full-screen-nav-circles{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
}
.full-screen-nav-circles li{
	display: inline-block;
	text-align: center;
}
.full-screen-nav-circles li a{
	width: 160px;
	height: 160px;
	margin: 10px;
	display: inline-block;
	font-size: 14px;
	color: #999;
	text-decoration: none;
	line-height: 60px;
	border-radius: 50%;
	background-color: rgba(51, 51, 51, 0.8);
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}
.full-screen-nav-circles li a i{
	width: 100%;
	margin: 30px 0 0;
	text-align: center;
	font-size: 60px;
	float: left;
}
.full-screen-nav-circles:hover a{
	opacity: 0.7;
}
.full-screen-nav-circles li:hover a{
	opacity: 1;
	color: #fff;
}

/* MENU OF GENERAL CONTENT
=========================================*/
.full-screen-nav-general{
	text-align: center;
}

/* ANIMATIONS
=========================================*/
.zoom{
	animation-name: zoom-in;
	animation-duration: .3s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-fill-mode: forwards;

	-webkit-animation-name: zoom-in;
	-webkit-animation-duration: .3s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: forwards;

	-moz-animation-name: zoom-in;
	-moz-animation-duration: .3s;
	-moz-animation-iteration-count: 1;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: forwards;
}
@keyframes zoom-in{
	from{ 
		-webkit-transform: scale(0.6,0.6);
		transform: scale(0.6,0.6);
	}
	to{ 
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
	}
}
@-webkit-keyframes zoom-in{
	from{ 
		-webkit-transform: scale(0.6,0.6);
		transform: scale(0.6,0.6);
	}
	to{ 
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
	}
}

.slide{
	animation-name: slide;
	animation-duration: .3s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-fill-mode: forwards;

	-webkit-animation-name: slide;
	-webkit-animation-duration: .3s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: forwards;

	-moz-animation-name: slide;
	-moz-animation-duration: .3s;
	-moz-animation-iteration-count: 1;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: forwards;
}
@keyframes slide{
	from{ 
		left: -200px;
	}
	to{ 
		left: 0;
	}
}
@-webkit-keyframes slide{
	from{ 
		left: -200px;
	}
	to{ 
		left: 0;
	}
}

.dropdown{
	animation-name: dropdown;
	animation-duration: .3s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-fill-mode: forwards;

	-webkit-animation-name: dropdown;
	-webkit-animation-duration: .3s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: forwards;

	-moz-animation-name: dropdown;
	-moz-animation-duration: .3s;
	-moz-animation-iteration-count: 1;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: forwards;
}
@keyframes dropdown{
	from{ 
		top: -200px;
	}
	to{ 
		top: 0;
	}
}
@-webkit-keyframes dropdown{
	from{ 
		top: -200px;
	}
	to{ 
		top: 0;
	}
}




