img.logo {
    max-height: 80px;
    margin: 10px;
}

header {
	height: 100px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: white;
	z-index: 999;
	transition: box-shadow 0.3s ease-in-out;	
}
header.scrolled {
	box-shadow: 0px 2px 5px rgba(0,0,0,.4);
	
}

	
.head{
	position: absolute;
	top: 25px;
	right: 30px;
}
.head .tile{
	display: inline-block;
	height: 50px;
	width: 50px;
	margin-left: 5px;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
.head .tile.socialmedia{
	color: #979300;
	font-size: 50px;
	text-align: center;
	line-height: 50px;
	position: relative;
	top: -6px;
}
header.clicked .head .tile.socialmedia{
	color: white;
}
.head .burger{
	margin-left: 25px;
	padding: 5px;
	cursor: pointer;
	background-color: transparent;
}
.meat{
	height: 40px;
	width: 40px;
	position: relative;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
header.clicked .head .burger .meat{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}
.meat .line{
	height: 3px;
	width: 40px;
	/* background-color: #222; */
	background-color: #a0b3c2;
	border-radius: 3px;
	position: absolute;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
.meat .line.one{top: 5px; left: 0px;}
.meat .line.two{top: 18px; left: 0px;}
.meat .line.three{top: 31px; left: 0px;}

header.clicked .burger .line{
	background-color: white;
}
header.clicked .burger .line.one{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	top: 18px;
}
header.clicked .burger .line.two{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	top: 18px;
}
header.clicked .burger .line.three{
	opacity: 0;
}
header.clicked .burger:hover .meat{
	transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
}

.nav-modal{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	pointer-events: none;
	
	
	height: 100vh;
	height: -moz-available;
	height: -webkit-fill-available;
	height: fill-available;
	height: stretch; /* Latest specification */

	
}
header.clicked .nav-modal{
	visibility: visible;
	opacity: 1;
	pointer-events: initial;
}

.nav-modal .blob{
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	margin: 0 auto;
	background-color: #a0b3c2f0;
	position: relative;
	/* top: 50%; */
	/* transform: translateY(-50%); */
	/* -webkit-transform: translateY(-50%); */
	transition: all .3s ease-in;
}
header.clicked .nav-modal .blob{
	width: 100vw;
	height: 100vh;
	border-radius: 0px;
}

nav {
	position: fixed;
	left: 20%;
	top: 10vh;
	color: white;
}
nav a {
	/* color: white; */
	text-decoration: none;

	font-size: 34px;
	font-weight: 200;
	line-height:1.5;
	
	color: #fff;
	font-weight: 300;
}
nav a:focus,
nav a:hover {
	/* color: white; */
	color: #fff;
	text-decoration: none;
}

nav ul li{
	list-style: none;
	text-align: right;
	/* border-right: 2px solid white; */
	border-right: 2px solid #fff;
	padding-bottom: 5px;
	padding-right: 20px;
	/* position: relative; */
	/* text-transform: none; */
	text-transform: capitalize;
}

nav ul li.active{
	border-right: 5px solid #fff;
	/* text-transform: none; */
}

nav{
	opacity: 0;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	-webkit-transition-delay: .3s;
	-moz-transition-delay: .3s;
	-o-transition-delay: .3s;
	transition-delay: .3s;
}
header.clicked nav{
	opacity: 1;
}

nav ul li ul{
	position: absolute;
	right: -400px;
	top: -4px;
	display: none;
}
nav ul li ul li, 
nav ul li ul li.active{
	border: none;
	padding-bottom: 0px;
	padding-left: 10px;
	/* height: 45px; */
	width: 400px;
	/* text-transform: lowercase; */
}
nav ul li ul li a{
	display: block;
	/* height: 50px; */
	font-size: 24px;
	font-weight: 400;
	text-align: left;
	padding: 0 0 0 10px;
}
nav ul li.selected{
	border-right: 10px solid #fff;
	padding-right: 12px;

}

nav ul li.selected:after {
    /* content: "─"; */
    margin-right: -20px;
    color: #000;
    font-size: 20px;
}

nav ul li.selected ul{
	display: block;
}
nav ul li.selected ul {
    display: block;
    max-height: 60vh;
    /* overflow: auto; */
	overflow-y: overlay;
}

nav ul li.selected ul::-webkit-scrollbar {
 width: 5px;
  height: 8px;
  background-color: #cfc3b4;
}
nav ul li.selected ul::-webkit-scrollbar-thumb {
  background: #a29b90;
}

nav ul li.notselected a{
	opacity: .5;
}
nav ul li.selected ul li a{
	opacity: 1;
}





@media screen and (max-width:1024px){
	nav {
		left: 5%;
	}
	nav ul li ul{
		top: 15px;
	}

}
@media screen and (max-width:580px){
	nav {
		left: 0;
	}
	nav ul {
		padding-left: 5px;
	}
	nav ul li {
		padding-bottom: 15px;
	}
	nav ul li a{
		font-size: 15px;
		font-weight: 600;
		
	}
	nav ul li ul{
		top: 15px;
	}
	nav ul li ul li{
		height: 30px;
	}
	nav ul li ul li a{
		font-size: 15px;
		height: 30px;
	}
}
@media screen and (max-width:320px){
	header .head .tile.socialmedia{
		display: none;
	}
}


.searchicon {
    position: absolute;
    bottom: 120px;
    right: 40px;
}
.search img {
    max-width: 45px;
}

.contact {
    padding: 15px 30px;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
	border-top:2px solid #fff;
    background: #506170;
	color: #fff;
	text-align:center;
	opacity: 0;
	transition: all .3s ease-in;
	-webkit-transition: all .3 ease-in;
	-webkit-transition-delay: .5s;
	-moz-transition-delay: .5s;
	-o-transition-delay: .5s;
	transition-delay: .5s;
  
}
.contact h4 {
	color: #fff;
}

header.clicked .contact {
	opacity: 1;
}
