﻿/*
Rapp Template
creation Date: 2018-01-22
Author: Sebastian Osinski
http://www.sebbi.net
*/


#topmenu-wrapper,
#topmenu-wrapper *,
#company-title, #company-title *{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

#topmenu-wrapper{
	background-color: white;
	text-align: center;
}
#topmenu-wrapper{
	height: 70px;
}
#top-menu{
	position: relative;
	width: 100%;
	background-color: #ffffff;
	border-bottom: 1px solid #eaeaea;
	height: 70px;
}
#top-menu.fixed,
#topmenu-wrapper.menu-active #top-menu{
	position: fixed;
	top: 0px;
	left: 0px;
}
#top-menu ul.nav li{
	display: inline-block;
	line-height: 70px;
	font-size: 20px;
	font-weight: 300;
	color: #989898;
	width: 230px;
}
#top-menu ul.nav li.current,
#top-menu ul.nav li:hover{
	color: #1c1a1d;
	font-weight: 700;
}
/* MENU ACTIVATOR */
#menu-activator{
	display: none;
}
#menu-activator{
	position: absolute;
	height: 20px;
	width: 30px;
	top: 25px;
	cursor: pointer;
	right: 30px;
}
#menu-activator:hover > div:nth-child(1),
#topmenu-wrapper.menu-active #menu-activator > div:nth-child(1){
	width: 80%;
}
#menu-activator:hover > div:nth-child(2),
#topmenu-wrapper.menu-active #menu-activator > div:nth-child(2){
	width: 90%;
}
#menu-activator > div{
	width: 100%;
	height: 3px;
	background-color: #1c1a1d;
	margin-bottom: 6px;
	margin-left: auto;
	margin-right: 0px;
}

/* COMPANY NAME */
#company-title{
	height: 40px;
	width: auto;
	position: absolute;
	top: 6px;
	left: 10%;
}
#company-title.fixed{
	position: fixed;
	top: 10px;
	height: 80px;
}

@media (max-width: 1810px){
	#company-title{
		left: 40px;
	}
}
@media (max-width: 1500px){
	#top-menu ul.nav li{
		width: 190px
	}
}
@media (max-width: 1260px){
	#menu-activator{
		display: block;
	}
	#company-title{
		max-width: 200px;
	}
	#top-menu ul.nav{
		height: 0px;
		overflow: hidden;
	}
	#top-menu ul.nav li{
		display: block;
		width: 100%;
	}
	#topmenu-wrapper.menu-active #top-menu ul.nav{
		height: auto;
	}
	#topmenu-wrapper.menu-active{
	}
	#topmenu-wrapper.menu-active #top-menu{
    height: auto;
	}
	#topmenu-wrapper.menu-active #company-title{
		left: -500px;
	}
}