header {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
header .background-animation {
  width: 100%;
  height: 100%;
  background-image: url("../images/demarche-header.jpg");
  background-position: center top;
  background-size: cover;
  transform-origin: center center;
  transform: scale(1.05);
  transition: transform 2s;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: 0.7s;
}
header .background-animation.animate {
  transform: scale(1);
}
header .content {
  position: absolute;
  z-index: 2;
  display: flex;
  top: 50%;
  transform: translateY(-50%);
}
header h1 {
  font-size: 50px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  top: 50px;
  opacity: 0;
  transition: opacity 2s, top 2s;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: 0.7s;
  line-height: 60px;
  letter-spacing: 1.8px;
}
header h1.animate {
  top: 0px;
  opacity: 1;
}
header a {
  display: inline-block;
  color: #FFFFFF;
  text-decoration: uppercase;
  font-size: 18px;
  font-family: "MaisonNeue-ExtendedExtraBold";
  letter-spacing: 1.6px;
  text-decoration: none;
  margin-top: 30px;
  box-sizing: border-box;
  border: 1px solid #FFFFFF;
  opacity: 0;
  transition: opacity 2s;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: 1.5s;
}
header a.animate {
  opacity: 1;
}
header a:hover span {
  background-color: rgba(255, 255, 255, 0.2);
}
header a span {
  padding: 15px 20px 15px 20px;
  display: block;
  position: relative;
  top: 0;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.7s;
}
header .circle {
  width: 250px;
  height: 250px;
  position: relative;
  transform: translateX(-50%) rotate(-180deg);
  top: -50px;
  opacity: 0;
  transition: transform 3s, opacity 4s;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
header .circle.animate {
  transform: translateX(-50%) rotate(-360deg);
  opacity: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  header h1 {
    font-size: 40px;
    line-height: 48px;
  }
  header .circle {
    width: 230px;
    height: 230px;
  }
}
@media (max-width: 991.98px) {
  header img {
    width: auto;
    height: 100%;
  }
  header .circle {
    display: none;
  }
  header h1 {
    font-size: 30px;
    line-height: 36px;
  }
  header .content {
    display: block;
    width: 88%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
.headline {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 50px;
  padding-top: 80px;
}
.headline .top .title-container {
  max-width: 1000px;
  display: flex;
  position: relative;
}
.headline .top .title-container h2 {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 60px;
  margin-top: 150px;
  opacity: 0;
  transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.headline .top .title-container .img {
  margin-top: -220px;
  left: 100px;
  position: relative;
  z-index: 1;
}
.headline .top .title-container .img div:first-child {
  position: relative;
  transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition-delay: 1s;
  background-color: white;
}
.headline .top .title-container .img div:first-child img {
  opacity: 0;
}
.headline .top .title-container .img div:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 0px;
  overflow: hidden;
  transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.headline .top .title-container .img div:nth-child(2) img {
  transform-origin: center center;
  transform: scale(1.25);
  transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.headline .bottom {
  padding: 0px 150px 100px 150px;
  display: flex;
}
.headline .bottom p {
  font-size: 15px;
  line-height: 20px;
  flex: 1;
}
.headline .bottom p a {
  color: black;
  font-size: 18px;
  display: inline-block;
  margin-top: 20px;
}
.headline .bottom p:nth-child(2) {
  padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 1119px) {
  .headline {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    position: relative;
  }
}
@media screen and (max-width: 990px) {
  .headline .top .title-container h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .headline .top .title-container .img {
    left: inherit;
  }
  .headline .bottom {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .headline .bottom {
    display: block;
  }
  .headline .bottom p:nth-child(2) {
    padding: 30px 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  .headline .top .title-container h2 {
    padding-top: 80px;
  }
  .headline .top .title-container .img {
    left: -200px;
  }
}
.headline.animate div:first-child h2 {
  margin-top: 0px;
  opacity: 1;
}
@media (max-width: 991.98px) {
  .headline.animate div:first-child h2 {
    margin-top: 30px;
  }
}
.headline.animate .top .title-container .img div:nth-child(1) img {
  opacity: 0.6;
}
.headline.animate .top .title-container .img div:nth-child(2) {
  margin-left: 50px;
}
.headline.animate .top .title-container .img div:nth-child(2) img {
  transform: scale(1);
}

.description {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.description .twentytwenty {
  width: 100%;
}
.description .twentytwenty img {
  width: 100%;
  height: auto;
}
.description .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 575px;
}
.description .top .animation .desc-trigger {
  width: 500px;
  height: 256px;
  margin-left: 40px;
  margin-top: 150px;
  position: absolute;
  display: flex;
}
.description .top .animation .desc-trigger .anim-step {
  width: 10%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  image-rendering: pixelated;
  opacity: 0;
  transition: all 2.5s cubic-bezier(0, 0.295, 0.65, 1.1);
}
.description .top .animation .desc-trigger .anim-step:first-child {
  width: 2%;
}
.description .top .animation .desc-trigger .anim-step:nth-child(2) {
  width: 4%;
}
.description .top .animation .desc-trigger .anim-step:nth-child(3) {
  width: 6%;
}
.description .top .animation .desc-trigger .anim-step:nth-child(3) {
  width: 8%;
}
.description .top .content {
  background: #F9EEF2;
  width: 100%;
  padding: 50px 50px 100px 70px;
  margin-right: 70px;
}
.description .top .content .main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.description .top .content .main > p {
  width: 50%;
  box-sizing: border-box;
}
.description .top .content .main > p a {
  display: inline-block;
  margin-top: 30px;
}
.description .top .content .main > p:first-child {
  padding-left: 0;
}
.description .top .content .main > p:last-child {
  padding-right: 0;
}
.description .top .content h3, .description .top .content p, .description .top .content a {
  color: #33458A;
  top: 50px;
  opacity: 0;
  position: relative;
  transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.description .top .content h3 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 20px;
}
.description .top .content p {
  font-size: 18px;
  line-height: 28px;
  padding: 20px 40px 20px 40px;
}
.description .bottom div:last-child {
  width: 34%;
  padding: 0 0px 100px 100px;
}
.description .bottom div:last-child p {
  font-size: 15px;
  line-height: 20px;
}
.description .bottom .line {
  height: 1px;
  background: #D66449;
  position: absolute;
  width: 5%;
  left: 0;
  margin-top: 10px;
  transition: all 1.4s ease-in-out;
  transition-delay: 1.4s;
}
.description .bottom .line:before {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  display: block;
  background: #D66449;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
@media screen and (max-width: 1280px) {
  .description .bottom .line {
    left: inherit;
    right: 0;
    width: 30%;
  }
  .description .bottom .line:before {
    right: inherit;
    left: 0;
  }
}
@media screen and (max-width: 1119px) {
  .description {
    box-sizing: border-box;
  }
  .description .top {
    margin-bottom: 500px;
  }
  .description .top .content {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 990px) {
  .description .top {
    margin-bottom: 400px;
  }
  .description .top .content .main {
    display: block;
  }
  .description .top .content .main > p {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .description .top {
    margin-bottom: 350px;
  }
  .description .top .content {
    padding-left: 50px;
  }
  .description .bottom div:last-child {
    box-sizing: border-box;
    padding: 20px 50px;
    width: 100%;
  }
  .description .bottom .line {
    display: none;
  }
  .description .twentytwenty {
    position: relative;
    width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 500px) {
  .description .top {
    margin-bottom: 150px;
  }
  .description .top .content {
    padding-left: 0;
    padding-right: 0;
  }
  .description .top .content h3, .description .top .content p {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .description .top .animation .desc-trigger {
    width: inherit;
  }
  .description .bottom {
    padding-top: 50px;
  }
  .description .twentytwenty #twentytwenty {
    margin-top: 0;
  }
}
@media screen and (max-width: 400px) {
  .description .top {
    margin-bottom: 110px;
  }
  .description .bottom {
    padding-top: 0;
  }
}
.description.animate .top .content h3, .description.animate .top .content p, .description.animate .top .content a {
  top: 0;
  opacity: 1;
}
.description.animate .top .content .main .img {
  opacity: 1;
  margin-top: 220px;
}
.description.animate .top .animation .desc-trigger .anim-step {
  opacity: 1;
}
.description.animate .top .animation .desc-trigger .anim-step:first-child {
  opacity: 0.2;
}
.description.animate .top .animation .desc-trigger .anim-step:nth-child(2) {
  opacity: 0.4;
}
.description.animate .top .animation .desc-trigger .anim-step:nth-child(3) {
  opacity: 0.5;
}
.description.animate .top .animation .desc-trigger .anim-step:nth-child(4) {
  opacity: 0.6;
}
.description.animate .bottom .line {
  width: 10%;
}

.caracteristics {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #334480;
  margin-bottom: 200px;
}
.caracteristics .content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0 100px 0;
  color: #FFFFFF;
  position: relative;
}
.caracteristics .content .row {
  display: flex;
  justify-content: center;
}
.caracteristics .content .row > div {
  top: 100px;
  opacity: 0;
  transition: all 1.4s ease-in-out;
}
.caracteristics .content .row > div:first-child {
  width: 20%;
  position: relative;
  transition-delay: 0.5s;
}
.caracteristics .content .row > div:nth-child(2) {
  width: 30%;
  display: flex;
  justify-content: center;
  position: relative;
}
.caracteristics .content .row > div:nth-child(2) ul {
  width: 50%;
  padding-right: 10px;
  box-sizing: border-box;
}
.caracteristics .content .row > div:nth-child(2) ul:last-child {
  padding-top: 100px;
}
.caracteristics .content .row > div:nth-child(3) {
  width: 20%;
  position: relative;
  transition-delay: 0.5s;
}
.caracteristics .content .row > div:nth-child(4) {
  width: 30%;
  padding-top: 250px;
  display: flex;
  justify-content: center;
  position: relative;
}
.caracteristics .content .row > div:nth-child(4) ul {
  width: 50%;
  padding-right: 10px;
  box-sizing: border-box;
}
.caracteristics .content .row > div:nth-child(4) ul:first-child {
  padding-top: 220px;
}
.caracteristics .content .row .title {
  width: 400px;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  position: absolute;
  bottom: 0;
  left: 200px;
}
.caracteristics .content .row .title.well {
  bottom: 150px;
}
.caracteristics .content .row li {
  margin-bottom: 40px;
}
.caracteristics .content .row li:last-child {
  margin-bottom: 0;
}
.caracteristics .content .row h2 {
  font-size: 45px;
  font-family: "MaisonNeue-ExtendedThin";
  margin-bottom: 10px;
}
.caracteristics .content .row h3 {
  font-family: "MaisonNeue-ExtendedMedium";
  line-height: 20px;
}
.caracteristics .content .row h4 {
  text-transform: uppercase;
  font-family: "MaisonNeue-ExtendedBold";
  margin-bottom: 5px;
  line-height: 20px;
  font-size: 14px;
}
.caracteristics .content .row p {
  font-family: "maison_neueextended_book";
  font-size: 14px;
  line-height: 18px;
}
.caracteristics .content .row:last-child {
  margin-top: -50px;
}
.caracteristics .content .row:last-child > div:nth-child(2) ul:last-child {
  padding-top: 20px;
}
.caracteristics .content .circle-1 {
  position: absolute;
  width: 120px;
  height: auto;
  top: 470px;
  left: 270px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1.4s ease-in-out;
}
.caracteristics .content .circle-2 {
  position: absolute;
  width: 250px;
  height: auto;
  top: 380px;
  right: 140px;
  opacity: 0;
  transform: scale(0.8) rotate(-90deg);
  transition: all 1.4s ease-in-out;
}
.caracteristics .content .circle-3 {
  position: absolute;
  width: 300px;
  height: auto;
  bottom: 100px;
  right: 60px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1.4s ease-in-out;
}
.caracteristics .content .img {
  position: absolute;
  right: 0;
  bottom: -100px;
}
.caracteristics .content .img img {
  width: 400px;
  height: auto;
}
@media screen and (max-width: 1119px) {
  .caracteristics .content {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .caracteristics .content .row > div:first-child {
    width: 15%;
  }
  .caracteristics .content .row > div:nth-child(2) {
    width: 35%;
  }
  .caracteristics .content .row > div:nth-child(3) {
    width: 15%;
  }
  .caracteristics .content .row > div:last-child {
    width: 35%;
  }
  .caracteristics .content .row .title {
    left: 130px;
  }
}
@media screen and (max-width: 990px) {
  .caracteristics .content {
    padding-bottom: 200px;
  }
  .caracteristics .content .row {
    display: block;
    margin-top: 0 !important;
  }
  .caracteristics .content .row > div {
    width: 100% !important;
    padding-top: 0 !important;
  }
  .caracteristics .content .row > div ul {
    padding-top: 20px !important;
  }
  .caracteristics .content .row .title {
    margin-top: 30px;
    position: relative;
    transform: inherit;
    left: 0;
    top: 0;
  }
}
@media screen and (max-width: 500px) {
  .caracteristics .content .row > div:nth-child(2),
.caracteristics .content .row > div:nth-child(4) {
    display: block;
  }
  .caracteristics .content .row > div:nth-child(2) ul,
.caracteristics .content .row > div:nth-child(4) ul {
    width: 80%;
  }
}
.caracteristics.animate .content .row > div {
  opacity: 1;
  top: 0;
}
.caracteristics.animate .content .circle-1 {
  opacity: 1;
  transform: scale(1);
}
.caracteristics.animate .content .circle-2 {
  top: 280px;
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.caracteristics.animate .content .circle-3 {
  opacity: 1;
  transform: scale(1);
}

.maquette {
  width: 1200px;
  margin: 0 auto;
}
.maquette div {
  width: 90%;
  height: 550px;
  background: grey;
  margin: 0 auto;
  position: relative;
  top: -250px;
}
@media (max-width: 1199.98px) {
  .maquette {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .maquette div {
    width: 86%;
    height: 400px;
    top: -50px;
  }
}
@media (max-width: 767.98px) {
  .maquette div {
    width: 86%;
    height: 200px;
    top: -50px;
  }
}

.icons {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.icons ul {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.icons ul li {
  width: 25%;
}
.icons ul div {
  width: 70px;
  height: 120px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.icons ul p {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  color: #1D2554;
}
@media (max-width: 1199.98px) {
  .icons {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .icons {
    top: 0px;
  }
}
@media (max-width: 767.98px) {
  .icons {
    display: flex;
    flex-direction: row;
    top: 0px;
  }
  .icons ul {
    flex-direction: column;
    width: 160px;
  }
  .icons ul li {
    width: 100%;
    height: 200px;
  }
  .icons ul div {
    margin-bottom: 0px;
  }
  .icons ul p {
    font-size: 14px;
  }
}

.quartier {
  width: 100%;
  margin: 0 auto;
  background: #ECEEF8;
  padding: 60px 80px;
  box-sizing: border-box;
}
.quartier div:first-child {
  width: 980px;
  margin: 0 auto;
}
.quartier div:first-child h2 {
  font-size: 58px;
  line-height: 66px;
  color: #4F5DAA;
}
.quartier .pictures {
  margin-top: 50px;
  display: flex;
  width: 100%;
}
.quartier .pictures p {
  color: #2F4F91;
  text-align: center;
  margin-top: 40px;
  text-transform: uppercase;
}
.quartier .pictures div:first-child {
  width: 440px;
}
.quartier .pictures div:first-child img {
  display: block;
  margin: auto;
}
.quartier .pictures div:nth-child(2) {
  width: 390px;
}
.quartier .pictures div:nth-child(2) img {
  display: block;
  margin: auto;
}
.quartier .pictures div:nth-child(3) {
  position: relative;
  top: -150px;
  left: 40px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .quartier {
    padding: 80px 50px;
  }
  .quartier .pictures div:nth-child(3) {
    margin-left: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .quartier {
    width: 100%;
    padding: 0;
    padding-bottom: 50px;
  }
  .quartier div:first-child h2 {
    font-size: 48px;
    line-height: 56px;
    color: #4F5DAA;
    padding: 60px 50px;
  }
}
@media (max-width: 991.98px) {
  .quartier {
    width: 100%;
    padding: 0;
    padding-top: 30px;
  }
  .quartier div:first-child h2 {
    font-size: 34px;
    line-height: 44px;
    color: #4F5DAA;
    padding-left: 30px;
  }
  .quartier .pictures {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    padding-bottom: 50px;
  }
  .quartier .pictures div {
    width: 100%;
    margin-top: 30px;
  }
  .quartier .pictures div img {
    width: 80%;
  }
  .quartier .pictures div:first-child {
    width: 100%;
  }
  .quartier .pictures div:nth-child(2) {
    width: 100%;
  }
  .quartier .pictures div:nth-child(2) img {
    margin-left: 0;
  }
  .quartier .pictures div:nth-child(2) p {
    text-align: left;
    padding-left: 20px;
  }
  .quartier .pictures div:nth-child(3) {
    top: 0px;
  }
  .quartier .pictures div:nth-child(3) img {
    display: block;
    margin-left: 100%;
    transform: translateX(-100%);
  }
  .quartier .pictures div:nth-child(3) p {
    text-align: right;
    padding-right: 80px;
  }
}

.slider {
  width: 100%;
  min-height: 550px;
  margin-top: 160px;
  position: relative;
}
.slider-player a {
  width: 30px;
  height: auto;
  display: block;
  position: absolute;
  top: 40%;
  cursor: pointer;
  z-index: 20;
}
.slider-player-prev {
  left: 30px;
}
.slider-player-next {
  transform: rotate(180deg);
  right: 30px;
}
.slider h2 {
  color: black;
  font-size: 50px;
  text-align: center;
}
.slider .slide {
  opacity: 0;
  position: absolute;
  width: 100%;
  padding: 0 75px;
  box-sizing: border-box;
  transition: opacity 1.4s ease-in-out;
}
.slider .slide h3, .slider .slide a {
  color: black;
}
.slider .slide h3 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 20px;
}
.slider .slide p {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 40px;
}
.slider .slide .content {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 75px 0;
  text-align: left;
  position: relative;
}
.slider .slide.white {
  background: white;
}
.slider .slide.white .content {
  padding-right: 32.5%;
  padding-bottom: 150px;
  box-sizing: border-box;
}
.slider .slide.white .content p {
  color: #D66449;
}
.slider .slide.white .content p.blue {
  color: #334480;
}
.slider .slide.white .content p.pink {
  color: #CB8298;
}
.slider .slide.white .circle {
  width: 200px;
  height: auto;
  position: absolute;
  right: 200px;
  bottom: 25px;
  opacity: 0;
  transition: all 1.4s ease-in-out;
  z-index: 50;
}
.slider .slide.white .circle.second {
  width: 300px;
  right: 50px;
}
.slider .slide.white .img {
  width: 250px;
  position: absolute;
  right: -40px;
  opacity: 0;
  transition: all 1.4s ease-in-out;
}
.slider .slide.white .img img {
  width: 100%;
  height: auto;
}
.slider .slide.grey .content {
  padding-left: 30%;
  padding-bottom: 250px;
  box-sizing: border-box;
}
.slider .slide.grey .content p {
  color: #D66449;
}
.slider .slide.grey .content p.blue {
  color: #334480;
}
.slider .slide.grey .content p.pink {
  color: #CB8298;
}
.slider .slide.grey .circle {
  width: 300px;
  height: auto;
  position: absolute;
  left: 0;
  top: 75px;
  z-index: 10;
}
.slider .slide.grey .img {
  width: 250px;
  position: absolute;
  left: 0;
  top: 150px;
  z-index: 5;
}
.slider .slide.grey .img img {
  width: 100%;
  height: auto;
}
.slider .slide .text {
  position: relative;
  top: 150px;
  opacity: 0;
  transition: all 1.4s ease-in-out;
}
.slider .slide.active {
  opacity: 1;
}
.slider .slide.animate .text {
  opacity: 1;
  top: 0;
}
.slider .slide.animate.white .circle {
  opacity: 1;
}
.slider .slide.animate.white .img {
  right: 0;
  opacity: 1;
}
.slider .slide.animate.grey .text {
  overflow: 1;
}
@media screen and (max-width: 1119px) {
  .slider .slide.white .img,
.slider .slide.grey .img {
    top: 40px;
    width: 200px;
  }
}
@media screen and (max-width: 800px) {
  .slider {
    min-height: 750px;
  }
  .slider h2 {
    font-size: 40px;
  }
  .slider .slide h3 {
    font-size: 20px;
    line-height: 35px;
  }
  .slider .slide.white .content,
.slider .slide.grey .content {
    padding-right: 0;
    padding-left: 0;
  }
  .slider .slide.white .img,
.slider .slide.grey .img {
    display: none;
  }
  .slider .slide.white .circle,
.slider .slide.grey .circle {
    display: none;
  }
  .slider .slide.grey .circle {
    display: none;
  }
  .slider .text {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .slider {
    min-height: 500px;
  }
  .slider .slide {
    padding-left: 25px;
    padding-right: 25px;
  }
  .slider h3 {
    font-size: 20px !important;
    line-height: 25px !important;
  }
  .slider p {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}

.demarche {
  overflow: hidden;
}

/*# sourceMappingURL=demarche.css.map */
