.bs-callout {
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #eee;
  border-left-width: 5px;
  border-style: solid;
  border-radius: 3px;
  border-top-width: 1px;
  border-top-color: #EEEEEE;
  border-bottom-width: 1px;
  border-bottom-color: #EEEEEE;
  border-right-width: 1px;
  border-right-color: #EEEEEE;
}

.bs-callout h4 {
  margin-top: 0;
  margin-bottom: 5px;
}

.bs-callout p:last-child {
  margin-bottom: 0;
}

.bs-callout-success {
  border-left-color: #03f507;
}

.bs-callout-success h4 {
  color: #3c763d;
}

html {
  scroll-behavior: smooth;
}

.snap-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.snap-section {
  height: 100vh;
  /*scroll-snap-align: start;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  /*font-size: 3em;*/
}

html {
  scroll-behavior: smooth!important;
}

.scrollimages {
  opacity: 0.80;
}

.marquee1 {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-content {
  display: inline-block;
  font-family: 'Advent Pro';
  color: #0ebae0;
  font-size: 2em;
  text-transform: uppercase;
  animation: scroll-left 60s linear infinite;
  transition-timing-function: ease-in-out;
}

.marquee-content span {
  display: inline-block;
  padding-right: 3rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

