/** 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: var(--high-color);
  transition: all 2s;
}

.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: 1270px) {
  .container {
    width: 1270px;
  }
}
.light-mode {
  background-color: var(--secound-color);
  transition: all 2s;
}
/** Start the Light & Dark mode **/
header .light-mode {
  color: black;
  position: fixed;
  right: 30px;
  bottom: 30px;
  font-size: 30px;
  background-color: white;
  z-index: 10;
  padding: 14px 20px;
  cursor: pointer;
  border-radius: 50%;
}
header .light-mode .fa-moon {
  display: none;
}
/** End the Light & Dark mode **/
/** Start NavBar Design **/
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: 1px;
  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: 150px;
    margin-top: 10px;
  }
}

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;
  }
  .light-mode nav .container .nav-links {
    background-color: var(--secound-color);
    opacity: 0.9;
  }
}

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;
}

@keyframes navLinksFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-14px, 5px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-10px, -2px);
}

/** End NavBar Design **/
/** End Softdrinks Design **/
.drink-text {
  position: relative;
}

.drink-text .container::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 120px;
  background-color: white;
  left: 50%;
  bottom: -30px;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
}

.drink-text .container h3 {
  color: white;
  text-align: center;
  margin-top: 160px;
  margin-bottom: 0;
  font-size: 70px;
  text-transform: uppercase;
}

.drink-text .container .bei {
  color: white;
  position: absolute;
  left: 50%;
  margin-top: 80px;
  transform: translate(-50%);
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 767px) {
  .drink-text .container .bei {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.drink-text .container p {
  color: white;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .drink-text .container h3 {
    font-size: 45px;
  }

  .drink-text .container p {
    font-size: 14px;
  }
}

main {
  width: 100%;
  min-height: 50vh;
}

main .container {
  color: white;
}

main .container .gesamt {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}

main .container .gesamt .Name {
  flex-grow: 1;
}

main .container .gesamt p {
  font-size: 14px;
}

main .container .gesamt .Name h4 span {
  font-size: 20px;
  display: flex;
  align-items: center;
}

main .container .gesamt .Name h4 span sup {
  font-size: 16px;
}

main .container .Preis {
  font-size: 20px;
}

@media (max-width: 767px) {
  main .container .gesamt .Name h4 span {
    font-size: 18px;
  }

  main .container .Preis {
    font-size: 18px;
  }
}

/** End Softdrinks Design **/
/** Start Tabak Design **/
main .container .tabak {
  margin-top: 30px;
}

main .container .tabak h4 {
  margin: 40px 0;
}

main .container .tabak h5 {
  font-size: 20px;
}

/** End Tabak Design **/
/** Start footer **/
footer {
  height: 10vh;
  margin-top: 50px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  footer {
    height: 35vh;
  }
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

footer .container .footer-text {
  color: white;
  font-size: 17px;
  font-weight: 500;
}

footer .container .c-right {
  color: white;
}

/** End footer **/
/** Copy right **/
.c-right {
  background-color: var(--secound-color);
  padding: 30px 0;
}
.light-mode .c-right {
  background-color: var(--high-color);
  transition: all 2s;
}

.c-right .container {
  text-align: center;
}

.c-right .container p {
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px;
}

/** Copy right  **/
