:root {
  --green: #8bc63f;
  --background: rgb(255, 255, 255, 0.5);
}

header {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.logo img {
  width: 160px;
  border-radius: 50%;
  border: 2px solid black;
  box-sizing: border-box;
  height: 200%;
  transition: transform 0.3s;
  z-index: 2;
}
.logo img:hover {
  border: 4px var(--green) solid;
  transform: scale(1.1);
}

.contact {
  background-color: lightgrey;
  height: 40px;
}
.contact ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 30px;
  list-style: none;
  align-items: center;
  padding: 12px;
  margin: 0 30px;
  height: 100%;
}
.contact li {
  color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  font-size: 12px;
}
.contact i {
  color: var(--green);
  font-weight: bold;
}

nav {
  display: flex;
  height: 80px;
  justify-content: space-around;
  background-color: #e0e0e0;
}
nav li {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav li a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  color: black;
  transition: color 0.3s;
  border-bottom: 2px transparent solid;
}
nav li a:hover {
  box-sizing: border-box;
  color: var(--green);
  border-bottom: 2px var(--green) solid;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  width: 100%;
  height: 100%;
}

.menu-box {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.remove {
  display: none;
}

.bar {
  display: none;
}
.bar div {
  background-color: black;
  width: 25px;
  height: 3px;
  margin: 5px;
  transition: all 0.5s ease;
}

@media screen and (max-width: 1024px) {
  .contact ul {
    justify-content: center;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 30px;
  }
  .contact ul li {
    font-size: 10px;
  }
  nav {
    justify-content: space-between;
  }
  nav li a:hover {
    padding-bottom: 0px;
    border-bottom: none;
  }
  .logo img {
    margin-left: 100px;
    height: 70px;
    width: 70px;
    position: relative;
    top: 5px;
  }
  .menu-box {
    position: absolute;
    right: 0;
    top: 120px;
    width: 30%;
    height: 92vh;
    background-color: #e0e0e0;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    justify-content: flex-start;
  }
  .nav-links {
    flex-direction: column;
    height: 50%;
    align-items: center;
  }
  .nav-links li {
    opacity: 0;
  }
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 30%;
  }
  .bar {
    display: block;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .menu-box {
    width: 50%;
  }
  .burger {
    width: 50%;
  }
}
.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.cross-out .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.cross-out .bar2 {
  opacity: 0;
}
.cross-out .bar3 {
  transform: rotate(45deg) translate(-5px, -6px);
}/*# sourceMappingURL=header.css.map */