html {
    /* scroll-padding-top: 69px;  */
    /* height of sticky header */
  }

body {
  background-color: #000 !important;
  color: #ffffff !important;
}

.h4 {
  color: #ffffff !important;
}

.bg-dark {
    background-color: #111010 !important;
}

.img-slot {
    height: 200px;
    overflow: hidden;
}

.section-1, .section-3, .section-4, .section-6 {
  background-color: #f4e246 !important;
}

.section-2 {
  background-color: #000; background-image: url('../images/sanctuaryBG-min.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center center;
}

.section-2-img {
    /* background-image: url('../images/girl-walking-stairs.jpg');
    background-position: right top;
    background-size: cover; */
}

.section-3 {
    background-color: #bdd7ea;
}
.section-3-img {
    /* height: 150px; 
    background-image: url('../images/2x/vc-logo@2x.png'); 
    background-position: center center; 
    background-size: contain; 
    background-repeat: no-repeat; */
}
.section-3-img-2 {
    /* background-image: url('../images/hands-raised-high.jpg'); 
    background-position: right center; 
    background-size: cover; */
}

.section-4 h2 {
    text-shadow: 2px 2px #ffffff;
}

.section-5 {
    /* background-color: #f0832b; */
    /* background-color: #111010 !important; */
    background-color: #000; background-image: url('../images/buildingBG-min.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center bottom;
}
.section-5 .map {
    height: 700px;
}

.section-6 {
    /* background-image: url('../images/city-footer-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #282728; */
    /* background-color: #111010 !important; */
}

.section-7 {
  /* background-color: #dce47c; */
}

.mw-100px {
  max-width: 100px;
}

.schedule-item {
  margin-bottom: 1em;
}

.animatable {
    /* initially hide animatable objects */
    visibility: hidden;
  
    /* initially pause animatable objects their animations */
    animation-play-state: paused;
  }
  
  /* show objects being animated */
  .animated {
    visibility: visible;
  
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-play-state: running;
  }
  
  /* CSS Animations (extracted from http://glifo.uiparade.com/) */
  @keyframes fadeIn {
    0%,
    60% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    50% {
      transform: scale(1.05);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes bounceInLeft {
    0% {
      opacity: 0;
      transform: translateX(-2000px);
    }
    60% {
      transform: translateX(20px);
    }
    80% {
      transform: translateX(-5px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes bounceInRight {
    0% {
      opacity: 0;
      transform: translateX(2000px);
    }
    60% {
      transform: translateX(-20px);
    }
    80% {
      transform: translateX(5px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes moveUp {
    0% {
      transform: translateY(40px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes fadeBgColor {
    0%,
    70% {
      background: none;
    }
    100% {
      background: #464646;
    }
  }
  
  .animated.animationDelay {
    animation-delay: 0.2s;
  }
  .animated.animationDelayMed {
    animation-delay: 0.4s;
  }
  .animated.animationDelayLong {
    animation-delay: 0.6s;
  }
  .animated.fadeBgColor {
    animation-name: fadeBgColor;
  }
  .animated.bounceIn {
    animation-name: bounceIn;
  }
  .animated.bounceInRight {
    animation-name: bounceInRight;
  }
  .animated.bounceInLeft {
    animation-name: bounceInLeft;
  }
  .animated.fadeIn {
    animation-name: fadeIn;
  }
  .animated.fadeInDown {
    animation-name: fadeInDown;
  }
  .animated.fadeInUp {
    animation-name: fadeInUp;
  }
  .animated.moveUp {
    animation-name: moveUp;
  }