:root {
  --blue: #07124a;
  --faded: #e1e1e1;
}

.dropdown {
  position: relative;
}
.dropcontent {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  width: 99.5%;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  background-color: #fff;
  border: 1px solid var(--blue);
}
.dropdown:hover .dropcontent {
  height: auto;
  opacity: 1;
}
.dropdown:hover .droplink {
  background: var(--blue);
  color: #fff;
}
.dropcontent li {
  background: var(--blue);
}
.dropcontent ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.dropcontent a {
  color: #fff;
  font-size: 18px;
  border-bottom: 1px solid var(--faded);
}
.dropcontent li:last-child a {
  border: none;
}
.dropcontent a:hover {
  background-color: #fff;
  color: var(--blue);
}
