.side-nav {
  position: fixed;
  right: 0px;
  background-color: var(--blue-green);
  width: 300px;
  height: 100vh;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: all 0.3s;
}
.logo-side-nav {
  width: 200px;
}
#close-side-menu-btn {
  color: var(--blue-green-light);
  font-size: 2em;
  cursor: pointer;
}
#close-side-menu-btn:hover {
  color: var(--white-button);
}
.header-side-container {
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.side-items {
  padding: 0px;
}
.side-items li {
  list-style: none;
  padding: 1em 0em;
}
.side-items li:hover a {
  color: var(--blue-green-light);
}
.side-items li a {
  text-decoration: none;
  color: var(--dark-white);
  font-size: 1.1em;
}
.side-footer {
  border-top: solid 0.5px var(--blue-green-light-2);
  border-bottom: solid 0.5px var(--blue-green-light-2);
  padding-bottom: 0.5em;
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.side-footer .company-contact-item {
  justify-content: flex-start;
}
