:root {
  --bg-color-1: #005F40;
  --bg-color-2: #B09A70;
  --bg-color-3: #FFF;
  /* Text colors */
  --text-white-color: #FFF;
  --text-color-2: #B09A70;
  --text-color-3: #005F40;
  --default-link-color-hover: #B09A70;
  --text-color-1-hover: #FFF;
  --link-color-1-hover: #B09A70;
  --link-color-3-hover: #B09A70;
  /* Title colors */
  --title-color-2: #B09A70;
  --title-color-3: #005F40;
  /* Layout */
  --inner-page-width: 1100px;
  /* Forms */
  --form-bg: var(--bg-color-1);
  --form-bg-hover: var(--bg-color-2);
  --form-border: var(--bg-color-2);
  --form-text-color: var(--bg-color-3);
  --form-placeholder-color: var(--bg-color-3);
  --form-button-bg: var(--bg-color-2);
  /* Layout */
  --full-width-padding-vertical: 2rem;
  --full-width-padding-horizontal: 1rem;
}

@media (min-width: 768px) {

  :root {
    --full-width-padding-horizontal: 2rem;
  }
}

html {}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-white-color);
  background-color: var(--bg-color-1);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
}

.big-text {
  font-size: 18px;
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 26px;
  }

  .big-text {
    font-size: 22px;
  }
}

p {
  line-height: 26px;
  margin-block: 2rem;
}

.break {
  flex-basis: 100%;
  height: 0;
}

.nowrap {
  white-space: nowrap;
}


/* Titres */
h1,
h2,
h3 {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

h2 {
  font-weight: 800;
  font-size: 1.625rem;
  line-height: 1.625rem;
  letter-spacing: 4px;
  padding: 60px 0 20px 0;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.375rem;
    line-height: 2.375rem;
  }
}

h3 {
  font-size: 1.1rem;
  line-height: 1.1rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

.page-title {
  flex-basis: 100%;
  font-size: 30px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.page-title,
.page-title.animated {
  animation: textSize 1s normal;
  animation-delay: 0ms;
}

.page-title.loaded {
  display: block;
  ;
}

@keyframes textSize {
  0% {
    font-size: 16px;
  }

  100% {
    font-size: 30px;
  }
}

@media (min-width: 768px) {
  .page-title {
    font-size: 36px;
  }

  @keyframes textSize {
    0% {
      font-size: 26px;
    }

    100% {
      font-size: 36px;
    }
  }
}

/* Entete */
#header {
  width: 100%;
  transition: all .5s ease;
}

.header-fixed #header {
  position: fixed;
  z-index: 2;
  top: 0;
}

@media (min-width: 768px) {
  .header-fixed #header {
    height: 134px;
  }
}

.logo-wrapper,
.logo-wrapper svg {}

.logo-wrapper {
  background-color: var(--bg-color-1);
  position: relative;
  padding-top: 1rem;
  z-index: 1;
}

.logo-wrapper a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.logo-wrapper img {
  width: 250px;
  max-height: 100%;
  margin-block-end: 1rem;
}
@media (min-width: 414px) {
  .logo-wrapper img {
    width: 300px;
  }
}

.logo-wrapper a,
.logo-wrapper .page-title {
  color: var(--text-white-color);
  text-decoration: none;
}

.logo-wrapper .page-title {
  margin-block-start: 1rem;
  margin-block-end: 1rem;
}

#header.scrolled .page-title {
  display: none;
}

.logo-wrapper a:hover {
  text-decoration: none;
}

.logo {
  margin: 0 4%;
}

@media (min-width: 768px) {

  #header,
  body.header-fixed.header-animated #header.scrolled {
    height: 108px;
  }

  .logo-wrapper img {
    margin-block-end: 0.5rem;
  }

  .logo {
    margin: 0 2%;
  }
}

.menu-wrapper {
  position: absolute;
  top: -600%;
  width: 100%;
  transition: top 0.5s ease;
}

.menu {
  background-color: var(--bg-color-1);
  justify-content: center;
  display: flex;
  padding-bottom: 0.5rem;
}

.menu ul {
  list-style-type: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li {
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  display: none;
  text-align: center;
}

#header .menu ul li.loaded {
  display: list-item;
}

.menu ul li:before {
  display: none;
}

.menu ul li:last-child:after {
  display: none;
}

#header .menu ul li a {
  text-decoration: none;
  color: var(--text-white-color);
  padding: 5px 0.5rem;
  display: inline-block;
  line-height: 30px;
}

#header .menu ul li a:hover {
  color: var(--link-color-1-hover);
}

@media screen and (min-width: 768px) {
  .menu-wrapper {
    position: static;
    display: block;
    top: 0;
  }

  .menu {
    height: 40px;
  }

  .menu ul {
    display: flex;
  }

  .menu ul li {
    text-align: initial;
  }
}

@media screen and (min-width: 1024px) {
  .menu ul li {
    font-size: 18px;
  }

  #header .menu ul li a {
    padding: 5px 20px;
  }
}

/* Burger */
.menu-wrapper.active {
  top: 100px;
}
.scrolled .menu-wrapper.active {
  top: 54px; 
}
@media (min-width: 414px) {
  .scrolled .menu-wrapper.active {
    top: 58px; 
  }
}
#openMenu {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #openMenu {
    display: none;
  }
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--bg-color-3);
  margin: 6px 0;
}


#page-inner-wrapper {
  color: var(--text-white-color);
  animation: opacity 2s normal;
  animation-delay: 0ms;
  margin-top: 101px;
}

@keyframes opacity {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

h1 {
  font-family: 'Cinzel';
  font-weight: 800;
  margin-bottom: 0;
  text-align: center;
  font-size: 24px;
}

#page-inner-wrapper .default-page h1 {
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  #page-inner-wrapper .default-page h1 {
    padding-top: 60px;
  }
}

#page-inner-wrapper a {
  color: var(--text-white-color);
}

#page-inner-wrapper a:hover {
  color: #FFF;
}

/* Image d'entête home */
.image-header {
  line-height: 0;
}

.image-header img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  aspect-ratio: 2.086;
  object-fit: cover;
  object-position: top;
}


/* Pages éditos par défaut : exemple : mentions légales */
.inner-edito-page h1 {
  font-size: 38px;
  line-height: 42px;
  margin: 40px 0 20px 0;
}

.inner-edito-page {
  padding: 20px 5%;
  min-height: 78vh;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 1.5rem;
  background-color: var(--bg-color-1);
  color: var(--text-white-color);
  font-size: 14px;
  padding-block: 1rem 2rem;
}

footer>div,
footer>ul {
  flex: 0 0 100%;
}

footer ul {
  list-style: none;
  list-style-type: none;
}

footer a {
  color: var(--text-white-color);
  text-decoration: none;
}

footer a:hover {
  opacity: 0.5;
}

footer .navbar-brand {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

footer .logo {
  max-width: 16rem;
  margin: 0 auto 0.5rem auto;
}

@media screen and (min-width: 768px) {
  footer .logo {
    max-width: 19rem;
  }
}

.social-links {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin: 0;
  justify-content: center;
}

li.social a {
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 49px;
  height: 49px;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
  padding: 0 10px;
}

li.social a:first-child {
  padding-left: 0;
}

li.social a:last-child {
  padding-right: 0;
}

li.social.google a {
  background-image: url('../images/google.png');
}

li.social.facebook a {
  background-image: url('../images/facebook.png');
}

li.social.instagram a {
  background-image: url('../images/instagram.png');
}

li.social.linkedin a {
  background-image: url('../images/linkedin.png');
}

.pages-links {
  position: relative;
  padding-top: 1.5rem;
  padding-left: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

.pages-links:before {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  height: 2px;
  width: 90px;
  background-color: var(--bg-color-2);
}

@media screen and (min-width: 768px) {}

#return-to-top {
  display: none;
}

/* Fixed header pour les ancres : décalage des blocs *
.modular {
  scroll-snap-margin-top: 100px;
  scroll-margin-top: 100px;
}

@media (min-width: 768px) {
  .modular {
    scroll-snap-margin-top: 108px;
    scroll-margin-top: 108px;
  }
}*/

/*
* Hauteur restante après header
*/
@media screen and (min-width: 768px) and (min-aspect-ratio: 16/10) {

  .modular {}
}

/* Générique */
.full-width {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.full-width h2 {
  width: 100%;
  text-align: center;
}

.full-width .inner-content {
  padding: 0 var(--full-width-padding-horizontal) var(--full-width-padding-vertical) var(--full-width-padding-horizontal);
  max-width: var(--inner-page-width);
}

.full-width .inner-content.-with-padding-top {
  padding-top: var(--full-width-padding-vertical);
}

.full-width.title-left h2 {
  text-align: left;
  padding-inline-start: 5%;
}

.bordered {
  border-top: 4px solid var(--bg-color-2);
}


/*
 * Blocs avec bordures décalées
 */
.BorderedBlocksList {
  --full-width-padding-vertical: 4rem;
  display: column;
  padding-block-start: 2rem;
}

.BorderSpaced {
  --border-spaced-space: 0%;
  --border-spaced-padding: 1.5rem;
  --border-spaced-light-opacity: 0;
  --border-spaced-bold-opacity: 0;
  --border-spaced-width: 1px;
  --border-spaced-animation-duration: 2s;
  width: 100%;
  display: flex;
}

@media (min-width: 1024px) {
  .BorderSpaced {
    --border-spaced-space: 50%;
    --border-spaced-space-ready: 50%;
    --border-spaced-light-opacity: 0.5;
    --border-spaced-bold-opacity: 1;
  }
}

.BorderSpaced-inner {
  position: relative;
  width: 100%;
}

.BorderSpaced-text-wrapper {
  margin-top: -30px;
}

.BorderSpaced-title {
  padding: 1.5rem 0 0.5rem 0;
}

@media (min-width: 1024px) {
  .BorderSpaced-inner {
    width: 50%;
  }

  .BorderSpaced-title {
    padding: 1.5rem 0;
  }
}

.BorderSpaced-text {
  text-align: justify;
}

.BorderSpaced-inner:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  margin-top: calc(-1 * var(--border-spaced-padding));
  padding: var(--border-spaced-padding) 0;
  border: var(--border-spaced-width) solid var(--border-block-color);
}

.BorderSpaced.-light :after {
  opacity: var(--border-spaced-light-opacity);
}

.BorderSpaced.-bold :after {
  opacity: var(--border-spaced-bold-opacity);
}

.BorderSpaced.-left {
  justify-content: start;
}

.BorderSpaced.-right {
  justify-content: end;
}
/*
.BorderSpaced.-left .BorderSpaced-inner:after {
  left: var(--border-spaced-space);
}*/
.animation .BorderSpaced.-left .BorderSpaced-inner:after {
  left: var(--border-spaced-space);
  animation: border-position-left var(--border-spaced-animation-duration) normal;
  animation-delay: 0ms;
}

@keyframes border-position-left {
  0% {
    left: calc(-1 * var(--border-spaced-space));
  }

  100% {
    left: var(--border-spaced-space);
  }
}

.BorderSpaced.-right .BorderSpaced-text-wrapper {
  margin-left: calc(-1 *var(--border-spaced-space));
  padding-right: var(--border-spaced-space);
}
/*
.BorderSpaced.-right .BorderSpaced-inner:after {
  right: 0;
}*/
.animation .BorderSpaced.-right .BorderSpaced-inner:after {
  right: 0;
  animation: border-position-right var(--border-spaced-animation-duration) normal;
  animation-delay: 0ms;
}

@keyframes border-position-right {
  0% {
    right: calc(-1 * var(--border-spaced-space));
  }

  100% {
    right: 0;
  }
}

/* With main title inside */
.BorderSpaced-main-title {
  padding: 0;
}

.BorderSpaced.-bold.-huge-margin-bottom {
  margin-bottom: 6rem;
}

.BorderSpaced.-bold.-main-title :after {
  --border-spaced-bold-opacity: 1;
}

.BorderSpaced.-right.-main-title .BorderSpaced-inner:after {
  --border-spaced-main-title-border-decalage: 1.5rem;
  right: var(--border-spaced-main-title-border-decalage);
  width: 55%;
}
.animation .BorderSpaced.-right.-main-title .BorderSpaced-inner:after {
  animation: border-position-right-title var(--border-spaced-animation-duration) normal;
  animation-delay: 0ms;
}
@keyframes border-position-right-title {
  0% {
    right: calc(-1 * var(--border-spaced-main-title-border-decalage));
  }

  100% {
    right: var(--border-spaced-main-title-border-decalage);
  }
}

.BorderSpaced.-left .BorderSpaced-main-title {
  text-align: left;
  left: 5%;
}

.BorderSpaced.-right .BorderSpaced-main-title {
  text-align: right;
  right: 5%;
}

@media (min-width: 768px) {
  .BorderSpaced.-right.-main-title .BorderSpaced-inner:after {
    --border-spaced-main-title-border-decalage: 2rem;
  }
}

@media (min-width: 1024px) {
  .BorderSpaced.-bold.-huge-margin-bottom {
    margin-bottom: 0;
  }
}

/* Placement cadres */
@media (min-width: 1024px) {
  .BorderSpaced.-placement-tiny {
    --border-spaced-space: 20%;
  }

  .BorderSpaced.-placement-small {
    --border-spaced-space: 30%;
  }

  .BorderSpaced.-placement-medium {
    --border-spaced-space: 50%;
    /* Also the default value */
  }

  .BorderSpaced.-placement-big {
    --border-spaced-space: 70%;
  }

  .BorderSpaced.-placement-huge {
    --border-spaced-space: 85%;
  }
}

.BorderSpaced p:first-child {
  margin-block-start: 1rem;
}

.BorderSpaced p:last-child {
  margin-block-end: 3rem;
}

@media (min-width: 1024px) {
  .BorderSpaced p:first-child {
    margin-block-start: 2rem;
  }

  .BorderSpaced p:last-child {
    margin-block-end: 4rem;
  }
}

/**
 * Partenaires
 */
.partenaires-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}


@media (min-width: 1024px) {

  .partenaires-wrapper {
    height: 866px;
  }

  .rectangles-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .animation .rectangles-wrapper {
    animation: rectangles-partenaires 2s normal;
    animation-delay: 0ms;
  }
  @keyframes rectangles-partenaires {
    0% {
      width: 0%;
    }
  
    100% {
      width: 100%;
    }
  }
  .rectangle {
    position: absolute;
    border: 1px solid var(--bg-color-2);
  }
  .rectangle.l-t {
    width: 30%;
    height: 30%;
    top: 10%;
    left: -10%;
  }
  .rectangle.l-b {
    width: 30%;
    height: 25%;
    bottom: 15%;
    left: -7%;
  }
  .rectangle.md-md {
    width: 70%;
    height: 30%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .rectangle.r-t {
    width: 20%;
    height: 20%;
    right: 0%;
    top: 20%;
  }
  .rectangle.r-b {
    width: 30%;
    height: 20%;
    right: -10%;
    bottom: 20%;
  }
  .rectangle.r-b2 {
    width: 30%;
    height: 20%;
    right: 15%;
    bottom: 5%;
  }

  .section-title {
    position: absolute;
    top: 66px;
  }
}

/**
 * Honoraires
 */
.honoraires-modes {
  text-align: center;
}

.honoraire-mode {
  margin-block: 4rem;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 2rem;
}

@media (min-width: 1024px) {
  .honoraires-wrapper.full-width {
    display: block;
  }

  .honoraires-inner-content {
    width: 900px;
  }

  .honoraires-text-wrapper {
    padding: 6rem 0;
  }

  .honoraires-text-wrapper.honoraires-text1-wrapper {
    padding-top: 0;
  }

  .honoraires-text-inner {
    max-width: 550px;
    margin: 0 auto;
  }

  .honoraires-modes {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    text-align: initial;
  }

  .honoraire-mode {
    position: relative;
    display: inline-block;
    margin-block: 0;
    font-size: inherit;
    line-height: inherit;
  }

  .honoraire-mode:after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 250%;
    border: 1px solid var(--bg-color-1);
    opacity: 1;
  }
  .animation .honoraire-mode:after {
    animation: partenaires-cadres-anim 2s normal;
    animation-delay: 0ms;
  }

  .honoraire-mode1:after {
    top: -120%;
    right: -32%;
  }

  .honoraire-mode2:after {
    width: 140%;
    height: 300%;
    top: -50%;
    left: -72%;
    border-width: 2px;
  }
  .animation .honoraire-mode2:after {
    animation-name: partenaires-cadres-anim-2;
  }
  @keyframes partenaires-cadres-anim {
    0% {
      right: 200%;
      opacity: 0;
    }

    100% {
      right: -32%;
      opacity: 1;
    }
  }

  @keyframes partenaires-cadres-anim-2 {
    0% {
      left: 200%;
      opacity: 0;
    }

    100% {
      left: -72%;
      opacity: 1;
    }
  }
}

/**
 * Half width render
 */
@media screen and (min-width: 768px) {

  .half-width-cols .columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .half-width-cols .col {
    padding: 2rem;
  }

  .half-width-cols .col-1 {}

  .half-width-cols .col-2 {}
}

@media screen and (min-width: 1200px) {

  .half-width-cols .col {
    padding: 3rem 4rem;
  }
}

/**
 * Map
 */

iframe {
  pointer-events: none;
  /* disable map moves */
}


/**
 * Contact
 */

.contact-wrapper .columns {}

.contact-wrapper h2 {
  color: var(--text-color-2);
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
}

.contact-wrapper .white h2 {
  color: var(--text-color-2);
  padding-top: 0;
  padding-bottom: 2.5rem;
  text-align: center;
}

.contact-wrapper a {
  text-decoration: none;
}

.contact-wrapper .col {
  padding-block: 3rem;
  padding-inline: var(--full-width-padding-horizontal);
}

.contact-wrapper .col-1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contact-wrapper .col-1 h2 {
  text-transform: none;
}

@media screen and (min-width: 414px) {
  .contact-wrapper h2 {
    font-size: 36px;
    line-height: 36px;
  }
}

@media screen and (min-width: 514px) {
  .contact-wrapper .col-1 {
    background-size: 50%;
  }
}

@media screen and (min-width: 768px) {
  .contact-wrapper h2 {
    padding-top: 40px;
  }

  .contact-wrapper .col {}
}

@media screen and (min-width: 1200px) {
  .contact-wrapper .columns {
    padding: 0;
  }
}

/* Page seules par défaut */
.default-page {
  max-width: 1200px;
  margin: 0 auto;
}

/* Forms */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    background-color: var(--form-bg) !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--form-bg) inset !important;
    color: var(--form-text-color) !important;
    -webkit-text-fill-color: var(--form-text-color) !important;
}

.form-field .form-label {
  display: none;
}

.form-field.city-check {
  margin: 10px 0 20px 0;
  font-size: 16px;
  background-color: var(--form-bg);
  padding: 10px;
  color: var(--form-text-color);
}

.form-field.city-check .form-label {
  display: block;
}

.form-field.city-check .form-data {
  display: flex;
}

input[type="text"],
input[type="email"],
textarea,
button {
  color: var(--form-text-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  border: none;
  box-sizing: border-box;
}

input[type="text"],
input[type="email"],
textarea {
  background-color: var(--form-bg);
  padding: 10px;
  margin: 10px 0 10px 0;
  width: 100%;
}

input[type="text"],
input[type="email"],
textarea,
.city-check {
  border-bottom: 2px solid var(--bg-color-2);
}

::-webkit-input-placeholder {
  color: var(--form-placeholder-color);
}

::-moz-placeholder {
  color: var(--form-placeholder-color);
}

::-ms-placeholder {
  color: var(--form-placeholder-color);
}

::placeholder {
  color: var(--form-placeholder-color);
}

.button,
button {
  background-color: var(--form-button-bg);
  text-transform: uppercase;
  padding: 1rem;
  text-decoration: none;
  width: 100%;
}

.button:hover,
button:hover {
  background-color: var(--form-bg-hover);
  color: #FFF;
}

textarea {
  min-height: 100px;
}

/* Retour vers le haut */
#return-to-top {
  text-indent: -9999px;
  overflow: hidden;
  background: url('../images/up.png') no-repeat;
  background-size: 50%;
  width: 49px;
  height: 27px;
  display: block;
  position: fixed;
  bottom: 3%;
  right: 3%;
}

/* Messages Front */
.toast {
  position: absolute;
  width: 100%;
  height: 40px;
  line-height: 40px;
  top: 110px;
  left: 0;
  opacity: 0;
  z-index: -300;
  text-align: center;
  animation: hideMe 5s forwards;
}

@keyframes hideMe {
  0% {
    opacity: 1;
    z-index: 300;
  }

  80% {
    opacity: 1;
    z-index: 300;
  }

  100% {
    opacity: 0;
    z-index: -300;
  }
}

.toast-success {
  background-color: #5E8A75;
  color: #E3D3BD;
}

.toast-error {
  background-color: #D28640;
  color: #E3D3BD;
}

.toast-error b,
.toast-error br {
  display: none;
}


/* Full width blocks with colors */
@media screen and (min-width: 1200px) {
  .full-width-colored {
    position: relative;
    z-index: 0;
    margin-right: -600rem;
    margin-left: -600rem;
    padding-right: 600rem;
    padding-left: 600rem;
    overflow-x: hidden;
  }

  .full-width-colored:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 598.5rem;
    right: 598.5rem;
  }

  .full-width-colored .columns {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Couleurs */
.green,
.green.full-width-colored,
.green.full-width-colored:before {
  --border-block-color: var(--bg-color-3);
  background-color: var(--bg-color-1);
}

.golden {
  --border-block-color: var(--bg-color-1);
  background-color: var(--bg-color-2);
}

.white {
  --border-block-color: var(--bg-color-2);
  background-color: var(--bg-color-3);
  color: var(--text-color-3);
}

.white h2,
.white h3,
.white h4 {
  color: var(--title-color-3);
}

.white a:hover {
  color: var(--link-color-3-hover);
}


/**
  * Sprites
  */
.sprite {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  display: block;
}

.sprite-facebook {
  width: 49px;
  height: 49px;
  background-position: -105px -55px;
}

.sprite-google {
  width: 31px;
  height: 32px;
  background-position: -5px -114px;
}

.sprite-instagram {
  width: 34px;
  height: 34px;
  background-position: -46px -114px;
}

.sprite-up {
  width: 49px;
  height: 27px;
  background-position: -164px -74px;
}

#carte .inner-content  {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1200px) {
  #carte .inner-content img {
    width: 100%;
  }
}
