body {
  width: 100%;
}

.logo img {
  width: 100px;
  margin: 3vh 0 0 6vw;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 14vh;
  z-index: 6;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
}

.links {
  width: 35vw;
  display: flex;
  align-items: center;
  margin: 0vh 6vw 0 0;
}

.links li {
  list-style: none;
  font-family: "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bold;
  color: #4adbc8;
  margin: 0vh 90px 0 2vw;
  transition: transform 0.3s ease;
}

.links li:hover {
  transform: scale(1.1);
}

.dropdown {
  display: flex;
  align-items: center;
}

.dropdown-content li:hover {
  background-color: #4adbc8;
}

.dropdown-content li:hover:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
  height: 100%;
  width: 10px;
  background-color: #4adbc8;
  z-index: -1;
}

.dropdown-content a:hover {
  color: white;
}

.links .links_content {
  display: flex;
  align-items: center;
}

a {
  text-decoration: none;
  font-family: "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #4adbc8;
}

.links img {
  width: 80px;
}

.dropbtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 10vh;
}

.dropdown-content {
  background-color: #ebebeb;
  display: none;
  position: absolute;
  top: 10vh;
  right: 1vw;
  z-index: 1;
  min-width: 15vw;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 2vh 0.5vw 0.5vh 0;
  margin: 3vh 0;
  z-index: 3;
}

.dropdown-content img {
  width: 3vw;
  margin: 0vh 3vw 0.5vh 6vw;
}

@media (max-width: 1000px) {
  .links_list {
    display: none;
  }
  nav {
    justify-content: flex-start;
  }
  .links {
    margin-left: 28.5%;
  }
}
