@import url('https://fonts.cdnfonts.com/css/avenir');

*{
	padding: 0;
	margin: 0;
}

.main_about{
	background-color: #2B80A1;
	font-family:'avenir';
	color: white;
}

.footer{
	position: relative;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: white;
	color: black;
}



p{
	font-family: 'avenir';
	text-align: center;
}

a {
  font-family: 'avenir';
  color: #000;
  text-decoration: none;
}

.p-menu1{
   height: 100%;
}

.left{
	width: 25%;
	height: 300px;
}

.center {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right{
	width: 25%;
	height: 100px;
}

/* Hamburger */
.hamburger1 {
  height: 45px;
  margin: 10px;
  display: -ms-grid;
  display: none;
  grid-template-rows: repeat(3, 1fr);
  justify-items: left;
  z-index: -180;
}

.hamburger1 div {
  background-color: black;
  position: relative;
  width: 40px;
  height: 5px;
  margin-top: 7px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#toggle1 {
  display: none;
}

#toggle1:checked + .hamburger1 .top {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 22.5px;
}

#toggle1:checked + .hamburger1 .meat {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -5px;
}

#toggle1:checked + .hamburger1 .bottom {
  -webkit-transform: scale(0);
          transform: scale(0);
}

#toggle1:checked ~ .menu1 {
  height: 340px;
}


/* Menu */
.menu1 {
  width: 100%;
  background-color: white;
  margin: 0;
  display: -ms-grid;
  display: none;
  grid-template-rows: 1fr repeat(4, 0.5fr);
  grid-row-gap: 25px;
  padding: 0;
  list-style: none;
  clear: both;
  width: auto;
  text-align: center;
  height: 0px;
  overflow: hidden;
  transition: height .4s ease;
  z-index: 120;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu1 a:first-child {
  margin-top: 40px;
}

.menu1 a:last-child {
  margin-bottom: 40px;
}

.link1 {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  font: 700 20px 'avenir', sans-serif;
}

.link1:hover {
  background-color: #fff;
  color: rgb(61, 61, 61);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.image{
	width: 500px;
	animation: fadeIn 5s;
}

@keyframes fadeIn{
	0%{opacity: 0;}
	100%{ opacity: 1;} 
}

.menu_table{
	width: 100%;
}

.fullview_menu{
	width:475px;
	margin:0 auto;
	
}

.fullview_menu ul{
	display: flex;
	text-align: center;
	align-items: center;
	list-style:none;
}

.fullview_menu ul a{
	padding: 0 30px;
	text-decoration: none;
}

/*Slides*/
.welcome-banner{
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: 'avenir';
	color: white;
	background-color: white;
	text-align: center;
}

.other_welcome-banner{
	font-family: 'avenir';
	color: white;
	background-color: #2B80A1;
	text-align: center;
	padding-left: 15px;
	padding-right: 15px;}

.my-slides{
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #666;
}

.about_us{padding-top: 20px; padding-bottom: 20px; background-color: #2B80A1;text-align: center;}
	.about_container {position: relative; text-align: center; color: white;}
	.top-left {position: absolute; top: 28px; left: 55px;}
	.alt_about_container{display: none;}
	body{font-family: 'avenir';}
	h1{font-size: 72px;}
	h2{font-size:32px; color: green;}
	p{font-size: 22px;color: green;}
	.footer {
			position: relative;
			left: 0;
			bottom: 0;
			width: 100%;
			background-color: white;
			color: black;
			text-align: center;
		}
		
		@media(max-width: 800px){
			.about_container{
				display: none;
			}
			.alt_about_container{
				display: block;
			}
		}

/*Home text*/
.welcome{
	font-size: 3.6rem;
	color: #EDEDED;
	font-family: 'avenir';
}

.spiel{
	font-size: 1.4rem;
	color: black;
	font-family: 'avenir';
	font-weight: 500;
}

.background-container{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
}

.gallery{
	display: none;
}

/*cookies*/
.wrapper {
  position: fixed;
  bottom: 0px;
  right: -370px;
  max-width: 450px;
  width: 100%;
  background: #EBEBEB;
  border-radius: 8px;
  padding: 10px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrapper.show {
  right: 20px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header i {
  color: #4070f4;
  font-size: 32px;
}
header h2 {
  font-family: 'avenir';
  color: #21C590;
  font-weight: 500;
}
.wrapper .data {
  margin-top: 16px;
}
.wrapper .data p {
  font-family: 'avenir';
  color: #333;
  font-size: 16px;
}
.data p a {
  color: #4070f4;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: white;
  padding: 8px 0;
  border-radius: 4px;
  background: #2B80A1;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background-color: cyan;
}
#declineBtn {
  border: 2px solid #2B80A1;
  background-color: #fff;
  color: #2B80A1;
}
#declineBtn:hover {
  background-color: cyan;
  color: #fff;
}


@media(max-width: 800px){
	
	.center{
		width: 90%;
	}
	
	.higherlife{
		display: none;
	}
	
	.right{
		width: 50%;
		height: 100px;
	}
	
	.p-menu1{
		height: 100%;
		width: auto;
	}
	
	.image{
		width: 300px;
	}
	.hamburger1{
		display: grid;
		width: 20px;
	}
	
	.menu1{
		display: grid;
	}
	
	.menubar{
		display: none;
	}
	
	.my-slides{
		height: 10vh;
		display: none;
	}
	
	.background-container{
		display: none;	
	}
	
	.gallery{
		align-items: center;
		justify-items: center;
		margin: 1%;
		display: block;
	}
	
	.background2{
		margin-left: 1%;
		height: 16%;
		width:14.55%;
	}
}