@charset "UTF-8";
/* Base Styles */

:root {
  --colorNavMobile: #111;
  /* --colorActiveLink: #999; */
  --colorActiveLinkBurger: #fff;
  --colorBurgerIcon: #111;
}

#burger {
  display: none;
}

nav a {
  font-size: 1.03em;
}

input ~ nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

input ~ nav li {
  font-weight: 500;
  font-size: 1.0em;
  letter-spacing: 0.08em;
  padding: 0.5em 0.3em;
  line-height: 2.2em;  
  height: 3.1em;
  display: inline-block;
}

/* --------- for mobile screens ------------------ */
@media only screen and (max-width: 620px) {
/* main {
  height: 100vh;
  margin-top: 20vh;
} */
/* create hamburger */
input + .burgerlabel {
  position: fixed;
  top: 25px;
  right: 30px;
  height: 30px;
  width: 25px;
  z-index: 5;
}
.burgerstripe {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  left: 0;
  display: block;
  background: var(--colorBurgerIcon);
  /* border-radius: 2px; */
  transition: 0.4s;
}
.burgerstripe:first-child {
  top: 8px;
}
.burgerstripe:last-child {
  top: 22px;
}
.burgerlabel:hover {
  cursor: pointer;
}
input:checked + .burgerlabel .burgerstripe {
  opacity: 0;
  top: 50%;
}
input:checked + .burgerlabel .burgerstripe:first-child {
  opacity: 1;
  transform: rotate(405deg);
}
input:checked + .burgerlabel .burgerstripe:last-child {
  opacity: 1;
  transform: rotate(-405deg);
}

input ~ nav {
  background: #aaa;
  background-image: url("../images/background/M2022-09-045-p0003-2425x3000.jpg");
  /* position: static; */
  text-align: center;
  /* top: 40px;
  right: 40px;
  height: 20px;
  width: 15px; */
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0px;
  z-index: 3;
  transition: 0.2s;
  transition-delay: 0.0s;
  overflow: hidden;
}

input ~ nav li {
  display: block; /* needed */
  list-style-type: none;
  opacity: 0;
  transition: 0.3s;
  transition-delay: 0.0s;
}

input ~ nav a {
  /* display: block; */
  font-size: 1.13em;
  color: var(--colorNavMobile);
  /* padding: 1em; */
}

nav a:visited {
  /* display: block; */
  color: var(--colorNavMobile);
}

nav a.active {
  color: var(--colorActiveLinkBurger);
  cursor: default;
}

input:checked ~ nav {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 5em;
  height: 100%;
  transition-delay: 0s;
}

input:checked ~ nav li {
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.0s;
}

.nav-hr {
  height: 0px; 
  background-color: #333; 
  border: 0 none;
}
}