/** Srart Variable **/
:root {
  --secound-color: #333;
  --high-color: #000000;
  --third-color: rgba(139, 139, 139, 0.7);
  --font-color: #000000;
  --Orange-Color: #e5932a;
  --Bruan-Color: #864c14;
  --padding-Hight: 100px;
}

/** 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;
}

.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: 120px;
  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 - 90px);
    top: 0px;
    background-color: var(--Bruan-Color);
    opacity: 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: 600;
    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;
  color: var(--Orange-Color);
}

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***********/

.impressum {
  background-color: var(--Bruan-Color);
  padding-top: var(--padding-Hight);
  padding-bottom: var(--padding-Hight);
}

.impressum .text_content {
  padding-top: 200px;
}

.container .header-text {
  margin-top: 180px;
}

.impressum {
  color: white;
}

.impressum h5 {
  padding-bottom: 30px;
}

.impressum p {
  font-size: 14px;
  line-height: 1.7;
}

.impressum h4 {
  font-size: 16px;
  padding: 20px 0 15px 0;
  color: #cacaca;
}
