.glass-card {
  background: rgba(95,95,95,0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 18px 9px rgba(255, 255, 255, 0.9);*/
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.8), transparent );
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient( 180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3) );
}

.bg-dark- {
}

.mask {
  background-color: black;
  opacity: 0.5;
  z-index: -1;
}

.glass-card-light {
  background: rgba(255,255,255,0.25) !important;
}

.btn-red {
  background-color: #DC3545;
  color: white;
}

.btn-red:hover {
  background: rgba(255,0,0,0.5);
  color: white;
}

.masthead-size {
  display: table;
  width: 100%;
  height: 100%;
  padding: 200px 0;
  text-align: center;
  color: #fff;
  background-color: #000;
  background-size: cover;
}

.img-box img {
  display: block;
  width: 100%;
  height: auto;
}

.img-box {
  background-color: #7B7E17;
  display: flex;
  flex-direction: column;
}

.vertical-title {
  transform: rotate(180deg) translateX(77%);
  writing-mode: vertical-rl;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .vertical-title {
    transform: rotate(180deg) translateY(12%) translateX(0%);
  }
}

@media (max-width: 992px) {
  .img-mobile {
    transform: translateY(-10%);
    position: relative;
  }
}

@media (max-width: 992px) {
  .img-box img {
    width: 300px;
    position: relative;
  }
}

@media (max-width: 992px) {
  #waldlogo {
    width: 200px;
    position: relative;
  }
}

