/*
 * CAROUSEL COMPONENT
 * frontend/carousel.less
 * For homepage of marketing site
*/
.carousel {
  position: relative;
}
@media (max-width: 767px) {
  .carousel-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner,
.carousel-inner > .item {
  height: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
  user-select: none;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .active > img,
.carousel-inner > .active > a > img {
  border-radius: 6px;
}
@media (max-width: 767px) {
  .carousel-inner > .active > img,
  .carousel-inner > .active > a > img {
    border-radius: 0 !important;
  }
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  height: 60px;
  width: 60px;
  margin-top: -30px;
  line-height: 59px;
  color: #ffffff;
  font-size: 26.4px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.33);
  -webkit-transition: 0.2s ease opacity;
  -o-transition: 0.2s ease opacity;
  transition: 0.2s ease opacity;
  background: none transparent;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.carousel-control.left {
  left: 0px;
  right: auto;
  text-indent: -1px;
}
.carousel-control.right {
  left: auto;
  text-indent: 1px;
  right: 0px;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
  filter: alpha(opacity=100);
  outline: 0;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  display: inline-block;
  z-index: 5;
}
.carousel-indicators {
  text-align: center;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  z-index: 15;
  position: absolute;
  right: 15px;
  top: 15px;
  bottom: auto;
  left: auto;
  margin: 0;
  padding: 4px;
}
.carousel-indicators li {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 4.5px;
  text-indent: -999px;
  border: medium none;
  border-radius: 50%;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
  vertical-align: top;
  opacity: 0.75;
  filter: alpha(opacity=75);
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: transform 0.1s ease 0s, opacity 0.3s ease 0s, background-color 0.3s ease 0s;
  -o-transition: transform 0.1s ease 0s, opacity 0.3s ease 0s, background-color 0.3s ease 0s;
  transition: transform 0.1s ease 0s, opacity 0.3s ease 0s, background-color 0.3s ease 0s;
}
.carousel-indicators li:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  background-color: #fff;
}
.carousel-indicators .active {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  background-color: #fece52;
  border-color: #fece52;
  opacity: 1;
  filter: alpha(opacity=100);
}
.carousel-caption {
  position: absolute;
  z-index: 10;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.33);
  padding: 20px 24px;
  background: #1d2132;
  background: rgba(29, 33, 50, 0.7);
  border-radius: 0 0 6px 6px;
}
.carousel-caption .btn {
  text-shadow: none;
}
@media (max-width: 767px) {
  .carousel-caption {
    position: static;
    text-align: center;
    padding: 15px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media screen and (min-width: 768px) {
  .carousel-control {
    font-size: 2em;
    background-color: transparent;
  }
  .carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .carousel-control {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25);
  }
  .carousel:hover .carousel-control {
    opacity: 0.75;
    filter: alpha(opacity=75);
  }
  .carousel:hover .carousel-control:hover {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .carousel-caption {
    left: 33%;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .carousel-inner:before {
    background-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.7) 55%);
  }
}
.masthead .carousel,
.jumbotron .carousel {
  height: 450px;
  line-height: 1.33;
  position: relative;
  text-align: left;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .masthead .carousel,
  .jumbotron .carousel {
    height: 500px;
  }
}
@media screen and (min-width: 992px) {
  .masthead .carousel,
  .jumbotron .carousel {
    min-height: 600px;
  }
}
.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.carousel .photo-background {
  height: 100%;
  display: block;
  min-height: 400px;
  padding: 6em 0 4em;
  background-size: cover;
}
@media screen and (min-width: 960px) {
  .carousel .photo-background {
    padding: 9em 0 5em;
  }
}
.carousel-item__heading {
  margin: 0 0 0.5em;
  font-size: 36px;
}
.carousel-caption .carousel-item__heading {
  text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.7);
}
.carousel-item__copy {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.33;
  text-shadow: none;
  margin: 0 1em 1em 0;
  display: inline-block;
  width: auto;
}
#home-page .navbar-wrapper {
  position: static;
}
#home-page .navbar-wrapper .container-semifluid {
  max-width: 1600px;
}
@media (min-width: 768px) and (max-width: 1600px) {
  #home-page .navbar-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
  #home-page .navbar-wrapper .navbar {
    background-color: rgba(0, 0, 0, 0.1);
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a000000', endColorstr='#80000000', GradientType=1);
  }
  #home-page .navbar-wrapper .navbar .navbar-brand {
    font-size: 2.25em;
    position: absolute;
    padding: 24px;
    height: auto;
    top: 0;
    left: 0;
  }
  #home-page .navbar-wrapper .navbar .navbar-nav {
    float: right;
  }
  #home-page .navbar-wrapper .navbar .navbar-nav a {
    color: #ffffff;
    text-shadow: 0px 1px 1px #000000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    text-transform: none;
    font-size: 18px;
  }
}
.home-banner.masthead {
  padding: 72px 0 0;
  margin-top: -72px;
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
  line-height: 0;
  width: 100%;
  background-color: #3d4351;
}
@media screen and (min-width: 1200px) {
  .home-banner.masthead {
    padding-top: 0;
    margin-top: 0;
  }
  .home-banner.masthead .carousel {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.home-banner.masthead .shadow.top {
  top: -20%;
  display: none;
}
.home-banner.masthead .shadow.left {
  width: 250px;
  left: -50px;
}
@media screen and (min-width: 1600px) {
  .home-banner.masthead .shadow {
    display: none;
  }
}
.home-banner.masthead .carousel-caption {
  bottom: 0;
  text-align: left;
  position: absolute;
  min-width: 70%;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .home-banner.masthead .carousel-caption {
    display: block;
    width: 100%;
    text-align: center;
    bottom: 0;
    padding: 15px;
  }
}
.home-banner.masthead .carousel .nav {
  min-height: 48px;
  background-color: transparent;
  padding: 0px;
  text-align: center;
  margin: 0;
  z-index: 25;
  position: absolute;
  top: 100%;
  left: 0px;
}
.home-banner.masthead .carousel .nav a {
  text-transform: uppercase;
  min-height: 48px;
  font-size: 16px;
  font-family: 'Montserrat', "Helvetica Neue", Helvetica, "Lucida Grande", sans-serif;
  font-weight: 400;
  border-radius: 0;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: 1em;
}
.home-banner.masthead .carousel .nav .active > a {
  background: none repeat scroll 0% 0% #fff;
  color: #000 !important;
}
.home-banner.masthead .carousel .nav .active > a:after {
  border-image: none;
  bottom: 100%;
  left: 50%;
  content: " ";
  width: 0;
  height: 0;
  position: absolute;
  pointer-events: none;
  z-index: 20;
  border: solid transparent;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 15px;
  margin-left: -15px;
}
.home-banner.masthead .carousel-indicators {
  top: 122px;
  width: 24px;
  right: 2%;
  z-index: 1001;
}
.home-banner.masthead .carousel-indicators li {
  margin: 5px 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.home-banner.masthead .carousel-indicators li:hover {
  background-color: #ffffff;
  border-color: #fff;
}
.home-banner.masthead .carousel-indicators .active,
.home-banner.masthead .carousel-indicators .active:focus,
.home-banner.masthead .carousel-indicators .active:hover {
  background-color: #fedc4a;
  border-color: #fedc4a;
}
.home-banner.masthead .headline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 90%;
  padding-bottom: 1em;
}
@media (min-width: 768px) {
  .home-banner.masthead .headline {
    text-align: right;
    left: auto;
    width: 700px;
  }
}
.home-banner.masthead .big-intro-heading {
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  font-family: 'Roboto Slab', Adelle, Georgia, serif;
  margin-bottom: 12px;
  max-width: 100%;
  margin-top: 0px;
  font-size: 3.25em;
}
.home-banner.masthead .big-intro-heading span,
.home-banner.masthead .big-intro-heading strong {
  padding: 2px 0.4em 0;
  display: inline-block;
  white-space: nowrap;
  color: #000;
  line-height: 1.1;
  transform: translate3d(0px, 0px, 0px);
  position: relative;
  background-color: rgba(255, 203, 95, 0.9);
  text-shadow: 2px 2px 1px rgba(255, 255, 255, 0.5);
  padding-right: 24px;
}
.home-banner.masthead .big-intro-heading span {
  font-size: 90%;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.75);
  color: #fff;
}
.carousel-inner .item .cta-link {
  -webkit-box-shadow: 3px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 3px 3px rgba(0, 0, 0, 0.25);
  display: inline-block;
  -webkit-transition: opacity 0.5s ease-in-out 0s;
  -o-transition: opacity 0.5s ease-in-out 0s;
  transition: opacity 0.5s ease-in-out 0s;
  opacity: 1;
  filter: alpha(opacity=100);
  float: right;
  font-size: 15px;
  font-weight: 400;
}
.carousel-inner .item .cta-link.btn-lg {
  font-size: 16px;
}
.carousel-inner .item .cta-link.btn-lg:hover,
.carousel-inner .item .cta-link.btn-lg:focus {
  color: #fff;
}
.carousel-inner .item .cta-link:hover,
.carousel-inner .item .cta-link:focus {
  -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 5px 5px rgba(0, 0, 0, 0.4);
  color: #000;
  top: -2px;
  left: 2px;
}
.carousel-inner .item:not(.active) .cta-link {
  opacity: 0;
  filter: alpha(opacity=0);
}
@media (max-width: 767px) {
  .carousel-inner .item .cta-link:not(.btn-lg) {
    position: static;
    display: block;
    margin: 24px auto 12px;
    float: none;
    width: 75%;
  }
}
.home-banner .carousel__slide-clsa .cta-link,
.home-banner .carousel__slide-clss .cta-link {
  margin-right: 24px;
}
.carousel__slide-livraison .carousel-caption {
  left: 0;
  right: auto;
  border-radius: 0 6px 0 0;
}
@media screen and (min-width: 1600px) {
  .carousel__slide-livraison .carousel-caption {
    right: 0;
    left: auto;
    border-radius: 6px 0 0 0;
  }
}
.carousel__slide-propane .carousel-caption {
  right: 0px;
  left: auto;
  border-radius: 6px 0 0 0;
}
@media screen and (min-width: 1600px) {
  #home-page .masthead.home-banner .nav-pills {
    left: 0px;
    width: 200px;
    bottom: 0;
    top: auto;
  }
  #home-page .masthead.home-banner .nav-pills > li {
    display: block;
    width: 100%;
  }
  #home-page .masthead.home-banner .nav-pills > li > a {
    padding: 2em;
    height: auto;
    border-left: medium none;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  }
  #home-page .masthead.home-banner .nav-pills li + li {
    margin-top: -1px;
  }
  #home-page .masthead.home-banner .nav-pills .active > a:after {
    border-right: 18px solid transparent;
    top: 50%;
    left: 100%;
    border: solid transparent;
    border-color: rgba(255, 255, 255, 0);
    border-left-color: #fff;
    border-width: 18px;
    margin: -18px 0 0 0;
  }
}
#home-page blockquote p {
  color: #3d4351;
  font-size: 22px;
  line-height: 1.33;
  margin-bottom: 1em;
  margin-top: 0;
  font-weight: 300;
}
#home-page .wtf-banner {
  position: absolute;
  right: 64px;
  top: 132px;
}
#home-page .wtf-banner a {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  padding: 0.25em 0.5em;
  display: block;
  background-color: rgba(0, 0, 0, 0.33);
  border: 5px solid;
}
#home-page .wtf-banner a.are-closed {
  color: #e4545a;
  border-color: #cb2028;
}
#home-page .wtf-banner a.are-open {
  color: #2ecc71;
  border-color: #25a25a;
}
#home-page .wtf-banner a:hover {
  background-color: rgba(0, 0, 0, 0.33);
  border-color: #d7d7d7;
  color: #d7d7d7;
}
