@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,400;0,700;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

.fr {
  --color-main: #00b0ea;
}

.nl {
  --color-main: #009844;
}

body {
  font-family: myriad-pro, sans-serif;
  color: #5c5d72;
}
ul,
li {
  list-style: none;
}

p {
  font-size: 16px;
  line-height: 30px;
}

h1 {
  font-size: 67px;
  font-family: "Lato", sans-serif;
  color: #000037;
  line-height: 55px;
  margin-bottom: 50px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  line-height: 38px;
  font-family: "Lato", sans-serif;
  color: #000037;
  font-weight: 700;
}
h2 small {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-main);
  display: block;
  line-height: 20px;
}

a {
  text-decoration: none;
}

.table {
  display: table;
}

.cell {
  display: cell;
  vertical-align: middle;
}

/* MOBILE NAV */
.menu-burger {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  padding: 1rem;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: white;
  box-shadow: 0px 2px 21px 0px rgba(236, 237, 253, 0.93);
  transition: all 0.4s;
}

header .icon {
  display: block;
  position: fixed;
  top: 10px;
  right: 30px;
  z-index: 100;
  display: none;
}

.menu-burger > div {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.menu-burger > div:before,
.menu-burger > div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -7px;
  width: 100%;
  height: 2px;
  background-color: inherit;
  transition: transform 0.4s;
}

.menu-burger > div:after {
  top: 7px;
}

.menu-burger:hover > div {
  transform: rotate(90deg);
  background-color: white;
}

.menu-burger:hover {
  background-color: var(--color-main);
}

.menu-burger.cross > div:before,
.menu-burger.cross > div:after {
  top: 0;
  transform: rotate(90deg);
}

.menu-burger.cross > div {
  background-color: #000;
}

.menu-burger.cross {
  transform: rotate(45deg);
  box-shadow: none;
  background-color: transparent;
}

/* POP-UP MENU */
.responsive-menu {
  display: none;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
}

.responsive-menu .moblogo {
  text-align: center;
  margin-top: 40px;
  width: 70%;
  max-width: 200px;
  margin: 80px auto 0 auto;
}

.responsive-menu .moblogo img {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: 80px;
}

.responsive-menu.display {
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
}

.responsive-menu .mobnav {
  padding: 30px 5% 0 5%;
  text-align: center;
}
.responsive-menu .mobnav .lang li {
  display: inline-block;
  padding: 0 10px;
}

.responsive-menu .mobnav li {
  display: block;
  margin-bottom: 30px;
}

.responsive-menu .mobnav li a {
  font-size: 21px;
  text-decoration: none;
  color: #2a3739;
  text-transform: uppercase;
}

.responsive-menu .mobnav li a.btn {
  color: #fff;
}

.btn {
  border-radius: 5px;
  background-color: var(--color-main);
  box-shadow: 0px 16px 35px 0px rgba(32, 168, 238, 0.19);
  color: #fff !important;
  padding: 15px 60px;
  display: inline-block;
  transition: all 0.2s linear;
}
.btn b {
  background: url(../img/right-arrow.svg) no-repeat right center/20px;
  padding-right: 40px;
  font-size: 20px;
}
.btn:hover {
  color: #fff;
  box-shadow: none;
}
.btn.btnArrow {
  padding: 15px 20px;
}
.btn.btnArrow b {
  font-size: 0;
  height: 30px;
  display: block;
  padding-right: 22px;
}

.nl .btn {
  box-shadow: 0px 16px 35px 0px rgba(0, 152, 68, 0.19);
}

.simpleBtn {
  border-radius: 5px;
  background-color: #d7e3e7;
  color: #fff;
  font-size: 16px;
  padding: 15px 50px;
  display: inline-block;
}
.simpleBtn:hover {
  background-color: var(--color-main);
}

.simpleLink {
  text-decoration: underline;
  color: #000037;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

*:focus {
  outline: none;
}

.wrapper {
  max-width: 1300px;
  padding: 0 5%;
  margin: 0 auto;
}

header {
  padding: 25px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  transition: all 0.2s linear;
}
header.scrolled {
  background-color: #fff;
  padding: 10px 40px;
}
header.scrolled .logo img {
  width: 25px;
}
header.scrolled nav ul li .btn {
  padding: 10px 30px;
}
header .logo {
  position: absolute;
}
header .logo img {
  width: 70px;
  transition: all 0.2s linear;
}
header nav {
  float: right;
}
header nav ul li {
  display: inline-block;
}
header nav ul li a {
  color: #5c5d72;
  font-weight: 700;
}
header nav ul li a:hover {
  color: var(--color-main);
}
header nav ul li .btn {
  background-color: var(--color-main);
  border-radius: 5px;
  background-color: var(--color-main);
  box-shadow: 0px 16px 35px 0px rgba(32, 35, 81, 0.19);
  color: #fff;
  padding: 20px 30px;
}
header nav .nav {
  display: inline-block;
  padding-right: 5px;
}
header nav .nav li.active a {
  background: url(../img/active.png) no-repeat center bottom;
  color: #000037;
}
header nav .nav a {
  color: #5c5d72;
  padding: 0 15px;
  font-weight: 700;
  padding-bottom: 10px;
}
header nav .lang {
  display: inline-block;
}
header nav .lang li {
  padding: 0 10px;
  position: relative;
}
header nav .lang li:first-child:after {
  content: "|";
  position: absolute;
  right: -3px;
}
header nav .lang li a {
  font-weight: 400;
}
header nav .lang .active a {
  color: var(--color-main);
}

@media (min-width: 1200px) {
  #page-home header nav a {
    color: #fff;
  }

  #page-home header.scrolled nav .nav a,
  #page-home header.scrolled nav .lang a,
  #page-home header.scrolled nav .lang li:first-child:after {
    color: #5c5d72;
  }

  #page-home header nav .lang .active a {
    color: var(--color-main);
  }

  #page-home header nav .lang li:first-child:after {
    color: #fff;
  }
}
.title {
  display: flex;
  margin-bottom: 40px;
}
.title .ico {
  min-width: 70px;
  align-self: center;
}
.title .ico img {
  max-width: 50px;
}
.title h2 {
  align-self: center;
}

#centeredTitle {
  text-align: center;
  padding: 200px 0 50px 0;
  margin-bottom: 70px;
  background: url(../img/line.png) no-repeat center bottom;
}
#centeredTitle p {
  font-style: italic;
  font-size: 23px;
}
#centeredTitle h1 {
  margin-bottom: 30px;
}

#classicalTextContent {
  padding: 100px 0;
}

#mainBanner {
  padding-top: 200px;
  padding-bottom: 50px;
}
#mainBanner .intro {
  padding-left: 50%;
  position: relative;
}
#mainBanner .intro .fromWYSIWYG p {
  font-style: italic;
  font-size: 20px;
  color: #5c5d72;
}
#mainBanner .intro:after {
  font-size: 0;
  content: ".";
  width: 80px;
  height: 35px;
  background: url(../img/drawnArrow.png) no-repeat center center;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -100px;
  transform: rotate(-90deg);
}

.fromWYSIWYG h2 {
  font-size: 25px;
  font-family: "Lato", sans-serif;
  color: #000037;
  text-transform: uppercase;
  clear: both;
  margin: 20px 0 30px;
  padding-left: 30px;
  position: relative;
}
.fromWYSIWYG h2:before {
  content: ".";
  background-color: var(--color-main);
  opacity: 0.7;
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 0;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 20px;
  margin-top: -4px;
}
.fromWYSIWYG hr {
  display: block;
  background: url(../img/line2.png) no-repeat center center;
  width: 100%;
  height: 50px;
}
.fromWYSIWYG img {
  margin: 0 30px 30px 0;
  max-width: 100%;
}
.fromWYSIWYG p {
  margin-bottom: 30px;
}

.fromWYSIWYG ol, 
.fromWYSIWYG ol li {
  list-style: decimal inside;
  line-height: 1.5;
}

.fromWYSIWYG ol,
.fromWYSIWYG ul {
  margin-bottom: 1rem;
}

.fromWYSIWYG ul li {
  list-style: disc inside;
  line-height: 30px;
}

.fromWYSIWYG ul ul, 
.fromWYSIWYG ul ul li {
  list-style:  circle inside;
  margin-left: 1.5rem;
}

.fromWYSIWYG a {
  color: var(--color-main);
  font-weight: 700;
}

/* -- FOOTER -- */
footer {
  padding: 50px 0;
  border-top: 1px solid #f2f2f4;
}
footer .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .footCol {
  flex-grow: 1;
}
footer .footCol.address h6 {
  font-family: "Lato", sans-serif;
  margin-bottom: 10px;
  font-size: 16px;
  color: #000037;
}
footer .footCol.quicklinks {
  padding: 0 40px;
}
footer .footCol.quicklinks ul {
  column-count: 2;
}
footer .footCol.quicklinks ul li {
  margin-bottom: 10px;
}
footer .footCol.quicklinks ul li a {
  color: #5c5d72;
}
footer .footCol.socials {
  align-self: center;
}
footer .footCol.socials ul li {
  display: inline-block;
  margin: 0 10px;
}
footer .footCol.socials ul li img {
  width: 25px;
}
footer .footCol.logos li {
  display: inline-block;
  margin-right: 20px;
}
footer .footCol.logos span {
  display: block;
  margin-bottom: 20px;
}
footer .footCol.logos img {
  height: 60px;
}

.wrapFl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* ******** */
/* HOMEPAGE */
/* ******** */
#mainBannerHp {
  background: url(../img/bgHomepage.png) no-repeat right top/auto 80%;
  padding-bottom: 100px;
  padding-top: 200px;
  min-height: 1000px;
}
#mainBannerHp .intro {
  width: 50%;
  margin-bottom: 100px;
}
#mainBannerHp .intro .fromWYSIWYG {
  margin-bottom: 50px;
}
#mainBannerHp .selectBox {
  padding: 20px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.08);
  display: inline-block;
}
#mainBannerHp .selectBox h3 {
  display: inline-block;
  vertical-align: middle;
  /* background: url(../img/icons/caddy-fr.svg) no-repeat left center/30px; */
  padding-left: 50px;
  font-size: 25px;
  line-height: 25px;
  color: #000037;
  position: relative;
  padding-right: 40px;
  margin-right: 40px;
}
#mainBannerHp .selectBox h3:after {
  position: absolute;
  right: 0;
  width: 3px;
  height: 60px;
  background-color: #edf4ff;
  display: block;
  content: ".";
  font-size: 0;
  top: 50%;
  margin-top: -30px;
}
#mainBannerHp .selectBox .selectWrap {
  display: inline-block;
  vertical-align: middle;
  width: 360px;
}
#mainBannerHp .selectBox .selectWrap small {
  font-size: 12px;
  opacity: 0.4;
}
#mainBannerHp .selectBox .btnWrap {
  display: inline-block;
  vertical-align: middle;
}

.select {
  background: url(../img/select-arrow.png) no-repeat right 20px center/14px;
  display: block;
  width: 80%;
  padding: 0px;
}

.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 38px;
  width: 100%;
  border: none;
  margin: 0;
  background: transparent;
  font-size: 25px;
  color: #000037;
}

#sect-aboutVideo {
  padding: 50px 0;
}
#sect-aboutVideo .title {
  position: relative;
}
#sect-aboutVideo .title:before {
  font-size: 0;
  content: ".";
  width: 80px;
  height: 35px;
  background: url(../img/drawnArrow.png) no-repeat center center;
  display: block;
  position: absolute;
  left: -100px;
  top: 0;
}
#sect-aboutVideo .visual {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 50%;
  max-width: 50%;
  position: relative;
}
#sect-aboutVideo .visual a {
  display: block;
}
#sect-aboutVideo .visual:hover a:after {
  transform: scale(1.4);
}
#sect-aboutVideo .visual a:after {
  content: ".";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../img/play.svg) no-repeat center center/100%;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0;
  margin-left: -30px;
  margin-top: -30px;
}
#sect-aboutVideo .visual img {
  max-width: 100%;
}
#sect-aboutVideo .content {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 50%;
  max-width: 50%;
  align-self: center;
  padding-left: 30px;
}

#sect-specialAdd {
  padding: 50px 0 100px 0;
  text-align: center;
}
#sect-specialAdd .title {
  margin-bottom: 20px;
  display: block;
}

#sect-aboutChilds {
  background-color: #f6fafb;
  padding: 120px 0;
}
#sect-aboutChilds .content {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 50%;
  max-width: 50%;
}
#sect-aboutChilds .visual {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 50%;
  max-width: 50%;
}
#sect-aboutChilds .visual img {
  max-width: 100%;
}

#sect-socialFeed {
  padding: 100px 0;
}
#sect-socialFeed .wrapperSlider {
  padding-left: calc(3% + ((100vw - 1300px) / 2));
  cursor: move;
}
#sect-socialFeed .title {
  position: relative;
}
#sect-socialFeed .title .arrows {
  position: absolute;
  right: 0;
  top: 0;
}
#sect-socialFeed .slider .igSlide {
  width: 350px;
  margin: 0 10px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
#sect-socialFeed .slider .igSlide .pict img {
  display: block;
  width: 100%;
}
#sect-socialFeed .slider .igSlide .infos {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 20px 20px 10px 0;
  border-radius: 0 15px 0 0;
}
#sect-socialFeed .slider .igSlide .infos strong {
  display: block;
  font-size: 13px;
  color: #5c5d72;
}
#sect-socialFeed .slider .igSlide .infos i {
  display: block;
  font-style: 400;
  font-size: 13px;
  color: #5c5d72;
}
#sect-socialFeed .btnLine {
  text-align: center;
  padding-top: 100px;
}

.arrows .slick-arrow {
  font-size: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 10px;
  border: 1px solid #d8e3e7;
  border-radius: 50%;
  background: transparent url(../img/prev.png) no-repeat center/5px;
  cursor: pointer;
}
.arrows .slick-arrow.slick-next {
  background: transparent url(../img/next.png) no-repeat center/5px;
  cursor: pointer;
}

#page-partners {
  background: url(../img/yellowCircle2.png) no-repeat left 50%;
}

#sect-partners {
  border-top: 1px solid #f2f2f4;
  padding: 30px 0;
}
#sect-partners ul {
  text-align: center;
}
#sect-partners ul li {
  display: inline-block;
  margin: 20px;
  vertical-align: middle;
}
#sect-partners ul li a img {
  max-height: 50px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.8;
	height: 50px
}
#sect-partners ul li a:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}
#sect-partners ul li .link {
  color: #dcdce2;
  font-size: 20px;
  text-decoration: underline;
  font-weight: 700;
}
#sect-partners ul li .link span {
  padding-right: 30px;
  background: url(../img/right-arrow-grey.svg) no-repeat right 5px/20px;
}

/* ******** */
/* EXPO */
/* ******** */
.expoBanner {
  background: url(../img/bgExpo.png) no-repeat left top/ 45% auto;
}

#mediaSliders {
  padding-bottom: 100px;
}

#mediaSliders .arrows {
  text-align: right;
}
#mediaSliders .slideWrapper img {
  max-height: 370px;
  border-radius: 5%;
}

#mediaSliders .slide {
  margin: 30px 10px;
  position: relative;
  transition: transform 250ms;
  cursor: move;
}
#mediaSliders .slide.videoSlide:after {
  content: ".";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../img/play.svg) no-repeat center center/100%;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0;
  margin-left: -30px;
  margin-top: -30px;
  z-index: 3;
}
#mediaSliders .slide:hover {
  transform: translateY(30px);
}

/* ******** */
/* PARTNERS */
/* ******** */
.allPartners {
  text-align: center;
}

.mainPartners {
  text-align: center;
  margin-bottom: 40px;
}
.mainPartners li {
  display: inline-block;
  margin: 20px;
  vertical-align: middle;
}
.mainPartners li img {
  max-height: 70px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
}
.mainPartners li:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

.allPartners {
  padding-bottom: 100px;
}
.allPartners h4 {
  font-size: 40px;
  font-family: "Lato", sans-serif;
  color: #000037;
  margin-bottom: 30px;
  font-weight: 700;
}
.allPartners li {
  display: inline-block;
  margin: 10px 20px;
}
.allPartners li img {
  height: 40px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
}
.allPartners li:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

/* ******** */
/* PROJECT */
/* ******** */
.projectBanner {
  background: url(../img/bgProjet.png) no-repeat left top/ 45% auto;
}

/* ******** */
/* STEPS */
/* ******** */
#page-steps {
  background: url(../img/yellowCircle.png) no-repeat right 300px;
}

.wrapTowns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 100px;
}
.wrapTowns .town {
  padding: 50px;
  background: url(../img/bgBox2.png) no-repeat center center/100% 100%;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 31%;
  max-width: 31%;
  margin: 1%;
  text-align: center;
}
.wrapTowns .town:nth-child(3n+2) {
  background: url(../img/bgBox1.png) no-repeat center center/100% 100%;
}
.wrapTowns .town h2 {
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 15px;
}
.wrapTowns .town h5 {
  margin-bottom: 50px;
  font-size: 16px;
  color: #5c5d72;
  font-weight: 100;
}
.wrapTowns .town .simpleBtn {
  margin-bottom: 15px;
}
.wrapTowns .town .simpleBtn:hover {
  background-color: var(--color-main);
}

/* ******** */
/* STEPS DETAIL */
/* ******** */
#mainBannerCity {
  background: url(../img/bgTown.png) no-repeat center top/100% 100%;
  padding: 200px 0 100px 0;
  text-align: center;
}
#mainBannerCity h1 {
  color: #fff;
}

.minInfosBox {
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  display: inline-block;
}
.minInfosBox .dates {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #000037;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  padding: 0 30px;
  position: relative;
}
.minInfosBox .dates:after {
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  width: 1px;
  height: 28px;
  background-color: #e4e4e7;
  font-size: 0;
  margin-top: -14px;
}
.minInfosBox .socials {
  padding: 0 30px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  /* &:after {
      content: '|';
      position: absolute;
      right: 0;
      top: 50%;
      display: block;
      width: 1px;
      height: 28px;
      background-color: #e4e4e7;
      font-size: 0;
      margin-top: -14px;
  }*/
}
.minInfosBox .socials li {
  display: inline-block;
  margin: 0 5px;
}
.minInfosBox .socials img {
  width: 25px;
}
.minInfosBox .eventFb {
  padding: 0 30px;
  display: inline-block;
  vertical-align: middle;
}
.minInfosBox .eventFb a {
  color: #70728f;
  text-decoration: underline;
}
.minInfosBox .btnWrap {
  display: inline-block;
  vertical-align: middle;
}

#sect-stepDates {
  border-bottom: 1px solid #f6f9f9;
  padding: 100px 0;
}
#sect-stepDates .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#sect-stepDates .hgBox {
  text-align: center;
  border-radius: 30px;
  background-color: #f6fafb;
  padding: 40px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 48%;
  max-width: 48%;
  margin: 1%;
}
#sect-stepDates .hgBox h6 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000037;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 0 10px 40px;
}
#sect-stepDates .hgBox h6.icodate {
  background: url(../img/icons/date.png) no-repeat left center/auto;
}
#sect-stepDates .hgBox h6.icoloc {
  background: url(../img/icons/loc.png) no-repeat left center/auto;
}
#sect-stepDates .hgBox p a {
  color: #000037;
  text-decoration: underline;
}
#sect-stepDates .hgBox li {
  margin-bottom: 10px;
}
#sect-stepDates .hgBox li strong {
  margin-right: 10px;
}
#sect-stepDates .hgBox table {
  width: 100%;
}
#sect-stepDates .hgBox table th {
  text-transform: uppercase;
  color: #000037;
  margin-bottom: 10px;
  padding: 10px;
}
#sect-stepDates .hgBox table td {
  padding: 5px;
}
#sect-stepDates .hgBox table td.loc {
  text-align: center;
}
#sect-stepDates .contentText {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 50%;
  max-width: 50%;
  padding-right: 100px;
}
#sect-stepDates .contentText h4 {
  text-transform: uppercase;
  color: #000037;
  margin-bottom: 10px;
}
#sect-stepDates .contentAside {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 50%;
  max-width: 50%;
  display: flex;
}

#sect-stepTarifs {
  border-bottom: 1px solid #f6f9f9;
  padding: 100px 0;
}
#sect-stepTarifs .wrapTarifs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#sect-stepTarifs .tarif {
  text-align: center;
  border-radius: 30px;
  background-color: #f6fafb;
  padding: 40px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 48%;
  max-width: 48%;
  margin: 1%;
}
#sect-stepTarifs .tarif strong {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000037;
  display: block;
}
#sect-stepTarifs .tarif span {
  font-size: 50px;
  color: #fbb330;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
#sect-stepTarifs .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#sect-stepTarifs .contentText {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 50%;
  max-width: 50%;
  padding-right: 100px;
}
#sect-stepTarifs .contentAside {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 50%;
  max-width: 50%;
}

#sect-babysitting {
  padding: 100px 0;
}
#sect-babysitting .visual {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 50%;
  max-width: 50%;
}
#sect-babysitting .visual img {
  max-width: 100%;
}
#sect-babysitting .content {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 50%;
  max-width: 50%;
}

#sect-activities {
  background-color: #f6fafb;
  padding: 100px 0;
}
#sect-activities .title {
  text-align: center;
  margin-bottom: 50px;
  display: block;
}
#sect-activities .wrapActivities {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1%;
}
#sect-activities .wrapActivities .activity {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 31%;
  max-width: 31%;
  margin: 1%;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}
#sect-activities .wrapActivities .activity .picture img {
  display: block;
  width: 100%;
}
#sect-activities .wrapActivities .activity .content {
  padding: 40px;
}
#sect-activities .wrapActivities .activity .content .date {
  color: var(--color-main);
  margin-bottom: 10px;
}
#sect-activities .wrapActivities .activity .content .simpleBtn {
  display: block;
  text-align: center;
}
#sect-activities .wrapActivities .activity .content h4 {
  text-transform: uppercase;
  color: #000037;
  font-size: 18px;
  margin-bottom: 20px;
}
#sect-activities .wrapActivities .activity .content p {
  margin-bottom: 20px;
}

#sect-stepPartners {
  padding: 100px 0;
}
#sect-stepPartners .partnersList li {
  display: inline-block;
  margin: 0 20px;
}
#sect-stepPartners .partnersList li img {
  max-height: 70px;
}

#sect-video {
  padding:50px 1rem;
  display:flex;
}
#sect-video .video {
  position: relative; 
  margin-bottom:2rem;
}
#sect-video .bg-video {
  background-color:rgb(213,227,231);
  position:absolute;
  top:0;
  bottom:-3rem;
  left:-3rem;
  right:2rem;
  border-radius:70% 50% 60% 30%;
  z-index:-1;
}
#sect-video .frame-video {
  border-radius:15px;
  overflow:hidden;
  z-index:1;
  height:315px;
  width:100%;
}
#sect-video iframe {
  width:560px;
  height:315px; 
}
#sect-video .video-cont {
  margin-left: 4rem;
}

@media (max-width: 1200px) {
  #mainBannerHp {
    min-height: auto;
    background: url(../img/bgHomepage.png) no-repeat right top/50%;
  }
}
@media (max-width: 900px) {
  #sect-video {
    flex-wrap: wrap;
    justify-content: center;
  }
  #sect-video .video-cont {
    margin-left: 0;
  }
  .minInfosBox .btnWrap {
    margin-top: 20px;
  }
  header nav {
    display: none;
  }
  header .icon {
    display: block;
  }
  header.scrolled {
    height: 80px;
  }
  header.scrolled .logo img {
    width: 30px;
  }
  #mainBanner .intro {
    padding: 0;
  }
  #mainBannerHp .intro {
    width: 100%;
  }
  footer .wrapper .footCol {
    min-width: 50%;
    padding: 30px 0;
  }
  .wrapFl,
  #sect-stepTarifs .wrapper,
  #sect-stepDates .wrapper {
  display: block;
  }

  #sect-aboutVideo .visual,
  #sect-aboutChilds .visual,
  #sect-babysitting .visual {
    max-width: 100%;
    min-width: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  #sect-aboutVideo .content,
  #sect-aboutChilds .content,
  #sect-babysitting .content,
  #sect-stepTarifs .contentText,
  #sect-stepTarifs .contentAside,
  #sect-stepDates .contentText,
  #sect-stepDates .contentAside {
    max-width: 100%;
    min-width: 0;
  }

  #sect-stepTarifs .contentText,
  #sect-stepDates .contentText {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .wrapTowns .town {
    min-width: 48%;
  }

  #sect-aboutVideo .title:before {
    display: none;
  }

  #mainBannerHp .selectBox {
    display: block;
  }
  #mainBannerHp .selectBox h3,
  #mainBannerHp .selectBox .selectWrap {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
  #mainBannerHp .selectBox h3 {
    margin-right: 0;
    padding-right: 0;
  }
  #mainBannerHp .selectBox h3:after {
    display: none;
  }
  #mainBannerHp .selectBox .select {
    width: 100%;
  }
  #mainBannerHp .selectBox .btnWrap {
    display: block;
    width: 100%;
    text-align: center;
  }
  #mainBannerHp .selectBox .btnWrap .btn.btnArrow b {
    font-size: 20px;
    height: 30px;
    display: block;
    padding-right: 42px;
  }

  #sect-activities .wrapActivities .activity {
    min-width: 98%;
    max-width: 98%;
  }

  #mainBanner .intro:after {
    display: none;
  }

  #mainBanner {
    padding: 370px 0 0 0;
  }

.expoBanner,
.projectBanner {
    background-size: auto 340px;
  }

  header {
    padding: 0;
  }

  header .logo {
    position: absolute;
    top: 20px;
    left: 20px;
  }
}
@media (max-width: 1050px) {
  .expoBanner,
  .projectBanner {
      background-size: 370px auto;
    }
}
@media (max-width: 700px) {
  #sect-video iframe {
    width: 100%;
  }
  footer .wrapper .footCol {
    min-width: 100%;
    padding: 20px 0;
  }
  footer .wrapper {
    display: block;
  }
	.fromWYSIWYG img {
  max-width: 100%!important;
}

  h1 {
    font-size: 44px;
    line-height: 35px;
  }

  h2 {
    font-size: 25px;
  }

  #sect-socialFeed h2 {
    font-size: 20px;
  }

  #sect-socialFeed .title .arrows {
    display: none;
  }

  #sect-stepDates .contentAside,
#sect-stepTarifs .wrapTarifs {
    display: block;
  }

  #sect-stepDates .hgBox,
#sect-stepTarifs .tarif {
    min-width: 98%;
    max-width: 98%;
  }

  .minInfosBox .dates {
    margin: 0 0 20px 0;
  }

  .minInfosBox .dates:after {
    display: none;
  }
	#sect-babysitting, #sect-stepTarifs, #sect-stepDates, #classicalTextContent{    padding: 30px 0; }
}
@media (max-width: 500px) {
  .wrapTowns .town {
    min-width: 98%;
  }
}

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

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: white;
  box-shadow: 0 -1px 3px lightgray;
  padding: 10px;
}

.cookies a,
.cookies p {
  margin: 0.5rem;
}

.cookies .btn {
  padding: 10px 20px;
}
