body {
  overflow: hidden;
}

header {
  width: 100vw;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #01513f;
  z-index: 10;

  transition: all;
  transition-duration: 0.1s;
  transition-delay: 0s;
  transition-timing-function: linear;

  box-shadow: 0.5px 0.5px 3px 3px rgba(0, 0, 0, 0.5);
}

.header_container {
  width: 90%;
  margin: 0 auto;
  position: relative;
}


.logo {
  padding-top: 15px;
}

.logo a {
  position: absolute;
  top: 20%;
  left: 1%;
  font-size: 50px;
  z-index: 10;
  color: rgba(0, 0, 0, 0);
}

.logo svg path {
  fill: #00000000;
  stroke: #fff;
  stroke-width: 4;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;

  animation-name: draw;
  animation-delay: 0s;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes draw {
  0% {stroke-dashoffset: 500;}
  50% {stroke-dashoffset: 0;}
  100% {stroke-dashoffset: 500;}
}

.hover:hover {
  cursor: pointer;
}

section {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.layers {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.layer-1 {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 70px;
  left: 0;
  background: white;
  z-index: 2;
  overflow: hidden;
}

.layer-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 70px;
  left: 0;
  background-color: black;
  z-index: 1;
  overflow: hidden;
}

.content_wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-top: 70px;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  overflow: hidden;
}

.layer-1 .content img, .layer-2 .content img {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

.layer-1 .content h4 {
  font-size: 30px;
  text-align: center;
  font-family: 'Anton', helvetica;
  letter-spacing: 0.2em;
  padding: 10px 0 10px 0;
  color: black;
}

.layer-1 .content a {
  text-decoration: none;
  color: black;
}

.layer-2 .content h4 {
  font-size: 30px;
  text-align: center;
  font-family: 'Anton', helvetica;
  letter-spacing: 0.2em;
  padding: 10px 0 10px 0;
  color: white;
}

.layer-2 .content a {
  text-decoration: none;
  color: black;
  color: white;
}

.hamburger {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 15px;
  right: 45px;

  z-index: 11;
}

.hamburger_line {
  width: 100%;
  height: 5px;
  background-color: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 2px;

  transition: all;
  transition-duration: 0.25s;
  transition-delay: 0s;
  transition-timing-function: linear;
}

.hamburger_line::before, .hamburger_line::after {
  content: '';
  width: 100%;
  height: 5px;
  background-color: white;
  display: block;
  position: absolute;
  left: 0;
  border-radius: 2px;

  transition: all;
  transition-duration: 0.25s;
  transition-delay: 0s;
  transition-timing-function: linear;
}

.hamburger_line::before {
  bottom: 10px;
}

.hamburger_line::after {
  top: 10px;
}


.hamburger_icon:hover .hamburger_line::before {
  animation: move_hamburger_forward;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.hamburger_icon:hover .hamburger_line::after {
  animation: move_hamburger_reverse;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.hamburger_open_line {
  background-color: rgba(0, 0, 0, 0);
}

.hamburger_open_line::before {
  background-color: black;
  animation: open_hamburger_top_line;
  animation-delay: 0s;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.hamburger_open_line::after {
  background-color: black;
  animation: open_hamburger_bottom_line;
  animation-delay: 0s;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}


@keyframes move_hamburger_forward {
  0%{left: 0;}
  25%{left: 8px;}
  50%{left: 0px;}
  75%{left: -8px;}
  100%{left: 0px;}
}

@keyframes move_hamburger_reverse {
  0%{left: 0;}
  25%{left: -8px;}
  50%{left: 0px;}
  75%{left: 8px;}
  100%{left: 0px;}
}

@keyframes open_hamburger_top_line {
  0%{bottom: 10px; transform: rotate(0deg);}
  25%{bottom: 0; top: 0;  transform: rotate(0deg);}
  100%{bottom: 0; top: 0; transform: rotate(45deg);}
}

@keyframes open_hamburger_bottom_line {
  0%{top: 10px; transform: rotate(0deg);}
  25%{bottom: 0; top: 0;  transform: rotate(0deg);}
  100%{top: 0; bottom: 0; transform: rotate(-45deg);}
}



#nav_wrapper {
  display: none;
}

#list {
  display: none;
}

nav {
  width: 35vh;
  height: 50vh;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
}

nav::before {
  content: '';
  width: 50vh;
  height: 50vh;
  border-radius: 350px;
  background-color: white;
  z-index: -1;
  position: fixed;
  top: -25vh;
  right: -25vh;

  animation-name: expand;
  animation-duration: 0.2s;
  animation-delay: 0s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

@keyframes expand {
  0% {transform: scale(0);}
  100% {transform: scale(2.5);}
}

nav ul {
  width: 90%;
  margin: 25% auto 0 auto;
  list-style: none;
}

nav ul li {
  padding: 20px;
  position: relative;
}

nav ul li a::before {
  content: '';
  height: 50px;
  width: 8px;
  background-color: grey;
  position: absolute;
  top: 10px;
  left: 0;
}

nav ul li a::after {
  content: '';
  height: 4px;
  width: 0%;
  background-color: grey;
  position: absolute;
  top: 30px;
  right: 16px;

  transition: all;
  transition-duration: 0.2s;
  transition-delay: 0s;
  transition-timing-function: ease-in-out;
}

nav ul li a {
  padding: 10px;
  margin-left: 10px;
  background-color: rgba(0, 0, 0,  0);
  text-decoration: none;
  width: 100%;
  color: black;
  font-size: 19px;
  font-family: 'Source Sans Pro', sans-serif;
}

nav ul li a:hover::after{
  width: 90%;
}

.email, .phone {
  user-select: text !important;
}


@media (max-width:600px) {
  .content h4 {
    font-size: 15px !important;
  }
  .content img {
    width: 100px !important;
    height: 100px !important;
  }
}
