/* ================= BASE ================= */

body {
  color: #333;
}

hr {
  border-color: #e4e4e4;
}

/* ================= BUTTONS ================= */

.btn-new {
  background-color: #db313f;
}

.btn-new:hover,
.btn-new:focus {
  background: #5e5e5e;
}

/* ================= SECTIONS ================= */

#services,
#features {
  background: #fff;
}

#firstFeature,
#videoSection {
  background: #701a21;
  color: #fff;
}

#videoSection p {
  color: #fff;
}

#thirdFeature {
  background: #f0f0f0;
}

/* ================= PARALLAX BASE ================= */

.parallaxBg {
  background: url(../images/ribalta-intro-bg-formal-focused.png) no-repeat center center fixed #fff;
  background-size: cover;
  width: 100%;
  color: #fff;
  text-align: center;
}

/* iOS fix */
@supports (-webkit-touch-callout: none) {
  .parallaxBg {
    background-attachment: scroll !important;
  }
}

.audience-parallax-section {  
  background: url(../images/ribalta-intro-bg-formal-focused.jpg) no-repeat center center #fff;
}

.keyFeaturesBackground {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../images/ribalta-intro-bg-formal.jpg) no-repeat center center fixed #fff !important;
}

/* ================= INTRO AUDIENCE CARDS (desktop only) ================= */

.intro-audience-card {
  display: none;
}

@media (min-width: 900px) {
  #intro {
    position: relative;
  }

  .intro-audience-card {
    display: block;
    position: absolute;
    width: 100%;
    max-width: 520px;
    min-height: 220px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 23px 30px 70px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    z-index: 100;
  }

  .intro-audience-card .audience-feature-link {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .intro-audience-card--left {
    left: 20px;
  }

  .intro-audience-card--right {
    right: 20px;
  }

  .audience-parallax-section {
    display: none;
  }
}

#backgroundStrip {
  background: url(../images/ribalta-intro-bg-formal.jpg) no-repeat #000;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 0px;
  transition: top .8s ease;
  z-index: 98;
  position: absolute;
  left: 0px;
  top: 200vh;
  margin-top: 16px;
}

