/* Variables
Variables that the other CSS sections depend upon
*/
{% include '../../css/variables/_colors.css' %}

.bs-intro {
  height: 400vh;
  padding-top: 97px;
  position: relative;
}

@media (max-width: 991px) {
  .bs-intro {
    display: none;
  }
}

.bs-intro__sticky {
  position: sticky;
  top: 97px;
  overflow: hidden;
  min-height: calc(100vh - 97px);
  height: auto;
  padding: 60px 0;
}

.bs-intro p {
  font-size: 50px;
  letter-spacing: 0.01em;
  line-height: 1.2em;
  color: #333333;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5em;
}

.bs-intro p:last-of-type {
  margin-bottom: 0;
}

.bs-intro__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  opacity: 0.65;
  top: 0;
  left: 0;
}

.bs-intro-mobile {
  display: none;
  padding: 40px 0;
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .bs-intro-mobile {
    display: block;
  }
}

.bs-intro-mobile p {
  font-size: 28px;
  line-height: 1.25em;
  letter-spacing: 0.01em;
}