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

@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;900&family=Saira+Extra+Condensed:wght@400;500;600;700;800;900&display=swap');

header {
  width: calc(100% - 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 999999999 !important;
	padding-left:30px;
	padding-right:30px;
	overflow:hidden;
}
.div_logo {
  width: 70px;
}

.div_logo img{
	width:100%;
}

.menu-desktop{
	display:none;
}

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

.dropdown-mobile a{
	color: #04202B;
	font-family: 'Saira Condensed';
	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:48px 32px;
}

/* iPhone SE und co. */

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


/* DESKTOP */

@media (min-width: 720px) {
	.menu-desktop{
		display:flex;
	}
	.hamburger-mobile{
		display:none;
	}
	.menu-desktop a{
		font-family: 'Saira Condensed';
		font-weight:500;
		text-decoration: none;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 16px;
		color:#000;
		cursor:pointer;
	}

	.menu-desktop a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
		cursor:pointer;
}

.menu-desktop a:hover::after {
    width: 100%;
    transition: width .3s;
	cursor:pointer;
}
	.menu-desktop a:last-child{
		margin-right:0px;
	}
}

