@charset "UTF-8";
/* CSS Document */


header {
  width: calc(100% - 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #2A414A;
 /*  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);*/
  height: 100px;
  position: fixed;
  top: 0;
  z-index: 999999999 !important;
	padding-left:16px;
	padding-right:16px;
}
.div_logo {
	display:flex;
	align-items: center;
	justify-content: center;
  width: 120px;
  height:60px;
}

.div_logo img{
	width:100%;
}

.menu-desktop{
	display:none;
}

.menu-desktop .instagram img{
	width:28px;
	cursor: pointer !important;
}

.menu-desktop a{
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer !important;
}

.dropdown-mobile{
	display: none;
    height: calc(96.5vh - 100px);
    flex-direction: column;
    padding-top: 32px;
    position: fixed;
    width: 100%;
    background-color: #2A414A;
	z-index:99999999 !important;
}

.dropdown-mobile a{
	color: #FFFFFF;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 29px;
	text-align: center;
	text-transform: uppercase;	
	text-decoration:none;
	display:block;
	padding:16px;
	margin:16px 32px;
}

.hamburger-mobile img{
	width:40px;
}

/* iPhone SE und co. */

@media (max-width: 375px) {
	.dropdown-mobile a{
			margin:8px 32px;
	}	
}

