﻿.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
  min-height: 280px;
}

.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*min-width: 612px;*/
  overflow: hidden;
  min-height: 280px;
}

.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slideshow .slide.is-active {
  display: block;
}

.slideshow .slide.is-loaded {
  opacity: 1;
}

.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}

.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 37%;
  height: 100%;
  opacity: 0.4;
  background-image: linear-gradient(to right, #000000 0%, rgba(84, 84, 84, 0) 100%);
}

.slideshow .slide .image {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.slideshow .slide-content {
  position: relative;
  height: 805px;
  z-index: 2;
}

.main-slider-left-cont {
  position: absolute;
  bottom: 8%;
  text-align: left;
  margin-left: 8%;
  width: 100%;
}

.main-slider-left-cont p {
  margin-bottom: 32px;
  margin-bottom: 37px;
  width: 20%;
  color: white;
  opacity: 0.8;
}

/*.main-slider-left-cont h3 {
        width: 40%;
    }*/
.main-slider-logo-cont {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 8.1%;
  margin-right: 8%;
  z-index: 15;
  right: 0px;
}
.main-slider-logo-cont img {
  width: 205px;
  margin-bottom: 20px;
}

.slideshow .pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  cursor: default;
  z-index: 2;
  text-align: center;
  height: 52px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  margin: 0;
}

.slideshow .pagination .item {
  display: inline-block;
  margin: 3px;
  position: relative;
  width: 30px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}

.slideshow .pagination .item + .page {
  margin-left: -2px;
}

.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  left: 5px;
  width: 24px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease;
}

.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}

.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}

.slideshow .arrows .arrow {
  position: absolute;
  height: 100%;
  width: 100px;
  cursor: pointer;
  z-index: 3;
}

.slideshow .arrows .prev:hover .svg {
  left: -10px;
}

.slideshow .arrows .next {
  right: 0px;
}

.slideshow .arrows .next:hover .svg {
  left: 10px;
}

.accordion {
  width: 100%;
  overflow: hidden;
}

.accordion ul {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0;
  padding: 0;
}

.accordion ul li {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  width: 33.333%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 500ms ease;
  background: rgba(0, 0, 0, 0.1);
}

.accordion ul li div {
  display: block;
  overflow: hidden;
  width: 100%;
}

.accordion ul li div a {
  display: flex;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
  vertical-align: bottom;
  padding: 15px 20px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  font-family: Open Sans, sans-serif;
  transition: all 200ms ease;
  min-height: 800px;
}

.accordion ul li img {
  height: 800px;
}

.accordion ul li div a * {
  opacity: 0;
  margin: 0;
  width: 100%;
  z-index: 5;
  overflow: hidden;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.accordion ul li div a p {
  top: 160px;
  width: 512px;
}

.accordion ul:hover li, .accordion ul:focus-within li {
  width: 12%;
}

.accordion ul li:focus {
  outline: none;
}

.accordion ul:hover li:hover, .accordion ul:focus-within li:focus {
  width: 90%;
}

.accordion ul:hover li:hover a, .accordion ul:focus-within li:focus a {
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.7819502801) 120%);
}

.accordion ul:hover li:hover a *, .accordion ul:focus-within li:focus a * {
  opacity: 0.8;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.accordion ul:hover li:hover a * h4, .accordion ul:focus-within li:focus a * h4 {
  opacity: 1 !important;
  font-weight: 300;
  margin-bottom: 12px;
}

.accordion ul:hover li {
  width: 12% !important;
}

.accordion ul:hover li a * {
  opacity: 0 !important;
}

.accordion ul:hover li:hover {
  width: 90% !important;
}

.accordion ul:hover li:hover a * {
  opacity: 0.8 !important;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.kitchen-style-text-cont {
  position: absolute;
  bottom: 10%;
  left: 10%;
}

.kitchen-style-header h4 {
  position: absolute;
  z-index: 15;
  bottom: 4%;
  left: 15%;
  color: #fff;
  line-height: 32px;
  letter-spacing: 0px;
  font-weight: 300;
  font-family: "Josefin Sans", Helvetica, sans-serif;
}

.steps-container {
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
}

.step-item-cont {
  display: flex;
  flex-direction: column;
}

.step-left {
  width: 484px;
}

.step-left h6 {
  left: 255px;
}

.middle-step {
  width: 366px;
}

.middle-step h6 {
  left: 130px;
}

.right-step {
  width: 704px;
}

.right-step h6 {
  left: 130px;
}

.steps-container h6 {
  color: black;
  text-align: center;
  font-size: 22px;
  position: relative;
  margin: 18px 0 0;
  width: 200px;
  font-family: "Poppins";
  font-weight: 400;
}

.step-item-cont h6 {
  text-align: start;
  color: black;
}

.kitchen-step h3 {
  color: black;
  font-size: 26px;
  border-bottom: 2px solid black;
  padding: 20px 0;
}

.step-cont-cont {
  display: flex;
  justify-content: space-between;
  padding: 110px 240px;
}

.step-cont-desc p {
  color: black;
  margin-right: 149px;
}

.step-section {
  position: relative;
}

.kitchen-step h6 {
  color: black;
}

.animation-container {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 408px;
}

.img-cont {
  width: 50%;
}

.text-cont {
  width: 50%;
}

.current-fixed {
  position: absolute;
  background-color: white;
  width: 100%;
  display: flex;
}

.past {
  position: absolute;
  display: flex;
  background-color: white;
  /*height: 462px;*/
  width: 100%;
}

/*.not-active img {
    width: 500px;
}
.active-cont img {
    width: 500px;
}*/
.text-cont-current {
  position: absolute;
  /*height: 500px;*/
  width: 75%;
  /*padding-top: 90px;*/
}

.text-cont-past {
  position: absolute;
  width: 75%;
}

.t1 {
  background-color: white;
}

.t2 {
  background-color: white;
}

.cover-animat {
  width: 100%;
  height: 500px;
}

.cover-animate-active {
  width: 0%;
  overflow: hidden;
  -webkit-transition: width 1s; /* For Safari 3.1 to 6.0 */
  transition: width 1s;
  transition-timing-function: linear;
}

.text-cover-animate-active {
  width: 0%;
  height: 500px;
  overflow: hidden;
  transition: width 1s;
  transition-timing-function: linear;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-cont {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-cont .text {
  word-break: keep-all;
  overflow: hidden;
  text-align: start;
  color: black;
  opacity: 0.8;
  width: 540px;
}

.text-cont .title {
  color: black;
  border-bottom: 2px solid black;
  padding-bottom: 20px;
  margin-bottom: 20px;
  /*min-width: 260px;*/
  display: table;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 300;
}

.centering-cont {
  position: relative;
}

.step-item p {
  padding: 18px;
  display: flex;
  justify-content: start;
  border-bottom: 2px solid rgb(0, 0, 0);
  position: relative;
  opacity: 0.4;
}

.center-top {
  position: absolute;
  z-index: 1000;
  top: 50%;
  left: 26%;
  transform: translate(-50%, -50%) !important;
}

.step-item p span {
  position: relative;
  padding-left: 115px;
  font-family: "Josefin Sans", Helvetica, sans-serif;
  font-size: 24px;
}

.step-item p .first-st {
  padding-left: 243px;
}

.step-item h6 {
  opacity: 0.4;
}

.kitchen-active-step {
  transition: all ease-in-out 0.3s;
  opacity: 1 !important;
}

.anim-cont-padding {
  padding: 110px 12%;
}

.quiz {
  background: black;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 110px 0;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 462px;
  background-color: white;
}

.quiz-animation {
  text-align: center;
  height: 100%;
  width: 100%;
  justify-content: center;
  bottom: -100%;
  background-color: black;
  animation: progressBar1 0.5s ease-in-out;
  animation-fill-mode: forwards;
  position: absolute;
  align-items: center;
  flex-direction: column;
  display: flex;
  animation-name: springy-text;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.animate-text {
  transform: translateY(-25px);
  opacity: 1 !important;
  transition: all ease-in-out 0.6s;
}

.quiz-bg-anim {
  transition: transform 0.4s linear;
  transform: translateY(-100%);
}

.quiz a {
  opacity: 0;
  margin-top: 64px;
}

.quiz h2 {
  color: white;
  opacity: 1;
  font-family: "Josefin Sans", Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 300;
}

.quiz h5 {
  margin-top: 32px;
  color: white;
  opacity: 0.8;
}

/*.quiz h4 {
    opacity: 0;
    padding-bottom: 48px;
    width: 947px;
    color: white;
    line-height: 1.5;
    margin: 0;
}*/
.about-cpy {
  padding: 0 12% 110px;
  display: flex;
  justify-content: space-between;
}
.about-cpy .item-box {
  width: 33.3333333%;
  padding: 0 15px;
}
.about-cpy .title {
  padding: 32px 0 20px 0;
  margin: 0;
  font-weight: 300;
  font-family: "Josefin Sans", Helvetica, sans-serif;
}
.about-cpy .description {
  font-size: 17px;
  overflow: hidden;
  color: black;
  text-overflow: ellipsis;
  line-height: 1.6;
}
.about-cpy img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.about-cpy img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.about-cpy-itm {
  width: 33%;
}

/*.about-img {
    position: relative;
    z-index: 0;
    background: rgba(0,0,0,.2);
}*/
/*.about-item-img {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.about-middle-item {
    margin: 0 30px;
}

.about-cpy-itm p {
    font-size: 18px;
    overflow: hidden;
    color: black;
    text-overflow: ellipsis;
    line-height:1.6;
}

.about-cpy-itm h4 {
    padding: 32px 0 20px 0;
    margin: 0;
    font-weight: 300;
    font-family: 'Josefin Sans', Helvetica, sans-serif;
}

.about-cpy {
    padding: 0 12% 110px;
    display: flex;
}*/
/*param 6*/
.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  float: left;
  width: 120px;
  height: 300px;
  padding: 10px;
  border: 1px solid silver;
  margin-top: 10px;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.features-desc {
  height: 1067px;
  background: black;
  width: 100%;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-content: space-between;
  align-content: space-between;
  align-content: space-between;
}

.desc-item {
  height: 200px;
  margin: 0 20px;
  width: 100%;
}

.feature-container {
  display: none;
  width: 100%;
}

.feature-container .fe-text {
  cursor: default;
}

/*.feature-container a:hover {
        color: white;
    }*/
.feature-description-container {
  background-color: black;
  width: 45%;
  justify-content: center;
}

.image-container {
  background-color: black;
  width: 55%;
}

.image-container img {
  width: 100%;
  height: 100%;
}

.feature-description-content {
  display: flex;
  flex-flow: wrap;
  height: 100%;
  align-content: space-between;
}

.feature-description-content-item {
  width: 100%;
}

.feature-description-content-item p {
  opacity: 0.8;
  color: white;
  margin-bottom: 32px;
}

.feature-header-part h2 {
  color: white;
  font-family: "Josefin Sans", Helvetica, sans-serif;
  font-weight: 300;
  display: inline;
}

.feature-header-part div {
  padding: 60px 32px 15px;
  margin-left: 210px;
  border-left: 1px solid white;
  font-weight: 300;
  color: white;
}

.feature-selected {
  display: flex;
  flex-flow: row;
  justify-content: center;
}
.feature-selected div {
  width: 50%;
  margin-left: 60px;
}
.feature-selected div h5 {
  margin: 0;
  padding: 0;
  font-size: 26px;
}

.feature-pasive {
  display: flex;
  flex-flow: row;
  justify-content: center;
  margin-bottom: 10%;
}

.feature-container h4, .feature-container a {
  color: white;
  font-family: "Josefin Sans", Helvetica, sans-serif;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
}

/*.feature-pasive h5 {
        padding-bottom: 20px;
        border-bottom: 1px solid white;
        margin-bottom: 20px;
        display: table;
        color:white!important;
    }*/
.feature-pasive div div img {
  width: 100%;
  max-width: 214px;
}

/*.ds-elem-img-cont {
    padding: 0 30px 0 90px;
}*/
.active-feature {
  display: flex;
}

.feature-click-item {
  cursor: pointer;
}

.know-more {
  display: flex;
  flex-flow: row;
  justify-content: center;
  margin-bottom: 111px;
}

.know-more-item {
  width: 100%;
  margin: 0 15px;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.know-more-item:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 583px;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(0deg, rgb(0, 0, 0) 5%, rgba(0, 0, 0, 0.4794292717) 64%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(0deg, rgb(0, 0, 0) 5%, rgba(0, 0, 0, 0.4794292717) 64%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgb(0, 0, 0) 5%, rgba(0, 0, 0, 0.4794292717) 64%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  transition: top 0.3s;
}

.know-more-item:hover:before {
  top: 0px;
}

know-more-content {
  background: red;
}

.know-more-content h4 {
  margin-bottom: 20px;
  position: absolute;
  bottom: 48px;
  left: 32px;
  right: 32px;
  color: white;
  font-family: "Josefin Sans", Helvetica, sans-serif;
  font-weight: 300;
}

.know-more-content p {
  width: 80%;
  color: white;
  margin-bottom: 24px;
  opacity: 0.8;
}

.know-more-text-cont {
  position: absolute;
  bottom: 14px;
  padding: 0 32px;
  color: white;
  opacity: 0;
  height: 171px;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
}

.wrapper {
  line-height: 1.5; /* explicitely set the height of line to easily control */
  max-height: 120px; /* Show at max 2 line*/
  overflow: hidden;
}

.wrapper .content {
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* This will hide the show/less if the content is 2 lines or less*/
.wrapper .content:after {
  content: "";
  position: absolute;
  top: 106%; /* Start at the end of the content */
  left: 0;
  right: 0;
  z-index: 1;
  background: #fff;
}

/**/
.wrapper :nth-last-child(1),
.wrapper :nth-last-child(2) {
  /*make the element sticky so they show above the content if the content is big
    and the after will no more hide them
  */
  position: sticky;
  bottom: 0;
  background: #fff;
  cursor: pointer;
  outline: none;
  color: #000;
  font-family: Lato, Helvetica, sans-serif;
  font-size: 20px;
  opacity: 0.8;
}

.wrapper:focus,
.wrapper:active {
  outline: 0;
  max-height: 100%;
  transition: all ease-in-out 0.5s;
}

/*make the after and the "show more" on click*/
.wrapper:focus .content:after,
.wrapper:active .content:after,
.wrapper:focus :nth-last-child(1),
.wrapper:active :nth-last-child(1) {
  display: none;
  -webkit-line-clamp: unset;
}

.wrapper:focus .content,
.wrapper:active .content {
  -webkit-line-clamp: initial;
}

.line-cut_3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: -1px 0 1em 0;
  overflow: hidden;
  margin-bottom: 0;
}

.learn-more {
  color: rgba(0, 0, 0, 0.4) !important;
}

/*.border-line-hover-anim {
    display: inline-block;
    color: white;
    text-decoration: none;
}

.border-line-hover-anim::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin: 20px 0;
    background: white;
    transition: width .3s;
}

.border-line-hover-anim:hover::after {
    width: 45%;
}
*/
.scale-up-ver-bottom {
  animation: scale-up-ver-bottom 3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes scale-up-ver-bottom {
  0% {
    transform: scaleY(5);
    transform-origin: 0% 100%;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 0% 100%;
  }
}
.know-mor-title-anim {
  transition: transform 0.4s linear;
  transform: translateY(-120px);
}

.know-mor-title-anim2 {
  transition: transform 0.4s linear;
  transform: translateY(0px);
}

.opecity1 {
  opacity: 1;
  -webkit-transition: opacity 0.7s ease-in-out;
  -moz-transition: opacity 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out;
}

.learn-more-arrow {
  opacity: 0.4;
}

/*Solutions*/
.kitchen-solution-page a {
  color: black;
}

.kitchen-solution-page a:hover {
  color: black;
}

.kitchen-solution-page .breadcrumb {
  background-color: white;
  color: black;
}

.breadcrumb img {
  width: 12px !important;
  height: 2px;
}

.kitchen-solution-page .kitchen-solution-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 150px 243px 110px 243px;
  flex-direction: column;
}

.main-slider-left-cont h3 {
  color: white;
  margin-bottom: 24px;
  font-family: "Josefin Sans", Helvetica, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}

.main-slider-logo-cont {
  width: 196px;
}

.image-container {
  background-position: center;
  min-width: 612px;
  background-size: cover;
}

.feature-container .image-container {
  min-width: 55%;
}

.feature-header-part-mobile {
  display: none;
}

.learn-more-desElem {
  font-size: 16px;
  color: white;
  display: none;
}

.h-outdoor-txt {
  padding: 4% 9%;
}

.home-outdoor {
  margin-bottom: 110px;
}

.outdoor .history-img {
  background-image: url("/images/kitchen/outdoor_kitchen_home/10-history/choisir-la-meilleure-solution_0.jpg");
}

.outdoor .quality-img {
  background-image: url("/images/kitchen/outdoor_kitchen_home/11-quality/piani-cucina1.jpg");
}

.outdoor .materials-img {
  background-image: url("/images/kitchen/outdoor_kitchen_home/12-materials/1general_maxfine-37.jpg");
}

.know-more {
  padding: 0 12%;
}

.accordion ul li div a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.main-carusel {
  padding: 109px 0 0;
}
.main-carusel a .image-container {
  padding: 0;
}
