/* --------------------------------------HEADER------------------------------------------- */

body {
  overflow-y: scroll;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: 4.3vw;
  width: 100vw;
  background-color: black;
  border-bottom: 1px solid #c6c6c6;
  display: flex;
  align-items: center;
  z-index: 100;
}

header .menu {
  display: flex;
  height: 100%;
  align-items: center;
}

header .logo {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 30px;
  height: 3.5vw;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

header .logo img {
  height: 100%;
}

header nav {
  position: fixed;
  margin-left: 5vw;
  left: 60px;
}

header nav ul a {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
  font-size: 1.1vw;
  line-height: 1.5vw;
  color: #c6c6c6;
  margin-left: 40px;
  opacity: 0.7;
  transition: 0.2s;
}

header nav ul a:hover {
  opacity: 1;
}

header nav ul a:hover li {
  text-decoration: underline;
}

header nav ul a li {
  display: inline-block;
}

header .get-in-touch-button {
  position: fixed;
  right: 22.5vw;
  color: #c6c6c6;
  border: 2px solid #c6c6c6;
  border-radius: 10px;
  padding: 0.4vw 0.8vw 0.4vw 0.8vw;
  box-shadow: 2px 2px 12px #c6c6c6;
  font-weight: 800;
  font-size: 1.1vw;
  line-height: 1.5vw;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.25s;
  text-decoration: underline;
}

header .get-in-touch-button:hover {
  opacity: 1;
}

.button {
  position: fixed;
  width: 30px;
  height: 30px;
  visibility: hidden;
  align-items: center;

  cursor: pointer;
  z-index: 100;
}

.button span {
  position: fixed;
  left: 66px;
  top: 16px;
  font-family: "Exo";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: rgba(198, 198, 198, 0.6);
}

#activeMenu {
  top: 15px;
  left: 24px;
  background: url(../../IMG/General/header/menu.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#disactiveMenu {
  position: absolute;
  top: 20px;
  right: 30px;
  background: url(../../IMG/General/header/close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.sidebar {
  position: fixed;
  visibility: visible;

  width: 100%;
  height: 100%;
  top: 4.25vw;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #c6c6c6;

  z-index: 10;

  transform: translateY(-100%);

  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.sidebar.active {
  transform: translateY(0);
  transition: 0.2s;
}

.sidebar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  visibility: hidden;
}

.sidebar.active ul {
  visibility: visible;
}

.sidebar ul li {
  margin: 0.5vw 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.sidebar ul li a {
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  line-height: 48px;
  color: black;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-transform: uppercase;
}

.sidebar ul li .get-in-touch {
  font-size: 22px;
}

.sidebar ul li a:hover {
  text-decoration: underline;
}

/* ---------------------------------MOBILE VERSION--------------------------------------- */

@media (max-width: 1025px) {
  header {
    justify-content: center;
    height: 60px;
  }

  header .logo {
    position: relative;
    top: 24px;
    height: 48px;
  }

  header .menu {
    visibility: hidden;
  }

  .sidebar {
    top: 60px;
  }

  .button {
    visibility: visible;
  }

  body.open {
    overflow: hidden;
  }
}
