/* FORMATAGE DE BASE
-------------------------------------------------*/

/* TAILLE RÉFÉRENCE - root em (1rem = 16px) */
html{
  font-size: 16px;
}

/* POLICE PAR DÉFAUT */
body {
  font-family: 'Rubik', sans-serif;
  font-size: inherit;
  font-weight: 300;
  line-height: 1.4;
  background-color: #FFFFF0;
}

/* TITRES */
h1, h2 {
  font-family: 'Yeseva One', cursive;
  line-height: 1.2;
}
h1 {
  font-size: 3.75em;
}

/* PARAGRAPHES */
p {
  margin-bottom: 1em;
}

/* IMAGES */
img {
  width: 100%;
  height: auto;
}


/* CLASSES EN COMMUN
-------------------------------------------------*/
/* TYPO
......................................*/

/* POLICE RUBIK */
.rubik {
  font-family: 'Rubik', sans-serif;
}

/* POLICE YESEVA */
.yeseva {
  font-family: 'Yeseva One', cursive;
}

/* STYLE POLICE */
.italic, i {
  font-style: italic;
}

/* TRANSFORM */
.uppercase {
  text-transform: uppercase;
}

/* FONT WEIGHT */
.light { font-weight: 300;}
.medium { font-weight: 500;}

/* FONT SIZE */
.text-12 { font-size: 0.75rem; }
.text-14 { font-size: 0.875rem; }
.text-16 { font-size: 1rem; } /* root em = 16px */
.text-20 { font-size: 1.25rem; }
.text-24 { font-size: 1.5rem; }
.text-30 { font-size: 1.875rem; }
.text-60 { font-size: 3.75rem; }

/* ALIGNEMENT TEXTE */
.text-center {text-align: center;}
.text-left {text-align: left;}
.text-right {text-align: right;}


/* COULEUR TEXTE */
.text-black {color: #000;}
.text-white {color: #fff;}
.text-green {color: #46B4B0}

/* TITRES à compléter */

.titre-section {
  font-family: 'Yeseva One', cursive;
  font-size: 1.875em;
  line-height: normal;
  text-align: center;
}

.titre-petit {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #46B4B0;
  margin-bottom: 1rem;
}


/* BOX MODEL
......................................*/

/* LARGEURS */

.container {
  margin: auto;
  width: 21.875rem; /* =350px */
}

.width-4col {width: 21.875rem;} /* =350px */
.width-8col {width: 45.625rem;} /* =730px */
.width-12col {width: 69.375rem;} /* =1110px */


/* BLOCS CENTRES */
.block-center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* DISPLAY */
.block {display: block;}
.inline {display: inline;}
.inline-block {display: inline-block;}
.flex {display: flex; flex-wrap: wrap; justify-content: space-between;}
.flex-align-center {align-items: center;}

/* POSITIONS */
.pos-absolute {position: absolute;}
.pos-relative {position: relative;}
.center {margin: auto}
.vertical-middle { position: absolute; top: 50%; transform: translateY(-50%); }
.horizontal-vertical-middle { position: absolute; width: 80%; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* PADDINGS */
.pad-bot-12 {padding-bottom: 0.75rem;}
.pad-bot-20 {padding-bottom: 1.25rem;}
.pad-bot-30 {padding-bottom: 1.875rem;}
.pad-bot-50 {padding-bottom: 3.125rem;}
.pad-bot-100 {padding-bottom: 6.25rem;}

/* MARGINS */
.mar-top-30 {margin-top: 1.875rem;}
.mar-bot-0 {margin-bottom: 0;}
.mar-bot-6 {margin-bottom: 0.375rem;}
.mar-right-12 {margin-right: 0.75rem;}


/* FORMULAIRES
......................................*/
form p {
  width: 21.875rem; /* =350px */
  color: #46B4B0;
}

input, textarea, select {
  width: 21.875rem; /* =350px */
  height: 1.875rem;
  border: 1px solid;
  border-color: #9FD9D7; /* +-= vert à 50% car rgba ne marche pas */
  border-radius: 0.3rem;
  color: rgba(70, 180, 176);
  font-size: 1rem;
  padding: 0 1rem 0;
  transition: border-color 0.2s;
}

input:hover, textarea:hover, select:hover {
  border-color: #46B4B0; /* +-= vert à 50% car rgba ne marche pas */
}

.footer-newsletter input, .footer-newsletter textarea {
  border-color: #46B4B0;
}

textarea {
  height: auto;
  padding-top: 0.3rem;
}

label {
  display: block;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-family: 'Rubik', sans-serif;
    color: #46B4B0;
    opacity: 0.5; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-family: 'Rubik', sans-serif;
    color: #46B4B0;
}
::-ms-input-placeholder { /* Microsoft Edge */
    font-family: 'Rubik', sans-serif;
    color: #46B4B0;
}

input[type="submit"] {
  width: 10rem;
  margin-top: 1.875rem;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  cursor: pointer;
}

/* MESSAGES D'ERREUR / DE VALIDATION */

span.wpcf7-not-valid-tip {
    color: DeepPink;
    font-weight: 300;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-spam-blocked {
  border: none;
}

div.wpcf7-response-output {
  margin: 0 auto;
  padding: 0.5em 0.5em;
  background-color: DeepPink;
  color: #fff;
  text-align: center;
  border-radius: 0.3rem;
}

div.wpcf7-response-output.wpcf7-mail-sent-ok {
  border: none;
  background-color: yellowgreen;
}

      /* CUSTOM CHECKBOX / RADIO BUTTON */

      /* Hide the browser's default checkbox / radio button */
      input[type="checkbox"],
      input[type="radio"] {
        position: absolute;
        opacity: 0;
        left: -2.5rem;
        z-index: 2;
        cursor: pointer;
      }

      form .wpcf7-list-item {
        cursor: pointer;
        margin: 0;
      }

      .form-radio .wpcf7-list-item:first-child {
        margin-top: 0.75rem;
      }

      .form-radio .wpcf7-list-item:last-child {
        padding-bottom: 0.875rem;
      }

      /* Customize the label */
      .form-checkbox label {
        margin-left: 2.375rem;
        position: relative;
      }

      .form-radio .wpcf7-list-item {
        margin-left: 2.375rem;
        position: relative;
        display: block;
        margin-bottom: 0.75rem;
      }

      .radio-m-mme .form-radio .wpcf7-list-item {
        display: inline-block;
      }

      .radio-m-mme .form-radio .wpcf7-list-item {
        padding-bottom: 0;
      }

      .radio-m-mme .form-radio .wpcf7-list-item-label {
        margin-right: 1rem;
      }

      /* Create a custom checkbox */
      .form-checkbox .wpcf7-list-item label::before {
        position: absolute;
        top: -0.188rem;
        left: 0;
        margin-left: -2.375rem;
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 1.875rem;
        height: 1.875rem;
        border: 1px solid #9FD9D7;
        border-radius: 0.3rem;
        margin-right: 0.5rem;
        background-color: white;
        transition: border-color 0.2s;
      }

      /* Create a custom radio button */
      .form-radio .wpcf7-list-item span.wpcf7-list-item-label::before {
        position: absolute;
        top: -0.05rem;
        left: 0;
        margin-left: -2.375rem;
        display: inline-block;
        vertical-align: middle;
        width: 1.5rem;
        height: 1.5rem;
        border: 1px solid #9FD9D7;
        border-radius: 50%;
        margin-right: 0.5rem;
        background-color: white;
        transition: border-color 0.2s;
      }

      /* On mouse-over, change border-color */
      .form-checkbox .wpcf7-list-item:hover label::before,
      .form-radio .wpcf7-list-item:hover span.wpcf7-list-item-label::before {
        border-color: #46B4B0;
      }

      /* Create the checkmark/indicator (hidden when not checked) */
      .form-checkbox .wpcf7-list-item-label:after,
      .form-radio .wpcf7-list-item-label:after {
        content: "";
        position: absolute;
        display: none;
      }

      /* Show the checkmark / circle when checked */
      .form-checkbox label input:checked ~ span.wpcf7-list-item-label:after,
      .form-radio input:checked ~ span.wpcf7-list-item-label:after {
        display: block;
      }

      /* Style the checkmark */
      .form-checkbox label span.wpcf7-list-item-label:after {
        left: -1.75rem;
        top: 0;
        width: 10px;
        height: 20px;
        border: solid #46B4B0;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
      }

      /* Style the indicator (dot/circle) */
      .form-radio span.wpcf7-list-item-label:after {
        top: -0.05rem;
        left: -2.375rem;
        width: 1.5rem;
        height: 1.5rem;
        border: 8px solid #46B4B0;
        border-radius: 50%;
        background: white;
      }

      .wpcf7-list-item-label {
        vertical-align: middle;
      }


/* ELEMENTS DIVERS
......................................*/

/* BOUTON VERT */
.green-btn {
  display: inline-block;
  width: auto;
  border: none;
  height: 1.875rem;
  padding: 0.3rem 0.75rem;
  border-radius: 0.3rem;
  background-color: rgba(70,180,176,0.8);
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  margin: auto;
  -moz-box-shadow:    0 0 20px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.2);
  box-shadow:         2px 2px 12px rgba(0,0,0,0.2);
  -webkit-transition: background-color 0.5s; /* Safari */
  transition: background-color 0.2s, box-shadow 0.2s;
}

.green-btn:hover {
  background-color: rgba(70,180,176,1);
}

.green-btn:active {
  background-color: rgba(70,180,176,1);
  -moz-box-shadow:    inset 0 0 20px rgba(0,0,0,0.2);
  -webkit-box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
  box-shadow:         inset 2 2 12px rgba(0,0,0,0.2);
}

/* OVERLAY */
.overlay {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.75);
}


/* MISE EN PAGE
-------------------------------------------------*/
/* HEADER
......................................*/

/*HEADER*/

header {
  height: 60px;
  width: 100%;
  padding: 0 1.25rem;
  background-color: #46B4B0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  -moz-box-shadow:    0 5px 30px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 5px 30px rgba(0,0,0,0.2);
  box-shadow:         0 5px 30px rgba(0,0,0,0.2);
}

menu {
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 0.625rem; /* = 10px */
  text-align: center;
}

/*LOGO FIGURE*/

img#logo {
  width: 184px;
  margin-right: 1.25rem;
}

a#hamburger img {
  width: 27px;
  padding-bottom: 0.313rem;
  opacity: 0.8;
}

a#hamburger img:hover {
  opacity: 1;
}


/* COPIÉ-COLLÉ DE L'EXEMPLE DE SORIN (09.02.MENU-MOBILE) */

/* MOBILE NAV
------------------------------------------------*/

/* Open/Close - Common
----------------------------*/
a#hamburger, nav a#close {
  display: block;
}

/* CLOSE NAV
----------------------------*/

nav a#close {
  height: 60px;
  padding: 1.25rem;
  cursor: pointer;
}

nav a#close:hover {
  background: #62C4C0;
}

nav a#close img {
  width: 27px;
  float: right;
  opacity: 0.8;
}

nav a#close image:hover {
  opacity: 1;
}


/* NAV - styles de base
----------------------------*/
nav {
  width: 100%;
  position: fixed; /* important; libère la nav du flow de la page */
  top: 0;
  margin: 0;
  background: #46B4B0;
  box-shadow: 0 0 10px 0 #aaa;
}

/* La liste des menus */
nav ul {
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}

nav ul li {
  display: block;
}

nav ul li a {
  display: block;
  width: 100%;
  padding: 0.5em 1.25rem 0.5em 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  text-align: right;
  color: rgba(255, 255, 255, 0.8) ;
  transition: color 0.2s;
}

nav ul li a:hover, nav ul li a:active {
  background: #62C4C0;
  color: rgba(255, 255, 255, 1) ;
}


/* ANIM NAV - COMMON
----------------------------*/
nav.open {
  animation-duration: .6s;
  animation-timing-function: cubic-bezier(.01,.68,.32,.99);
}
nav.close {
  animation-duration: .3s;
  animation-timing-function: cubic-bezier(.85,.01,1,.44);
}

/* ANIM NAV - FROM TOP
----------------------------*/
#theme-nav-top nav {
  width: 100%;
  max-width: 100%;
  height: auto; /* vh = viewport height, 100% du viewport */
  position: fixed; /* libère la nav du flow de la page */
  top: -100vh;
  left: 0;
  right: 0;
}
#theme-nav-top nav.open {
  top: 0;
  animation-name: slideInTop;
}
#theme-nav-top nav.close {
  animation-name: slideOutTop;
}

@keyframes slideInTop {
  from {
    top: -100vh;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes slideOutTop {
  from {
    top: 0;
    opacity: 1;
  }
  to {
    top: -100vh;
    opacity: 0;
  }
}

/* MAIN
......................................*/

main {
  padding-top: 60px; /* pour que le contenu ne soit pas caché par le header */
}



/* SECTIONS
......................................*/

/* COMMUN */

.titre-principal {
  height: 254px;
  max-width: 45.625rem;
  margin: auto;
  position: relative;
}

.titre-principal h1 {
  font-family: 'Yeseva One', cursive;
  font-size: 3.75rem;
  line-height: normal;
  text-align: center;
  text-shadow: 0 0 250px black;
  color: #fff;
  position: absolute;
  bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.rectangle-intro {
  max-width: 45.625rem;
  background-color: #fff;
  padding: 1.875rem 1.875rem 0.875rem;
  position: relative;
  text-align: center;
  margin: 0 auto 3.125rem;
  -moz-box-shadow:    0 0 20px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.2);
  box-shadow:         0 0 20px rgba(0,0,0,0.2);
}

.rectangle-intro h1 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.image-square-350 {
  width: 21.875rem;
  position: relative;
  margin-bottom: 1.25rem;
}

.white-square-250 {
  width: 15.625rem;
  height: 15.625rem;
  padding: 1.875rem;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); /* = horizontal-vertical-middle */
}

.image-round-160 {
  width: 10rem;
  height: 10rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  -moz-box-shadow:    inset 0 0 20px rgba(0,0,0,0.2);
  -webkit-box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
  box-shadow:         inset 0 0 20px rgba(0,0,0,0.2);
}

.image-round-220 {
  width: 13.75rem;
  height: 13.75rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  -moz-box-shadow:    inset 0 0 30px rgba(0,0,0,0.2);
  -webkit-box-shadow: inset 0 0 30px rgba(0,0,0,0.2);
  box-shadow:         inset 0 0 30px rgba(0,0,0,0.2);
}

.image-round-160 img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  position: relative;
  z-index: -2;
}

.image-round-220 img  {
  width: 13.75rem;
  height: 13.75rem;
  border-radius: 50%;
  position: relative;
  z-index: -2;
}

.site-content--parcours_et_approche .rectangle-intro .image-round-220 img  {
  position: static;
  z-index: auto;
}

/* HOME - ACCUEIL */

body.home {
  background-image: url(../img/fond_home_oiseau.jpg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: auto 100vh;
}

main.site-content--accueil {
  padding-top: 70vh;
}

.section-accueil div.liens-accueil-liste {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.liens_accueil-listing {
  width: 12.5rem;
  padding-bottom: 2.125rem; /* = 50-16 px = 34px */
  text-align: center;
}

.titre-lien_accueil {
  margin-bottom: 1.25rem;
}

.section-accueil--sketch {
  padding-top: 1.875rem;
  border-top: 1px solid #46B4B0;
}

.section-accueil--sketch iframe {
  width: 100%;
  height: 85vh;
  margin-bottom: 3.125rem;
}


/* PARCOURS ET APPROCHE */

body.page-template-page-parcours_et_approche {
  background-image: url(../img/fond_parcours_et_approche.jpg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: auto 474px;
}

.site-content--parcours_et_approche .rectangle-intro {
  text-align: left;
}

.site-content--parcours_et_approche .rectangle-intro h2 {
  text-align: center;
  margin-bottom: 1em;
}

.section-parcours_et_approche--image_cv a:hover {
  text-decoration: underline;
}

/* ATELIERS */

/* Page Ateliers */

body.page-template-page-ateliers {
  background-image: url(../img/fond_triptyque_ateliers.jpg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: auto 474px;
}

.section-ateliers div.ateliers-liste,
.section-domaines_creatifs div.domaines_creatifs-liste {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ateliers-listing,
.domaines_creatifs-listing {
  width: 21.875rem;
  padding-bottom: 2.125rem; /* = 50-16 px = 34px */
  text-align: center;
}

.section-ateliers--galerie {
  max-width: 45.625rem;
}

/* Ateliers single */

.atelier-thumbnail {
  width: 100%;
  max-width: 540px;
  min-width: 350px;
}
    /* mini-media query juste pour ça: */
    @media screen and (min-width: 540px) {

      .atelier-thumbnail, .domaine_creatif-thumbnail {
        margin-top: 50px;
      }
    }

.rectangle-intro--single-atelier {
  width: 21.875rem;
  text-align: left;
  margin-top: -100px;
  margin-bottom: 0;
}

.details {
  width: 21.875rem;
  padding: 0 1.875rem 2.125rem;
  margin-top: 3.125rem;
  text-align: center;
  border-bottom: 1px solid #46B4B0;
}

.details:last-child {
  border-bottom: none;
}

.details i {
  font-size: 3.125rem;
  color: #46B4B0;
}

.acf-map {
  width: 100%;
  height: 200px;
  border: #ccc solid 1px;
  margin: 0px auto;
}

.green-background {
  background-color: rgba(70, 180, 176, 0.1);
  width: 24.375em;
  padding: 3.125rem 0 2.125rem;
}

.section-atelier--formulaire {
  padding: 3.125rem 0;
}

.titre-atelier, .titre-domaine_creatif {
  font-family: 'Yeseva One', cursive;
  font-size: 1.875em;
  line-height: normal;
}

.sous-titre-atelier, .extrait-domaine_creatif {
  font-family: 'Rubik', sans-serif;
  font-size: 1.25em;
  line-height:normal;
  margin-bottom: 1rem;
}


/* PAGE INDIVIDUEL */

body.page-template-page-individuel {
  background-image: url(../img/fond_individuel_1.jpg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: auto 474px;
}

.section-individuel--contenu {
    max-width: 45.625rem;
}

.site-content--individuel h2 {
    margin-bottom: 1em;
}


/* MA VIE CRÉATIVE */

/* Page Ma vie créative */

body.page-template-page-ma_vie_creative {
  background-image: url(../img/fond_ma_vie_creative.jpg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: auto 474px;
}

/* Single Domaines créatifs */

.site-content--domaine_creatif .rectangle-intro {
  margin-top: 3.125rem;
}

.section-domaines_creatifs--contenu {
  max-width: 45.625rem;
}

.site-content--domaine_creatif h2 {
  margin-bottom: 1em;
}

/* Foo Gallery */

.fg-float-left {
  margin-right: 1.875rem;
	margin-bottom: 1rem;
}

.fg-float-right {
  margin-left: 1.875rem;
	margin-bottom: 1rem;
}

/* Vimeo */

.section-domaines_creatifs--contenu .embedpress-wrapper {
  margin-bottom: 1rem;
}


/* PAGE RÉSEAU */

body.page-template-page-reseau {
  background-image: url(../img/fond_reseau.jpg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: auto 474px;
}

.section-reseau--liste {
  max-width: 45.625rem;
}

.reseau_categorie {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  border-top: 1px solid #46B4B0;
}

.section-reseau--liste h3 {
  margin-top: 1.25rem;
}

.section-reseau--liste p {
  margin-bottom: 0;
}

.section-reseau--liste p a {
  color: #46B4B0;
}

.section-reseau--liste p a:hover {
  text-decoration: underline;
}


/* FOOTER
......................................*/

.footer {
  padding: 1.25rem 0.5rem;
}

.footer-contact {
  background-color: rgba(70, 180, 176, 0.2);
}

.footer-contact-text {
  text-align: center;
  color: #46B4B0;
  padding-bottom: 0.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #46B4B0;
}

.footer-newsletter {
  background-color: rgba(70, 180, 176, 0.6);
}

.footer-copyright {
  background-color: rgba(70, 180, 176, 1);
}

.footer-copyright p {
  margin-bottom: 0;
}


/****************** MEDIA QUERIES ****************/


/* BREAKPOINT 1
------------------------------------*/
@media screen and (min-width: 790px) {

  /* GENERAL */
  .container {
    width: 45.625rem; /* =730px */
  }

  .titre-principal {
    height: 340px;
  }

  main.site-content--accueil {
    padding-top: 80vh;
  }


  /* GENERAL */

  .rectangle-intro {
    padding-right: 4.063rem;
    padding-left: 4.063rem;
  }


  /* HOME */

  .liens_accueil-listing {
    margin-right: 4.063rem; /* = 65px */
  }

  .liens_accueil-listing:last-child {
    margin-right: 0;
  }

  .temoignages-intro {
    max-width: 45.625rem;
  }


  /* ATELIERS - MA VIE CRÉATIVE */

  .rectangle-intro--single-atelier {
    width: 25.625rem;
  }

  .ateliers-listing:nth-child(odd), .domaines_creatifs-listing:nth-child(odd) {
    margin-right: 1.875rem;
  }

  .ateliers-listing:last-child, .domaines_creatifs-listing:last-child {
    margin-right: 0;
  }

  .details {
    border-bottom: none;
    position: relative;
    width: 50%;
  }

  .details:nth-child(1), .details:nth-child(2) {
    border-bottom: 1px solid #46B4B0;
  }

  .details:nth-child(1), .details:nth-child(3) {
    border-right: 1px solid #46B4B0;
  }

  .details:nth-child(3), .details:nth-child(4) {
    margin-top: 25px;
    padding-top: 25px;
  }

  .details:nth-child(1)::after {
    content: "";
    display: block;
    height: 50px;
    width: 50px;
    background-color: #FFFFF0;
    position: absolute;
    bottom: -25px;
    right: -25px;
    z-index: 1;
  }

  .green-background {
    width: 49.375rem;
  }

  .section-atelier--formulaire form div.moitie {
    width: 50%;
  }

  .section-atelier--formulaire form div.moitie:nth-child(even) {
    border-left: solid 1px #46B4B0;
    padding-left: 15px;
  }

  .section-atelier--formulaire form div#cestparti p {
    margin: auto;
  }

  /* FORMULAIRES */

  #contact input[type="submit"] {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }

  #cestparti input[type="submit"] {
    display: block;
  }

  /* FOOTER */
  .footer-contact-text {
    text-align: left;
  }

  .footer-contact-text .textwidget {
    display: flex;
  }

  .footer-contact-text .textwidget p {
    width: 350px;
    margin-right: 1.875rem;
  }

  .footer-copyright {
    padding-top: 0.625rem;
    padding-bottom: 5px;
  }

  .footer-copyright .container p {
    display: inline-block;
  }

  .footer-copyright .container p:after {
    content: " – "
  }

  .footer-copyright .container p:last-child:after {
    content: none;
  }

}

/* BREAKPOINT 2
------------------------------------*/
@media screen and (min-width: 1170px) {

  /* GENERAL */

  .container {
    width: 69.375rem; /* =1110px */
  }

  /* NAVIGATION */

  #theme-nav-top nav {
    width: auto;
    position: static;
    background: none;
    box-shadow: none;
  }

  nav ul {
    border: none;
    display: flex;
    align-items: flex-end;
  }

  nav ul li {
    /* display: inline-block; */
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 1.875rem;
  }

  nav ul li a {
    display: block;
    width: auto;
    padding: 0;
    border: none;
    text-align: center;
  }

  nav ul li a:hover, nav ul li a:active {
    background: none;
  }

  nav ul li.current-menu-item a {
    color: rgb(255, 255, 255);
    font-weight: 400;
  }

  /* Hamburger & Close */
  a#hamburger, nav a#close {
    display: none;
  }


  /* ATELIERS */

  .ateliers-listing, .domaines_creatifs-listing {
    margin-right: 1.875rem;
  }

  .ateliers-listing:nth-child(3n+0), .domaines_creatifs-listing:nth-child(3n+0) {
    margin-right: 0;
  }

  .ateliers-listing:last-child, .domaines_creatifs-listing:last-child {
    margin-right: 0;
  }

  .section-atelier--haut {
    width: 69.375rem;
    margin: auto;
    position: relative;
  }

  .atelier-thumbnail {
    margin-right: 0;
    margin-left: 0;
    position: relative;
    right: -540px;
  }

  .rectangle-intro--single-atelier {
    margin: 0;
    position: absolute;
    width: 39.688rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .social-share {
    display: flex;
    align-items: center;
  }

  .social-share p {
    margin-right: 0.75rem;
    margin-bottom: 0;
  }

  .green-background {
    width: 69.375rem;
  }

  .green-background .container {
    width: 45.625rem;
  }

  .details, .details:nth-child(n) {
    width: 25%;
    padding: 0 1.875rem 0;
    margin-top: 3.125rem;
    border-right: 1px solid #46B4B0;
    border-bottom: none;
  }

  .details:last-child {
    border-right: none;
  }

  .details:nth-child(1)::after {
    display: none;
  }

/* FOOTER */

  .footer .container {
    width: 45.625rem; /* =730px */
  }

}
