/****************************
-- Product Slideshow --
****************************/
.product_slideshow {
  background-color: #f8f8f8;
  position: relative;
}

.product_slideshow_item {
  margin: 0;
  padding: 20px 20px 30px;
  position: relative;
  text-align: center;
}

.product_slideshow_item .img-wrap {
  height: 95px;
  margin: 0 auto;
  padding: 0;
  width: 95px;
}

.product_slideshow_item .img-wrap img {
  top: auto;
}

.product_slideshow_item .img-wrap .new {
  background-color: #06a84e;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 45px;
  z-index: 2;
}

.product_slideshow_item_title {
  color: #333;
  font-size: 12px;
  font-weight: 700;
  margin: 15px 0 0;
  text-transform: uppercase;
}

.product_slideshow_item_extra p {
  color: #6b6b6b;
  margin: 10px 0 0;
}

.product_slideshow_item_extra a {
  display: inline-block;
  margin-top: 16px;
  text-transform: uppercase;
}

@media screen and (min-width: 640px) {
  .product_slideshow.long .bx-wrapper {
    overflow: hidden;
    padding-right: 2px;
  }

  .product_slideshow.long .bx-viewport {
    margin-left: -2px;
    width: auto !important;
  }

  .product_slideshow.long .product_slideshow_item {
    border-left: 2px solid #fff;
  }
}

@media screen and (min-width: 992px) {
  .product_slideshow .container {
    max-width: none;
    padding: 0;
    text-align: center;
  }

  /* Only for desktop, remains a slider on mobile */
  .desktop .product_slideshow_item {
    padding: 0 10px;
    width: 16.66%
  }

  .desktop .product_slideshow.long .product_slideshow_item:first-child {
    border: 0;
  }

  .desktop .product_slideshow_item .wrap {
    overflow: hidden;
    padding: 45px 0 55px;
  }

  .desktop .product_slideshow_item img {
    -webkit-transition: -webkit-transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
  }

  .desktop .product_slideshow_item .new {
    -webkit-transition: -webkit-transform 500ms ease 50ms, opacity 500ms ease 50ms;
    transition: transform 500ms ease 50ms, opacity 500ms ease 50ms;
  }

  .desktop .product_slideshow_item figcaption {
    position: relative;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
  }

  .desktop .product_slideshow_item_extra {
    position: absolute;
    top: 100%;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
  }

  .desktop .product_slideshow_item_extra p {
    margin-top: 6px;
  }

  .desktop .product_slideshow_item_extra a {
    margin-top: 4px;
    -webkit-transition: margin 500ms ease;
    transition: margin 500ms ease;
  }

  .desktop .product_slideshow_item:hover img {
    opacity: 0;
    -webkit-transform: translateY(-90px);
    -ms-transform: translateY(-90px);
    transform: translateY(-90px);
  }

  .desktop .product_slideshow_item:hover .new {
    opacity: 0;
    -webkit-transform: translateY(-90px);
    -ms-transform: translateY(-90px);
    transform: translateY(-90px);
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  .desktop .product_slideshow_item:hover figcaption {
    -webkit-transform: translateY(-85px);
    -ms-transform: translateY(-85px);
    transform: translateY(-85px);
  }

  .desktop .product_slideshow_item:hover .product_slideshow_item_extra {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .desktop .product_slideshow_item:hover .product_slideshow_item_extra a {
    margin-top: 24px;
  }
}

@media screen and (min-width: 1280px) {
  .desktop .product_slideshow_item {
    padding: 0 30px;
  }
}

/****************************
-- Press & Partners --
****************************/
.press-partners {
  text-align: center;
}

.press-partners h2 {
  margin: 0 0 10px;
}

@media screen and (min-width: 768px) {
  .press-partners h2 {
    color: #333;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .press-partners h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

/* Press */
.press_slider {
  display: block;
  padding: 35px 0;
  text-align: center;
}

.press_slider_quotes_list blockquote {
  margin: 0;
}

.press_slider_quotes_list p {
  margin: 0 0 16px;
}

.press_slider_quotes_list cite {
  display: block;
  font-size: 15px;
  line-height: 19px;
  margin-bottom: 30px;
}

.press_slider_quotes_list cite a {
  color: #06a84e;
}

.press_slider_quotes_list cite a:hover{
  text-decoration: undeline;;
}

.press_slider_quotes_list img {
  display: inline-block;
}

.press_slider_logos {
  display: none;
}

.press_slider .bx-wrapper .bx-pager {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .press_slider {
    padding: 45px 0;
  }

  .press_slider_quotes_list {
    margin: 0 auto;
    max-width: 500px;
    position: relative;

    -webkit-transition: height 600ms ease;
    transition: height 600ms ease;
  }

  .press_slider_quotes_list blockquote {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%;

    -webkit-transition: opacity 600ms ease, visibility 0ms linear 600ms;
    transition: opacity 600ms ease, visibility 0ms linear 600ms;
  }

  .press_slider_quotes_list blockquote.active {
    opacity: 1;
    visibility: visible;

    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
  }

  .press_slider_quotes_list p {
    margin-bottom: 26px;
  }

  .press_slider_quotes_list cite {
    margin-bottom: 40px;
  }

  .press_slider_quotes_list img {
    display: none;
  }

  .press_slider_logos {
    display: block;
  }

  .press_slider_logos {
    padding: 0 20px;
  }

  .press_slider_logos_cta {
    margin: 0 30px;
    opacity: 0.3;

    -webkit-transition: opacity 600ms ease;
    transition: opacity 600ms ease;
  }

  .press_slider_logos_cta.active {
    opacity: 1;
  }

  .press_slider_logos_cta:first-child {
    margin-left: 0;
  }

  .press_slider_logos_cta:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 1024px) {
  .press_slider {
    display: inline-block;
    padding: 55px 0;
    position: relative;
    vertical-align: top;
    width: 50%;
  }

  .press_slider:after {
    border-right: 1px solid #e1e1e1;
    bottom: 45px;
    content: '';
    right: -1px;
    position: absolute;
    top: 45px;
    width: 1px;
  }

  .press_slider_quotes_list {
    max-width: 450px;
  }

  .press_slider_quotes_list p {
    margin-bottom: 30px;
  }

  .press_slider_quotes_list cite {
    margin-bottom: 40px;
  }

  .press_slider_logos_cta {
    margin: 0 10px;
  }
}

@media screen and (min-width: 1280px) {
  .press_slider_logos_cta {
    margin: 0 30px;
  }
}

/* Partners */
.partners_logos {
  border-top: 1px solid #e1e1e1;
  display: block;
  padding: 35px 0;
  text-align: center;
}

.partners_logos h2 {
  margin: 0;
}

.partners_logos ul {
  margin: 0;
  padding: 0;
}

.partners_logos_item {
  display: inline-block;
  height: 43px;
  margin: 30px 15px 0;;
  position: relative;
  width: 154px;
}

.partners_logos_item img {
  bottom: 0;
  left: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (min-width: 768px) {
  .partners_logos {
    padding: 45px 0;
  }

  .partners_logos_item {
    height: 54px;
    width: 198px;
  }
}

@media screen and (min-width: 1024px) {
  .partners_logos h2 {
    margin-bottom: 20px;
  }

  .partners_logos {
    border-top: 0;
    display: inline-block;
    padding: 55px 0;
    position: relative;
    vertical-align: top;
    width: 50%;
  }

  .partners_logos:before {
    border-left: 1px solid #e1e1e1;
    bottom: 45px;
    content: '';
    left: 0;
    position: absolute;
    top: 45px;
    width: 1px;
  }

  .partners_logos_item {
    height: 68px;
    width: 240px;
  }
}

/****************************
-- Video List --
****************************/
.video_list {
  background-color: #f1f1f1;
  padding: 35px 0 65px;
  position: relative;
  text-align: center;
}

.video_list .container {
  position: static;
}

.video_list h2 {
  margin: 0 0 30px;
}

.video_list .bx-wrapper {
  margin: 0 -20px;
  max-width: none !important;
}

.video_list_item {
  margin: 0;
  padding-left: 20px;
}

.video_list_item_screen {
  display: block;
  position: relative;
}

.video_list_item_caption {
  background-color: #fff;
  min-height: 105px;
  padding: 28px 20px 0;
}

.video_list_item_screen_note {
  background-color: #06a84e;
  border-radius: 5px 5px 0 0;
  bottom: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  left: 50%;
  padding: 8px;
  position: absolute;
  width: 172px;
  z-index: 1;

  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.video_list_item_caption h3 {
  font-size: 15px;
  line-height: 21px;
  margin: 0 0 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video_list_item_caption p {
  color: #b2b2b2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video_list .bx-wrapper .bx-pager {
  padding: 22px 0;
}

.video_list .more {
  bottom: 35px;
  font-size: 12px;
  font-weight: 700;
  left: 50%;
  position: absolute;
  white-space: nowrap;

  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .video_list {
    padding-top: 50px;
  }

  .video_list h2 {
    color: #333;
    margin-bottom: 35px;
  }

  .video_list_slides {
    margin: 0 -15px;
  }

  .video_list_item {
    display: inline-block;
    margin: 0 0 30px;;
    padding: 0 15px;
    width: 33.33%;
  }

  .video_list_item_caption {
    border-radius: 0 0 6px 6px;
    min-height: 125px;
  }

  .video_list_item_caption h3 {
    white-space: normal;
  }

  .video_list_item_caption p {
    white-space: normal;
  }

  .video_list .more {
    bottom: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .video_list {
    padding: 55px 0 20px;
  }

  .video_list .container {
    position: relative;
  }

  .video_list h2 {
    margin-bottom: 40px;
  }

  .video_list_item_caption h3 {
    font-size: 17px;
  }

  .video_list .more {
    bottom: auto;
    left: auto;
    right: 30px;
    top: 20px;

    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

@media screen and (min-width: 1280px) {
  .video_list .more {
    right: 40px;
  }
}

/****************************
-- Centered Swimlane --
****************************/
.centered_swimlane {
  background-color: #f8f8f8;
  background-position: bottom left;
  height: 380px;
  position: relative;
}

.centered_swimlane_cta {
  margin: 0 auto;
  max-width: 280px;
  padding-top: 30px;
  text-align: center;
  position: relative;
  z-index: 100;
}

.centered_swimlane_cta h2 {
  margin: 0 0 25px;
}

@media screen and (min-width: 768px) {
  .centered_swimlane {
    background-size: cover;
    background-position: center center;
    height: 310px;
  }

  .centered_swimlane_cta {
    left: 50%;
    max-width: 320px;
    padding: 0;
    position: absolute;
    top: 50%;

    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .centered_swimlane_cta h2 {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .centered_swimlane {
    height: 490px;
  }

  .centered_swimlane_cta {
    max-width: 465px;
  }

  .centered_swimlane_cta h2 {
    margin-bottom: 25px;
  }
}


/*
SLIDER BOTTOM 
*/
.slider-container{
  position: relative;
}

/*.slider-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.5);
  width: 100%;
  height: 100%;
  z-index: 2;
}*/

ul.slider-outer{
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  max-width: 1440px;
  width: 100%;
  height: 380px;
  position: relative;
}


@media (min-width: 1024px){
  ul.slider-outer{
    height: 490px;
  }
}

@media (min-width: 768px) and (max-width: 1023px){
  ul.slider-outer{
    height: 310px;
  }
}


ul.slider-outer > li.slide-item{
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover !important; 
}

.arrow{
  color: #fff;
  background-color: rgba(0,0,0,0.45);
  display: block;
  height: 96px;
  line-height: 96px;
  margin-top: -48px;
  outline: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 48px;
  z-index: 3;
  border: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 27px;
}

.arrow:hover{
  background: rgba(0,0,0,0.65);
}

.arrow-right{
  border-radius: 48px 0 0 48px;
  right: 0;
  text-align: right;
  padding-right: 12px;
}

.arrow-left{
  border-radius: 0 48px 48px 0;
  left: 0;
  text-align: left;
  padding-left: 12px;
}
/*
SLIDER BOTTOM END
*/