.nav-var, .navigation .ham-nav {
  display: none;
}

.back-image {
  background-image: url(../img/IMG_3446.JPG);
  background-size: cover;
  background-position: center;
  height: 600px;
}

video {
  position: absolute;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.header {
  font-family: serif;
}
.header .op {
  position: absolute;
  width: 100%;
  height: 400px;
  background-color: black;
  z-index: 1;
  opacity: 0.6;
}

nav {
  display: flex;
  justify-content: space-between;
}
nav img {
  height: 85px;
  margin: 25px 0 0 75px;
  z-index: 2;
}
nav ul {
  display: inherit;
  margin-right: 120px;
  z-index: 2;
}
nav li {
  font-size: 25px;
  list-style: none;
  color: white;
  text-shadow: 5px 5px 5px black;
  margin: 40px 20px;
}
nav li a {
  text-decoration: none;
  color: white;
}

@media screen and (max-width: 800px) {
  .nav-var, .navigation .ham-nav {
    display: block;
  }
  .back-image {
    height: 400px;
  }
  li {
    list-style: none;
  }
  li a {
    color: white;
    text-decoration: none;
  }
  .navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    background-color: #202020;
    transition: 0.2s;
    z-index: 2;
  }
  .btn:focus {
    box-shadow: none;
  }
  .nav-var {
    font-family: "Adobe Garamond Pro", "Cambria";
    position: fixed;
    width: 100vw;
    height: 70px;
    background-color: #000;
    z-index: 99;
  }
  .nav-var.open {
    background-color: #202020;
  }
  .nav-var .var-contents {
    position: inherit;
  }
  .nav-var .var-contents.open {
    display: none;
  }
  .nav-var img {
    position: inherit;
    left: 50px;
    top: 13px;
    width: 80px;
  }
  .nav-var .var-text {
    position: inherit;
    left: 110px;
    top: 16px;
    text-align: center;
    color: white;
  }
  .nav-var .var-text h1 {
    font-size: 25px;
    margin-bottom: -5px;
  }
  .nav-var .var-text h2 {
    font-size: 10px;
  }
  #btn {
    position: fixed;
    display: block;
    top: 0;
    right: 20px;
    width: 80px;
    height: 70px;
    padding: 20px;
    z-index: 99;
    background-color: black;
    border-radius: 0;
    transition: 0s;
  }
  #btn.open {
    background-color: #202020;
  }
  .btn-line {
    display: block;
    position: relative;
    width: 40px;
    height: 2.5px;
    background-color: #fff;
    transition: 0.2s;
  }
  .btn-line::before,
.btn-line::after {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: 0.5s;
  }
  .btn-line::before {
    transform: translateY(-15px);
  }
  .btn-line::after {
    transform: translateY(15px);
  }
  .navigation.open {
    top: 0;
    right: 0;
    overflow: hidden;
    z-index: 4;
  }
  .btn-line.open {
    background-color: transparent;
  }
  .btn-line.open::before, .btn-line.open::after {
    content: "";
    background-color: #fff;
    transition: 0.2s;
  }
  .btn-line.open::before {
    top: 0;
    transform: rotate(45deg);
  }
  .btn-line.open::after {
    top: 0;
    transform: rotate(-45deg);
  }
  nav, .nav-var2 {
    display: none;
  }
  .navigation .ham-nav {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0;
    margin-top: 100px;
  }
  .navigation .ham-nav li {
    margin: 30px 0;
    border-bottom: white solid 2px;
  }
  .navigation .ham-nav li a {
    font-size: 20px;
    color: #fff;
  }
}/*# sourceMappingURL=nav.css.map */