@charset "UTF-8";
/*--------------------LOADER--------------------*/
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.img-loader {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader-container.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 120px;
  height: 120px;
  border: 16px solid #e5e5e5;
  border-top: 16px solid #e6BA5A;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: loader 1s linear infinite;
}

@keyframes loader {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*----------------------COLONNES-------------------------*/
.col--center {
  width: 80%;
  margin: 0 auto;
}

.colonnes--texte {
  width: 83%;
  margin-left: 10%;
  padding-bottom: 4em;
  color: #214056;
}

/*-----------------------LIENS--------------------------*/
a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #ffc107;
}

.link--gold {
  color: #ffc107;
}

.link--gold:hover {
  color: #83bdd9;
}

.link--discover {
  color: #fff;
  animation: fadeinout 3s 0.5s infinite;
}

@keyframes fadeinout {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.color {
  color: #fff;
}

.small__txt {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
  text-align: center;
  margin-top: 7em;
}

.detail__margin {
  margin-top: -3em;
}

.discover {
  color: #83bdd9;
  z-index: 100;
}

.discover:hover {
  color: #e6ba5a;
}

/*--------------------Menu navigation--------------------------*/
.menu--logo {
  position: fixed;
  top: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  display: block;
  z-index: 2;
}

.burger {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 3.45em;
  position: fixed;
  height: 2.8em;
  right: 4px;
  top: 0;
  padding: 2em 1em 0;
  z-index: 104;
}

@media (min-width: 600px) {
  .burger {
    display: none;
  }
}

.burger.close {
  animation: 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards burgerClose;
}

.burger__el {
  right: 0;
  width: 1.5em;
  height: 0.2em;
  background-color: #ffc107;
  margin-bottom: 0.3em;
  transition: transform 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.burger__el:nth-child(0n+2) {
  background-color: #83bdd9;
}

.burger__el:nth-child(3) {
  margin-bottom: 0;
}

.burger.open {
  width: 100%;
  background: #83bdd9;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 2;
  animation: 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards burgerOpen;
}

.burger.open .burger__el:nth-child(1) {
  position: absolute;
  top: 2.3em;
  right: 1em;
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.burger.open .burger__el:nth-child(2) {
  display: none;
}

.burger.open .burger__el:nth-child(3) {
  position: absolute;
  top: 2.3em;
  right: 1em;
  transform: rotate(-45deg);
  transition: transform 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.containerNav {
  position: relative;
}

.containerNav.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 5;
}

.navigation {
  position: fixed;
  width: 80.8197%;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}

.navigation.fixed {
  width: 95.0951%;
  margin: 0 auto;
}

@media (min-width: 1000px) {
  .navigation.fixed {
    width: 96%;
    max-width: 72em;
  }
}

@media (min-width: 600px) {
  .navigation {
    display: -ms-flexbox;
    display: flex;
    position: static;
    transform: translateX(0);
    width: 100%;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style: none;
  }
}

.navigation.hidden {
  display: none;
}

@media (min-width: 600px) {
  .navigation.hidden {
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 600px) {
  .navigation__ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    width: 73.68421%;
    list-style: none;
  }
}

@media (min-width: 700px) {
  .navigation__ul {
    width: 56.63158%;
  }
}

@media (min-width: 1000px) {
  .navigation__ul {
    width: 41.66667%;
  }
}

@media (min-width: 1200px) {
  .navigation__ul {
    width: 37.36111%;
  }
}

.navigation__link {
  list-style: none;
  color: #fff;
  padding: 2em;
  font-size: 20px;
  transition: color 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@media (min-width: 600px) {
  .navigation__link {
    border-bottom: none;
    list-style: none;
  }
}

@media (min-width: 900px) {
  .navigation__link {
    font-size: 23px;
  }
}

.navigation:hover, .navigation:focus {
  transition: color 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  outline: none;
  color: #f6db72;
}

.navigation:last-child .navigation__link {
  border-bottom: none;
  list-style: none;
}

.navigation--active {
  color: #f6db72;
}

.navigation__ul li {
  list-style: none;
  text-align: center;
  margin-bottom: 3em;
}

.navigation__ul li.navigation__gallery:first-child {
  margin-top: 13em;
}

@media (min-width: 600px) {
  .navigation__ul li.navigation__gallery:first-child {
    margin-top: 0;
  }
}

@keyframes burgerOpen {
  from {
    width: 3.45em;
  }
  to {
    height: 100%;
    width: 100%;
  }
}

@keyframes burgerClose {
  0% {
    height: 100%;
    width: 100%;
    background-color: #83bdd9;
    z-index: 3;
  }
  99% {
    height: 100%;
    z-index: 2;
  }
  100% {
    height: initial;
    width: 3.45em;
    background-color: transparent;
  }
}

/*--------------------------PAGE D'ACCUEIL----------------------------------*/
.cb-slideshow,
.cb-slideshow:after {
  position: fixed;
  width: 100%;
  height: 100%;
  top: -1px;
  left: 0px;
  z-index: -10;
}

.cb-slideshow:after {
  content: '';
  background: transparent url(../assets/images/pattern.png) repeat top left;
  z-index: 0;
}

.cb-slideshow li {
  list-style: none;
}

.cb-slideshow li span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -16px;
  left: 0px;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  list-style: none;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  animation: imageAnimation 36s linear infinite 0s;
}

.cb-slideshow li div {
  z-index: 1000;
  position: absolute;
  bottom: 30px;
  left: 0px;
  width: 100%;
  text-align: center;
  opacity: 0;
  color: #fff;
  list-style: none;
  animation: titleAnimation 36s linear infinite 0s;
}

.cb-slideshow li:nth-child(1) span {
  background-image: url(../assets/images/slide1.png);
}

.cb-slideshow li:nth-child(2) span {
  background-image: url(../assets/images/slide2.png);
  animation-delay: 6s;
}

.cb-slideshow li:nth-child(3) span {
  background-image: url(../assets/images/slide3.png);
  background-size: auto;
  background-repeat: no-repeat;
  animation-delay: 12s;
}

.cb-slideshow li:nth-child(4) span {
  background-image: url(../assets/images/slide4.png);
  animation-delay: 18s;
}

.cb-slideshow li:nth-child(5) span {
  background-image: url(../assets/images/slide5.png);
  animation-delay: 24s;
}

.cb-slideshow li:nth-child(6) span {
  background-image: url(../assets/images/slide6.png);
  animation-delay: 30s;
}

.cb-slideshow li:nth-child(2) div {
  animation-delay: 4s;
}

.cb-slideshow li:nth-child(3) div {
  animation-delay: 10s;
}

.cb-slideshow li:nth-child(4) div {
  animation-delay: 16s;
}

.cb-slideshow li:nth-child(5) div {
  animation-delay: 22s;
}

.cb-slideshow li:nth-child(6) div {
  animation-delay: 28s;
}

@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.no-cssanimations .cb-slideshow li span {
  opacity: 1;
}

/*--------------------------FOOTER----------------------------------*/
footer {
  padding: 10px 0 8px 0;
  margin-top: 95px;
  text-align: center;
}

small {
  font-size: 16px;
}

.footer__el {
  list-style: none;
  display: inline-block;
  margin: 8px;
}

.footer__el:first-child {
  margin-left: -20px;
}

html {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  margin: 0 auto;
}

.container {
  position: relative;
  margin: 0 auto;
  max-width: 1300px;
  width: 90%;
}

.title {
  font-family: 'Rochester', cursive;
  color: #fff;
  font-size: 60px;
  margin-bottom: 90px;
  text-align: center;
  margin-top: 2.1em;
}

@media (min-width: 800px) {
  .title {
    font-size: 65px;
  }
}

@media (min-width: 1000px) {
  .title {
    font-size: 100px;
  }
  .col--center {
    width: 58%;
    line-height: 2;
  }
}

.title--home {
  margin-top: 2.1em;
}

.title--tab {
  font-family: 'Rochester', cursive;
  font-size: 40px;
  color: #214056;
  text-align: left;
}

.title--valeurs {
  font-size: 36px;
}

.title--bio {
  margin-top: .5em;
}

.title--404 {
  font-family: 'Rochester', cursive;
  font-size: 159px;
  text-align: center;
  color: #fff;
  margin: auto;
  padding-top: 1em;
}

.content a {
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 96px;
  left: 0;
  height: 29em;
  bottom: 46px;
  cursor: pointer;
  display: block;
}

.text--banner {
  position: fixed;
}

/*-------------------- PAGE GALERIE --------------------------*/
.jeunesse, .Ans1920, .Ans1926, .Ans27-30, .Ans1930, .Ans1965, .idea
, .design, .development {
  position: relative;
}

.legend {
  display: block;
  width: 47%;
  background-color: #52acd2;
  opacity: 0.8;
  margin-top: 6em;
  margin-left: 58%;
}

.legend__el {
  padding: 1em;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}

.picture {
  width: 130%;
  margin-left: -15%;
}

.picture--fire {
  background-color: #fdce5f;
}

.picture--homme {
  background-color: #cad8db;
}

.picture--retour {
  background-color: #83bdd9;
}

.picture--georgette {
  background-color: #78a680;
}

.picture--valeurs {
  background-color: #f094a2;
}

.img--gsm {
  width: 100%;
  padding-top: 1em;
}

.dates {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  float: right;
  color: #214056;
  margin-top: -4.5em;
  margin-right: 0.4em;
}

#myVideo, #myDesktopVideo, #AboutVid {
  width: 100%;
}

.link--bio a {
  width: 100%;
  height: 16.5em;
  z-index: 102;
  position: absolute;
  top: -4em;
  left: 0;
  bottom: 10em;
  cursor: pointer;
  display: block;
}

.txt__banner {
  margin-top: -13.1em;
  padding-bottom: 0.01em;
}

.gallery--desktop {
  display: none;
}

.text--jeunesse {
  margin-left: 10%;
  padding-bottom: 4em;
  color: #214056;
}

.banner--text {
  width: 54%;
  margin: 0 auto;
}

.txt--smallBanner {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 5em;
}

/*-------------------- PAGE annexes gallery --------------------------*/
.section--fire, .section--men, .section--retour, .section--georgette, .section--valeurs {
  position: relative;
  height: 100%;
  clear: both;
  overflow: hidden;
}

.indication {
  text-align: left;
  font-size: 15px;
}

.indication--center {
  text-align: center;
}

.indication--fire {
  margin-top: -3em;
}

.img--desktop {
  width: 100%;
  margin-top: 7em;
}

.section--suite {
  margin-top: 1.4em;
}

.discover {
  list-style: none;
  text-align: center;
}

.discover a {
  color: #83bdd9;
}

.discover a:hover {
  color: #ffc107;
}

.img--contain {
  height: 20em;
  width: 100%;
  position: relative;
}

.zoo-item .zoo-img {
  background-position: top left;
  background-size: contain;
  display: block;
}

.footer--color {
  background-color: #83bdd9;
  margin-top: 40px;
}

.small__bn--bio {
  position: relative;
}

.text--fire {
  margin-top: 12em;
}

/*----------------------------BACKGROUND--------------------------------*/
.back {
  background: url(../assets/images/retourSD.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.back--retina {
  background-image: url(../assets/images/retourSD@2x.png);
  background-size: 100% 152%;
}

.slideshow {
  display: none;
}

.banner__gallery {
  background: url(../assets/images/sangSD.png) center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
}

.banner__gallery--retina {
  background: url(../assets/images/sangSD@2x.png) center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 90vh;
}

.shadow__banner {
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
}

.gallery--mobile {
  display: block;
  position: relative;
  background-color: #fff;
}

#myDesktopVideo, #myBioVid {
  display: none;
}

/*--------------------------PAGE BIOGRAPHIE--------------------------*/
.hover__bio {
  display: block;
  text-align: center;
  transition: .3s ease-in-out;
  opacity: 0;
  font-size: 12px;
  width: 70%;
  margin-left: 15%;
}

figure:hover + span {
  opacity: 1;
}

.jeunesse, .Ans1920, .Ans1926, .Ans27-30, .Ans1930, .Ans1965, .idea
, .design, .development {
  position: relative;
}

#myBioVid--mobile {
  width: 100%;
  margin-top: -4em;
}

.text--bio {
  margin-top: -2em;
}

.pictures {
  width: 130%;
  margin-left: -15%;
}

.bio--dates {
  font-weight: 800;
  text-align: center;
}

.quotes {
  font-family: 'Rochester',cursive;
  font-size: 18px;
  text-align: center;
  color: #214056;
}

.quotes:before {
  content: '«';
  color: #e6ba5a;
  font-size: 25px;
}

.quotes:after {
  content: '»';
  color: #e6ba5a;
  font-size: 25px;
}

.end__quotes {
  margin-top: -2.5em;
}

.rene {
  width: 115%;
  margin-left: -2.2em;
}

.back__gallery {
  position: relative;
  background: url(../assets/images/backG.png) center no-repeat;
  background-size: cover;
  height: 15em;
  margin-top: 4em;
}

.back__gallery--retina {
  background-image: url(../assets/images/backG@2x.png);
  background-size: cover;
}

.link--gallery a {
  width: 100%;
  height: 14.5em;
  z-index: 102;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 10em;
  cursor: pointer;
  display: block;
}

.textMini--banner {
  padding-top: 2em;
}

.small__txt2 {
  position: absolute;
  top: 9em;
  width: 40em;
}

.footer--biographie {
  margin-top: 0;
}

/*--------------------------PAGE CASE STUDY--------------------------*/
.banner__case {
  background: url(../assets/images/banner__case.jpg) center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 85vh;
}

.banner__case--retina {
  background: url(../assets/images/banner__case@2x.jpg) center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 85vh;
}

.img--case {
  width: 78%;
  margin-left: 2.5em;
}

/*--------------------------PAGE A PROPOS--------------------------*/
#aboutVid--desktop {
  display: none;
}

#aboutVid--mobile {
  width: 100%;
  margin-top: -21em;
  z-index: -1;
}

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

.footer--about {
  margin-top: -2em;
}

.credits__el {
  list-style: none;
}

.far {
  font-size: 16px;
}

/*-------------------------------PAGE 404--------------------------------*/
.page__404 {
  background: url(../assets/images/presages.png) center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
}

.page__404--retina {
  background-image: url(../assets/images/presages@2x.png);
  background-size: 100% 100%;
}

/*---------------------------éléments transition----------------------*/
.transition {
  width: 100%;
  height: 100%;
  z-index: 105;
  position: fixed;
  top: 0;
  right: -100%;
  overflow: hidden;
}

.bleu {
  width: 100%;
  height: 100vh;
  background: url(../assets/images/cloud.png) no-repeat;
  background-size: cover;
  background-color: blue;
  position: absolute;
  top: 0;
  left: 0;
}

.blanc {
  width: 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
}

.anim-transition {
  animation: page 2s both;
}

.anim-transition .bleu {
  animation: opacity 1s 2s both;
}

@keyframes page {
  50% {
    transform: translateX(-100%);
    position: fixed;
  }
  100% {
    transform: translateX(-100%);
    position: fixed;
  }
}

@keyframes opacity {
  100% {
    opacity: 0.2;
  }
}

.hide {
  display: none;
}

.transition--fire, .transition--men, .transition--bird, .transition--women, .transition--valeurs {
  width: 100%;
  height: 100%;
  z-index: 104;
  position: fixed;
  top: 100%;
  right: 0%;
  overflow: hidden;
  background-color: #fdce5f;
}

.water {
  background-color: #cad8db;
}

.bird {
  background-color: #83bdd9;
}

.women {
  background-color: #78a680;
}

.valeurs {
  background-color: #f094a2;
}

.anim-fire {
  animation: feu 1s linear forwards;
}

@keyframes feu {
  0% {
    top: 100%;
  }
  100% {
    top: 0%;
  }
}

.anim-water {
  animation: water 1s linear forwards;
}

@keyframes water {
  0% {
    top: -100%;
  }
  100% {
    top: 0%;
  }
}

.anim-bird {
  animation: bird 1s linear forwards;
}

@keyframes bird {
  0% {
    top: 0%;
    right: -100%;
  }
  100% {
    top: 0%;
    right: 0%;
  }
}

.anim-women {
  animation: women 1s linear forwards;
}

@keyframes women {
  0% {
    top: 0%;
    right: 100%;
  }
  100% {
    top: 0%;
    right: 0%;
  }
}

/*----------------------------MEDIA QUERIES--------------------------------*/
@media (min-width: 450px) {
  .back {
    background: url(../assets/images/retour-bg.png) center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .back--retina {
    background-image: url(../assets/images/retour-bg@2x.png);
    background-size: 100% 100%;
  }
}

@media (min-width: 600px) {
  body {
    font-size: 18px;
  }
  .link--discover {
    color: #e6ba5a;
  }
  .nav__color {
    background-color: #83bdd9;
    height: 4em;
  }
}

@media (min-width: 700px) {
  .container--2 {
    width: 80%;
  }
  .banner__galerie {
    background: url(../assets/images/sang-bg.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .banner__bio {
    background: url(../assets/images/filsBS.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .gallery--mobile {
    display: none;
  }
  .gallery--desktop {
    display: block;
    position: relative;
    background-color: #fff;
    width: 100%;
    height: 100%;
  }
  .gallery {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    overflow: hidden;
  }
  .gallery__el {
    width: 30%;
    list-style: none;
    margin-top: 3em;
  }
  .gallery__el:nth-child(0n+3) {
    width: 28%;
  }
  .gallery__el:last-child {
    width: 29%;
    margin-top: 6em;
  }
  .gallery--text, .gallery--dates {
    font-weight: 900;
    text-transform: uppercase;
  }
  .gallery__el a {
    color: #83bdd9;
    text-align: center;
  }
  .gallery__el a:hover {
    color: #ffc107;
  }
  .gallery--dates {
    text-transform: uppercase;
    font-size: 10px;
    color: #214056;
  }
  .title {
    margin-top: 0.5em;
  }
}

@media (min-width: 760px) {
  .title {
    margin-bottom: 44px;
  }
  .title--bio {
    margin-top: 1em;
  }
  .slideshow {
    display: block;
  }
  .img--ducase {
    width: 40%;
    float: left;
    margin-top: 9em;
    margin-left: 3em;
  }
  .text--fire {
    float: right;
    width: 45%;
    margin-top: 5em;
  }
  .text--men {
    margin-top: 6em;
  }
  .text--bird {
    margin-top: 3em;
  }
  .dates {
    float: none;
  }
  .txt--tableau {
    margin-left: 0;
  }
  .title--tab:after {
    content: "";
    width: 30%;
    height: 2px;
    background-color: #ffc107;
    position: absolute;
    top: 4.6em;
    right: 4.3em;
  }
  .title--tab--bird:after {
    content: "";
    width: 30%;
    height: 2px;
    background-color: #ffc107;
    position: absolute;
    top: 3.9em;
    right: 4.3em;
  }
  .title--tab--case:after {
    content: "";
    width: 30%;
    height: 2px;
    background-color: #ffc107;
    position: absolute;
    top: 6.3em;
    right: 4.3em;
  }
  .title--men:after {
    content: "";
    width: 30%;
    height: 2px;
    background-color: #83bdd9;
    position: absolute;
    top: 5.3em;
    right: 4.3em;
    transition: transform 1100ms ease-in-out;
    transform: scaleX(0);
    transform: scaleX(1);
    transition-delay: 200ms;
  }
  footer {
    margin-top: 21px;
  }
  .flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex--footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .banner__gallery {
    background: url(../assets/images/sang-bg.png) center no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  .banner__gallery--retina {
    background: url(../assets/images/sang-bg@2x.png) center no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  #myVideo, #myBioVid--mobile {
    display: none;
  }
  #myDesktopVideo {
    display: block;
  }
  #myBioVid {
    display: block;
    width: 100%;
    margin-top: -7em;
    z-index: -1;
    position: absolute;
  }
  #aboutVid--desktop {
    display: block;
    width: 100%;
    margin-top: -22em;
  }
  .text--bio {
    margin-top: 0;
  }
  .footer--color {
    margin-top: 20px;
  }
  .footer--gallery {
    margin-top: 60px;
  }
  .footer--biographie {
    margin-top: 0;
  }
  #aboutVid--mobile {
    display: none;
  }
  .legend {
    margin-left: 111%;
    margin-top: 12em;
  }
  .img--contain2 {
    height: 30em;
  }
  .img--contain {
    width: 40%;
    position: relative;
    display: inline-block;
  }
  .zoo-image {
    background-position: center;
    background-size: 100%,100%;
  }
  .img--desktop2 {
    margin-top: 10em;
  }
}

@media (min-width: 900px) {
  .jeunesse {
    margin-top: 26em;
  }
  .content a {
    height: 27em;
  }
  .txt__banner {
    width: 60%;
    font-weight: 600;
    text-align: center;
    font-size: 20px;
    margin-left: 12em;
  }
  .pictures--magritte {
    width: 140%;
    margin-top: 5em;
  }
  .bio--dates {
    font-size: 30px;
    text-align: left;
  }
  .col--center {
    width: 45%;
    line-height: 2;
  }
  .colonnes--Bscreen {
    width: 110%;
  }
  .text--jeunesse {
    margin-top: 3em;
    margin-left: 13%;
  }
  .jeunesse, .Ans1920, .Ans1926, .Ans27-30, .design, .bigS--about {
    display: -ms-flexbox;
    display: flex;
  }
  .hover__bio {
    position: absolute;
    bottom: 1.5em;
  }
  .hover--magritte {
    left: -22em;
  }
  .pictures--chirico {
    width: 76%;
    margin-left: 23%;
  }
  .hover--chirico {
    right: -10em;
    bottom: -0.5em;
  }
  .quotes {
    font-size: 26px;
    width: 57%;
    margin-left: 21%;
  }
  .pictures--surrealistes {
    width: 96%;
    margin-left: -7%;
  }
  .text--surrealistes {
    margin-left: 0;
    width: 245%;
  }
  .hover--surrealistes {
    left: -10em;
    bottom: -1.5em;
    width: 40%;
  }
  .pictures--mots {
    width: 66%;
    margin-left: 34%;
    padding-bottom: 2em;
  }
  .text--mots {
    margin-left: 0;
    width: 61%;
    margin-top: 2em;
  }
  .hover--mots {
    right: 5em;
    bottom: 0.5em;
    width: 27%;
  }
  .texte--end {
    width: 70%;
    margin-left: 10em;
  }
  .pictures--rene {
    width: 80%;
    margin-left: 9%;
  }
  .texte--end2 {
    width: 46%;
    margin-left: 29em;
    padding-bottom: 4em;
  }
  .img--valeurs {
    padding-top: 3em;
  }
  .textMini--banner {
    padding-top: 2em;
    width: 49%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding-left: 1em;
  }
  .small__txt2 {
    top: 11em;
    left: 10em;
  }
  .text__case {
    width: 40%;
    margin-left: 31%;
  }
  .text__tab {
    height: 30em;
    width: 45%;
    margin-left: 35em;
    padding-top: 8em;
  }
  .idea, .design {
    margin-top: 4em;
  }
  .subject {
    margin-top: -9em;
  }
  .txt__subject {
    margin-left: 0em;
  }
  .design {
    margin-top: 13em;
  }
  .img--case {
    width: 40%;
    height: 40em;
    margin-left: 14%;
    margin-top: 3em;
  }
  .text__case--left {
    margin-left: 4%;
    width: 40%;
  }
  .big--col {
    width: 65%;
    margin-left: 12em;
  }
  .big--col2 {
    width: 50%;
    margin-left: 20em;
  }
  .big--col3 {
    margin-left: 8em;
    margin-top: 3em;
    padding-bottom: 0;
  }
  .img--about {
    display: block;
    width: 50%;
    height: 10%;
    margin-top: 1em;
  }
  .txt--about {
    float: right;
    display: block;
    width: 38%;
    padding: 1em 1em 1em 1.5em;
    margin-left: 0;
    margin-top: 6em;
    margin-bottom: 6em;
  }
  .title--banner {
    margin: 0.5em 0 0 4em;
  }
  .banner--text {
    position: absolute;
    left: 23em;
  }
}

@media (max-width: 1000px) {
  .gallery {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .gallery__el {
    margin: 3em 30% 0 29%;
  }
}

@media (min-width: 1400px) {
  .title--BigScreen {
    font-size: 120px;
    padding-bottom: 0.5em;
  }
  .txt--BigScreen {
    font-size: 20px;
    padding-bottom: 1em;
  }
  .footer__el {
    font-size: 20px;
  }
  .title--banner {
    padding-top: 1em;
  }
  .txt--smallBanner {
    margin-top: -11em;
    font-size: 33px;
  }
  .bio--wrap {
    margin-top: 34em;
  }
  .banner__gallery {
    height: 70vh;
  }
  .footer--gallery {
    margin-top: 22px;
  }
}

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