/* Allgemeines Cascading Style Sheet **************************************************/

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	justify-content: center;
	align-items: center;
	scroll-behavior: smooth;
	font-size: 20px;
}

section{
	min-height: 100%;
	margin: 1% 0;

}

a{
	text-decoration: none;
	color: #353535;
}

a:hover{
	color: #f8c311;
}

p a{
	text-decoration: none;
	color: #f8c311;
}

p a:hover{
	color: #353535;
	text-decoration: underline;
}

li{
	list-style-type: none;
}

h1{
	font-family: 'Rochester', kursiv;
	padding-top: 10%;
	font-size: 3rem;
	font-weight: 900;
	color: #f8c311;
	text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.4);
}

h2{
	font-family: 'Heebo', sans-serif;
	font-size: 1.5rem;
	margin-bottom: 0;
	color: #353535;
}

h3{
	font-family: 'Heebo', sans-serif;
	font-size: 1rem;
	color: #fff;
	margin: 70px auto 5px auto;
}

h4{
	font-family: 'Dosis', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
}

h5{
	font-family: 'Heebo', sans-serif;
	font-size: 20px;
	margin-bottom: 0;
	color: #353535;
}

p{
	font-family: 'Fira Sans', sans-serif;
	font-size: 0.9rem;
	color: #353535;
	max-width: 90%;
	margin: 0 auto;
}

blockquote{
	font-family: 'Patrick Hand', cursive;
	font-size: 0.9rem;
}

hr{
	width: 100px;
	height: 3px;
	background: #353535;
	border: 0;
	margin: 0 auto 40px auto;
}

.button{
	width: 250px;
	background-color: #f8c311;
	border-color: #f8c311;
	border-radius: 15px;
	border-style: solid;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
	font-family: 'Dosis', sans-serif;
	margin: 10px 2px;
	cursor: pointer;
}

.button:hover{
	background-color: white;
	color: #f8c311;
	margin-bottom: 10px;
	transform: translate(0, -8px);
	box-shadow: 0 8px 4px rgba(0, 0, 0, 0.2);
}

a, img, .button, .checkbtn .bar{
	transition: all 300ms;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
}

header, header ul li a{
	transition: all 600ms;
	-webkit-transition: all 600ms;
	-moz-transition: all 600ms;
	-o-transition: all 600ms;
}


/* HEADER **************************************************/
header{
	width:100%;
	height: 90px;
	position: fixed;
	top: 0;
	left: 0;
	background: #353535;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
	z-index: 999;
}

header.sticky{
	height: 50px;
}

header.sticky #main-nav ul li a{
	font-size: 25px;
	padding:0 20px;
}

header.sticky #main-nav ul{
	margin-top: 5px;
}

#main-nav{
	font-family: 'Dosis', sans-serif;
	font-weight: 800;
	width: 100%;
	height: 100%;
}

#main-nav ul{
	height: 100%;
	margin-top: 10px;
}

#main-nav ul li{
	position: relative;
	display: inline;
	padding: 0 20px;
}

#main-nav ul li a{
	position: relative;
	font-size: 2.25rem;
	color: #FFF;
	text-align: center;
	cursor: pointer;
}

#main-nav ul li a:hover{
	font-size: 2.25;
	color: #f8c311;
}

.checkbtn {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 37px;
  height: 30px;
  cursor: pointer;
}

.checkbtn .bar {
  height: 5px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
}

#check {
  display: none;
}

#check:checked ~ .checkbtn #bar1{
	transform: translate(0, 12.5px) rotate(45deg);
}

#check:checked ~ .checkbtn #bar3{
	transform: translate(0, -12.5px) rotate(-45deg);
}

#check:checked ~ .checkbtn #bar2{
	display: none;
}

@media (max-width: 870px){

	header{
		height: 60px;
	}

	#main-nav ul li a{
		font-size: 28px;
	}

	#main-nav ul li a:hover{
		font-size: 1.4rem;
	}

	header.sticky{
		height: 3rem;
	}

	header.sticky #main-nav ul li a{
		font-size: 1.4rem;
		padding:0 0px;
	}

	header.sticky #main-nav ul{
		margin-top: 10px;
	}
}

@media (max-width: 635px){

  #main-nav ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #353535;
    top: 40px;
    left: -150%;
    text-align: center;
    transition: all .5s;
		padding: 0;
  }

  #main-nav ul li{
    display: block;
    margin: 30px 0;
    line-height: 30px;
  }

  #main-nav ul li a{
    font-size: 1rem;
  }

  #check:checked ~ ul{
    left: 0;
  }
}

@media (min-width: 635px) {
  .checkbtn{
    display: none;
  }
}

/* LOGO **************************************************/
#logo{
	background: url(img/landing.JPG);
	background-position: 0 80%;
	background-size: cover;
	background-attachment: fixed;
}

#logo h2{
	margin-top: 110px;
	margin-bottom: 10px;
	font-size: 50px;
	color: #FFF;
}

#logoimg img{
	width: 500px;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
	-webkit-filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
	margin-top: 0px;
}

@media (max-width: 600px){

	#logo h2{
		font-size: 30px;
	}

	#logoimg img{
		width: 350px;
	}
}

.pfeildown{
	position: absolute;
	bottom: 5%;
	margin: 0 auto;
}

.pfeildown img{
	width: 50px;
	opacity: 0.7;
}

.pfeildown img:hover{
	opacity: 1;
}

#pfeil-ausblenden.sticky{
	visibility: hidden;
}

/* SMALL_NAVIGATION **************************************************/
#small{
	max-height: 20px;
}

#small-nav{
	text-align: left;
	font-family: 'Dosis', sans-serif;
}

#small-nav ul li{
	display: inline;
}

#small-nav ul p{
	display: inline;
	color: #f8c311;
	font-family: 'Dosis', sans-serif;
	padding-right: 6px;
	padding-left: 6px;
}

#small-nav ul li a{
	color: #f8c311;
	text-decoration: underline;
}

#small-nav ul li a:hover{
	color: #353535;
	text-decoration: none;
	transform: translate(0, -2px);
}






.material-symbols-outlined{
	transform: translate(-5px, 0px);
}

/* FOOTER **************************************************/
footer{
	width: 100%;
	height: 490px;
	background-color: #353535;
	bottom: 0;
	left: 0;
}
footer img{
	width: 400px;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
	-webkit-filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
	margin-top: 40px;
}

footer p{
	color: #fff;
}

footer p span{
	font-weight: 700;
	padding-left: 10px;
	color: #ffffff;
	text-decoration: none;
}

footer #mailto, footer #footer-bottom ul li a{
	color: #fff;
	font-family: 'Dosis', sans-serif;
}

#mailto:hover, #footer-bottom ul li a:hover{
	color: #f8c311;
}

.wrapper{
	height: 60px;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 20px auto 50px auto;
	font-family: 'Poppins', sans-serif;
}

.wrapper a .social-button{
	display: inline-block;
	height: 60px;
	width: 60px;
	margin: 0 5px;
	overflow: hidden;
	background: #fff;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
	transition: all 0.3s ease-out;
}

.wrapper a .social-button:hover{
  width: 200px;
}

.wrapper a .social-button .icon{
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 60px;
  transition: all 0.3s ease-out;
  float: left;
  transform: translateX(-1px);
}
.wrapper a:nth-child(1) .social-button:hover .icon{
  background: #4267B2;
  color: #4267B2;
}
.wrapper a:nth-child(2) .social-button:hover .icon{
  background: #1DA1F2;
}
.wrapper a:nth-child(3) .social-button:hover .icon{
  background: #bd081c;
}
.wrapper a:nth-child(4) .social-button:hover .icon{
  background: #0077B5;
}
.wrapper a:nth-child(5) .social-button:hover .icon{
  background: #f8c311;
}
.wrapper a .social-button .icon i{
  font-size: 25px;
  line-height: 60px;
  transition: all 0.3s ease-out;
}
.wrapper a .social-button:hover .icon i{
  color: #fff;
}
.wrapper a .social-button span{
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  margin-left: 10px;
  transition: all 0.3s ease-out;
}
.wrapper a:nth-child(1) .social-button span{
  color: #4267B2;
}
.wrapper a:nth-child(2) .social-button span{
  color: #1DA1F2;
}
.wrapper a:nth-child(3) .social-button span{
  color: #bd081c;
}
.wrapper a:nth-child(4) .button span{
  color: #0077B5;
}
.wrapper a:nth-child(5) .social-button span{
  color: #f8c311;
}

.wrapper a:nth-child(1):hover{
  color: #4267B2;
}
.wrapper a:nth-child(2):hover{
  color: #1DA1F2;
}
.wrapper a:nth-child(3):hover{
  color: #bd081c;
}
.wrapper a:nth-child(4):hover{
  color: #0077B5;
}
.wrapper a:nth-child(5):hover{
  color: #f8c311;
}

#mailto{
	font-size: 20px;
}

#footer-bottom{
	position: static;
	height: 25px;
	margin: 5px auto;
	width: 100%;
	display: block;
}

#footer-bottem table{
	margin: 0;
}

#footer-nav{
	width: 75%;
}

#footer-nav ul li{
	position: relative;
	display: inline;
	float: left;
	padding-left: 20px;
}

#copyright{
	width: 35%;
	float: right;
	padding-right: 40px;
}

#copyright p{
	font-size: medium;
}


@media (max-width: 740px){
	footer img{
		width: 300px;
		margin-top: 40px;
	}


	#footer-nav ul{
		float: left;
	}

	#footer-nav ul li{
		text-align: left;
		display: block;
		float: none;
	}

	#copyright{
		padding-right: 30px;
	}

	#copyright p{
		font-size: small;
	}
}

/* SCROLL-UP-BUTTON **************************************************/
#back-to-top-btn {
	display: none;
	position: fixed;
	bottom: 60px;
	right: 20px;
	font-size: 26px;
	width: 50px;
	height: 50px;
	background-color: #fff;
	color: #f8c311;
	cursor: pointer;
	outline: none;
	border: 3px solid #f8c311;
	border-radius: 50%;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
	transition-property: background-color, color;
	z-index: 998;
}
#back-to-top-btn:hover, #back-to-top-btn:focus {
	background-color: #f8c311;
	color: #fff;
}

@media(max-width: 992px) {
	#back-to-top-btn { font-size: 22px; width: 40px; height: 40px; bottom: 60px; right: 15px; }
}
@media(max-width:768px) {
	#back-to-top-btn { font-size: 18px; width: 32px; height: 32px; bottom: 6px; right: 6px; }
}

/* Animations */
.btnEntrance{
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: btnEntrance;
}

/* fadeInUp */
@keyframes btnEntrance{
	from{
    opacity: 0;
    transform: translate3d(0, 100%, 0);
	}
	to {
    opacity: 0.8;
    transform: translate3d(0, 0, 0);
	}
}

.btnExit {
	animation-duration: 0.25s;
	animation-fill-mode: both;
	animation-name: btnExit;
}


/* fadeOutDown */
@keyframes btnExit{
	from{
	opacity: 0.8;
	}
	to{
    opacity: 0;
    transform: translate3d(0, 100%, 0);
	}
}
