@charset "UTF-8";
/* Océane
 *
 * sass/styles.scss - Main stylesheet
 *
 * coded by Anne@caractere-advertising
 * started at 25/03/2020
 */
/* Océane
 *
 * /sass/settings/colors.scss - Variables for colors
 *
 * coded by Anne@caractere-advertising
 * started at 07/08/2019
 */
/* Océane
 *
 * /sass/settings/fonts - Variables for fonts
 *
 * coded by Anne@caractere-advertising
 * started at 07/08/2019
 */
@import url("https://fonts.googleapis.com/css?family=Roboto|Ubuntu&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700;900&display=swap");
@font-face {
  font-family: "geomanistregular";
  src: url("../assets/fonts/geomanist/geomanist-regular-webfont.eot");
  src: url("../assets/fonts/geomanist/geomanist-regular-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../assets/fonts/geomanist/geomanist-regular-webfont.woff2")
      format("woff2"),
    url("../assets/fonts/geomanist/geomanist-regular-webfont.woff")
      format("woff"),
    url("../assets/fonts/geomanist/geomanist-regular-webfont.ttf")
      format("truetype"),
    url("../assets/fonts/geomanist/geomanist-regular-webfont.svg#geomanistregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sofia_problack";
  src: url("../assets/fonts/sofia/sofiaproblack-webfont.woff2") format("woff2"),
    url("../assets/fonts/sofia/sofiaproblack-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sofia_probold";
  src: url("../assets/fonts/sofia/sofiaprobold-webfont.woff2") format("woff2"),
    url("../assets/fonts/sofia/sofiaprobold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sofia_proextra_light";
  src: url("../assets/fonts/sofia/sofiaproextralight-webfont.woff2")
      format("woff2"),
    url("../assets/fonts/sofia/sofiaproextralight-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sofia_prolight";
  src: url("../assets/fonts/sofia/sofiaprolight-webfont.woff2") format("woff2"),
    url("../assets/fonts/sofia/sofiaprolight-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sofia_proregular";
  src: url("../assets/fonts/sofia/sofiaproregular-webfont.woff2")
      format("woff2"),
    url("../assets/fonts/sofia/sofiaproregular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sofia_proultralight";
  src: url("../assets/fonts/sofia/sofiaproultralight-1-webfont.woff2")
      format("woff2"),
    url("../assets/fonts/sofia/sofiaproultralight-1-webfont.woff")
      format("woff");
  font-weight: normal;
  font-style: normal;
}
/* Océane
 *
 * /sass/tools/utils.scss - Small utilities
 *
 * coded by Anne@caractere-advertising
 *
 */
.hidden {
  display: none;
}

.sro {
  position: absolute;
  top: -99999px;
  left: -99999px;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

select::-ms-expand {
  display: none;
}

.invisible {
  visibility: hidden;
}

/* Océane
 *
 * /sass/generic/meyer-reset.scsc - Meyer Reset
 *
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Océane
 *
 * /sass/generic/box-sizing.scss - Box Sizing
 *
 * coded by Anne@caractere-advertising
 *
 */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

/* Océane
 *
 * /sass/base/root.scss - Base Styles
 *
 * coded by Anne@caractere-advertising
 * started at 22/01/2020
 */
html,
body {
  font-size: 15px;
  line-height: 1.6;
  min-width: 320px !important;
  font-family: "sofia_prolight", sans-serif !important;
  color: #2b2e31;
  position: relative;
}

* {
  font-family: "sofia_prolight", sans-serif;
}

h2 {
  font-family: "sofia_prolight", sans-serif;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
a.nolink {
  color: inherit;
}

strong {
  font-weight: bold;
}

.hidden,
.sro {
  display: none;
}

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

.black {
  background: black;
}

.light {
  background: #f0efef;
  padding: 2rem 0;
}
@media screen and (min-width: 1024px) {
  .light {
    padding: 3rem 0;
  }
}

/* Océane
 *
 * sass/objects/animate.scss
 *
 * coded by Anne@caractere-advertising
 * started at 02/04/2020
 */
/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Océane
 *
 * sass/objects/bg-section.scss - Pattern bgs
 *
 * coded by Anne@caractere-advertising
 * started at 01/04/2020
 */
.wave-right {
  padding: 3em 0;
  background: url("../assets/images/vague-droite.png") no-repeat;
  background-position: 100% 80%;
}
@media screen and (min-width: 768px) {
  .wave-right {
    padding: 6em 0;
  }
}

.wave-right-top {
  background: url("../assets/images/vague-droite-top.png") no-repeat;
  background-position: 100% 95%;
}

.round-top {
  padding: 3em 0;
  background: url("../assets/images/rond.png") no-repeat;
  background-position: 0 -250px;
}
@media screen and (min-width: 768px) {
  .round-top {
    padding: 6em 0;
  }
}

.round-right-inverse {
  padding: 3em 0;
  background: url("../assets/images/rond-inverse.png") no-repeat;
  background-position: 100% 0%;
}
@media screen and (min-width: 768px) {
  .round-right-inverse {
    padding: 6em 0;
  }
}

/* Océane
 *
 * sass/objects/cta.scss
 *
 * coded by Anne@caractere-advertising
 * started at 01/04/2020
 */
.cta {
  background: #af9887;
  color: white;
  width: 200px;
  display: inline-block;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  padding: 0.6em;
  position: relative;
  font-family: "sofia_probold", sans-serif;
}
.cta span {
  position: relative;
  z-index: 2;
}
.cta:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: black;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}
.cta:hover:after,
.cta:focus:after {
  width: 100%;
}
.cta.-dark {
  background: black;
}
.cta.-dark:after {
  background: #af9887;
}
.cta.-dark:hover:after,
.cta.-dark:focus:after {
  width: 100%;
}
.cta.-light {
  background: white;
  color: black;
}
.cta.-light:after {
  background: #af9887;
}
.cta.-light:hover:after,
.cta.-light:focus:after {
  width: 100%;
}

/* Océane
 *
 * sass/objects/download-link.scss
 *
 * coded by Anne@caractere-advertising
 * started at 01/04/2020
 */
.download-link {
  display: block;
  color: black;
  margin-top: 1em;
}
.download-link > img {
  width: 18px;
  height: auto;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 1em;
}
.download-link:hover,
.download-link:focus {
  color: #af9887;
}

/* Océane
 *
 * sass/objects/menu-button.scss
 *
 * coded by Anne@caractere-advertising
 * started at 31/03/2020
 */
.menu-button {
  width: 40px;
  height: 30px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .menu-button {
    display: none;
  }
}
.menu-button span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #af9887;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.menu-button span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.menu-button span:nth-child(2) {
  top: 12px;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.menu-button span:nth-child(3) {
  top: 25px;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.menu-button.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 7px;
}
.menu-button.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.menu-button.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 28px;
  left: 7px;
}
.menu-button.open span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

/* Océane
 *
 * sass/components/totop.scss - Button back to top
 *
 * coded by Anne@caractere-advertising
 * started at 02/04/2020
 */
#totop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 10;
  background: #333333;
  border-radius: 100%;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  -o-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#totop i {
  color: white;
}
#totop:hover,
#totop:focus {
  background: #af9887;
}
#totop.show {
  opacity: 1;
  visibility: visible;
}

/* Océane
 *
 * sass/components/banner-image.scss
 *
 * coded by Anne@caractere-advertising
 * started at 02/04/2020
 */
.banner-image {
  background: black;
  height: 260px;
  overflow: hidden;
  position: relative;
}
.banner-image > .background-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.banner-image > .background-image > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.8;
}
.banner-image > .banner-titre {
  position: absolute;
  z-index: 3;
  top: 0;
  width: 100%;
  height: 100%;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.banner-image > .banner-titre > .title {
  width: 90%;
  max-width: 1050px;
  color: white;
  margin: 0 auto;
  padding-bottom: 2.5em;
  position: relative;
}
.banner-image > .banner-titre > .title:after {
  content: "";
  width: 60px;
  height: 1px;
  background: white;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .banner-image > .banner-titre > .title:after {
    left: -30px;
  }
}
@media screen and (min-width: 1024px) {
  .banner-image > .banner-titre > .title:after {
    left: -60px;
  }
}
.banner-image > .banner-titre > .title h2 {
  font-size: 1.8em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .banner-image > .banner-titre > .title h2 {
    font-size: 2em;
  }
}
.banner-image > .banner-titre > .title h2 strong {
  display: block;
  color: #af9887;
  font-size: 1.1em;
  text-transform: uppercase;
  font-family: "sofia_probold", sans-serif;
}

/* Océane
 *
 * sass/components/carousel.scss
 *
 * coded by Anne@caractere-advertising
 * started at 01/04/2020
 */
.carousel-container {
  width: 90%;
  margin: auto;
}
.carousel-container .item {
  width: 250px;
  height: 200px;
  overflow: hidden;
  position: relative;
  display: block;
  margin: 0 5px;
}
.carousel-container .item > img {
  width: 120%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.carousel-container .slick-prev,
.carousel-container .slick-next {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: block;
  padding: 0;
  text-indent: -9999px;
  position: absolute;
  top: calc(50% - 15px);
  border-radius: 100%;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.carousel-container .slick-prev {
  background: #fff url("../assets/images/chevron-left-contrast.png") center
    no-repeat;
  background-size: 70%;
  background-position: 30% 50%;
  left: -50px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.carousel-container .slick-prev:hover,
.carousel-container .slick-prev:focus {
  outline: none;
  background: #af9887 url("../assets/images/chevron-left-white.png") center
    no-repeat;
  background-size: 70%;
  background-position: 70% 50%;
}
.carousel-container .slick-next {
  background: #fff url("../assets/images/chevron-right-contrast.png") center
    no-repeat;
  background-size: 70%;
  background-position: 70% 50%;
  right: -50px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.carousel-container .slick-next:hover,
.carousel-container .slick-next:focus {
  outline: none;
  background: #af9887 url("../assets/images/chevron-right-white.png") center
    no-repeat;
  background-size: 70%;
  background-position: 70% 50%;
}

#cookieBox {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}
#cookieBox .cookie-content {
  width: 100%;
  background-color: rgba(51, 51, 51, 0.9);
  color: white;
  text-align: left;
  font-size: 13px;
  font-weight: 300;
  position: relative;
  padding: 1em 2%;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#cookieBox .left {
  width: 80%;
}
#cookieBox h3 {
  font-family: "geomanistregular", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.3em;
}
#cookieBox p {
  font-family: "sofia_prolight", sans-serif;
}
#cookieBox .right {
  width: 18%;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
#cookieBox .right a,
#cookieBox .right span {
  background-color: #af9887;
  color: #fff;
  cursor: pointer;
  padding: 5px 10px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
}

#cookieBox.show {
  height: 110px;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#cookieBox.hide {
  display: none;
}

p.legal {
  background-color: #f0efef;
  color: #9c9e9f;
  font-size: 8px;
  padding-left: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
}

p.legal > a {
  text-decoration: none;
  color: #9c9e9f;
}

@media screen and (min-width: 300px) and (max-width: 1599px) {
  #cookieBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 999;
  }
  #cookieBox .cookie-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #cookieBox .left {
    width: 90%;
    margin-bottom: 1em;
  }
  #cookieBox .right {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1599px) {
  #cookieBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    z-index: 999;
  }
  #cookieBox .left {
    width: 77%;
    margin-bottom: 1em;
  }
  #cookieBox .right {
    width: 20%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #cookieBox .right a {
    margin-bottom: 1em;
    text-align: center;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1599px) {
  #cookieBox .left {
    width: 83%;
  }
  #cookieBox .right {
    width: 15%;
  }
  #cookieBox .right a {
    margin-bottom: 1em;
    text-align: center;
  }
}
/* Océane
 *
 * sass/components/coordonnees.scss
 *
 * coded by Anne@caractere-advertising
 * started at 06/04/2020
 */
.coordonnees > .name {
  color: #af9887;
  font-size: 1.3em;
  margin-bottom: 1em;
}
.coordonnees > div {
  margin-bottom: 1em;
}
.coordonnees > a {
  color: #af9887;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.coordonnees > a > i {
  color: #333333;
}
.coordonnees > a:hover,
.coordonnees > a:focus {
  color: #333333;
}

/* Océane
 *
 * sass/components/footer.scss
 *
 * coded by Anne@caractere-advertising
 * started at 02/04/2020
 */
.footer-container {
  background: black;
  color: white;
}
.footer-container .footer-content {
  width: 80%;
  max-width: 1050px;
  margin: 0 auto;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.footer-container .footer-content .col {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-content .col {
    width: 50%;
  }
}
.footer-container .footer-content .col.-logos {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 350px;
}
.footer-container .footer-content .col.-logos .main-logo {
  margin-bottom: 2em;
  width: 100%;
  max-width: 350px;
}
.footer-container .footer-content .col.-logos .main-logo img {
  width: 100%;
  height: auto;
}
.footer-container .footer-content .col.-logos .partner-logo {
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 175px;
}
.footer-container .footer-content .col.-logos .partner-logo img {
  width: 100%;
  height: auto;
}
.footer-container .footer-content .col.-infos {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 2em 0;
}
@media screen and (min-width: 768px) {
  .footer-container .footer-content .col.-infos {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-content .col.-infos {
    margin: 0;
  }
}
.footer-container .footer-content .col.-infos .subcol {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer-container .footer-content .col.-infos .subcol {
    width: 50%;
  }
}
.footer-container .footer-content .col.-infos .subcol div,
.footer-container .footer-content .col.-infos .subcol nav {
  margin-bottom: 2em;
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-content .col.-infos .subcol nav:nth-child(2) {
    margin-bottom: 0;
  }
}
.footer-container .footer-content .col.-infos .subcol .title {
  text-transform: uppercase;
  font-family: "sofia_probold", sans-serif;
  color: #af9887;
  margin-bottom: 1.2em;
}
.footer-container .footer-content .col.-infos .subcol a {
  text-decoration: none;
  display: block;
  color: white;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer-container .footer-content .col.-infos .subcol a:focus,
.footer-container .footer-content .col.-infos .subcol a:hover {
  color: #af9887;
}
.footer-container .legals {
  background: #af9887;
  padding: 1em 0;
  font-family: "geomanistregular", sans-serif;
}
.footer-container .legals > .content {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer-container .legals > .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.footer-container .legals > .content > span {
  display: inline-block;
  margin: 0px 8px;
}
.footer-container .legals > .content a {
  color: white;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer-container .legals > .content a:hover,
.footer-container .legals > .content a:focus {
  color: #333333;
}
.footer-container .legals > .content .socials {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer-container .legals > .content .socials {
    margin-left: 2em;
  }
}
.footer-container .legals > .content .socials > .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333333;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer-container .legals > .content .socials > .link .fa-inverse {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer-container .legals > .content .socials > .link:hover,
.footer-container .legals > .content .socials > .link:focus {
  color: white;
}
.footer-container .legals > .content .socials > .link:hover .fa-inverse,
.footer-container .legals > .content .socials > .link:focus .fa-inverse {
  color: #333333;
}

/* Océane
 *
 * sass/components/formulaire.scss
 *
 * coded by Anne@caractere-advertising
 * started at 02/04/2020
 */
.form-container {
  width: 100%;
  max-width: 950px;
  padding: 1em 2em;
}
.form-container.-shadow {
  background: white;
  -webkit-box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .form-container.-shadow {
    padding: 1em 10%;
  }
}

.wpcf7-form {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.wpcf7-form .form-group {
  width: 100%;
  margin-bottom: 1.5em;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .wpcf7-form .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7-form .form-group.-single .form-control {
    width: 100%;
  }
}
.wpcf7-form .form-group .form-control {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wpcf7-form .form-group .form-control {
    width: 48%;
  }
}
.wpcf7-form .form-group .form-control > span {
  width: 100%;
}
.wpcf7-form .form-group .form-control input,
.wpcf7-form .form-group .form-control textarea {
  width: 100%;
  background: #f8f9f9;
  border: none;
  padding: 5px;
  font-size: 1em;
  border: 1px solid #f8f9f9;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.wpcf7-form .form-group .form-control input:focus,
.wpcf7-form .form-group .form-control textarea:focus {
  outline: none;
  border: 1px solid #af9887;
}
.wpcf7-form .form-group .form-control .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-form .form-group .form-control .wpcf7-acceptance label {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.wpcf7-form .form-group .form-control .wpcf7-acceptance label input {
  width: auto;
  margin: 0;
  margin-right: 1em;
}
.wpcf7-form .form-group .form-control .wpcf7-acceptance label input:focus {
  outline: none;
}
.wpcf7-form .form-group.-send .form-control.-send {
  width: 30%;
}
.wpcf7-form .form-group.-send .form-control.-send .cta {
  background: black;
  color: white;
  text-align: left;
  padding-left: 1em;
  border: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.wpcf7-form .form-group.-send .form-control.-send .cta:hover,
.wpcf7-form .form-group.-send .form-control.-send .cta:focus {
  background: #af9887;
}

div.wpcf7-response-output,
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Océane
 *
 * sass/components/header.scss
 *
 * coded by Anne@caractere-advertising
 * started at 31/03/2020
 */
.header-container {
  width: 100%;
  background: #f0f0f0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1em;
}
@media screen and (min-width: 1024px) {
  .header-container {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1em 0;
    padding-right: 5%;
  }
}
.header-container.home {
  position: absolute;
  z-index: 10;
  background: none;
}
@media screen and (min-width: 1024px) {
  .header-container.home {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1em 5%;
  }
}
.header-container > .logo {
  width: 250px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header-container > .logo {
    width: 285px;
  }
}
@media screen and (min-width: 1024px) {
  .header-container > .logo {
    margin-left: 250px;
  }
}
.header-container > .logo > img {
  width: 100%;
  height: auto;
}

/* Océane
 *
 * sass/components/hero.scss
 *
 * coded by Anne@caractere-advertising
 * started at 31/03/2020
 */
.hero-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
}
.hero-container > .hero {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-container > .hero img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1320px) {
  .hero-container > .hero img {
    width: 100%;
    height: auto;
  }
}
.hero-container .scroll-icon {
  position: absolute;
  bottom: 1em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: slide-top 1s ease-in-out infinite both;
  animation: slide-top 1s ease-in-out infinite both;
}
.hero-container .scroll-icon > .icon {
  width: 30px;
}
.hero-container .scroll-icon > .icon img {
  width: 100%;
  height: auto;
}
.hero-container .scroll-icon > span {
  text-transform: uppercase;
  font-size: 0.7em;
  font-family: "sofia_problack", sans-serif;
}
.hero-container .content {
  position: absolute;
  width: 100%;
  max-width: 600px;
  padding: 1em 2em;
  margin-top: -2em;
}
.hero-container .content > .bulle {
  width: 100%;
}
.hero-container .content > .bulle img {
  width: 100%;
  height: auto;
}
.hero-container .content > .baseline {
  color: #af9887;
  text-transform: uppercase;
  text-align: center;
  font-family: "geomanistregular", sans-serif;
  font-size: 1.1em;
}
@media screen and (min-width: 1024px) {
  .hero-container .content > .baseline {
    font-size: 1.6em;
  }
}
.hero-container .content > .button {
  color: white;
  text-transform: uppercase;
  font-size: 0.9em;
  border: 1px solid white;
  border-radius: 10px;
  padding: 0.5em 1em;
  display: block;
  margin: 1em auto;
  text-align: center;
  width: 200px;
  font-family: "sofia_problack", sans-serif;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

/* Océane
 *
 * sass/components/image-bg.scss
 *
 * coded by Anne@caractere-advertising
 * started at 01/04/2020
 */
.image-bg1 {
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  height: 265px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .image-bg1 {
    height: 300px;
  }
}

/* Océane
 *
 * sass/components/intro.scss - Specific styles for intro
 *
 * coded by Anne@caractere-advertising
 * started at 01/04/2020
 */
.intro .buttons {
  margin: 2em 0;
}
@media screen and (max-width: 767px) {
  .intro .left .buttons {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .intro .right .buttons {
    display: none;
  }
}

/* Océane
 *
 * sass/components/navigation.scss
 *
 * coded by Anne@caractere-advertising
 * started at 31/03/2020
 */
.navigation-container {
  width: 300px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #f0efef;
  padding: 4em 2em 2em;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .navigation-container {
    width: auto;
    position: relative;
    left: auto;
    top: auto;
    background: none;
    padding: 0;
    height: auto;
  }
}
.navigation-container.open {
  left: 0;
}
@media screen and (min-width: 1024px) {
  .navigation-container.home > .menu .menu-item a {
    color: white;
    padding: 0 1em;
    border-left: 1px solid rgba(255, 255, 255, 0.7);
  }
}
.navigation-container.home > .menu .menu-item.button a {
  background: white;
  color: black;
}
.navigation-container.home > .menu .menu-item.button:hover a,
.navigation-container.home > .menu .menu-item.button:focus a {
  background: #af9887;
}
.navigation-container > .menu {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (min-width: 1024px) {
  .navigation-container > .menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.navigation-container > .menu .menu-item a {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0.7em 0;
  color: black;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .navigation-container > .menu .menu-item a {
    padding: 0 1em;
    border-left: 1px solid black;
  }
}
@media screen and (min-width: 1024px) {
  .navigation-container > .menu .menu-item:first-child a {
    border-left: 1px solid transparent;
  }
}
.navigation-container > .menu .menu-item:hover a,
.navigation-container > .menu .menu-item:focus a {
  color: #af9887;
}
.navigation-container > .menu .menu-item.button a {
  border: none;
  background: #af9887;
  color: white;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .navigation-container > .menu .menu-item.button a {
    margin-left: 1em;
  }
}
.navigation-container > .menu .menu-item.button:hover a,
.navigation-container > .menu .menu-item.button:focus a {
  background: black;
}

#popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 20;
  top: 0;
  left: 0;
}
#popup .popup-content {
  position: relative;
  width: 90%;
  max-width: 722px;
}
#popup .popup-content .content {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url("../assets/images/bg-popup.jpg") center no-repeat;
  background-size: cover;
  position: relative;
}
#popup .popup-content .content .top {
  padding: 6rem 1rem;
  text-align: center;
  color: white;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.3rem;
  position: relative;
}
#popup .popup-content .content .top:before,
#popup .popup-content .content .top:after {
  content: "";
  width: 1px;
  height: 40px;
  background: white;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#popup .popup-content .content .top:before {
  top: 0;
}
#popup .popup-content .content .top:after {
  bottom: 0;
}
#popup .popup-content .content .top p {
  line-height: 1;
}
#popup .popup-content .content .top p strong {
  font-family: "sofia_probold", sans-serif;
}
#popup .popup-content .content .top p em {
  font-family: "sofia_problack", sans-serif;
}
#popup .popup-content .content .top h2 {
  margin: 1rem 0;
  font-family: "DM Serif Display", serif;
  line-height: 1;
  font-size: 5rem;
  color: transparent !important;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #af9887;
}
#popup .popup-content .content .gallery {
  width: 100%;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}
#popup .popup-content .content .gallery .image {
  width: 33.33%;
  height: 150px;
  position: relative;
  overflow: hidden;
}
#popup .popup-content .content .gallery .image img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#popup .popup-content .content .bottom {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #af9887;
  text-align: center;
  color: white;
  padding: 2rem 1rem;
}
#popup .popup-content .content .bottom h2 {
  font-family: "DM Serif Display", serif;
  line-height: 1;
  font-size: 2.1rem;
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
#popup .popup-content .content .bottom h2:after {
  content: "";
  width: 140px;
  height: 1px;
  background: white;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#popup .popup-content .content .bottom p {
  font-size: 1.05rem;
}
#popup .popup-content .content .bottom p strong {
  font-family: "sofia_probold", sans-serif;
}
#popup .popup-content .content .bottom p em {
  font-family: "sofia_problack", sans-serif;
}
#popup .popup-content .content .bottom p a {
  color: white;
}
#popup .popup_close {
  background: #af9887;
  color: white;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 40px;
  position: absolute;
  top: -40px;
  right: 0px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  #popup .popup_close {
    right: -35px;
  }
}
#popup .popup_close span {
  font-size: 1.5rem;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
#popup .popup_close:hover {
  color: black;
}
#popup .popup-container {
  width: 100%;
  height: 80vh;
  max-height: 590px;
  overflow: scroll;
  background: white;
}

/* Océane
 *
 * sass/components/quote.scss
 *
 * coded by Anne@caractere-advertising.be
 * started at 02/04/2020
 */
.citation {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90%;
  margin: 2em auto;
}
.citation > .icon {
  width: 50px;
  margin-bottom: 1.5em;
}
.citation > .icon > img {
  width: 100%;
  height: auto;
}
.citation > .content {
  text-align: center;
}
.citation > .content > .text {
  color: #949494;
  margin-bottom: 1.5em;
}
.citation > .content > .text p {
  line-height: 1;
}
.citation > .content > .text strong {
  color: black;
  font-size: 1.5em;
}
.citation > .content > .author {
  font-family: "sofia_probold", sans-serif;
  font-size: 1.2em;
}

/* Océane
 *
 * sass/components/section-container.scss
 *
 * coded by Anne@caractere-advertising
 * started at 01/04/2020
 */
.section-container {
  width: 90%;
  margin: 0 auto;
  max-width: 1050px;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section-container.-contrast {
  color: white;
}
@media screen and (min-width: 768px) {
  .section-container.-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.section-container.-row .left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section-container.-row .left {
    width: 38%;
  }
}
.section-container.-row .left.bottom {
  padding-bottom: 1.5em;
  position: relative;
}
.section-container.-row .left.bottom:after {
  content: "";
  width: 80px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-container.-row .right {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section-container.-row .right {
    width: 58%;
  }
}
.section-container.-margin {
  margin: 3em auto;
}
@media screen and (min-width: 768px) {
  .section-container.-margin {
    margin: 6em auto;
  }
}
.section-container.-aligncenter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-bg {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3em 0;
  background-position: center;
}
.section-bg.-nofixed {
  background-attachment: inherit;
  background-position: 0 60%;
}
@media screen and (min-width: 768px) {
  .section-bg {
    padding: 6em 0;
  }
}

/* Océane
 *
 * sass/components/section-title.scss
 *
 * coded by Anne@caractere-advertising
 * started at 01/04/2020
 */
.section-container .section-title {
  margin-bottom: 1em;
}
.section-container .section-title h2 {
  font-size: 1.8em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .section-container .section-title h2 {
    font-size: 2em;
  }
}
.section-container .section-title h2 strong {
  display: block;
  color: #af9887;
  font-size: 1.1em;
  text-transform: uppercase;
  font-family: "sofia_probold", sans-serif;
}
.section-container .section-title .baseline {
  font-size: 1.2em;
}
.section-container .section-title.-row h2 strong {
  display: inline-block;
}
.section-container .section-title.-uppercase h2 {
  text-transform: uppercase;
}
.section-container .section-title.-center {
  text-align: center;
  margin: auto;
}
.section-container .section-title.bottom-left {
  margin-bottom: 2.5em;
  padding-bottom: 2.5em;
  position: relative;
}
.section-container .section-title.bottom-left:after {
  content: "";
  width: 60px;
  height: 1px;
  background: black;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .section-container .section-title.bottom-left:after {
    left: -30px;
  }
}
@media screen and (min-width: 1024px) {
  .section-container .section-title.bottom-left:after {
    left: -60px;
  }
}
.section-container .section-title.chevrondown {
  margin-bottom: 1.5em;
  padding-bottom: 3em;
  position: relative;
}
.section-container .section-title.chevrondown:after {
  content: "";
  background: url("../assets/images/chevron-bas.png") center no-repeat;
  width: 25px;
  height: 15px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .section-container .section-title.marginleft {
    margin-left: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .section-container .section-title.marginleft {
    margin-left: 60px;
  }
}
.section-container.-contrast .section-title.bottom-left h2 strong {
  color: white;
}
.section-container.-contrast .section-title.bottom-left:after {
  background: white;
}

/* Océane
 *
 * sass/components/soins-tabs.scss
 *
 * coded by Anne@caractere-advertising
 * started at 01/04/2020
 */
.soins-container {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1em auto;
}
.soins-container .liste-soins {
  width: 100%;
  border-bottom: 1px solid rgba(175, 152, 135, 0.4);
}
@media screen and (min-width: 768px) {
  .soins-container .liste-soins {
    width: 38%;
    border-bottom: 0;
    border-right: 1px solid rgba(175, 152, 135, 0.4);
  }
}
.soins-container .liste-soins .soin-tab {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-bottom: 1.5em;
  cursor: pointer;
}
.soins-container .liste-soins .soin-tab i {
  width: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.soins-container .liste-soins .soin-tab.active {
  font-family: "sofia_probold", sans-serif;
}
.soins-container .liste-soins .soin-tab.active i {
  width: 10px;
  opacity: 1;
}
.soins-container .contenu-soins {
  width: 100%;
  display: none;
}
@media screen and (min-width: 768px) {
  .soins-container .contenu-soins {
    width: 58%;
  }
}
@media screen and (min-width: 768px) {
  .soins-container .contenu-soins.small {
    width: 40%;
  }
}
.soins-container .contenu-soins.active {
  display: block;
}
.soins-container .contenu-soins .wp-content {
  margin-bottom: 1.5em;
}
.soins-container .contenu-soins > .liste > .item {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.soins-container .contenu-soins > .cta {
  margin-top: 3em;
}

/* Océane
 *
 * sass/components/tarifs-toggle.scss
 *
 * coded by Anne@caractere-advertising
 * started at 06/04/2020
 */
.tarifs-container .bloc-tarif {
  margin-bottom: 0.3em;
}
.tarifs-container .bloc-tarif > .nom {
  background: #f0efef;
  font-family: "sofia_probold", sans-serif;
  padding: 0.3em 1em;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  color: black;
}
@media screen and (min-width: 1024px) {
  .tarifs-container .bloc-tarif > .nom {
    padding: 0.3em 1.5em;
  }
}
.tarifs-container .bloc-tarif > .nom > .icon {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.tarifs-container .bloc-tarif > .nom.open > .icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.tarifs-container .bloc-tarif > .tarifs {
  padding: 1em;
  display: none;
}
@media screen and (min-width: 1024px) {
  .tarifs-container .bloc-tarif > .tarifs {
    padding: 1.5em;
  }
}
.tarifs-container .bloc-tarif > .tarifs > .type > .titre {
  text-transform: uppercase;
  font-family: "sofia_probold", sans-serif;
  margin-bottom: 1em;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tarifs-container .bloc-tarif > .tarifs > .type > .liste-prix {
  margin-bottom: 1.5em;
}
.tarifs-container .bloc-tarif > .tarifs > .type > .liste-prix > .single {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.5em;
}
.tarifs-container .cta {
  margin-top: 1em;
}

/* Océane
 *
 * sass/components/wp-content.scss - Styles for wysiwyg editor
 *
 * coded by Anne@caractere-advertising
 * started at 01/04/2020
 */
.wp-content p {
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.wp-content ul li {
  margin-bottom: 0.6em;
}
.wp-content ul li:before {
  content: "•";
  margin-right: 3px;
}
.wp-content strong {
  font-family: "sofia_probold", sans-serif;
}
.wp-content a {
  text-transform: uppercase;
  font-family: "sofia_probold", sans-serif;
  color: #af9887;
  padding-bottom: 0.4em;
  position: relative;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.wp-content a:after,
.wp-content a:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.wp-content a:before {
  background: black;
}
.wp-content a:after {
  background: #af9887;
  width: 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 2;
}
.wp-content a:hover,
.wp-content a:focus {
  color: black;
}
.wp-content a:hover:after,
.wp-content a:focus:after {
  width: 100%;
}
.wp-content h2 {
  text-transform: uppercase;
  color: #af9887;
  font-size: 1.8em;
  margin-bottom: 0.8em;
  margin-top: 1em;
}
.wp-content h3 {
  font-size: 1.6em;
  margin-bottom: 0.5em;
  color: #af9887;
}
.wp-content h4 {
  font-size: 1.3em;
  font-family: "sofia_probold", sans-serif;
  margin-bottom: 0.5em;
}
.wp-content table {
  margin-bottom: 1.5em;
}
.wp-content table tr th,
.wp-content table tr td {
  border: 1px solid #333333;
  padding: 0.5em;
}
.wp-content table tr th {
  font-family: "sofia_probold", sans-serif;
}

/* Pannel Admin */

/* Formulaire boncadeau */

#wpcf7-f4834-o1 {
  text-align: left !important;
}

#wpcf7-f4834-o1 p {
  width: 100%;
}

#wpcf7-f4834-o1 input,
#wpcf7-f4834-o1 textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ae9887;
}

#wpcf7-f4834-o1 input[type="checkbox"] {
  width: auto !important;
}

#wpcf7-f4834-o1 input[type="submit"] {
  background-color: #ae9887;
  color: #fff;
  width: 50%;
  margin: auto;
  margin-top: 30px;
  padding: 10px 30px;
  transition: all ease-in 200ms;
}

#wpcf7-f4834-o1 input[type="submit"]:hover {
  background-color: #85766a;
}

#wpcf7-f4834-o1 label {
  display: block;
  margin-top: 20px;
}

#wpcf7-f4834-o1 h2 {
  font-weight: 600;
  text-align: left !important;
  display: block;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #ae9887;
}

#wpcf7-f4834-o1 div {
  width: 100%;
}

.diff_digPhy {
  background: #eee;
  padding: 10px;
  margin: 30px auto;
}

.list_digiphy {
  font-size: 0.8em;
  text-align: justify;
}

.list_digiphy strong {
  font-weight: 700;
  font-family: "Montserrat";
}

/* Formulaire creation bon cadeau */

.acf-label label {
  color: #85766a;
}

.acf-field input,
.acf-input textarea {
  border: none;
  border-bottom: 1px solid #ddd;
  width: 100%;
  margin-bottom: 10px;
  outline: none;
}

.acf-input #insert-media-button {
  display: none;
}

.acf-form-submit .acf-button {
  height: 50px;
  border-radius: 0;
  background: #85766a;
  color: #fff;
  border: none;
  padding: 10px 50px;
  display: block;
  margin-top: 30px;
}

.acf-fields > .acf-field {
  border: none !important;
  padding: 16px 0 !important;
}

#message {
  text-align: center;
  color: #fff;
  background: #85766a;
  padding: 14px;
  border-radius: 5px;
}

.page-template-contact-bon-cadeau .round-top .right h2 {
  font-weight: 500;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "sofia_probold";
}

.page-template-contact-bon-cadeau .round-top .right p {
  text-align: justify;
  margin-bottom: 5px;
}

.signature {
  text-align: right;
  margin-top: 20px;
}

.page-template-contact-bon-cadeau .round-top .right .separator {
  width: 75px;
  height: 2px;
  background-color: #ae9887;
  display: block;
  margin: 30px 0;
}


/* Popup CTA */

.popup-content .top a{
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 30px;
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 40px;
}
