/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
.double-cta {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-bottom: 0 !important; }
  @media (max-width: 619px) {
    .double-cta {
      padding-top: 10px;
      padding-bottom: 10px; } }

.double-cta__wrapper {
  width: 100%;
  position: relative; }
  .double-cta__wrapper::after {
    clear: both;
    content: "";
    display: table; }

.double-cta__left, .double-cta__right {
  display: block;
  width: 50%;
  height: 100%;
  float: left;
  padding: 60px 40px; }
  @media (max-width: 767px) {
    .double-cta__left, .double-cta__right {
      position: relative;
      float: none;
      width: 100%; } }

.double-cta__image {
  background-color: #333E47;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center; }
  .double-cta__left .double-cta__image {
    left: 0; }
  .double-cta__right .double-cta__image {
    left: 50%; }
  @media (max-width: 767px) {
    .double-cta__image {
      width: 100%; }
      .double-cta__right .double-cta__image {
        left: 0; } }

.double-cta__content {
  position: relative;
  color: #FFF;
  width: 60%;
  max-width: 530px;
  text-align: center;
  z-index: 1; }
  .double-cta__left .double-cta__content {
    float: right;
    margin-right: 70px; }
  .double-cta__right .double-cta__content {
    float: left;
    margin-left: 70px; }
  @media (max-width: 767px) {
    .double-cta__left .double-cta__content, .double-cta__right .double-cta__content {
      float: none;
      margin: 0 auto; } }
  @media (max-width: 767px) {
    .double-cta__content {
      width: 75%; } }

.double-cta__header {
  margin: 0;
  font-size: 32px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400; }

.double-cta__text {
  margin-bottom: 50px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400; }

.double-cta__left .double-cta__content {
  -webkit-transition: all 2000ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 2000ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 2000ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translate3d(0, 50px, 0);
  -moz-transform: translate3d(0, 50px, 0);
  -ms-transform: translate3d(0, 50px, 0);
  -o-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  opacity: 0; }
  .js-in-view .double-cta__left .double-cta__content {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; }

.double-cta__right .double-cta__content {
  -webkit-transition: all 2000ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 2000ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 2000ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translate3d(0, -50px, 0);
  -moz-transform: translate3d(0, -50px, 0);
  -ms-transform: translate3d(0, -50px, 0);
  -o-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);
  opacity: 0; }
  .js-in-view .double-cta__right .double-cta__content {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; }
