#menu-modal {
  background-color: white;
  position: fixed;
  right: -100vw;
  top: 0;
  bottom: 0;
  width: 100%;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 16px;
  overflow: scroll;
  z-index: 99;
}

#menu-modal .close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: unset;
  background-color: transparent;
  color: #25616e;
  font-size: 40px;
}

.menu-item {
  color: #25616e;
}

.menu-item .title {
  font-weight: 700;
  font-size: 1.3rem;
  padding: 8px;
  display: inline-block;
  text-decoration: none;
  color: #25616e !important;
  cursor: pointer;
}

.menu-item ul {
  list-style: none;
  padding: unset;
  font-weight: 300;
}

.menu-item ul li:hover {
  text-shadow: 0px 0px 5px #25616e;
  font-weight: 400;
  cursor: pointer;
}

.menu-item .menu-subitem {
  padding: 4px;
  display: inline-block;
  text-decoration: none;
  color: #25616e !important;
}

.menu-item.media {
  display: none;
}

.menu-logo:hover {
  cursor: pointer;
}

.menu-logo img {
  width: 100px;
  height: 100px;
}

@media screen and (max-width: 600px) {
  #menu-modal {
    width: 100%;
  }
}

@keyframes sub-item-animation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#services-item {
  display: none;
  animation-name: sub-item-animation;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

#about-item {
  display: none;
  animation-name: sub-item-animation;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.menu-item .arrow{
  position: relative;
    display: inline-block;
    width: 0.4em;
    height: 0.4em;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    vertical-align: middle;
    margin-top: -0.14em;
    transform: rotate(45deg);
}