.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.5);*/
}

.navbar {
  transition: background-color 0.3s ease;
}

.logo-small {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.parallax-bg {
  background-attachment: fixed !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section {
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-section img {
  height: 90vh;
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 992px) {
  .hero-section {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .hero-section img {
    height: initial;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 300px;
  }
}

.nav-link {
  color: #d0ffd2;
}

#loginbutton {
  color: rgb(226,254,243);
  background: #07cd80;
  /*box-shadow: 2px 2px #999;*/
}

#loginbutton:active {
  border: none;
  /*box-shadow: 0 5px #29cd26;*/
  /*transform: translateY(1px);*/
}

#loginbutton:hover {
  background: #0dc980;
}

#loginbutton svg {
  position: relative;
  bottom: 2px;
}

.btn:focus, .btn:active button {
  outline: none !important;
  box-shadow: none !important;
}

.nav-item.dropdown .dropdown-menu {
  background: #00a464;
  border: none;
}

.dropdown-item {
  color: #d0ffd2;
}

.dropdown-item:hover {
  background-color: #07cd80;
  color: #d0ffd2;
}

