/*==============================
=            LOADER            =
==============================*/

#loader {
  position: absolute;
  z-index: 11;
  height: 100vh;
  width: 100%;
  top: 0px;
  left: 0px;
  background-color: #2884f6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#loader.hide {
  opacity: 0;
}
#loader .container-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
#loader .container-bg .bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#loader .container-bg .bg-filter {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
  opacity: 1;
}
#loader .container-bg .bg.show-qonto {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#5041b2),
    to(#7969e6)
  );
  background: -webkit-linear-gradient(left, #5041b2 0%, #7969e6 100%);
  background: -o-linear-gradient(left, #5041b2 0%, #7969e6 100%);
  background: linear-gradient(90deg, #5041b2 0%, #7969e6 100%);
}
#loader .container-bg .bg.show-marks {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fd8355),
    color-stop(37.02%, #f0576c),
    to(#f79cbd)
  );
  background: -webkit-linear-gradient(
    left,
    #fd8355 0%,
    #f0576c 37.02%,
    #f79cbd 100%
  );
  background: -o-linear-gradient(
    left,
    #fd8355 0%,
    #f0576c 37.02%,
    #f79cbd 100%
  );
  background: linear-gradient(90deg, #fd8355 0%, #f0576c 37.02%, #f79cbd 100%);
}
#loader .container-bg .bg.show-chauffeurprive {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ce0c2a),
    to(#dc6c7f)
  );
  background: -webkit-linear-gradient(left, #ce0c2a 0%, #dc6c7f 100%);
  background: -o-linear-gradient(left, #ce0c2a 0%, #dc6c7f 100%);
  background: linear-gradient(90deg, #ce0c2a 0%, #dc6c7f 100%);
}
#loader .container-bg .bg.show-lecollectionist {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#faf0e7),
    to(#efe5dc)
  );
  background: -webkit-linear-gradient(right, #faf0e7 0%, #efe5dc 100%);
  background: -o-linear-gradient(right, #faf0e7 0%, #efe5dc 100%);
  background: linear-gradient(270deg, #faf0e7 0%, #efe5dc 100%);
}
#loader.show-lecollectionist svg g g g g path {
  fill: #363f54 !important;
}
#loader .container-bg .bg.show-orangelabs {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#f0613c),
    to(#f0783c)
  );
  background: -webkit-linear-gradient(right, #f0613c 0%, #f0783c 100%);
  background: -o-linear-gradient(right, #f0613c 0%, #f0783c 100%);
  background: linear-gradient(270deg, #f0613c 0%, #f0783c 100%);
}
#loader .container-bg .bg.show-mondocteur {
  background-color: #ff6c75;
}
#loader .container-bg .bg.show {
  opacity: 1;
}
#loader-anim {
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#loader-anim.style-qonto svg g g g g path {
  fill: #fff !important;
}
#loader-anim.style-marks svg g g g g path {
  fill: #fff !important;
}
#loader-anim.style-chauffeurprive svg g g g g path {
  fill: #fff !important;
}
#loader-anim.style-lecollectionist svg g g g g path {
  fill: #363f54 !important;
}
#loader-anim.style-orangelabs svg g g g g path {
  fill: #fff !important;
}
#loader-anim.style-mondocteur svg g g g g path {
  fill: #fff !important;
}
/*=====  End of LOADER  ======*/

/*====================================
=            Section HOME            =
====================================*/

#header-desktop .container-rs {
  top: calc(80vh - 210px);
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#header-desktop .container-rs.show {
  opacity: 1;
}

#section-home {
  position: relative;
  height: 80vh;
  min-height: 700px;
  margin-bottom: 20vh;
}
#section-home .container-caroussel {
  position: relative;
  height: 100%;
  min-height: 700px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-home .container-caroussel .container-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
#section-home .container-caroussel .container-bg:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 20vh;
  max-height: calc(100vh - 700px);
  background-color: #fff;
  left: 0px;
  bottom: 0px;
  will-change: transform;
  -webkit-transform: translateZ(0) translateY(100%);
  -ms-transform: translateZ(0) translateY(100%);
  transform: translateZ(0) translateY(100%);
  -webkit-transition: all 1s cubic-bezier(0, 0.785, 0, 1);
  -o-transition: all 1s cubic-bezier(0, 0.785, 0, 1);
  transition: all 1s cubic-bezier(0, 0.785, 0, 1);
}
#section-home .container-caroussel .container-bg.show:after {
  -webkit-transform: translateZ(0) translateY(0%);
  -ms-transform: translateZ(0) translateY(0%);
  transform: translateZ(0) translateY(0%);
}
#section-home .container-caroussel .container-bg .bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
#section-home .container-caroussel .container-bg .bg-filter {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
  opacity: 1;
}
#section-home .container-caroussel .container-bg .bg.bg-qonto {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#5041b2),
    to(#7969e6)
  );
  background: -webkit-linear-gradient(left, #5041b2 0%, #7969e6 100%);
  background: -o-linear-gradient(left, #5041b2 0%, #7969e6 100%);
  background: linear-gradient(90deg, #5041b2 0%, #7969e6 100%);
}
#section-home .container-caroussel .container-bg .bg.bg-marks {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fd8355),
    color-stop(37.02%, #f0576c),
    to(#f79cbd)
  );
  background: -webkit-linear-gradient(
    left,
    #fd8355 0%,
    #f0576c 37.02%,
    #f79cbd 100%
  );
  background: -o-linear-gradient(
    left,
    #fd8355 0%,
    #f0576c 37.02%,
    #f79cbd 100%
  );
  background: linear-gradient(90deg, #fd8355 0%, #f0576c 37.02%, #f79cbd 100%);
}
#section-home .container-caroussel .container-bg .bg.bg-chauffeurprive {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ce0c2a),
    to(#dc6c7f)
  );
  background: -webkit-linear-gradient(left, #ce0c2a 0%, #dc6c7f 100%);
  background: -o-linear-gradient(left, #ce0c2a 0%, #dc6c7f 100%);
  background: linear-gradient(90deg, #ce0c2a 0%, #dc6c7f 100%);
}
#section-home .container-caroussel .container-bg .bg.bg-lecollectionist {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#faf0e7),
    to(#efe5dc)
  );
  background: -webkit-linear-gradient(right, #faf0e7 0%, #efe5dc 100%);
  background: -o-linear-gradient(right, #faf0e7 0%, #efe5dc 100%);
  background: linear-gradient(270deg, #faf0e7 0%, #efe5dc 100%);
}
#section-home .container-caroussel .container-bg .bg.bg-orangelabs {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#f0613c),
    to(#f0783c)
  );
  background: -webkit-linear-gradient(right, #f0613c 0%, #f0783c 100%);
  background: -o-linear-gradient(right, #f0613c 0%, #f0783c 100%);
  background: linear-gradient(270deg, #f0613c 0%, #f0783c 100%);
}
#section-home .container-caroussel .container-bg .bg.bg-mondocteur {
  background-color: #ff6c75;
}
#section-home .container-caroussel .container-bg .bg.show {
  opacity: 1;
}
#section-home .container-caroussel .container-text {
  width: 40%;
  position: absolute;
  z-index: 2;
  top: calc(50% + 40px);
  right: 50%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-home .container-caroussel.show-qonto .container-text,
#section-home .container-caroussel.show-qonto .container-text a {
  color: #fff;
}
#section-home .container-caroussel.show-marks .container-text,
#section-home .container-caroussel.show-marks .container-text a {
  color: #fff;
}
#section-home .container-caroussel.show-chauffeurprive .container-text,
#section-home .container-caroussel.show-chauffeurprive .container-text a {
  color: #fff;
}
#section-home .container-caroussel.show-lecollectionist .container-text,
#section-home .container-caroussel.show-lecollectionist .container-text a {
  color: #363f54;
}
#section-home .container-caroussel.show-orangelabs .container-text,
#section-home .container-caroussel.show-orangelabs .container-text a {
  color: #fff;
}
#section-home .container-caroussel.show-mondocteur .container-text,
#section-home .container-caroussel.show-mondocteur .container-text a {
  color: #fff;
}
#section-home .container-caroussel .container-text > p:nth-child(1) {
  opacity: 0;

  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-home .container-caroussel .container-text > p.show:nth-child(1) {
  opacity: 0.5;
}
#section-home .container-caroussel .container-text > p:nth-child(1):before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 11px);
  height: 1px;
  width: 19px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-home
  .container-caroussel.show-qonto
  .container-text
  > p:nth-child(1):before {
  background-color: #fff;
}
#section-home
  .container-caroussel.show-marks
  .container-text
  > p:nth-child(1):before {
  background-color: #fff;
}
#section-home
  .container-caroussel.show-chauffeurprive
  .container-text
  > p:nth-child(1):before {
  background-color: #fff;
}
#section-home
  .container-caroussel.show-lecollectionist
  .container-text
  > p:nth-child(1):before {
  background-color: #363f54;
}
#section-home
  .container-caroussel.show-orangelabs
  .container-text
  > p:nth-child(1):before {
  background-color: #fff;
}
#section-home
  .container-caroussel.show-mondocteur
  .container-text
  > p:nth-child(1):before {
  background-color: #fff;
}
#section-home .container-caroussel .container-text > p:nth-child(2) {
  font-size: 54px;
}
#section-home .container-caroussel .container-text > p:nth-child(3) {
  opacity: 0.4;

  font-size: 54px;
}
#section-home .container-caroussel .container-text > p:nth-child(2) span,
#section-home .container-caroussel .container-text > p:nth-child(3) span {
  white-space: pre;
  display: inline-block;
  opacity: 0;
  will-change: transform;
  -webkit-transform: translateZ(0) translateY(-100px);
  -ms-transform: translateZ(0) translateY(-100px);
  transform: translateZ(0) translateY(-100px);
  -webkit-transition: all 0.5s cubic-bezier(0.045, 0.855, 0.1, 0.955);
  -o-transition: all 0.5s cubic-bezier(0.045, 0.855, 0.1, 0.955);
  transition: all 0.5s cubic-bezier(0.045, 0.855, 0.1, 0.955);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(2)
  span:nth-child(1) {
  -webkit-transform: translateY(-100px) translateX(-100px);
  -ms-transform: translateY(-100px) translateX(-100px);
  transform: translateY(-100px) translateX(-100px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(2)
  span:nth-child(1) {
  opacity: 1;
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(2)
  span:nth-child(3) {
  -webkit-transform: translateY(-170px) translateX(100px);
  -ms-transform: translateY(-170px) translateX(100px);
  transform: translateY(-170px) translateX(100px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(2)
  span:nth-child(3) {
  opacity: 1;
  -webkit-transform: translateY(-170px);
  -ms-transform: translateY(-170px);
  transform: translateY(-170px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(2)
  span:nth-child(5) {
  -webkit-transform: translateY(-50px) translateX(50px);
  -ms-transform: translateY(-50px) translateX(50px);
  transform: translateY(-50px) translateX(50px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(2)
  span:nth-child(5) {
  opacity: 1;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(2)
  span:nth-child(7) {
  -webkit-transform: translateY(-20px) translateX(100px);
  -ms-transform: translateY(-20px) translateX(100px);
  transform: translateY(-20px) translateX(100px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(2)
  span:nth-child(7) {
  opacity: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(2)
  span:nth-child(9) {
  -webkit-transform: translateY(-70px) translateX(40px);
  -ms-transform: translateY(-70px) translateX(40px);
  transform: translateY(-70px) translateX(40px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(2)
  span:nth-child(9) {
  opacity: 1;
  -webkit-transform: translateY(-70px);
  -ms-transform: translateY(-70px);
  transform: translateY(-70px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(2)
  span:nth-child(9) {
  -webkit-transform: translateY(-90px) translateX(60px);
  -ms-transform: translateY(-90px) translateX(60px);
  transform: translateY(-90px) translateX(60px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(2)
  span:nth-child(11) {
  opacity: 1;
  -webkit-transform: translateY(-90px);
  -ms-transform: translateY(-90px);
  transform: translateY(-90px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(3)
  span:nth-child(1) {
  -webkit-transform: translateY(100px) translateX(-100px);
  -ms-transform: translateY(100px) translateX(-100px);
  transform: translateY(100px) translateX(-100px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(3)
  span:nth-child(1) {
  opacity: 1;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(3)
  span:nth-child(3) {
  -webkit-transform: translateY(170px) translateX(100px);
  -ms-transform: translateY(170px) translateX(100px);
  transform: translateY(170px) translateX(100px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(3)
  span:nth-child(3) {
  opacity: 1;
  -webkit-transform: translateY(170px);
  -ms-transform: translateY(170px);
  transform: translateY(170px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(3)
  span:nth-child(5) {
  -webkit-transform: translateY(50px) translateX(50px);
  -ms-transform: translateY(50px) translateX(50px);
  transform: translateY(50px) translateX(50px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(3)
  span:nth-child(5) {
  opacity: 1;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(3)
  span:nth-child(7) {
  -webkit-transform: translateY(20px) translateX(100px);
  -ms-transform: translateY(20px) translateX(100px);
  transform: translateY(20px) translateX(100px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(3)
  span:nth-child(7) {
  opacity: 1;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(3)
  span:nth-child(9) {
  -webkit-transform: translateY(70px) translateX(-40px);
  -ms-transform: translateY(70px) translateX(-40px);
  transform: translateY(70px) translateX(-40px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(3)
  span:nth-child(9) {
  opacity: 1;
  -webkit-transform: translateY(70px);
  -ms-transform: translateY(70px);
  transform: translateY(70px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(3)
  span:nth-child(11) {
  -webkit-transform: translateY(140px) translateX(-80px);
  -ms-transform: translateY(140px) translateX(-80px);
  transform: translateY(140px) translateX(-80px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(3)
  span:nth-child(11) {
  opacity: 1;
  -webkit-transform: translateY(140px);
  -ms-transform: translateY(140px);
  transform: translateY(140px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(3)
  span:nth-child(13) {
  -webkit-transform: translateY(60px) translateX(-80px);
  -ms-transform: translateY(60px) translateX(-80px);
  transform: translateY(60px) translateX(-80px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(3)
  span:nth-child(13) {
  opacity: 1;
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
}
#section-home
  .container-caroussel
  .container-text
  > p:nth-child(3)
  span:nth-child(15) {
  -webkit-transform: translateY(100px) translateX(-60px);
  -ms-transform: translateY(100px) translateX(-60px);
  transform: translateY(100px) translateX(-60px);
}
#section-home
  .container-caroussel
  .container-text.slide-1
  > p:nth-child(3)
  span:nth-child(15) {
  opacity: 1;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}
#section-home
  .container-caroussel
  .container-text.slide-2
  > p:nth-child(2)
  span,
#section-home
  .container-caroussel
  .container-text.slide-2
  > p:nth-child(3)
  span,
#section-home .container-caroussel .container-text.show > p:nth-child(2) span,
#section-home .container-caroussel .container-text.show > p:nth-child(3) span {
  -webkit-transition: all 0.75s cubic-bezier(0.045, 0.855, 0.1, 0.955);
  -o-transition: all 0.75s cubic-bezier(0.045, 0.855, 0.1, 0.955);
  transition: all 0.75s cubic-bezier(0.045, 0.855, 0.1, 0.955);
  opacity: 1;
  -webkit-transform: translateZ(0px) translateY(0px);
  -ms-transform: translateZ(0px) translateY(0px);
  transform: translateZ(0px) translateY(0px);
}
#section-home .container-caroussel .container-text .btn {
  padding: 15px 20px 15px 20px;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  margin-top: 30px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-home .container-caroussel .container-text > .btn.show {
  opacity: 1;
}
#section-home .container-caroussel.show-qonto .container-text .btn,
#section-home .container-caroussel.show-marks .container-text .btn,
#section-home .container-caroussel.show-mondocteur .container-text .btn,
#section-home .container-caroussel.show-orangelabs .container-text .btn,
#section-home .container-caroussel.show-chauffeurprive .container-text .btn {
  background-color: rgba(255, 255, 255, 0.2);
}
#section-home .container-caroussel.show-lecollectionist .container-text .btn {
  background-color: rgba(0, 0, 0, 0.2);
}
#section-home .container-caroussel .container-text .btn p {
  font-size: 14px;
}
#section-home .container-caroussel .wrapper-container-el {
  z-index: 2;
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  width: 35%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#section-home .container-caroussel .wrapper-container-el .container-el {
  position: relative;
}

#section-home .container-caroussel > .btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 60px;
  height: 35px;
  width: 35px;
  border-radius: 30px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-home .container-caroussel > .btn.show {
  opacity: 1;
}
#section-home .container-caroussel.show-qonto > .btn,
#section-home .container-caroussel.show-marks > .btn,
#section-home .container-caroussel.show-chauffeurprive > .btn,
#section-home .container-caroussel.show-orangelabs > .btn,
#section-home .container-caroussel.show-mondocteur > .btn {
  background-color: rgba(255, 255, 255, 0.2);
}

#section-home .container-caroussel.show-lecollectionist > .btn {
  background-color: rgba(54, 63, 84, 0.2);
}

#section-home .container-caroussel > .btn .arrow {
  stroke: none !important;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-home .container-caroussel > .btn .progress {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 38px;
  width: 38px;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}
#section-home .container-caroussel > .btn .progress circle:nth-child(1) {
  fill: none !important;
  stroke-width: 4px;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  -webkit-transition: stroke-dashoffset 0s ease;
  -o-transition: stroke-dashoffset 0s ease;
  transition: stroke-dashoffset 0s ease;
}
#section-home .container-caroussel > .btn .progress.active circle:nth-child(1) {
  -webkit-transition: stroke-dashoffset 6s linear;
  -o-transition: stroke-dashoffset 6s linear;
  transition: stroke-dashoffset 6s linear;
  stroke-dashoffset: 0;
}
#section-home .container-caroussel.show-qonto > .btn .arrow,
#section-home .container-caroussel.show-qonto > .btn .progress circle {
  fill: #fff;
  stroke: #fff;
}
#section-home .container-caroussel.show-marks > .btn .arrow,
#section-home .container-caroussel.show-marks > .btn .progress circle {
  fill: #fff;
  stroke: #fff;
}
#section-home .container-caroussel.show-chauffeurprive > .btn .arrow,
#section-home .container-caroussel.show-chauffeurprive > .btn .progress circle {
  fill: #fff;
  stroke: #fff;
}
#section-home .container-caroussel.show-lecollectionist > .btn .arrow,
#section-home
  .container-caroussel.show-lecollectionist
  > .btn
  .progress
  circle {
  fill: #363f54;
  stroke: #363f54;
}
#section-home .container-caroussel.show-orangelabs > .btn .arrow,
#section-home .container-caroussel.show-orangelabs > .btn .progress circle {
  fill: #fff;
  stroke: #fff;
}
#section-home .container-caroussel.show-mondocteur > .btn .arrow,
#section-home .container-caroussel.show-mondocteur > .btn .progress circle {
  fill: #fff;
  stroke: #fff;
}
#section-home .container-caroussel .container-ms {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 38px;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-home .container-caroussel .container-ms.show {
  opacity: 1;
}
#section-home .container-caroussel .container-ms svg {
  height: 30px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-home .container-caroussel.show-qonto .container-ms svg {
  fill: #fff;
}
#section-home .container-caroussel.show-marks .container-ms svg {
  fill: #fff;
}
#section-home .container-caroussel.show-chauffeurprive .container-ms svg {
  fill: #fff;
}
#section-home .container-caroussel.show-lecollectionist .container-ms svg {
  fill: #363f54;
}
#section-home .container-caroussel.show-orangelabs .container-ms svg {
  fill: #fff;
}
#section-home .container-caroussel.show-mondocteur .container-ms svg {
  fill: #fff;
}
#section-home .container-ms svg path:nth-child(1) {
  opacity: 0.3;
}
#section-home .container-ms svg path:nth-child(2) {
  animation: containerMsScroll 3s ease infinite;
  -webkit-animation: containerMsScroll 3s ease infinite;
}

@keyframes containerMsScroll {
  0% {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-webkit-keyframes containerMsScroll {
  0% {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}
/*=====  End of Section HOME  ======*/
/*=======================================
=            Section CONTACT            =
=======================================*/

#section-contact {
  position: relative;
  padding: 0 0px 40px 0px;
  text-align: center;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1);
  -o-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1);
}
#section-contact.reach {
  opacity: 1;
}
#section-contact .container-text {
  display: inline-block;
  vertical-align: middle;
  width: 485px;
  padding-left: 95px;
  text-align: left;
}
#section-contact .container-text h2 {
  color: #363f54;

  font-size: 3.4em;
  line-height: 62px;
  margin-bottom: 34px;
  position: relative;
}
#section-contact .container-text h2:before {
  content: "";
  height: 3px;
  width: 60px;
  border-radius: 2px;
  background-color: #2884f6;
  position: absolute;
  top: 23px;
  right: calc(100% + 35px);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  -o-transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  -webkit-transition: -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005),
    -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
}
#section-contact.reach .container-text h2:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
#section-contact .container-text p {
  color: #333;
  font-size: 20px;
  line-height: 32px;
}

#section-contact .container-action {
  display: inline-block;
  vertical-align: middle;
  width: 485px;
}
#section-contact .container-action a {
  text-decoration: none;
  display: inline-block;
  position: relative;
}
#section-contact .container-action a .btn {
  position: relative;
  display: block;
  height: 100px;
  width: 100px;
  margin: auto;
}
#section-contact .container-action a .btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  background-color: #2884f6;
  -webkit-box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: transform 500ms cubic-bezier(0, 0.785, 0, 1);
  -o-transition: transform 500ms cubic-bezier(0, 0.785, 0, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0, 0.785, 0, 1);
  transition: -webkit-transform 500ms cubic-bezier(0, 0.785, 0, 1);
  transition: transform 500ms cubic-bezier(0, 0.785, 0, 1);
  transition: transform 500ms cubic-bezier(0, 0.785, 0, 1),
    -webkit-transform 500ms cubic-bezier(0, 0.785, 0, 1);
}
#section-contact .container-action a:hover .btn:before {
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  -ms-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
}
#section-contact .container-action a .btn svg {
  height: 18px;
  fill: #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#section-contact .container-action a .text {
  width: 100%;
  display: block;
  white-space: nowrap;
  text-align: center;
  margin-top: 15px;
}
#section-contact .container-action a .text p {
  color: #363f54;

  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}
#section-contact .container-action a .text .arrow {
  fill: #363f54;
  height: 8px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 9px;
}
/*=====  End of Section CONTACT  ======*/
/*====================================================
=            Section PR 1 & Section PR 2             =
====================================================*/

#section-pr-1,
#section-pr-2 {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
.section-pr-el .container-el {
  position: relative;
}
.section-pr-el .container-el .el {
  padding: 0;
  position: relative;
  /*overflow: hidden;*/
  margin-bottom: 200px;
}
.section-pr-el .container-el .el:last-child {
  margin-bottom: 0px;
}
.section-pr-el .container-el .el .title {
  position: relative;
  text-align: center;
  z-index: 1;
  display: inline-block;
  transform: initial !important;
}
.section-pr-el .container-el .el .title h2 {
  font-weight: 800;
  display: inline-block;
  font-size: 31px;
  line-height: 43px;
  position: relative;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  transition: all 0.75s ease;
  margin-bottom: 12px;
  /* text-transform: uppercase; */
}
.section-pr-el .container-el .el.reach .title h2 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.section-pr-el .container-el .el:nth-child(odd) .title h2 {
  text-align: left;
}
.section-pr-el .container-el .el:nth-child(even) .title h2 {
  text-align: left;
}
.section-pr-el .container-el .el .title h2:before {
  content: "";
  height: 3px;
  width: 60px;
  border-radius: 2px;
  background-color: #363f54;
  position: absolute;
  top: 30px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  -o-transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  -webkit-transition: -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005),
    -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
}
.section-pr-el .container-el .el.reach .title h2:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.section-pr-el .container-el .el:nth-child(odd) .title h2:before {
  right: calc(100% + 35px);
}
.section-pr-el .container-el .el:nth-child(even) .title h2:before {
  left: calc(100% + 35px);
}
.section-pr-el .container-el .el .illu {
  position: absolute;
  top: 0px;
  height: 100%;
  width: 500px;
  border-radius: 4px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  height: 510px;
}
.section-pr-el .container-el .el:nth-child(odd) .illu {
  left: 0px;
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.section-pr-el .container-el .el:nth-child(even) .illu {
  right: 0px;
}
.section-pr-el .container-el .el .illu .bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: -webkit-transform 750ms
    cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.section-pr-el .container-el .el.reach .illu .bg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.section-pr-el .container-el .el .illu:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: -webkit-transform 750ms
    cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.section-pr-el .container-el .el.reach:nth-child(odd) .illu:after {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.section-pr-el .container-el .el.reach:nth-child(even) .illu:after {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.section-pr-el .container-el .el .wrapper {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section-pr-el .container-el .el:nth-child(even) .wrapper .container-text,
.section-pr-el .container-el .el:nth-child(odd) .wrapper .container-img {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.section-pr-el .container-el .el:nth-child(odd) .wrapper .container-text,
.section-pr-el .container-el .el:nth-child(even) .wrapper .container-img {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.section-pr-el .container-el .el .wrapper .container-img {
  width: 100%;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  -webkit-transition: opacity 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  -o-transition: opacity 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: opacity 1000ms cubic-bezier(0.694, 0, 0.335, 1);
}
.section-pr-el .container-el .el.reach .wrapper .container-img {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  margin-top: 32px;
  margin-left: 50px;
  transform: initial !important;
}
.section-pr-el .container-el .el .wrapper .container-img img.desktop {
  filter: drop-shadow(0px 14px 28px rgba(0, 0, 0, 0.3));
  -webkit-filter: drop-shadow(0px 14px 28px rgba(0, 0, 0, 0.3));
  -moz-filter: drop-shadow(0px 14px 28px rgba(0, 0, 0, 0.3));
}

.section-pr-el .container-el .el.el-desktop .wrapper .container-img img {
  width: 100%;
}

/* EL MOBILE */
.section-pr-el .container-el .el.el-mobile .wrapper .container-img .device {
  height: 100%;
  position: absolute;
  top: 50%;
  filter: drop-shadow(0px 14px 28px rgba(0, 0, 0, 0.3));
  -webkit-filter: drop-shadow(0px 14px 28px rgba(0, 0, 0, 0.3));
  -moz-filter: drop-shadow(0px 14px 28px rgba(0, 0, 0, 0.3));
  -webkit-transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  -o-transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  opacity: 0;
}
.section-pr-el
  .container-el
  .el.el-mobile
  .wrapper
  .container-img
  .device:nth-child(1) {
  left: 30%;
  -webkit-transform: translateX(-50%) translateY(calc(-50% + 30px));
  -ms-transform: translateX(-50%) translateY(calc(-50% + 30px));
  transform: translateX(-50%) translateY(calc(-50% + 30px));
}
.section-pr-el
  .container-el
  .el.el-mobile
  .wrapper
  .container-img
  .device:nth-child(2) {
  right: 30%;
  -webkit-transform: translateX(50%) translateY(calc(-50% + 30px));
  -ms-transform: translateX(50%) translateY(calc(-50% + 30px));
  transform: translateX(50%) translateY(calc(-50% + 30px));
  -webkit-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.section-pr-el
  .container-el
  .el.el-mobile.reach
  .wrapper
  .container-img
  .device:nth-child(1) {
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
}
.section-pr-el
  .container-el
  .el.el-mobile.reach
  .wrapper
  .container-img
  .device:nth-child(2) {
  -webkit-transform: translateX(50%) translateY(-50%);
  -ms-transform: translateX(50%) translateY(-50%);
  transform: translateX(50%) translateY(-50%);
  opacity: 1;
}
.section-pr-el
  .container-el
  .el.el-mobile
  .wrapper
  .container-img
  .device
  .iphone {
  height: 100%;
  position: relative;
  z-index: 1;
}
.section-pr-el
  .container-el
  .el.el-mobile
  .wrapper
  .container-img
  .device
  .container-screen {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 89%;
  height: 95.5%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.section-pr-el
  .container-el
  .el.el-mobile
  .wrapper
  .container-img
  .device
  .container-screen
  img {
  width: 100%;
  min-height: 100%;
}
/* END EL MOBILE */

.section-pr-el .container-el .el .wrapper .container-text {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 335px;
  text-align: left;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
  -o-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
  -webkit-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    transform 700ms cubic-bezier(0.694, 0, 0.335, 1),
    -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
}
.section-pr-el .container-el .el.reach .wrapper .container-text {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.section-pr-el .container-el .el:nth-child(odd) .wrapper .container-text {
  margin-left: 150px;
}
.section-pr-el .container-el .el:nth-child(even) .wrapper .container-text {
  margin-right: 150px;
}
.section-pr-el .container-el .el .wrapper .container-text h3 {
  font-size: 16px;
  margin-bottom: 17px;
  line-height: 24px;
  font-weight: 600;
}
/* CHAUFFEUR PRIVE */

.section-pr-el .container-el .el.el-chauffeurprive .wrapper .container-text h3 {
  color: #025f54;
}
/* END CHAUFFEUR PRIVE */
/* LE COLLECTIONIST */

.section-pr-el
  .container-el
  .el.el-lecollectionist
  .wrapper
  .container-text
  h3 {
  color: #ee3924;
}
/* END LE COLLECTIONIST */
/* MARKS */

.section-pr-el .container-el .el.el-marks .wrapper .container-text h3 {
  color: #ed665e;
}
/* END MARKS */
/* ORANGE LABS */

.section-pr-el .container-el .el.el-orangelabs .wrapper .container-text h3 {
  color: #ff6600;
}
/* END ORANGE LABS */
/* QONTO */

.section-pr-el .container-el .el.el-qonto .wrapper .container-text h3 {
  color: #7969e6;
}
/* END QONTO */
/* THOUGHTSPOT */

.section-pr-el .container-el .el.el-thoughtspot .wrapper .container-text h3 {
  color: #ed1c25;
}
/* END THOUGHTSPOT */
/* LE MON DOCTEUR */

.section-pr-el .container-el .el.el-mondocteur .wrapper .container-text h3 {
  color: #0699b5;
}
/* END LE MON DOCTEUR */

.section-pr-el .container-el .el .wrapper .container-text > p {
  color: #363f54;

  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
.section-pr-el .container-el .el .wrapper .container-text a {
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.section-pr-el .container-el .el .wrapper .container-text a:after {
  content: "";
  height: 2px;
  width: 10px;
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}
.section-pr-el
  .container-el
  .el.el-chauffeurprive
  .wrapper
  .container-text
  a:after {
  background-color: #cf0a2d;
}
.section-pr-el
  .container-el
  .el.el-lecollectionist
  .wrapper
  .container-text
  a:after {
  background-color: #dbbc8f;
}
.section-pr-el .container-el .el.el-marks .wrapper .container-text a:after {
  background-color: #ed665e;
}
.section-pr-el
  .container-el
  .el.el-orangelabs
  .wrapper
  .container-text
  a:after {
  background-color: #ff6600;
}
.section-pr-el .container-el .el.el-qonto .wrapper .container-text a:after {
  background-color: #7969e6;
}
.section-pr-el
  .container-el
  .el.el-thoughtspot
  .wrapper
  .container-text
  a:after {
  background-color: #ed665e;
}
.section-pr-el
  .container-el
  .el.el-mondocteur
  .wrapper
  .container-text
  a:after {
  background-color: #ff6c75;
}
.section-pr-el .container-el .el .wrapper .container-text a p {
  color: #363f54;

  font-size: 14px;
}
.section-pr-el .link-work {
  padding: 14px 44px 14px 44px;
  border-radius: 3px;
  background-color: #2884f6;
  display: inline-block;
  text-decoration: none;
  margin-top: 0;
  color: #fff;
}

.section-pr-el .link-work:hover {
  background: #0051b5;
}

.section-pr-el .link-work p {
  color: #fff !important;
}
.section-pr-el .link-work p {
  color: #ffffff;

  font-size: 14px;
}
/*=====  End of Section PR 1 & Section PR 2 ======*/
/*====================================
=            Section work            =
====================================*/

#section-work {
  position: relative;
  margin-top: 150px;
  margin-bottom: 150px;
  padding: 230px 0px 70px 20%;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  opacity: 1;
  overflow: hidden;
}
#section-work.reach {
  opacity: 1;
}
#section-work:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 95%;
  height: 100px;
  background-color: #fff;
}
#section-work:before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 95%;
  height: 100%;
  background-color: #2884f6;
}

#section-work .bnd {
  position: absolute;
  z-index: 5;
  top: 0%;
  left: 0%;
  width: calc(100% + 280px);
  height: 100%;
  background-color: #fff;
  -webkit-transform: translateX(-140px) skew(-20deg);
  -ms-transform: translateX(-140px) skew(-20deg);
  transform: translateX(-140px) skew(-20deg);
  -webkit-transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  -o-transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
}
#section-work.reach .bnd {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

#section-work .container-text {
  width: 620px;
  position: relative;
  z-index: 3;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
  -o-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
  -webkit-transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: opacity 700ms cubic-bezier(0.694, 0, 0.335, 1),
    transform 700ms cubic-bezier(0.694, 0, 0.335, 1),
    -webkit-transform 700ms cubic-bezier(0.694, 0, 0.335, 1);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
#section-work.reach .container-text {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
#section-work .container-text h2 {
  position: relative;
  color: #222;
  top: 114px;
  display: inline-block;
  margin-bottom: 40px;

  font-size: 42px;
  line-height: 51px;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translateX(-60px) rotate(-90deg);
  -ms-transform: translateX(-60px) rotate(-90deg);
  transform: translateX(-60px) rotate(-90deg);
}
#section-work .container-text h2:after {
  border-radius: 3px;
  content: "";
  position: absolute;
  right: calc(100% + 35px);
  top: 24px;
  width: 60px;
  height: 3px;
  background-color: #363f54;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  -o-transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  -webkit-transition: -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005),
    -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
}
#section-work.reach .container-text h2:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
#section-work .container-text > p {
  color: #ffffff;

  font-size: 24px;
  line-height: 34px;
}

#section-work .container-text > p i {
  color: #013e8d;
}
#section-work .container-text .btn {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  padding: 20px 44px 20px 44px;
  border-radius: 3px;
  background-color: #fff;
  display: inline-block;
  text-decoration: none;
  margin-top: 60px;
  color: #fff;
  font-weight: 900;
}
#section-work .container-text .btn p {
  color: #363f54;

  font-size: 14px;
}
#section-work .container-illu {
  position: absolute;
  z-index: 2;
  bottom: 0px;
  right: 0px;
  height: calc(100% - 100px);
  overflow: hidden;
  max-width: 60%;
}
@-moz-document url-prefix() {
  #section-work .container-illu {
    width: 800px;
  }
}
#section-work .container-illu:after {
  content: "";
  position: absolute;
  z-index: 4;
  left: 0px;
  top: 0px;
  width: 10%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#2884f6),
    to(rgba(40, 132, 246, 0))
  );
  background: -webkit-linear-gradient(left, #2884f6, rgba(40, 132, 246, 0));
  background: -o-linear-gradient(left, #2884f6, rgba(40, 132, 246, 0));
  background: linear-gradient(to right, #2884f6, rgba(40, 132, 246, 0));
}

#section-work .container-illu video {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
#section-work.reach .container-illu video {
  opacity: 1;
  z-index: 10;
}

#section-work .container-illu img.illu {
  display: none;
}
#section-work .container-illu img.cloud-1 {
  display: inline-block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 60%;
  z-index: 1;
  opacity: 0.7;
}
#section-work .container-illu img.cloud-2 {
  display: inline-block;
  position: absolute;
  top: 20%;
  right: 0px;
  width: 30%;
  z-index: 1;
  opacity: 0.7;
}
#section-work .container-illu img.cloud-3 {
  display: inline-block;
  position: absolute;
  top: 45%;
  right: 0px;
  width: 20%;
  z-index: 1;
  opacity: 0.7;
}
#section-work .container-illu img.cloud-4 {
  display: inline-block;
  position: absolute;
  bottom: 0px;
  left: 60%;
  width: 20%;
  z-index: 1;
  opacity: 0.7;
}
/*=====  End of Section work  ======*/
/*====================================
=            Section TEAM            =
====================================*/

#section-team {
  position: relative;
  padding: 0px 0px 0px 42%;
  margin-top: 150px;
  overflow: hidden;
}
#section-team:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 95%;
  height: 100%;
  background-color: #003981;
}
#section-team .bnd {
  position: absolute;
  z-index: 5;
  top: 0%;
  left: 0%;
  width: calc(100% + 280px);
  height: 100%;
  background-color: #fff;
  -webkit-transform: translateX(-140px) skew(-20deg);
  -ms-transform: translateX(-140px) skew(-20deg);
  transform: translateX(-140px) skew(-20deg);
  -webkit-transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  -o-transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
}
#section-team.reach .bnd {
  -webkit-transform: translateX(calc(95% - 265px));
  -ms-transform: translateX(calc(95% - 265px));
  transform: translateX(calc(95% - 265px));
}

#section-team .wrapper-caroussel-pp {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 42%;
  top: 0px;
  left: 0px;
}
#section-team .wrapper-caroussel-pp h2 {
  color: #ffffff;

  top: 67px;
  font-size: 42px;
  line-height: 51px;
  position: absolute;
  z-index: 1;
  left: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#section-team .wrapper-caroussel-pp h2:before {
  content: "";
  position: absolute;
  border-radius: 3px;
  width: 60px;
  height: 3px;
  background-color: #fff;
  right: calc(100% + 35px);
  top: 35px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  -o-transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  -webkit-transition: -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005),
    -webkit-transform 0.75s cubic-bezier(0.77, 0, 0.23, 1.005);
}
#section-team.reach .wrapper-caroussel-pp h2:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
#section-team .wrapper-caroussel-pp .container-caroussel-pp {
  position: relative;
  overflow: hidden;
  height: 100%;
}
#section-team .wrapper-caroussel-pp .container-caroussel-pp .el-pp {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: all 0.7s cubic-bezier(0.5, -0.01, 0, 1.005);
  -o-transition: all 0.7s cubic-bezier(0.5, -0.01, 0, 1.005);
  transition: all 0.7s cubic-bezier(0.5, -0.01, 0, 1.005);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
#section-team .wrapper-caroussel-pp .container-caroussel-pp .el-pp.show {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
#section-team .wrapper-caroussel-pp .container-caroussel-pp .el-pp.hide {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
#section-team .container-text {
  padding: 230px 0px 150px 120px;
  position: relative;
  z-index: 1;
}
#section-team .container-text > p {
  color: #8a99c0;

  font-size: 18px;
  line-height: 24px;
  max-width: 240px;
}
#section-team .container-text .container-caroussel-name {
  margin-top: 100px;
}
#section-team .container-text .container-caroussel-name .el-name {
  position: relative;
  padding-left: 47px;
  margin-bottom: 25px;
}
#section-team .container-text .container-caroussel-name .el-name:last-child {
  margin-bottom: 0px;
}
#section-team .container-text .container-caroussel-name .el-name .prg {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 47px;
  height: 1px;
  overflow: hidden;
  background-color: #8a99c0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#section-team .container-text .container-caroussel-name .el-name .prg:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#section-team
  .container-text
  .container-caroussel-name
  .el-name.show
  .prg:before {
  -webkit-transition: all 4s linear;
  -o-transition: all 4s linear;
  transition: all 4s linear;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
#section-team .container-text .container-caroussel-name .el-name .name {
  color: #8a99c0;

  font-size: 18px;
  padding-left: 23px;
  display: inline-block;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-team .container-text .container-caroussel-name .el-name.show .name {
  color: #fff;
}
#section-team .container-text .container-caroussel-name .el-name .job {
  color: #8a99c0;

  font-size: 18px;
  padding-left: 23px;
  display: inline-block;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-team .container-text .container-caroussel-name .el-name.show .job {
  color: #fff;
}
#section-team .container-text .btn {
  position: absolute;
  right: 20%;
  top: 90px;
  padding: 18px 20px 18px 20px;
  border-radius: 3px;
  background-color: #ffffff;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#section-team .container-text .btn p {
  color: #363f54;

  font-size: 14px;
}
/*=====  End of Section TEAM  ======*/

/*========================================
=            Section Sponsors            =
========================================*/

#section-sponsors {
  position: relative;
  padding: 25px 0px;
  background: #efefef;
}
#section-sponsors .container-li {
  position: relative;
  width: 80%;
  height: 50px;
  margin: auto;
}
#section-sponsors .container-li .li-el {
  position: relative;
  text-align: center;
  display: -webkit-flex; /* Safari */
  -webkit-justify-content: space-between; /* Safari 6.1+ */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#section-sponsors .container-li .li-el .el {
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
  position: relative;
  height: 45px;
  margin-right: 10px;
  margin-left: 10px;
  font-size: 20px;
  -webkit-transition: all 0.7s cubic-bezier(0.5, -0.01, 0, 1.005);
  -o-transition: all 0.7s cubic-bezier(0.5, -0.01, 0, 1.005);
  transition: all 0.7s cubic-bezier(0.5, -0.01, 0, 1.005);
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-filter: blur(10px);
  -o-filter: blur(10px);
  filter: blur(10px);
}
#section-sponsors .container-li .li-el .el.el-toughtspot {
  width: 105px;
}
#section-sponsors .container-li .li-el .el.el-orange {
  width: 91px;
}
#section-sponsors .container-li .li-el .el.el-chauffeurprive {
  width: 107px;
}
#section-sponsors .container-li .li-el .el.el-blackpills {
  width: 150px;
}
#section-sponsors .container-li .li-el .el.el-axa {
  width: 120px;
}
#section-sponsors .container-li .li-el .el.el-auchan {
  width: 51px;
}
#section-sponsors .container-li .li-el .el.el-mondocteur {
  width: 179px;
}
#section-sponsors .container-li .li-el .el.el-uber {
  width: 45px;
}
#section-sponsors .container-li .li-el .el.el-xola {
  width: 91px;
}
#section-sponsors .container-li .li-el .el.el-edf {
  width: 120px;
}
#section-sponsors .container-li .li-el .el.el-buzzman {
  width: 120px;
}
#section-sponsors .container-li .li-el .el img {
  fill: #8d8d97;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#section-sponsors .container-li .li-el .el:first-child,
#section-sponsors .container-li .li-el .el:last-child {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
#section-sponsors .container-li .li-el .el:nth-child(2),
#section-sponsors .container-li .li-el .el:nth-child(5) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
#section-sponsors .container-li .li-el .el:nth-child(3),
#section-sponsors .container-li .li-el .el:nth-child(4) {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
#section-sponsors .container-li .li-el.anim .el {
  -webkit-filter: blur(0px);
  -o-filter: blur(0px);
  filter: blur(0px);
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/*=====  End of Section Sponsors  ======*/

#section-work {
  position: relative;
  height: 450px;
  margin-top: 145px;
}
#section-work:before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 90%;
  height: 100%;
  background-color: #003981;
  -webkit-transform: translateX(calc(100% + 200px)) skew(20deg);
  -ms-transform: translateX(calc(100% + 200px)) skew(20deg);
  transform: translateX(calc(100% + 200px)) skew(20deg);
  -webkit-transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  -o-transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: all 1000ms cubic-bezier(0.694, 0, 0.335, 1);
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}
#section-work.anim:before {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}
#section-work .container-title {
  position: absolute;
  z-index: 1;
  top: 124px;
  left: 20%;
  padding-left: 100px;
}
#section-work .container-title h2 {
  font-size: 38px;
  position: relative;
  color: #fff;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
}
#section-work.anim .container-title h2 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
#section-work .container-title h2:after {
  background-color: #fff;
  content: "";
  width: 60px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  right: calc(100% + 40px);
  top: 22px;
}
#section-work .container-title .btn-contact {
  margin-top: 70px;
  padding: 17px 20px 17px 20px;
  border-radius: 3px;
  background-color: #2884f6;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
}
#section-work.anim .container-title .btn-contact {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
#section-work .container-title .btn-contact p {
  color: #ffffff;

  font-size: 14px;
}

#section-work .container-obj {
  position: absolute;
  position: absolute;
  right: 20%;
  bottom: 60%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#section-work.anim .container-obj {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
  opacity: 1;
}
#section-work .obj-1 {
  width: 270px;
}
#section-work.anim .obj-1 {
  opacity: 1;
}

#section-work .container-text {
  position: absolute;
  right: 20%;
  bottom: 100px;
}
#section-work .container-text p {
  color: #ffffff;

  font-size: 24px;
  width: 314px;
}
#section-work .container-text p i {
  color: #2884f6;
}
