/** Srart Variable **/
:root {
  --secound-color: #333;
  --high-color: #000000;
  --third-color: rgba(139, 139, 139, 0.7);
  --font-color: #000000;
}

/** End Variable **/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style-type: none;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #000000;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}

/** Small **/
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/** Medium **/
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/** Large **/
@media (min-width: 1200px) {
  .container {
    width: 1100px;
  }
}

/***********Main Content***********/
.text_content {
	width: fit-content;
	margin: 0 auto 80px;
}
.text_content h2 {
	font-size: 50px;
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
	letter-spacing: -1px;
  color: white;
}
@media (max-width: 768px) {
  .text_content h2 {
    font-size: 40px;
  }
}
.text_content h2::before {
	content: "";
	position: absolute;
	width: 70px;
	height: 2px;
	background-color: white;
	right: -80px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
@media (max-width: 768px) {
  .text_content h2::before {
	content: "";
	position: absolute;
	width: 40px;
  right: -50px;
}
}
.text_content h2::after {
	content: "";
	position: absolute;
	width: 70px;
	height: 2px;
	background-color: white;
	left: -80px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
@media (max-width: 768px) {
  .text_content h2::after {
	content: "";
	position: absolute;
	width: 40px;
  left: -50px;
}
}
/***********Main Content***********/

/***********Navigation***********/
nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  position: relative;
}

nav .container::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 2px;
  background-color: white;
  bottom: -15px;
  width: calc(100% - 30px);
}

nav .container .logo a img {
  width: 200px;
  margin: 0;
}

@media (max-width: 768px) {
  nav .container .logo a img {
    width: 120px;
  }
}

nav .container .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav .container .nav-links li {
  padding: 0 40px;
}

nav .container .nav-links li:last-child {
  padding-right: 10px;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  nav .container .nav-links {
    position: absolute;
    right: 0;
    height: calc(100vh - 120px);
    top: 115px;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    transform: translateY(-150%);
    -webkit-transform: translateY(-150%);
    -moz-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    -o-transform: translateY(-150%);
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    z-index: 2;
  }
}

nav .container .nav-active {
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
}

nav .container .nav-links li a {
  text-decoration: none;
  font-weight: 700;
  color: white;
  font-size: 17px;
  opacity: 0.7;
}

nav .container .nav-links li a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  nav .container .nav-links li {
    opacity: 0;
  }
  nav .container .nav-links li:last-child {
    padding-left: 0;
  }
  nav .container .nav-links li a {
    color: white;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 1;
  }
  nav .container .nav-links li a:hover {
    color: white;
  }
}

nav .container .nav-links li a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

nav .container .burger {
  display: none;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 768px) {
  nav .container .burger {
    display: block;
  }
}

nav .container .burger div {
  width: 25px;
  height: 4px;
  background-color: white;
  margin: 7px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

@keyframes navLinksFade {
  from {
    opacity: 0;
    transform: translateX(50px);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-14px, 5px);
  -webkit-transform: rotate(-45deg) translate(-14px, 5px);
  -moz-transform: rotate(-45deg) translate(-14px, 5px);
  -ms-transform: rotate(-45deg) translate(-14px, 5px);
  -o-transform: rotate(-45deg) translate(-14px, 5px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-10px, -2px);
  -webkit-transform: rotate(45deg) translate(-10px, -2px);
  -moz-transform: rotate(45deg) translate(-10px, -2px);
  -ms-transform: rotate(45deg) translate(-10px, -2px);
  -o-transform: rotate(45deg) translate(-10px, -2px);
}

/***********Navigation***********/
/***********Landing***********/
.landing {
  min-height: 100vh;
  background-color: black;
  background-image: url(../Photos/LandingPage.jpg);
  background-size: cover;
  position: relative;
}

@media (max-width: 768px) {
  .landing {
    background-position: -430px 0px;
    min-height: 90vh;
  }
}

.landing .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.landing .text {
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
  color: white;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.landing .text h1 {
  font-size: 70px;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 768px) {
  .landing .text h1 {
    font-size: 50px;
    margin: 0 10px;
    font-weight: 700;
  }
}

@media (max-width: 667px) {
  .landing .text h1 {
    font-size: 45px;
    margin: 0 10px;
    font-weight: 700;
    margin-top: 100px;
  }
}

.landing .text .button {
  position: relative;
  margin: 0 auto;
  width: 40%;
}

.landing .text .button a {
  text-decoration: none;
}

.landing .text .button div {
  margin: 40px;
}

@media (max-width: 768px) {
  .landing .text .button {
    flex-wrap: wrap;
    margin-top: 100px;
    width: 100%;
  }
}

.landing .text .button button {
  all: unset;
  cursor: pointer;
  background-color: gray;
  color: white;
  padding: 15px 20px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 6px;
  width: 200px;
}

@media (max-width: 768px) {
  .landing .text .button button {
    margin-bottom: 10px;
    width: 250px;
  }
  .landing .text .button div {
    margin: 15px;
  }
  .landing .text .button .right-move {
    animation: slideright 1.5s ease-out;
    -webkit-animation: slideright 1.5s ease-out;
  }
  @keyframes slideright {
    from {
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
    }
    to {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
  }
  .landing .text .button .left-move {
    animation: slideleft 1.5s ease-out;
    -webkit-animation: slideleft 1.5s ease-out;
  }
  @keyframes slideleft {
    from {
      transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
  }
}

.landing .text .button button i {
  padding-right: 10px;
}

.landing .scroll a {
  color: white;
}
.landing .scroll i {
  position: absolute;
  top: 92%;
  left: 50%;
  z-index: 5;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
  animation: scrolling 5s linear infinite;
  -webkit-animation: scrolling 5s linear infinite;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
}

@keyframes scrolling {
  0%,
  10%,
  20%,
  30%,
  50%,
  80%,
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  40%,
  60% {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
  }
}

/***********Landing***********/
/***********About***********/
.about {
	padding-top: 100px;
	padding-bottom: 100px;
}
.about .container .content {
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: relative;
}
@media (max-width: 991px) {
	.about .container .content {
		flex-direction: column;
	}
}
.about .content .text {
	max-width: 550px;
	width: 100%;
}

@media (max-width: 991px) {
	.about .content .text {
		margin-bottom: 70px;
		text-align: center;
	}
}
.about .content .text h3 {
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 30px;
	color: white;
}
.about .content .text p {
	font-size: 18px;
	color: white;
	line-height: 1.5;
}
@media (max-width: 991px) {
	.about .content .text h3 {
		font-size: 35px;
	}
	.about .content .text p {
		font-size: 16px;
    text-align: left;
	}
  .about .content .text p .span1, .span2, .span3 {
		margin-top: 10px;
    display: block;
	}
}
.about .content .image img {
	width: 400px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
@media (max-width: 991px) {
	.about .content .image img {
	width: 350px;
}
}
.about .content .image::before {
	content: "";
	position: absolute;
	width: 300px;
	height: 500px;
	background-color: white;
	top: -4%;
	right: -20px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	z-index: -1;
}
@media (max-width: 991px) {
	.about .content .image::before {
		display: none;
	}
}
/***********About***********/
/***********Static***********/
.static {
	padding-top: 100px;
	padding-bottom: 100px;
}
.static .container  {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
	gap: 40px;
}
@media (max-width: 767px) {
	.static .container {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}
}
.static .content .box {
	display: flex;
	margin-bottom: 40px;
	max-width: 500px;
	padding-bottom: 30px;
	width: 100%;
}
@media (max-width: 767px) {
	.static .content .box {
		flex-direction: column;
	}
}
.static .content .box:not(:last-child) {
	border-bottom: 1px solid #ffffff;
}
/*
.static .content img {
	width: 60px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	display: flex;
	align-self: center;
}
  */
.static .content .box .text {
	margin-left: 30px;
  color: white;
}
@media (max-width: 767px) {
	.static .content .box .text {
		text-align: center;
		margin: 0;
	}
}
.static .content .box .text h2 {
	font-size: 20px;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.static .content .box .text h2 {
		margin-top: 20px;
	}
}
.static .content .box .text p {
	color: #ffffff;
	font-size: 14px;
}
.static .content .box .text .icon {
	margin-top: 10px;
	font-size: 14px;
	color: white;
}
.static .container .box-content {
	border-right: 1px solid #ffffff;
	padding-right: 40px;
}
@media (max-width: 767px) {
	.static .container .box-content {
		border-right: none;
		text-align: center;
		padding: 0;
		margin-top: 40px;

	}
}
.static .container .box-content h1 {
	margin: 0;
	text-align: center;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
}
.static .container .box-content .icon {
	text-align: center;
	margin-bottom: 30px;
	color: white;
}
.static .container .box-content p {
	color: #ffffff;
	font-size: 17px;
	margin: 30px auto 30px;
	max-width: 400px;
	width: 100%;
	text-align: center;
}
.static .container .box-content .btn {
	margin: 60px auto;
	display: block;
	background-color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}
.static .container .box-content .btn:hover {
	background-color: #bebebe;
  padding: 12px 22px;
}
.static .container .box-content .btn a {
	color: black;
  text-decoration: none;
}
/***********Static***********/
/***********Protfolio***********/
.protfolio {
	padding-top: var(--padding);
	padding-bottom: var(--padding);
}
.protfolio .content-protfolio {
	display: flex;
	flex-wrap: wrap;
}
.protfolio .content-protfolio .box {
	position: relative;
	overflow: hidden;
}
@media (min-width: 768px) {
	.protfolio .content-protfolio .box {
		flex-basis: 50%;
	}
}
@media (min-width: 1199px) {
	.protfolio .content-protfolio .box {
		flex-basis: 25%;
	}
}
.protfolio .content-protfolio .box img {
	width: 100%;
	max-width: 100%;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}
.protfolio .content-protfolio .box:hover img {
	transform: rotate(3deg) scale(1.1);
	-webkit-transform: rotate(3deg) scale(1.1);
	-moz-transform: rotate(3deg) scale(1.1);
	-ms-transform: rotate(3deg) scale(1.1);
	-o-transform: rotate(3deg) scale(1.1);
}
.protfolio .content-protfolio .box .text {
	position: absolute;
	left: 0;
	bottom: -100%;
	background-color: white;
	color: var(--main-color);
	width: 100%;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	padding: 10px;
}
.protfolio .content-protfolio .box:hover .text {
	bottom: 0;
}
.protfolio .content-protfolio .box .text h4 {
	text-transform: uppercase;
	font-weight: 400;
  font-size: 13px;
}
.protfolio .content-protfolio .box .text p {
	color: var(--main-color);
	font-weight: 700;
	margin: 5px 0 0;
  text-transform: uppercase;
}

/***********Protfolio***********/
/***********Random Text***********/
section {
  height: 70vh;
  padding-top: 100px;
  padding-bottom: 100px;
  align-content: center;
  margin-bottom: 100px;
}
section .container .text_content {
  color: white;
}
section .container {
  text-align: center;
}


section .container .itext p {
  font-size: 40px;
  margin-bottom: 50px;
  color: white;
  animation: randomText 1s ease;
  -webkit-animation: randomText 1s ease;
}

@media (max-width: 768px) {
	section .container .itext p {
    font-size: 28px;
   }
}
section .container span {
  color: rgb(150, 150, 150);
  position: relative;
  font-size: 20px;
  display: block;
  margin-top: 30px;
}

@keyframes randomText {
  0% {
    transform: translateX(100vh);
    -webkit-transform: translateX(100vh);
    -moz-transform: translateX(100vh);
    -ms-transform: translateX(100vh);
    -o-transform: translateX(100vh);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
section .container .myButton {
  all: unset;
  background-color: white;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
section .container .myButton:hover {
  background-color: #bebebe;
  padding: 12px 22px;
}

/***********Random Text***********/


/** Start the Öffnungszeiten Design **/
article {
  height: 70vh;
  background-image: url(../Photos/LandingPage.jpg);
  background-size: cover;
  position: relative;
}

@media (max-width: 768px) {
  article {
    background-position: -300px;
  }
}

article .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

article .container {
  position: relative;
}

@keyframes offnungsEffect {
  from {
    opacity: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

article .container .timeing {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  animation: offnungsEffect linear;
  -webkit-animation: offnungsEffect linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

article .container .timeing .open {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  article .container .timeing .open {
    flex-wrap: wrap;
    width: 80%;
    font-size: 20px;
  }
  article .container .header2 {
    font-size: 27px;
}
}
/** End the Öffnungszeiten Design **/


/** Copy right **/
.c-right {
  background-color: black;
  padding: 30px 0;
}

.c-right .container {
  text-align: center;
}

.c-right .container a {
  text-decoration: none;
  color: white;
}

.c-right .container p {
  color: white;
  font-weight: 500;
}

/** Copy right  **/
