/* ==========================================================================
   Text CTA Parallax Module
   Prefix: rc-text-parallax-
   ========================================================================== */
/* --------------------------------------------------------------------------
   Main Container with Parallax Background
   -------------------------------------------------------------------------- */
#rc-text-parallax,
.rc-text-parallax {
  position: relative;
  background-color: #003366;
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
}
.rc-text-parallax__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
/* --------------------------------------------------------------------------
   Heading
   -------------------------------------------------------------------------- */
.rc-text-parallax__heading {
  font-family: 'Roboto Slab', 'Noto Serif', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 25px 0;
}
/* --------------------------------------------------------------------------
   Content
   -------------------------------------------------------------------------- */
.rc-text-parallax__content {
  margin-bottom: 30px;
  color: white;
}
.rc-text-parallax__content p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 0 15px 0;
}
.rc-text-parallax__content p:last-child {
  margin-bottom: 0;
}
/* --------------------------------------------------------------------------
   CTA Button (White Outline)
   -------------------------------------------------------------------------- */
.rc-text-parallax__cta {
  margin-top: 30px;
}
.rc-text-parallax__btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 18px;
  line-height: 38px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.rc-text-parallax__btn:hover,
.rc-text-parallax__btn:focus {
  color: #ffffff;
  text-decoration: none;
  /* Scale down on hover for pressed-in effect */
  transform: scale(0.95);
}
/* --------------------------------------------------------------------------
   Responsive - Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .rc-text-parallax {
    padding: 50px 0;
  }
  
  .rc-text-parallax__heading {
    font-size: 30px;
  }
}
/* --------------------------------------------------------------------------
   Responsive - Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .rc-text-parallax {
    background-attachment: scroll;
    padding: 40px 0;
  }
  
  .rc-text-parallax__heading {
    font-size: 26px;
  }
  
  .rc-text-parallax__content p {
    font-size: 15px;
  }
  
  .rc-text-parallax__btn {
    display: block;
    text-align: center;
  }
}
/* --------------------------------------------------------------------------
   iOS Safari Fix for Fixed Background
   -------------------------------------------------------------------------- */
@supports (-webkit-touch-callout: none) {
  .rc-text-parallax {
    background-attachment: scroll;
  }
}