	hidden@charset "UTF-8";
	
	/************ Unity App Menu Stylesheet ************/
	/************ Copyright (c) 2020 *************/
	/**************** 01/08/2020 ***************/
	
	nav {
	line-height:1.6;
	}
	
	.desktop {
	display: none !important;
	}
	
	.menu-icon {
	z-index: 20;
	}
	
	.menu__icon {
	display: block;
	height: 28px;
	width: 40px;
	position: relative;
	right:0;
	top:0;
		cursor: pointer;
	}
	
	.menu__icon span {
	display: block;
	width: 100%;
	height: 4px;
	margin-top: -2px;
	position: absolute;
	left: 0;
	top: 50%;
		cursor: pointer;
	}
	
	.dark-icon span, .dark-icon:before, .dark-icon:after {
		background: #1b1c1d;
	}
	
	.light-icon span, .light-icon:before, .light-icon:after {
		background: #fff;
	}
	
	.menu__icon:before,
	.menu__icon:after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	position: absolute;
	left: 0;
	transform-origin: center center;
	transform: rotate(0deg);
	transition: all 0.3s ease;
	}
	
	.menu__icon:before {
	top: 2px;
	margin-top: -2px;
	}
	
	.menu__icon:after {
	bottom: 2px;
	margin-bottom: -2px;
	}
	
	.menu_shown .menu__icon span {
	background: transparent;
	}
	
	.menu_shown .menu__icon:before {
	top: 0%;
	transform: rotate(45deg);
	background: #fff;
	}
	
	.menu_shown .menu__icon:after {
	bottom: 100%;
	transform: rotate(-45deg);
	background: #fff;
	}
	
	.menu_shown .menu-icon {
	position:fixed;
	}
	
	.mobile.menu {
	position: fixed;
	top: 0;
	left: 0;
	
	display: inline-grid;
	grid-auto-flow: row;
	align-items: center;
	justify-content: space-around;

	width: 100%;
	height: 100%;
	text-align: center;
	margin:0px;
	background: #ff6600;
	z-index: 10;
	transition: all .4s ease-in-out;
	transform: translateX(-100%);
	}
	
	.mobile ul {
	padding: 0px;
	margin: 0px;
	z-index: 10;
	}
	
	.menu_shown .mobile.menu {
	transform: translateX(0);
	}
	
	.desktop .menu__item {
	font-family: 'Sofia', Helvetica, Arial, sans-serif;	
	text-decoration: none;
	font-weight:normal;
	font-size: 1.2rem;
	line-height:1.6;
	margin-left:50px;
	}
	
	.desktop a {
		color: #fff;
		padding-bottom:4px !important;
	}
	
	.mobile .menu__item {
	display:block;
	line-height: 2;
	padding: 20px;
	color: #fff;
	max-height:100px;
	text-decoration: none;
	font-size:2.8rem;
	font-family: 'Poppins', Helvetica, Arial, sans-serif;	
	font-weight: bold;
	}
	
	.mobile a:hover {
	color:#333;
	}
	
	@media (min-width: 900px) {
	nav {
	padding:0;
	}
	
	.mobile {
	display: none !important;
	}
	
	.desktop {
	display: flex !important;
	flex-flow: row wrap;
	justify-content: space-between;
	}	
}