@charset "UTF-8";

/** Box Model  */

/* Color palette */

:root {
  --blue: #0033ff;
  --grey: #cccbcb;
  --black: #000000;
  --white: #f4f4f4;
}

/** Import everything from autoload */

/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */

/** Import theme styles */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
html {
  padding: 0;
  margin: 0;
  color: #4e4e4e;
  background-color: #000;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html {
  font-size: 62.5%;
  font-family: 'Circular Std', sans-serif;
}

.container {
  width: 100%;
}

.over {
  z-index: 9999;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: black;
  -webkit-transition: all .5s ease .1s;
  -o-transition: all .5s ease .1s;
  transition: all .5s ease .1s;
}

.over.start {
  opacity: 0;
  visibility: hidden;
}

.content {
  width: 100%;
}

.canvas {
  position: fixed;
  z-index: 3;
  pointer-events: none;
}

.greyscale {
  position: absolute;
  display: none;
  visibility: hidden;
  opacity: 0;
}

.greyscale-image {
  position: absolute;
  visibility: hidden;
}

.rs {
  max-width: 100%;
  height: auto;
}

.clearfix {
  *zoom: 1;
}

.clearfix::after {
  content: '';
  display: block;
  clear: both;
  height: 0;
}

h1,
h2 {
  text-transform: uppercase;
  letter-spacing: 10px;
  line-height: 4.4rem;
  font-size: 18px;
  margin: 0;
  font-weight: normal;
  white-space: nowrap;
  margin-top: -2.2rem;
  pointer-events: none;
}

h1 span,
h2 span {
  display: inline-block;
  width: 4.4rem;
  text-align: left;
  position: relative;
  background-color: white;
}

h1 span:after,
h2 span:after {
  content: '\2022';
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  top: .25rem;
  font-size: .6rem;
  right: 1.2rem;
  margin-top: -0.3rem;
}

@media only screen and (max-width: 920px) {
  h1,
  h2 {
    margin-bottom: 90px;
  }
}

h1.right,
h2.right {
  text-align: right;
}

video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}

h2 {
  font-weight: 500;
}

.logo {
  position: fixed;
  left: 6.2rem;
  top: 8.8rem;
  z-index: 1000;
  pointer-events: none;
}

@media only screen and (max-width: 920px) {
  .logo {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
  }

  .logo.active {
    opacity: 1;
  }
}

.logo h1 {
  margin-top: -4px;
}

.logo h1 img {
  width: 24.7rem;
  height: 18.3rem;
  display: block;
}

@media only screen and (max-width: 920px) {
  .logo h1 img {
    display: block;
    margin-left: -1px;
    margin-top: -1px;
    position: absolute;
  }
}

.logo .sticky {
  position: absolute;
  opacity: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (min-width: 920.02px) {
  .logo .sticky {
    width: 22px;
    height: 22px;
    border-radius: 22px;
    background-color: #0033ff;
    top: -1.1rem;
    left: 1.1rem;
  }

  .logo .sticky div {
    display: none;
  }
}

.black h2,
h1 {
  color: white;
}

.black h2 span,
h1 span {
  background-color: black;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video__reel,
.video__loop {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.video__reel video,
.video__loop video {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.video__loop video {
  display: block;
}

@media only screen and (max-width: 920px) {
  .video__loop {
    display: none;
  }
}

.video__reel {
  z-index: 10000;
  opacity: 0;
  background-color: black;
}

.video__reel.active {
  pointer-events: auto;
  opacity: 1;
}

.video__reel video {
  display: none;
}

.video__reel svg {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
  cursor: pointer;
}

.reel__mobile {
  position: relative;
}

.reel__mobile img {
  display: block;
}

.reel__button {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  white-space: nowrap;
  font-size: 16px;
  line-height: 30px;
  padding-left: 24px;
}

.reel__button:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 10px;
  position: absolute;
  background-color: white;
  left: 0;
  top: 11px;
}

section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section__wrapper {
  position: relative;
  padding: 18rem 6.2rem 18rem 8.9rem;
}

@media only screen and (max-width: 920px) {
  .section__wrapper {
    padding: 7.5rem 3rem;
  }
}

.description {
  font-size: 13px;
  line-height: 21px;
  color: #cccbcb;
}

@media only screen and (min-width: 920.02px) {
  .description {
    width: 35%;
    max-width: 450px;
  }
}

a {
  color: #4e4e4e;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
  font-weight: bold;
  text-decoration: none;
}

p {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  margin: 0;
}

p a {
  font-weight: bold;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.center {
  position: relative;
  margin: 0 auto;
}

p.center {
  text-align: center;
}

.vcenter {
  display: table;
  height: 100%;
}

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

@media only screen and (max-width: 920px) {
  .desktop {
    display: none;
  }
}

@media only screen and (min-width: 920.02px) {
  .mobile {
    display: none;
  }
}

.js-lazy-load {
  opacity: 0;
}

.js-lazy-load.is-loaded {
  opacity: 1;
}

.image-wrapper {
  position: relative;
  height: 0;
}

.image-wrapper img {
  position: absolute;
}

.pt100 {
  padding-bottom: 100%;
}

.ptcollec {
  padding-bottom: 68.45238%;
}

.ptcarrousel {
  padding-bottom: 54.71698%;
}

.parallax {
  overflow: hidden;
  height: 100%;
  position: fixed;
}

.parallax body {
  overflow: hidden;
  height: 100%;
  position: fixed;
}

.parallax .container {
  position: fixed;
  z-index: 5;
}

.parallax section {
  position: fixed;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  will-change: auto;
  opacity: 0.01;
  pointer-events: none;
}

.parallax section.visible {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.parallax .menu__wrapper {
  display: block;
}

.parallax .menu__burger,
.parallax .menu__mobile {
  display: none;
}

.no-parallax .video__loop,
.no-parallax .canvas,
.no-parallax .greyscale,
.no-parallax .menu__wrapper {
  display: none;
}

.no-parallax .logo {
  position: absolute;
  left: 62px;
  top: 88px;
}

.no-parallax .logo h1 img {
  width: 247px;
  height: 183px;
}

.no-parallax .container {
  overflow-x: hidden;
  position: relative;
}

.no-parallax section {
  background-color: white;
  background-position: top left;
  background-repeat: no-repeat;
}

.no-parallax section.lightgrey {
  background-color: #F4F4F4;
}

.no-parallax section.black {
  background-color: black;
}

@media only screen and (min-width: 920.02px) {
  .no-parallax section .clients__trame {
    display: block;
    position: absolute;
  }

  .no-parallax section.playgrounds {
    background-size: 144rem 52.3rem;
    background-position: -0.7rem 1.4rem;
    background-image: url(/app/themes/theisland/dist/images/trame-playgrounds.png);
  }

  .no-parallax section.intro {
    background-size: 144rem 41.3rem;
    background-position: 0rem bottom;
    background-image: url(/app/themes/theisland/dist/images/trame-intro.png);
  }

  .no-parallax section.clients {
    background-size: 144rem 52.1rem;
    background-position: 2.2rem 5.2rem;
    background-image: url(/app/themes/theisland/dist/images/trame-clients.png);
  }

  .no-parallax section.partners {
    background-size: 144rem 122rem;
    background-position: -0.7rem -3rem;
    background-image: url(/app/themes/theisland/dist/images/trame-partners.png);
  }

  .no-parallax section.services {
    background-size: 144rem 55.1rem;
    background-position: -0.8rem 5.8rem;
    background-image: url(/app/themes/theisland/dist/images/trame-services.png);
  }
}

@media only screen and (max-width: 920px) {
  .no-parallax section.playgrounds {
    background-size: 37.5rem 37.1rem;
    background-position: 0.4rem -0.2rem;
    background-image: url(/app/themes/theisland/dist/images/trame-playgrounds-mobile.png);
  }

  .no-parallax section.intro {
    background-size: 37.5rem 22.6rem;
    background-position: 0.4rem bottom;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAGGCAYAAAAkUgRgAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzhCRDAwN0Y2RTc5MTFFODk3NThFRTkyNTEyRTc2RkYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzhCRDAwODA2RTc5MTFFODk3NThFRTkyNTEyRTc2RkYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3NUZGQjQ0QzZFNTQxMUU4OTc1OEVFOTI1MTJFNzZGRiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozOEJEMDA3RTZFNzkxMUU4OTc1OEVFOTI1MTJFNzZGRiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PlYbPAkAAAhqSURBVHja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);
  }

  .no-parallax section.clients {
    background-size: 37.5rem 28.3rem;
    background-position: 0.4rem -0.2rem;
    background-image: url(data:image/png;base64,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);
  }

  .no-parallax section.partners {
    background-size: 37.5rem 32.8rem;
    background-position: 0.4rem -0.2rem;
    background-image: url(/app/themes/theisland/dist/images/trame-partners-mobile.png);
  }

  .no-parallax section.services {
    background-size: 37.5rem 41.5rem;
    background-position: 0.4rem -0.2rem;
    background-image: url(data:image/png;base64,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);
  }
}

.sib_loader {
  display: none !important;
}

.sib_loader img {
  display: none !important;
}

@font-face {
  font-family: 'Circular Std';
  src: url(/app/themes/theisland/dist/fonts/CircularStd-Bold.woff2) format("woff2"), url(/app/themes/theisland/dist/fonts/CircularStd-Bold.woff) format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Circular Std';
  src: url(/app/themes/theisland/dist/fonts/CircularStd-Book.woff2) format("woff2"), url(/app/themes/theisland/dist/fonts/CircularStd-Book.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Circular Std';
  src: url(/app/themes/theisland/dist/fonts/CircularStd-Medium.woff2) format("woff2"), url(/app/themes/theisland/dist/fonts/CircularStd-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Circular Std';
  src: url(/app/themes/theisland/dist/fonts/CircularStd-Black.woff2) format("woff2"), url(/app/themes/theisland/dist/fonts/CircularStd-Black.woff) format("woff");
  font-weight: 900;
  font-style: normal;
}

.footer {
  position: relative;
  font-size: 0;
  color: black;
  background-color: #f4f4f4;
  white-space: nowrap;
}

@media only screen and (max-width: 920px) {
  .footer {
    padding: 0 30px;
    line-height: 25px;
  }
}

.footer a {
  color: black;
  font-weight: normal;
}

.footer a:hover {
  color: #0033ff;
}

.footer .section__wrapper {
  height: 150px;
  padding: 0;
}

@media only screen and (max-width: 920px) {
  .footer .section__wrapper {
    height: 230px;
  }
}

.footer .section__wrapper > div {
  font-size: 16px;
}

@media only screen and (min-width: 920.02px) {
  .footer .section__wrapper > div {
    line-height: 150px;
    display: inline-block;
  }
}

@media only screen and (min-width: 920.02px) {
  .footer__tel {
    position: absolute;
    left: 6.25%;
  }
}

@media only screen and (max-width: 920px) {
  .footer__tel {
    padding-top: 52px;
  }
}

@media only screen and (min-width: 920.02px) {
  .footer__mail {
    position: absolute;
    left: 37.5%;
  }
}

@media only screen and (max-width: 920px) {
  .footer__mail {
    padding-top: 8px;
  }
}

.footer__social {
  font-size: 0;
}

@media only screen and (min-width: 920.02px) {
  .footer__social {
    position: absolute;
    right: 6.25%;
    width: 25%;
  }
}

@media only screen and (max-width: 920px) {
  .footer__social {
    padding-top: 35px;
  }
}

.footer__social a {
  display: inline-block;
  width: 25%;
}

@media only screen and (min-width: 920.02px) {
  .footer__social a {
    text-align: right;
  }
}

.footer .icon-linkedin {
  margin-bottom: 2px;
}

@media only screen and (max-width: 920px) {
  .footer .icon-linkedin {
    width: 24px;
    height: 24px;
  }
}

.footer .icon-twitter {
  margin-bottom: 2px;
}

@media only screen and (max-width: 920px) {
  .footer .icon-twitter {
    width: 27px;
    height: 21px;
  }
}

@media only screen and (max-width: 920px) {
  .footer .icon-instagram {
    width: 26px;
    height: 26px;
  }
}

.footer .icon-facebook {
  margin-right: 2px;
}

@media only screen and (max-width: 920px) {
  .footer .icon-facebook {
    width: 16px;
    height: 24px;
  }
}

/** Search form */

.intro {
  color: #f4f4f4;
  font-size: 100%;
  z-index: 20;
}

.intro .section__wrapper {
  padding: 0;
}

.intro .intro__wrapper {
  min-height: 650px;
  height: 100vh;
  position: relative;
}

.intro h1 {
  position: fixed;
}

.intro__cta {
  color: #0033ff;
  font-size: 15px;
  padding-left: 1.5rem;
  position: absolute;
  bottom: 17rem;
  left: 6.2rem;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  cursor: pointer;
}

@media only screen and (max-width: 920px) {
  .intro__cta {
    left: 30px;
    bottom: 10rem;
  }
}

.intro__cta:before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #0033ff;
  position: absolute;
  left: 0;
  top: 8px;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.intro__cta:hover {
  color: white;
}

.intro__cta:hover:before {
  background-color: white;
}

.intro__wrapper.active .intro__text-main {
  visibility: visible;
  opacity: 1;
}

.intro__wrapper.active .intro__text .word {
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  -o-transition: -o-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out, -o-transform .5s ease-in-out;
}

.intro__text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  letter-spacing: 0;
  line-height: 1.3;
  font-size: 55px;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media only screen and (max-width: 920px) {
  .intro__text {
    font-size: 30px;
  }
}

.intro__text-temp,
.intro__text-empty {
  top: 0;
  left: 0;
  color: #cccbcb;
  pointer-events: none;
}

.intro__text-main {
  left: 6.2rem;
  bottom: 15rem;
  right: 15%;
}

@media only screen and (max-width: 920px) {
  .intro__text-main {
    left: 30px;
    right: 30px;
    bottom: 85px;
  }
}

.intro__text span.text {
  position: absolute;
  cursor: auto;
  color: #0033ff;
}

.intro__text span.text *:before {
  content: '';
  position: absolute;
  width: calc( 100% + 20px);
  left: -10px;
  bottom: 10px;
  border-bottom: 2px dotted #0033ff;
}

@media only screen and (max-width: 920px) {
  .intro__text span.text *:before {
    height: 2px;
    left: -5px;
    bottom: 5px;
    width: calc( 100% + 10px);
  }
}

.intro__text span.text *:after {
  content: '';
  position: absolute;
  width: calc( 100% + 20px);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  left: -10px;
  bottom: 10px;
  border-bottom: 2px solid #0033ff;
  opacity: 0;
}

@media only screen and (max-width: 920px) {
  .intro__text span.text *:after {
    height: 2px;
    left: -5px;
    bottom: 5px;
    width: calc( 100% + 10px);
  }
}

.intro__text span.text.active {
  cursor: pointer;
}

.intro__text span.text.active * {
  position: relative;
}

.intro__text span.text.active *:after {
  opacity: 1;
}

.intro__text .hide {
  visibility: hidden;
  opacity: 0;
}

.intro__text.absolute .word {
  position: absolute !important;
  left: 0;
  top: 0;
  -webkit-transform-origin: top left;
       -o-transform-origin: top left;
          transform-origin: top left;
}

.intro__text .word .word {
  -webkit-transform: none !important;
       -o-transform: none !important;
          transform: none !important;
}

@media only screen and (max-width: 920px) {
  .swiper {
    position: relative;
  }

  .swiper__group {
    width: calc( 100% + 60px);
    margin-left: -30px;
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  .swiper__group .swiper__item {
    -webkit-transition-delay: 0s !important;
         -o-transition-delay: 0s !important;
            transition-delay: 0s !important;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .swiper__item {
    position: absolute;
    width: calc( 100% - 60px);
    margin-left: 30px;
    height: 100%;
    float: none;
  }
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */

/** Media alignment */

.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 1rem auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: 1rem;
  height: auto;
}

@media (min-width: 30rem) {
  .alignleft {
    float: left;
    margin-right: 1rem;
  }

  .alignright {
    float: right;
    margin-left: 1rem;
  }
}

/** Captions */

/** Text meant only for screen readers */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  color: #000;
  background: #fff;
}

.menu {
  font-size: 10px;
  text-transform: uppercase;
  position: absolute;
  width: 20px;
  height: 100vh;
  overflow: hidden;
  letter-spacing: 2px;
}

.menu__wrapper {
  position: fixed;
  z-index: 10;
  right: 20px;
  top: 0;
  width: 31px;
  height: 100vh;
  overflow: hidden;
}

.menu__container {
  position: absolute;
  top: 0;
  height: 100vh;
}

.menu ul {
  position: absolute;
  top: 50%;
  margin-top: -270px;
  width: 20px;
}

.menu ul li {
  margin: 22px 0;
}

.menu__lang {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: absolute;
  padding: 10px;
}

@media only screen and (max-width: 920px) {
  .menu__lang {
    bottom: 50px;
    right: 20px;
    font-size: 12px;
  }

  .menu__lang a {
    color: white;
  }
}

.menu__lang a:hover {
  opacity: 1;
}

.menu__lang span {
  position: relative;
  padding: 10px;
}

.menu__lang span:before {
  content: '';
  background-color: #0033ff;
  border-radius: 3px;
  width: 3px;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  left: 3px;
}

.menu a {
  opacity: .4;
  padding: 10px;
  color: white;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.menu a.active {
  color: #0033ff;
  opacity: 1;
}

.menu-white a,
.menu-white span {
  color: white;
}

.menu-black a,
.menu-black span {
  color: black;
}

.menu__mobile {
  position: fixed;
  z-index: 900;
  color: white;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.menu__mobilelist {
  position: absolute;
  bottom: 50px;
}

.menu__mobilewrapper {
  pointer-events: auto;
  position: absolute;
  background-color: #0033ff;
  padding-left: 27px;
  width: 100%;
  height: 100%;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.menu__mobile img {
  position: absolute;
  left: 50px;
  top: 50px;
  width: 200px;
}

.menu__mobile ul {
  font-size: 42px;
  line-height: 52px;
}

.menu__mobile ul a {
  color: white;
  font-weight: normal;
}

.menu__mobile.opened .menu__mobilewrapper {
  -webkit-transform: translate3d(0%, 0, 0);
          transform: translate3d(0%, 0, 0);
}

.menu__reel {
  position: relative;
  font-size: 16px;
  padding-left: 20px;
  margin-bottom: 10px;
}

.menu__reel:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 6px;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.menu__burger {
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  position: fixed;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  z-index: 1000;
}

.menu__burger div {
  position: absolute;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 10px;
  background-color: #0033ff;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  top: 44px;
  left: 44px;
}

.menu__burger.active {
  opacity: 1;
}

.menu__burger.active div:nth-child(1) {
  -webkit-transform: translate3d(-22px, -22px, 0);
          transform: translate3d(-22px, -22px, 0);
}

.menu__burger.active div:nth-child(2) {
  -webkit-transform: translate3d(0, -22px, 0);
          transform: translate3d(0, -22px, 0);
}

.menu__burger.active div:nth-child(3) {
  -webkit-transform: translate3d(22px, -22px, 0);
          transform: translate3d(22px, -22px, 0);
}

.menu__burger.active div:nth-child(4) {
  -webkit-transform: translate3d(-22px, 0, 0);
          transform: translate3d(-22px, 0, 0);
}

.menu__burger.active div:nth-child(5) {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.menu__burger.active div:nth-child(6) {
  -webkit-transform: translate3d(22px, 0, 0);
          transform: translate3d(22px, 0, 0);
}

.menu__burger.active div:nth-child(7) {
  -webkit-transform: translate3d(-22px, 22px, 0);
          transform: translate3d(-22px, 22px, 0);
}

.menu__burger.active div:nth-child(8) {
  -webkit-transform: translate3d(0, 22px, 0);
          transform: translate3d(0, 22px, 0);
}

.menu__burger.active div:nth-child(9) {
  -webkit-transform: translate3d(22px, 22px, 0);
          transform: translate3d(22px, 22px, 0);
}

.menu__burger.opened div {
  background-color: white;
}

.menu__burger.opened div:nth-child(2) {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.menu__burger.opened div:nth-child(4) {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.menu__burger.opened div:nth-child(6) {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.menu__burger.opened div:nth-child(8) {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.playgrounds {
  color: black;
}

.playgrounds h2 {
  margin-bottom: 7rem;
}

@media only screen and (max-width: 920px) {
  .playgrounds h2 {
    margin-bottom: 70px;
  }
}

.playgrounds .masked {
  position: absolute;
  z-index: 10;
}

.playgrounds ul {
  position: relative;
  font-size: 100px;
}

@media only screen and (max-width: 920px) {
  .playgrounds ul {
    font-size: 0;
    margin-bottom: 50px;
  }
}

.playgrounds ul li {
  position: relative;
}

@media only screen and (max-width: 920px) {
  .playgrounds ul li {
    font-size: 4.5rem;
    line-height: 4.5rem;
    position: absolute;
    height: 350px;
    top: 0;
  }

  .playgrounds ul li:first-child {
    position: relative;
  }
}

.playgrounds ul li span {
  cursor: pointer;
  position: relative;
  color: #F2F2F2;
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease;
  z-index: 10;
}

@media only screen and (max-width: 920px) {
  .playgrounds ul li span {
    position: absolute;
    display: block;
    bottom: 0;
    height: 160px;
  }
}

.playgrounds ul li div {
  pointer-events: none;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  width: 72.4rem;
  height: 72.4rem;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: scale(0.5);
       -o-transform: scale(0.5);
          transform: scale(0.5);
}

@media only screen and (min-width: 920.02px) {
  .playgrounds ul li div {
    margin-top: -56.2rem;
  }
}

.playgrounds ul li div img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 920px) {
  .playgrounds ul li div {
    left: 10px;
    width: 280px;
    height: 280px;
  }
}

.playgrounds__nav {
  position: relative;
  z-index: 20;
}

.playgrounds__nav svg {
  position: absolute;
  z-index: 20;
  opacity: 0;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.playgrounds__nav svg.active {
  opacity: 1;
}

.playgrounds__nav svg * {
  fill: #0033ff;
}

.playgrounds__nav-left {
  right: 62px;
  bottom: 0px;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.playgrounds__nav-right {
  right: 30px;
  bottom: 45px;
}

@media only screen and (min-width: 920.02px) {
  .clients {
    text-align: center;
  }
}

.clients__trame {
  display: none;
}

.clients .section__wrapper {
  height: 65rem;
}

@media only screen and (max-width: 920px) {
  .clients .section__wrapper {
    height: 420px;
  }
}

.clients h2 span {
  background-color: #f4f4f4;
}

@media only screen and (min-width: 920.02px) {
  .clients h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -1.3rem;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
  }
}

@media only screen and (max-width: 920px) {
  .clients h2 {
    margin-bottom: 120px;
  }
}

.clients img {
  display: block;
  position: absolute;
  height: auto;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0.5);
          transform: translate3d(-50%, -50%, 0) scale(0.5);
}

@media only screen and (max-width: 920px) {
  .clients img {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0.4);
            transform: translate3d(-50%, -50%, 0) scale(0.4);
  }
}

.clients__brands {
  line-height: 1;
  white-space: nowrap;
}

@media only screen and (min-width: 920.02px) {
  .clients__brands {
    position: absolute;
  }
}

@media only screen and (max-width: 920px) {
  .clients__brands {
    margin-top: 75px;
  }
}

.clients__brands ul {
  white-space: nowrap;
}

.clients__brands ul li {
  text-align: left;
  vertical-align: top;
  line-height: 1;
  display: inline-block;
  margin-right: 300px;
}

@media only screen and (max-width: 920px) {
  .clients__brands ul li {
    margin-right: 180px;
  }
}

@media only screen and (min-width: 920.02px) {
  .clients__brands:nth-of-type(1) {
    top: 14rem;
  }

  .clients__brands:nth-of-type(2) {
    top: 50rem;
  }
}

@media only screen and (min-width: 920.02px) {
  .services .section__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.services ul {
  position: relative;
  margin-top: 60px;
}

.services h2 {
  width: 40rem;
  text-align: left;
}

@media only screen and (min-width: 920.02px) {
  .services h2 {
    position: absolute;
    margin-left: auto;
    margin-right: 4.4rem;
  }
}

.services__item {
  position: relative;
  margin-bottom: 140px;
}

.services__item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 920px) {
  .services__item {
    padding-bottom: 10px;
    margin-bottom: 15px;
    overflow: hidden;
  }
}

@media only screen and (min-width: 920.02px) {
  .services__item .services__title {
    margin-left: 6.25%;
  }
}

@media only screen and (min-width: 920.02px) and (min-width: 920.02px) {
  .services__item:nth-child(1) .description {
    right: 4.4rem;
  }
}

@media only screen and (min-width: 920.02px) {
  .services__item:nth-child(2) .services__title {
    margin-left: 18.75%;
  }
}

@media only screen and (min-width: 920.02px) and (min-width: 920.02px) {
  .services__item:nth-child(2) .description {
    right: 4.4rem;
  }
}

@media only screen and (min-width: 920.02px) {
  .services__item:nth-child(3) .services__title {
    margin-left: 37.5%;
  }
}

@media only screen and (min-width: 920.02px) and (min-width: 920.02px) {
  .services__item:nth-child(3) .description {
    left: 62.5;
  }
}

@media only screen and (min-width: 920.02px) {
  .services__item:nth-child(4) .services__title {
    margin-left: 56.25%;
  }
}

@media only screen and (min-width: 920.02px) and (min-width: 920.02px) {
  .services__item:nth-child(4) .description {
    left: -81.818181818%;
  }
}

@media only screen and (min-width: 920.02px) {
  .services__item:nth-child(5) .services__title {
    margin-left: 6.25%;
  }
}

@media only screen and (min-width: 920.02px) and (min-width: 920.02px) {
  .services__item:nth-child(5) .description {
    right: 4.4rem;
  }
}

.services__item .title {
  font-size: 14rem;
  line-height: 0.93;
  color: #F4F4F4;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 920px) {
  .services__item .title {
    line-height: 6rem;
    font-size: 5rem;
    display: inline-block;
  }
}

.services__item .description {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media only screen and (min-width: 920.02px) {
  .services__item .description {
    top: 3.8rem;
    width: 40rem;
  }
}

@media only screen and (max-width: 920px) {
  .services__item .description {
    margin-top: 25px;
  }
}

.services__item-active .title {
  color: #0033ff;
}

.services__item-active .description {
  opacity: 1;
}

.services__item .num {
  position: absolute;
  color: #0033ff;
  font-size: 3.5rem;
}

@media only screen and (min-width: 920.02px) {
  .services__item .num {
    margin-left: -2.5rem;
    margin-top: -2.5rem;
  }
}

@media only screen and (max-width: 920px) {
  .services__item .num {
    font-size: 18px;
  }
}

.partners {
  color: white;
}

@media only screen and (min-width: 920.02px) {
  .partners .section__wrapper {
    height: 123.5rem;
  }
}

@media only screen and (max-width: 920px) {
  .partners h2 {
    margin-bottom: 60px;
  }
}

.partners__title {
  font-size: 6rem;
  color: #0033ff;
}

@media only screen and (min-width: 920.02px) {
  .partners__title {
    position: absolute;
    top: 70.4rem;
    left: 50%;
    font-size: 11rem;
  }

  .partners__title div {
    position: absolute;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
  }

  .partners__title div:nth-child(1) {
    margin-top: -11rem;
    margin-left: -12rem;
  }

  .partners__title div:nth-child(2) {
    margin-left: 19rem;
  }

  .partners__title div:nth-child(3) {
    margin-top: 11rem;
  }
}

.partners__title div {
  background-color: black;
  padding: 0 20px;
}

@media only screen and (max-width: 920px) {
  .partners__title {
    margin-bottom: 45px;
    margin-top: 30px;
    line-height: 6rem;
  }
}

.partners .description {
  color: #616161;
}

@media only screen and (min-width: 920.02px) {
  .partners .description {
    position: absolute;
    left: 55%;
    top: 20rem;
  }
}

.partners__name {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: .5rem;
  text-transform: uppercase;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

@media only screen and (max-width: 920px) {
  .partners__name {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 920.02px) {
  .partners__name {
    white-space: nowrap;
  }
}

.partners__description {
  font-size: 14px;
  color: #616161;
}

@media only screen and (min-width: 920.02px) {
  .partners__description {
    position: absolute;
    opacity: 0;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    pointer-events: none;
    top: 0;
    white-space: nowrap;
  }
}

.partners__item {
  position: relative;
  padding-left: 60px;
}

.partners__item a {
  color: white;
  font-weight: normal;
}

@media only screen and (min-width: 920.02px) {
  .partners__item {
    padding-left: 25px;
    position: absolute;
    margin-left: -5px;
  }
}

@media only screen and (max-width: 920px) {
  .partners__item {
    margin-bottom: 35px;
  }
}

.partners__item:before {
  content: '';
  position: absolute;
  border-radius: 100%;
  background-color: #0033ff;
}

@media only screen and (max-width: 920px) {
  .partners__item:before {
    left: 22px;
    top: 5px;
    width: 8px;
    height: 8px;
  }
}

@media only screen and (min-width: 920.02px) {
  .partners__item:before {
    width: 13px;
    height: 13px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transform: scale(0.61538);
         -o-transform: scale(0.61538);
            transform: scale(0.61538);
    left: -3px;
    top: 1px;
  }
}

@media only screen and (min-width: 920.02px) {
  .partners__item-1 {
    left: 13.2rem;
    top: 35.2rem;
  }

  .partners__item-2 {
    left: 22rem;
    top: 44rem;
  }

  .partners__item-3 {
    left: 13.2rem;
    top: 52.8rem;
  }

  .partners__item-4 {
    left: 8.8rem;
    top: 61.6rem;
  }

  .partners__item-5 {
    left: 17.6rem;
    top: 70.4rem;
  }

  .partners__item-6 {
    left: 8.8rem;
    top: 79.2rem;
  }

  .partners__item-7 {
    left: 22rem;
    top: 88rem;
  }

  .partners__item-8 {
    left: 8.8rem;
    top: 96.8rem;
  }

  .partners__item-9 {
    left: 52.8rem;
    top: 96.8rem;
  }

  .partners__item-10 {
    left: 83.6rem;
    top: 88rem;
  }

  .partners__item-11 {
    left: 101.2rem;
    top: 96.8rem;
  }

  .partners__item-12 {
    left: 110rem;
    top: 79.2rem;
  }

  .partners__item-13 {
    left: 114.4rem;
    top: 70.4rem;
  }

  .partners__item-14 {
    left: 101.2rem;
    top: 61.6rem;
  }

  .partners__item-15 {
    left: 101.2rem;
    top: 52.8rem;
  }

  .partners__item-16 {
    left: 114.4rem;
    top: 44rem;
  }

  .partners__item-17 {
    left: 96.8rem;
    top: 35.2rem;
  }

  .partners__item-18 {
    left: 66rem;
    top: 44rem;
  }

  .partners__item-19 {
    left: 57.2rem;
    top: 35.2rem;
  }
}

.contact .section__wrapper {
  padding: 0;
}

@media only screen and (min-width: 920.02px) {
  .contact .section__wrapper {
    height: 390px;
  }
}

.contact__newsletter {
  position: relative;
  padding: 0 6.25%;
  color: white;
  background-color: #0033ff;
  height: 270px;
}

.contact__newsletter .vcenter {
  width: 100%;
}

@media only screen and (min-width: 920.02px) {
  .contact__newsletter {
    float: left;
    width: 68.75%;
    height: 390px;
  }
}

@media only screen and (max-width: 920px) {
  .contact__newsletter {
    width: 100%;
  }
}

.contact__newsletter label {
  font-size: 15px;
  display: block;
}

@media only screen and (max-width: 920px) {
  .contact__newsletter label {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}

.contact__newsletter input[type=email] {
  font-size: 5rem;
  color: white;
  background-color: transparent;
  border: 0 !important;
  outline: 0;
  width: 100%;
  padding: 0;
  margin-bottom: 5px;
}

@media only screen and (max-width: 920px) {
  .contact__newsletter input[type=email] {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin: 0;
    margin-bottom: 8px;
  }
}

.contact__newsletter input::-webkit-input-placeholder {
  opacity: 0.3;
  color: white;
}

.contact__newsletter input:-ms-input-placeholder {
  opacity: 0.3;
  color: white;
}

.contact__newsletter input::-ms-input-placeholder {
  opacity: 0.3;
  color: white;
}

.contact__newsletter input::placeholder {
  opacity: 0.3;
  color: white;
}

.contact__logo {
  padding: 6.25%;
  background-color: white;
}

.contact__logo img {
  width: 70%;
  height: auto;
  max-width: 247px;
}

@media only screen and (min-width: 920.02px) {
  .contact__logo {
    padding: 0;
    width: 31.25%;
    height: 390px;
    float: left;
  }

  .contact__logo .vcenter_wrapper {
    text-align: center;
  }
}

@media only screen and (max-width: 920px) {
  .contact__logo {
    text-align: center;
    width: 100%;
    height: 345px;
  }
}

.contact__submit {
  cursor: pointer;
  opacity: .3;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.contact__submit input[type=submit] {
  display: none;
}

.contact__rgpd {
  font-size: 11px;
  line-height: 18px;
  color: white;
  opacity: 0.4;
  width: 80%;
  bottom: 50px;
  position: absolute;
}

form#sib_signup_form_1 .label_rgpd {
  display: block !important;
}

form#sib_signup_form_1 .input_rgpd {
  display: inline-block;
  width: auto;
  margin-bottom: 5px;
}

@media only screen and (min-width: 920.02px) {
  .no-touch .partners__item:hover.partners__item-hasdesc .partners__description {
    opacity: 1;
    -webkit-transform: translate3d(0, 12px, 0);
            transform: translate3d(0, 12px, 0);
  }

  .no-touch .partners__item:hover.partners__item-hasdesc .partners__name {
    -webkit-transform: translate3d(0, -13px, 0);
            transform: translate3d(0, -13px, 0);
  }

  .no-touch .partners__item:hover:before {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}

body#tinymce {
  margin: 12px !important;
}


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