/****************************
-- Swimlanes Generals --
****************************/
.swimlane {
  position: relative;
}

.swimlane_component {
  position: relative;
  z-index: 1;
}

.swimlane_bg {
  background-position: center center;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.swimlane_component.top_half{
  bottom: 50%;
}

.swimlane_component.bottom_half{
  top: 50%;
}

@media screen and (max-width: 959px) {
  .swimlane.m_h_sm {
    height: 650px;
  }

  .swimlane.m_h_md {
    height: 750px;
  }

  .swimlane.m_h_lg {
    height: 900px;
  }

  .swimlane_bg.desktop {
    background-image: none;
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .swimlane {
    width: 100%;
  }

  .swimlane.d_h_sm {
    height: 650px;
  }

  .swimlane.d_h_md {
    height: 750px;
  }

  .swimlane.d_h_lg {
    height: 900px;
  }

  .swimlane_bg.mobile {
    background-image: none;
    display: none;
  }

  .swimlane_component {
    bottom: 0;
    position: absolute;
    top: 0;
    width: 50%;
  }

  .swimlane_component.desktop_first {
    float: none;
    left: 0;
  }

  .swimlane_component.desktop_last {
    float: none;
    right: 0;
  }

  .swimlane_component.desktop_center {
    left: 0;
    max-width: 1152px;
    right: 0;
    width: 100%;
  }

  .swimlane_component.half{
    max-width: 750px;
  }
}

/****************************
-- Text Block --
****************************/
.swimlane .caption {
 padding: 90px 0 50px;
}

.swimlane .caption p {
  margin-bottom: 0;
}

.swimlane .caption.white h2 {
  color: #fff;
}

.swimlane .caption.white p {
  color: #9e9e9e;
}

.swimlane .caption.black h2,
.swimlane .caption.black p {
  color: #262626;
}

.swimlane .caption h3 {
  color: #9d0b8b;
  margin-bottom: 5px;
}

.swimlane .caption .btn {
  margin-top: 32px;
  margin-right: 20px;
}

@media screen and (min-width: 768px) {
  .swimlane .caption.text_lg p {
    font-size: 22px;
    line-height: 30px;
  }

  .swimlane .caption .btn {
    margin-top: 50px;
  }

  .swimlane .caption .btn.closer_top {
    margin-top: 32px;
  }
}

@media screen and (min-width: 960px) {
  .swimlane .caption {
   padding: 50px 0;
  }

  .swimlane .caption.center {
    text-align: center;
  }

  .swimlane .caption.left {
    text-align: left;
  }

  .swimlane .caption.right {
    text-align: right;
  }

  .swimlane .caption.bottom {
    bottom: 60px;
    top: auto;
  }

  .swimlane .caption.middle {
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .swimlane .caption.top {
    bottom: auto;
    top: 60px;
  }

  .swimlane .caption.desktop_first .container {
    float: right;
    max-width: 730px;
    padding-right: 7.5%;
  }

  .swimlane .caption.desktop_last .container {
    float: left;
    max-width: 730px;
    padding-left: 17.5%;
  }
}

@media screen and (min-width: 1024px) {
  .swimlane .caption.text_sm p {
    font-size: 20px;
    line-height: 35px;
  }
}

@media screen and (min-width: 1280px) {
  .swimlane .caption.text_lg p {
    font-size: 30px;
    line-height: 40px;
  }
}

/****************************
--  Image --
****************************/
.swimlane .image{
  margin-top: 100px
}

.swimlane .image .desktop{
  display: none;
}

.swimlane .image .mobile{
  display: block;
}

@media screen and (min-width: 960px) {
  .swimlane .image .desktop{
    display: block;
  }

  .swimlane .image .mobile{
    display: none;
  }
}

/****************************
-- Sub Image --
****************************/
.swimlane .sub_image .img-wrap {
  padding-bottom: 56.25%;
}

.swimlane .sub_image img {
  bottom: -5.55%;
}

.swimlane .sub_image.left img {
  right: auto;
}

.swimlane .sub_image.right img {
  left: auto;
}

@media screen and (min-width: 960px) {
  .swimlane .sub_image .img-wrap {
    bottom: 0;
    padding-bottom: 60%;
    position: absolute;
    right: 0;
  }

  .swimlane .sub_image img {
    bottom: -30%;
  }
}

/****************************
-- Centered Image --
****************************/
@media screen and (max-width: 959px) {
  .swimlane .centered_image {
    padding: 25px 0 90px;
  }

  .swimlane .centered_image .img-wrap {
    height: auto;
  }

  .swimlane .centered_image img {
    position: static;
  }
}

@media screen and (min-width: 960px) {
  .swimlane .centered_image.desktop_first .container {
    float: right;
    height: 100%;
    max-width: 730px;
  }

  .swimlane .centered_image.desktop_last .container {
    float: left;
    height: 100%;
    max-width: 730px;
  }

  .swimlane .centered_image .img-wrap {
    height: 100%;
  }

  .swimlane .centered_image img {
    bottom: 50px;
    top: 50px;
  }
}

/****************************
-- Bottomed Image --
****************************/
.swimlane .bottomed_image .img-wrap img{
  top: auto;
  max-height: 420px;
}

@media screen and (max-width: 959px) {
  .swimlane .bottomed_image .img-wrap {
    height: auto;
  }

  .swimlane .bottomed_image img {
    position: static;
  }
}

@media screen and (min-width: 960px) {
  .swimlane .bottomed_image.desktop_first .container {
    float: right;
    height: 100%;
    max-width: 730px;
  }

  .swimlane .bottomed_image.desktop_last .container {
    float: left;
    height: 100%;
    max-width: 730px;
  }

  .swimlane .bottomed_image .img-wrap {
    height: 100%;
  }

  .swimlane .bottomed_image .img-wrap img {
    max-height: 100%;
  }
}

/****************************
-- Image Slider --
****************************/
.image_slider_slide {
  background-size: cover;
  background-position: center center;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.image_slider .bx-wrapper .bx-pager {
  bottom: 0;
  padding-bottom: 45px;
  position: absolute;
}

@media screen and (min-width: 960px) {
  .image_slider .bx-wrapper,
  .image_slider .bx-viewport,
  .image_slider .slides {
    height: 100% !important;
  }

  .image_slider_slide {
    height: 100%;
    padding-bottom: 0;
  }
}


/****************************
-- Video Image --
****************************/
.video_image {
  background-size: cover;
  background-position: center center;
}

.video_image .video {
  display: block;
  height: 0;
  padding-bottom: 56.25%;
}

@media screen and (min-width: 960px) {
  .video_image .video {
    height: 100%;
    padding: 0;
  }
}

/****************************
-- Speed Graph --
****************************/
.speed_story_graph {
  padding-top: 20px;
  padding-bottom: 50px;
}

.speed_story_graph .container {
  height: 350px;
  max-width: 704px;
}

.speed_graph {
  height: 100%;
  position: relative;
  width: 100%;
}

.speed_graph .x_axis {
  border-right: 1px solid rgb(59,59,59);
  -moz-border-image: -moz-linear-gradient(top, rgb(38,38,38) 0%, rgb(59,59,59) 45%, rgb(38,38,38) 100%);
  -webkit-border-image: -webkit-linear-gradient(top, rgb(38,38,38) 0%, rgb(59,59,59) 45%, rgb(38,38,38) 100%);
  border-image: linear-gradient(top, rgb(38,38,38) 0%, rgb(59,59,59) 45%, rgb(38,38,38) 100%);
  border-image-slice: 1;
}

.speed_graph .x_axis .col{
  width: 16.66%;
  height: 100%;
  border-left: 1px solid rgb(59,59,59);
  -moz-border-image: -moz-linear-gradient(top, rgb(38,38,38) 0%, rgb(59,59,59) 45%, rgb(38,38,38) 100%);
  -webkit-border-image: -webkit-linear-gradient(top, rgb(38,38,38) 0%, rgb(59,59,59) 45%, rgb(38,38,38) 100%);
  border-image: linear-gradient(top, rgb(38,38,38) 0%, rgb(59,59,59) 45%, rgb(38,38,38) 100%);
  border-image-slice: 1;
}

.speed_graph .bars,
.speed_graph .x_axis{
  position: absolute;
  left: 70px;
  right: 0;
  top: 0;
  bottom: 0;
}

.speed_graph .y_axis{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  padding-right: 10px;
}

.speed_graph .bar {
  height: auto;
  position: relative;
  margin-top: 95px;
  z-index: 2;
}

.speed_story_graph.active .bar.long {
  width: 100%;
}

.speed_story_graph.active .bar.short {
  width: 50%;
}

.speed_graph .bar_range {
  height: 40px;
  position: relative;
  width: 0;

  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
}

.speed_story_graph.active .bar .bar_range {
  width: 100%;
}

.speed_graph .bar_range img{
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 100%;
}

.speed_graph .y_value{
  position: relative;
  margin-top: 100px;
  color: white;
  text-align: right;
  word-wrap: break-word;
}

.speed_graph .bar.long .label,
.speed_graph .bar.long{
  color: rgba(255, 255, 255, 1);
}

.speed_graph .y_value.short,
.speed_graph .bar.short{
  color: rgba(158, 158, 158, 1);
}

.speed_graph .bar_value{
  opacity: 0;
  -webkit-transition: opacity 1000ms ease 300ms;
  transition: opacity 1000ms ease 300ms;
}

.speed_story_graph.active .bar_value{
  opacity: 1;
}

.speed_graph .label{
  display: inline-block;
  position: absolute;
  right: 50%;
  max-width: 50%;
  bottom: 25px;
  word-wrap: break-word;
}

.speed_graph .x_value{
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 26px;
  max-width: 50%;
  word-wrap: break-word;
}

.speed_graph .short .x_value{
  bottom: 25px;
}

@media screen and (min-width: 768px){
  .speed_graph .bars,
  .speed_graph .x_axis{
    left: 110px;
  }

  .speed_graph .y_axis{
    width: 110px;
  }

  .speed_graph .long .x_value{
    bottom: 30px;
  }

  .speed_graph .short .x_value{
    bottom: 30px;
  }
}

@media screen and (min-width: 960px) {
  .speed_story_graph {
    padding: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 1450px){
  .speed_story_graph.desktop_last .container{
    margin-left: 20px;
  }
}

/****************************
-- Logo --
****************************/
.swimlane_component .swimlane_logos {
  margin-top: 10px;
}
.swimlane_component .img-wrap.logo {
  height: 30px;
  width: 84px;
  margin-right: 20px;
  margin-top: 10px;
  display: inline-block;
}

.swimlane_component .img-wrap.logo img {
  width: 100%;
  height: 100%;
}
