.menu ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}


.menu li {
	display:inline-block;
	float: left;
	/*margin-right: 1px;*/
}


.menu li a {
	display:block;
	/*min-width:140px;*/
	/*height: 50px;*/
	text-align: center;
	/*line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #2f3036;*/
	text-decoration: none;
}


.menu li:hover a {
	/*background: #19c589;*/
	border-bottom: 1px solid white;
}


.menu li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 40px;
	line-height: 40px;
}


.menu li:hover ul a:hover {
	background: #19c589;
	color: #fff;
}


.menu li ul {
	display: none;
}


.menu li ul li {
	display: block;
	float: none;
}


.menu li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}


.menu ul li a:hover + .hidden,.menu .hidden:hover {
	display: block;
}


.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #19c589;
	text-align: center;
	padding: 10px 0;
	display: none;
}


input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}


input[type=checkbox]:checked ~ .menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
	.menu ul {
		position: static;
		display: none;
	}
	.menu li {
		margin-bottom: 1px;
	}	
	.menu ul li,.menu  li a {
		width: 100%;
	}
	.show-menu {
		display:block;
	}
}








/* SLIDER */

.slideshow {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slideshow:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.5);
    z-index: 9;
    width: 100%;
    height: 100%;
}


.slideshow img {
  position: absolute;
  animation: round 16s infinite;
  opacity: 1;
}

@keyframes round {
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
}
img:nth-child(1) {
  animation-delay: 12s;
}

img:nth-child(2) {
  animation-delay: 8s;
}

img:nth-child(3) {
  animation-delay: 4s;
}

img:nth-child(4) {
  animation-delay: 0s;
}