<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */
/*Navigation*/
#overlay-nav {
	z-index: 3;
	background-color: #333;
	border-bottom: 0px;
	border-top: 5px solid #F9AE29;
	border-left: 5px solid #F9AE29;
	border-right: 5px solid #F9AE29;
	height: 75px;
	/*backdrop-filter: blur(5px);*/
}
#overlay-nav &gt; span {
	/*background-color: #333;*/
	font-size:30px;
	cursor:pointer;
	color: white;
	
	/*position: absolute;
	right: 0px;*/
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  overflow-x: hidden;
  transition: 0.5s;
  background-image: url("../images/slider--298389640.jpg");
  background-size: cover;
	background-position: bottom;
	backdrop-filter: blur(5px);
}

.overlay-content {
  position: relative;
  top: 20%;
  width: 100%;
	
margin:0 auto;
  text-align: center;
  margin-top: 30px;
	
}
.closebtn{
	color: #A6A6A6;
}
.overlay a.links-top {
	font-size: 1rem;
	color: #B4B4B4;
}

.overlay a {
	
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}






.menu-icon {
  position: absolute;
	right: 0px;
  width: 50px;
  height: 50px;
  cursor: pointer;
	margin: 10px;
	background-color: #333;
}
.menu-icon .menu-icon__cheeckbox {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  z-index: 2;
  -webkit-touch-callout: none;
  position: absolute;
  opacity: 0;
}
.menu-icon div {
  margin: auto;
  position: absolute;
  top: 0;
  right: 20px;
 /* left: 0;*/
  bottom: 0;
  width: 30px;
  height: 20px;
	padding: 10px;
}
.menu-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--bar-bg, #fff);
  border-radius: 1px;
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.menu-icon span:nth-child(1) {
  top: 0;
}
.menu-icon span:nth-child(2) {
     top: 0;
    bottom: 0;
    margin: auto;
}
.menu-icon span:nth-child(3) {
  bottom: 0;
}

@media (min-width: 1024px) {
  .menu-icon:hover span:nth-child(1) {
    width: 26px;
  }
	.menu-icon:hover span:nth-child(2) {
    width: 20px;
  }
  .menu-icon:hover span:nth-child(3) {
    width: 12px;
  }
}



/*Accordion im Overlay-Nav*/
.overlay-content .accordion-item {
	background-color: transparent;
	border: 0px;
}
.overlay-content  .accordion-button {
	display: block;
	text-align: center;
	
	background-color: rgba(255,255,255,0);
	box-shadow: none;
	/*backdrop-filter: blur(5px);*/
}
.overlay-content  .accordion-button:focus {
	box-shadow: none;
}
.overlay-content  .accordion-button::after {
	display: inline-block;
	position: relative;
	top: 0px;
	
}
.overlay-content  .accordion-button:not(.collapsed) {
	background-color: transparent;
}

.overlay-content .accordion-button {
	font-size: 2rem;
	color: #B4B4B4;
	font-weight: lighter;
}
.overlay-content .accordion-body a {
	color: #A6A6A6;
	
}
.overlay-content .accordion-body a:hover {
	color: #FFFFFF;
}
.accordion-button:not(.collapsed)::after {
	background-image: url("../images/arrow.svg");
}</pre></body></html>