#header {
  padding-top: 1rem;
}

#header .btn {
  margin: 0.25rem;
  text-decoration: none;
}

.green-title {
  padding: 1rem 0.5rem;
  /* border: 1px solid green; */
  color: black !important;
  box-shadow: none !important;
  border-radius: 0.25rem;
  font-size: 20px;
  font-weight: bold;
}

.left-menu {
  display: flex;
  flex-direction: column;
}

.left-menu .menu-button {
  transition: all 0.25s linear;
  cursor: pointer;
  margin-bottom: 1rem;
}

.left-menu .menu-button:hover {
  outline: none !important;
}

.left-menu .menu-button:last-child {
  margin-bottom: 0;
}

.left-menu .menu-button:hover,
.left-menu .menu-button.active {
  padding-left: 1.5rem;
}

.menu-items {
  transition: all 0.25s linear;
  opacity: 1;
}

.div-content {
  opacity: 0;
  transition: opacity 0.5s linear;
}

.div-content.show {
  opacity: 1;
}

.opacity-0 {
  opacity: 0 !important;
}

.menu-item h2 {
  font-size: 72px !important;
}

@media screen and (max-width: 419.8px) {
  .menu-item h2 {
    font-size: 48px !important;
  }
}

.slide-in-bottom {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
