@charset "UTF-8";
:root {
  --no-space: 0;
  --xs: 4px;
  --sm: 8px;
  --md: 12px;
  --lg: 16px;
  --xl: 24px;
  --xxl: 32px;
  --xxxl: 40px;
  --4xl: 48px;
  --5xl: 64px;
  --6xl: 72px;
  --7xl: 80px;
}

/* --------- Background --------- */
/* ------- End Background ------- */
/* --------- Generic --------- */
/* ----------- Colors ----------- */
/* --------- End Colors --------- */
/* --------- Font Title --------- */
/* ------- End Font Title ------- */
/* --------- Font Text --------- */
/* ------- End Font Text ------- */
/* --------- Font Menu --------- */
/* ------- End Font Menu ------- */
/* ------- Mobile Font Title ------- */
/* ------- End Mobile Font Title ------- */
.yp-container.yp-container--header {
  background: var(--background);
  margin: auto;
  max-width: 100%;
  padding: var(--no-space);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.yp-container.yp-container--header .menu-desktop {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 var(--7xl);
}
.yp-container.yp-container--header .menu-desktop > *:nth-child(1) {
  justify-self: start;
}
.yp-container.yp-container--header .menu-desktop > *:nth-child(1) img,
.yp-container.yp-container--header .menu-desktop > *:nth-child(1) svg {
  max-height: 50px;
}
.yp-container.yp-container--header .menu-desktop > *:nth-child(2) {
  justify-self: center;
}
.yp-container.yp-container--header .menu-desktop > *:nth-child(3) {
  justify-self: end;
}
.yp-container.yp-container--header .menu-desktop .yp-navbar ul {
  display: flex;
  gap: var(--xxl);
  margin-top: var(--no-space);
}
.yp-container.yp-container--header .menu-desktop .yp-navbar ul li.yp-navbar__item .yp-navbar__link {
  color: var(--menu-color);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.yp-container.yp-container--header .menu-desktop .yp-navbar ul li.yp-navbar__item .yp-navbar__link:hover {
  color: var(--accent-color);
}
.yp-container.yp-container--header .menu-desktop .dual__button {
  align-items: center;
  display: flex;
  gap: var(--lg);
}
.yp-container.yp-container--header .menu-desktop .dual__button .yp-btn-tel {
  color: var(--menu-color);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.yp-container.yp-container--header .menu-desktop .dual__button .yp-btn-tel i {
  margin-right: var(--sm);
}
.yp-container.yp-container--header .menu-desktop .dual__button .yp-btn-tel:hover {
  color: var(--accent-color);
}
.yp-container.yp-container--header .menu-desktop .dual__button .yp-btn {
  background: var(--primary);
  border-radius: 0;
  color: #fff;
  padding: 10px var(--xl);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.yp-container.yp-container--header .menu-desktop .dual__button .yp-btn:hover {
  opacity: 0.9;
}
.yp-container.yp-container--header .yp-row--header-mobile {
  display: none;
}

@media screen and (max-width: 1400px) {
  .yp-container.yp-container--header .menu-desktop .dual__button .yp-btn-tel {
    align-items: center;
    display: flex;
    font-size: 0;
  }
  .yp-container.yp-container--header .menu-desktop .dual__button .yp-btn-tel i {
    font-size: 16px;
    margin-right: var(--no-space);
  }
}
@media screen and (max-width: 991px) {
  .yp-container.yp-container--header .menu-desktop,
.yp-container.yp-container--header .yp-row--header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: var(--lg) var(--xl);
  }
  .yp-container.yp-container--header .menu-desktop > *:nth-child(2),
.yp-container.yp-container--header .menu-desktop > *:nth-child(3),
.yp-container.yp-container--header .yp-row--header > *:nth-child(2),
.yp-container.yp-container--header .yp-row--header > *:nth-child(3) {
    display: none;
  }

  .yp-row--header-mobile {
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    height: 100vh;
    left: 100%;
    padding: var(--xl);
    position: fixed;
    top: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    transition: -webkit-transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
    width: 100%;
    z-index: 10000;
  }
  .yp-row--header-mobile.active {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .yp-row--header-mobile .yp-col--header-mobile-1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--xl);
  }
  .yp-row--header-mobile .yp-col--header-mobile-1 svg,
.yp-row--header-mobile .yp-col--header-mobile-1 img {
    max-height: 60px;
    width: auto;
  }
  .yp-row--header-mobile .yp-col--header-mobile-2 {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: var(--xl);
  }
  .yp-row--header-mobile .yp-col--header-mobile-2 .yp-navbar .yp-navbar__nav {
    align-items: center;
    flex-direction: column;
    gap: var(--xl);
  }
  .yp-row--header-mobile .yp-col--header-mobile-2 .yp-navbar .yp-navbar__link {
    color: var(--menu-color);
    font-size: 1.2rem;
    text-decoration: none;
  }
  .yp-row--header-mobile .yp-col--header-mobile-2 .yp-navbar .yp-navbar__link:hover {
    color: var(--accent-color);
  }
  .yp-row--header-mobile .yp-col--header-mobile-2 .dual__button {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: var(--lg);
  }
  .yp-row--header-mobile .yp-col--header-mobile-2 .dual__button .yp-btn-tel {
    color: var(--menu-color);
    text-decoration: none;
  }
  .yp-row--header-mobile .yp-col--header-mobile-2 .dual__button .yp-btn-tel i {
    margin-right: var(--sm);
  }
  .yp-row--header-mobile .yp-col--header-mobile-2 .dual__button .yp-btn-tel:hover {
    color: var(--accent-color);
  }
  .yp-row--header-mobile .yp-col--header-mobile-2 .dual__button .yp-btn {
    background: var(--primary);
    border-radius: 0;
    color: #fff;
    padding: 10px var(--xl);
    text-decoration: none;
  }
  .yp-row--header-mobile .yp-col--header-mobile-2 .dual__button .yp-btn:hover {
    opacity: 0.9;
  }
  .yp-row--header-mobile .menu-close {
    background: none;
    border: 0;
    cursor: pointer;
  }
  .yp-row--header-mobile .menu-close i {
    color: var(--menu-color);
    font-size: 24px;
  }

  .menu-toggle {
    background: none;
    border: 0;
    cursor: pointer;
  }
  .menu-toggle i {
    color: var(--menu-color);
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .yp-container.yp-container--header .menu-desktop > *:nth-child(1) img {
    max-height: 50px;
    max-width: 90%;
  }

  .yp-row--header-mobile .yp-col--header-mobile-1 img {
    max-width: 90%;
  }
}
body {
  background: var(--background);
  color: var(--text-color);
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  -webkit-font-smoothing: antialiased;
  font-weight: var(--body-font-weight);
  letter-spacing: var(--body-font-letterspacing);
  line-height: var(--body-font-lineheight);
  margin: var(--no-space);
  text-align: var(--body-font-align);
  text-decoration: none;
  text-transform: var(--body-font-transform);
}

h1 {
  font-family: var(--h1-font-family);
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  letter-spacing: var(--h1-font-letterspacing);
  line-height: var(--h1-font-lineheight);
  margin: auto var(--no-space);
  text-align: var(--h1-font-align);
  text-transform: var(--h1-font-transform);
}

h2 {
  font-family: var(--h2-font-family);
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  letter-spacing: var(--h2-font-letterspacing);
  line-height: var(--h2-font-lineheight);
  margin: auto var(--no-space);
  text-align: var(--h2-font-align);
  text-transform: var(--h2-font-transform);
}

h3 {
  font-family: var(--h3-font-family);
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  letter-spacing: var(--h3-font-letterspacing);
  line-height: var(--h3-font-lineheight);
  margin: auto var(--no-space);
  text-align: var(--h3-font-align);
  text-transform: var(--h3-font-transform);
}

h4 {
  font-family: var(--h4-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  letter-spacing: var(--h4-font-letterspacing);
  line-height: var(--h4-font-lineheight);
  margin: auto var(--no-space);
  text-align: var(--h4-font-align);
  text-transform: var(--h4-font-transform);
}

h5 {
  font-family: var(--h5-font-family);
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  letter-spacing: var(--h5-font-letterspacing);
  line-height: var(--h5-font-lineheight);
  margin: auto var(--no-space);
  text-align: var(--h5-font-align);
  text-transform: var(--h5-font-transform);
}

h6 {
  font-family: var(--h6-font-family);
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  letter-spacing: var(--h6-font-letterspacing);
  line-height: var(--h6-font-lineheight);
  margin: auto var(--no-space);
  text-align: var(--h6-font-align);
  text-transform: var(--h6-font-transform);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-color);
}

.yp-container {
  margin: auto;
  max-width: 1320px;
  padding: var(--7xl) var(--no-space);
}

.yp-container--prestation {
  background: var(--background-second);
  max-width: 100%;
}
.yp-container--prestation .yp-row--prestation {
  margin: auto;
  max-width: 1320px;
}

.yp-article-single__title.yp-title {
  color: var(--accent-color);
  font-family: var(--caption-font-family);
  font-size: var(--caption-font-size);
  font-weight: var(--caption-font-weight);
  letter-spacing: var(--caption-font-letterspacing);
  line-height: var(--caption-font-lineheight);
  margin: auto var(--no-space) var(--lg) var(--no-space);
  text-align: var(--caption-font-align);
  text-transform: var(--caption-font-transform);
}

.yp-container--prefooter {
  background-image: var(--background-prefooter);
  background-position: center;
  background-size: cover;
  max-width: 100%;
  position: relative;
}
.yp-container--prefooter::after {
  background: var(--background-prefooter-color);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.yp-container--prefooter .yp-row--prefooter .yp-article-single__title,
.yp-container--prefooter .yp-row--prefooter .yp-article-single__body,
.yp-container--prefooter .yp-row--prefooter .yp-article-single__body * {
  color: var(--text-image) !important;
  position: relative;
  z-index: 1;
}
.yp-container--prefooter .yp-row--prefooter .yp-article-single__title,
.yp-container--prefooter .yp-row--prefooter .yp-article-single__body p {
  color: var(--text-image) !important;
  opacity: 0.6;
}

.yp-testimonial-list__meta-date,
.yp-testimonial-list__title.yp-title {
  display: none;
}

.yp-container--body {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: 100%;
}
.yp-container--body .yp-row--presentation {
  max-width: 1320px;
}
.yp-container--body .yp-row--reassurances {
  background: var(--background-second);
  padding: var(--7xl) var(--no-space);
  width: 100%;
}
.yp-container--body .yp-row--accompagnement {
  padding: var(--7xl) var(--no-space);
}

.yp-container--intern {
  max-width: 100%;
}

@media screen and (max-width: 1280px) {
  .yp-container {
    max-width: 992px;
  }

  .yp-container--prefooter,
.yp-container--prestation {
    max-width: 100%;
  }

  .list-two-cols .yp-articles-list {
    padding: var(--xxxl) !important;
  }
}
@media (max-width: 600px) {
  h1 {
    font-family: var(--mobile-h1-font-family) !important;
    font-size: var(--mobile-h1-font-size) !important;
    font-weight: var(--mobile-h1-font-weight) !important;
    letter-spacing: var(--mobile-h1-font-letterspacing) !important;
    line-height: var(--mobile-h1-font-lineheight) !important;
    text-align: var(--mobile-h1-font-align) !important;
    text-transform: var(--mobile-h1-font-transform) !important;
  }

  h2 {
    font-family: var(--mobile-h2-font-family) !important;
    font-size: var(--mobile-h2-font-size) !important;
    font-weight: var(--mobile-h2-font-weight) !important;
    letter-spacing: var(--mobile-h2-font-letterspacing) !important;
    line-height: var(--mobile-h2-font-lineheight) !important;
    text-align: var(--mobile-h2-font-align) !important;
    text-transform: var(--mobile-h2-font-transform) !important;
  }

  h3 {
    font-family: var(--mobile-h3-font-family) !important;
    font-size: var(--mobile-h3-font-size) !important;
    font-weight: var(--mobile-h3-font-weight) !important;
    letter-spacing: var(--mobile-h3-font-letterspacing) !important;
    line-height: var(--mobile-h3-font-lineheight) !important;
    text-align: var(--mobile-h3-font-align) !important;
    text-transform: var(--mobile-h3-font-transform) !important;
  }

  h4 {
    font-family: var(--mobile-h4-font-family) !important;
    font-size: var(--mobile-h4-font-size) !important;
    font-weight: var(--mobile-h4-font-weight) !important;
    letter-spacing: var(--mobile-h4-font-letterspacing) !important;
    line-height: var(--mobile-h4-font-lineheight) !important;
    text-align: var(--mobile-h4-font-align) !important;
    text-transform: var(--mobile-h4-font-transform) !important;
  }

  h5 {
    font-family: var(--mobile-h5-font-family) !important;
    font-size: var(--mobile-h5-font-size) !important;
    font-weight: var(--mobile-h5-font-weight) !important;
    letter-spacing: var(--mobile-h5-font-letterspacing) !important;
    line-height: var(--mobile-h5-font-lineheight) !important;
    text-align: var(--mobile-h5-font-align) !important;
    text-transform: var(--mobile-h5-font-transform) !important;
  }

  h6 {
    font-family: var(--mobile-h6-font-family) !important;
    font-size: var(--mobile-h6-font-size) !important;
    font-weight: var(--mobile-h6-font-weight) !important;
    letter-spacing: var(--mobile-h6-font-letterspacing) !important;
    line-height: var(--mobile-h6-font-lineheight) !important;
    text-align: var(--mobile-h6-font-align) !important;
    text-transform: var(--mobile-h6-font-transform) !important;
  }

  .yp-article-single__title.yp-title {
    color: var(--accent-color);
    font-family: var(--caption-font-family) !important;
    font-size: var(--caption-font-size) !important;
    font-weight: var(--caption-font-weight) !important;
    letter-spacing: var(--caption-font-letterspacing) !important;
    line-height: var(--caption-font-lineheight) !important;
    text-align: var(--caption-font-align) !important;
    text-transform: var(--caption-font-transform) !important;
  }
}
.yp-container--footer {
  background: var(--primary);
  max-width: 100%;
  padding: var(--5xl) var(--7xl) var(--xxl);
}
.yp-container--footer .yp-row--footer {
  display: grid;
  grid-column-gap: var(--xxl);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.yp-container--footer .yp-row--footer .logo-footer p {
  opacity: 1 !important;
}
.yp-container--footer .yp-row--footer .yp-col {
  display: flex;
  flex-direction: column;
}
.yp-container--footer .yp-row--footer .yp-col p {
  color: var(--text-footer) !important;
  opacity: 0.6;
}
.yp-container--footer .yp-row--footer .yp-col ul {
  margin-top: var(--no-space);
  padding-left: var(--no-space);
}
.yp-container--footer .yp-row--footer .yp-col ul .yp-articles-list__body-preview i {
  margin-right: var(--sm);
}
.yp-container--footer .yp-row--footer .yp-col .yp-navbar__nav {
  display: flex;
  flex-direction: column;
}
.yp-container--footer .yp-row--footer .yp-col .yp-navbar__nav li a {
  color: var(--text-footer) !important;
  opacity: 0.6;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.yp-container--footer .yp-row--footer .yp-col .yp-navbar__nav li a:hover {
  opacity: 1;
}
.yp-container--footer .yp-row--footer .yp-col .yp-articles-list {
  list-style: none;
}
.yp-container--footer .yp-row--footer .yp-col .yp-articles-list .social-media i {
  color: var(--text-footer);
  font-size: 20px;
  margin-right: var(--sm);
  opacity: 0.6;
  transition: all 0.3s ease-out;
}
.yp-container--footer .yp-row--footer .yp-col .yp-articles-list .social-media i:hover {
  opacity: 1;
}
.yp-container--footer .yp-row--mentions-legales {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.yp-container--footer .yp-row--mentions-legales p {
  margin: var(--no-space);
}
.yp-container--footer .yp-row--mentions-legales .yp-article-single__body {
  color: var(--text-footer);
  opacity: 0.6;
}
.yp-container--footer .yp-row--mentions-legales .yp-col--mentions-legales-2 ul.yp-articles-list {
  display: flex;
  gap: var(--lg);
  justify-content: end;
  list-style: none;
  margin: var(--no-space);
  padding: var(--no-space);
}
.yp-container--footer .yp-row--mentions-legales .yp-col--mentions-legales-2 ul.yp-articles-list li a {
  color: var(--text-footer);
  opacity: 0.6;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.yp-container--footer .yp-row--mentions-legales .yp-col--mentions-legales-2 ul.yp-articles-list li a:hover {
  opacity: 1;
}

.yp-container--form {
  align-items: center;
  background: var(--background-second);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  padding: var(--5xl) var(--7xl) var(--no-space);
}
.yp-container--form .yp-row {
  max-width: 1320px;
}
.yp-container--form .yp-row--form {
  -webkit-column-gap: var(--5xl);
          column-gap: var(--5xl);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: var(--5xl) var(--xxl);
}
.yp-container--form .yp-row--form .yp-col--form-1 {
  grid-column: 1/span 2;
}
.yp-container--form .yp-row--form .yp-col--form-2 {
  grid-column: 3/span 3;
}

@media (max-width: 768px) {
  .yp-container--form {
    padding: var(--4xl) var(--lg) var(--no-space) !important;
  }
  .yp-container--form .yp-row--form {
    -webkit-column-gap: var(--xl) !important;
            column-gap: var(--xl) !important;
    grid-template-columns: 1fr !important;
    padding: var(--4xl) var(--lg) !important;
    row-gap: var(--xl) !important;
  }
  .yp-container--form .yp-row--form .yp-col--form-1,
.yp-container--form .yp-row--form .yp-col--form-2 {
    grid-column: auto !important;
  }

  .yp-container--footer .yp-row--footer {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: var(--xxl);
  }
  .yp-container--footer .yp-row--footer .yp-navbar {
    padding: var(--no-space);
  }
  .yp-container--footer .yp-row.yp-row--mentions-legales {
    grid-template-columns: 1fr !important;
    row-gap: var(--sm);
  }

  .yp-container--footer .yp-row--mentions-legales .yp-article-single__body p {
    margin: var(--no-space);
  }

  .yp-container--footer .yp-row--mentions-legales .yp-col--mentions-legales-2 ul.yp-articles-list {
    justify-content: start;
    margin: var(--no-space);
  }
  .yp-container--footer .yp-row--mentions-legales .yp-col--mentions-legales-2 ul.yp-articles-list p {
    margin: var(--no-space);
  }
}
@media (max-width: 600px) {
  .yp-container--footer .yp-row--footer {
    grid-template-columns: 1fr !important;
    row-gap: var(--xxl);
  }

  .yp-container--footer .yp-row--mentions-legales .yp-col--mentions-legales-2 ul.yp-articles-list {
    flex-direction: column;
  }
  .yp-container--footer .yp-row--mentions-legales .yp-col--mentions-legales-2 ul.yp-articles-list p {
    margin: var(--no-space);
  }
}
@media (max-width: 450px) {
  .contact-buttons .contact-dual__button {
    align-items: center;
    flex-direction: column;
  }
}
.yp-container.yp-container--hero {
  margin: var(--no-space);
  max-width: 100%;
  padding: var(--no-space);
}

.hero-slider .slick-track {
  display: flex !important;
  height: 90vh;
}
.hero-slider figure {
  margin: var(--no-space);
  position: relative;
  width: 100vw !important;
}
.hero-slider figure::after {
  background: var(--filtre-image);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.hero-slider figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  width: 100%;
}
.hero-slider figure figcaption {
  display: flex;
  flex-direction: column;
  gap: var(--xl);
  left: 10%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
}
.hero-slider figure figcaption .yp-slider__caption-title {
  color: var(--text-image);
  width: var(--width-title-hero-home);
}
.hero-slider figure figcaption .yp-slider__caption-description {
  color: var(--text-image);
  width: var(--width-subtitle-hero-home);
}
.hero-slider figure figcaption a {
  align-items: center;
  background: var(--background);
  border-radius: 0;
  color: var(--title-color);
  display: flex;
  gap: var(--sm);
  padding: 14.5px var(--xxl);
  text-decoration: none;
  transition: all 0.3s ease-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.hero-slider figure figcaption a:hover {
  background: var(--primary);
  color: var(--text-image);
}
.hero-slider .slick-arrow {
  background: none;
  border: solid 1px var(--text-image);
  bottom: 10%;
  height: 40px;
  position: absolute;
  right: 10%;
  transition: all 0.3s ease-out;
  width: 40px;
}
.hero-slider .slick-arrow i {
  color: var(--text-image);
}
.hero-slider .slick-arrow.slick-prev {
  position: absolute;
  right: calc(10% + 48px);
  z-index: 5;
}
.hero-slider .slick-arrow:hover {
  background: var(--text-image);
  cursor: pointer;
}
.hero-slider .slick-arrow:hover i {
  color: var(--primary);
}
.hero-slider .slick-dots {
  align-items: center;
  bottom: 10%;
  display: flex !important;
  gap: 18px;
  justify-content: center;
  left: 10%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
}
.hero-slider .slick-dots li {
  height: 2px;
  margin: 0;
  transition: all 0.3s ease-out;
  width: 24px;
}
.hero-slider .slick-dots li button {
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0;
  height: 100%;
  padding: 0;
  position: relative;
  transition: background 0.25s ease, opacity 0.25s ease;
  width: 100%;
}
.hero-slider .slick-dots li button::before {
  display: none;
}
.hero-slider .slick-dots li.slick-active {
  width: 48px;
}
.hero-slider .slick-dots li.slick-active button {
  background: var(--text-image);
  width: 48px;
}

.hero-intern .slick-track {
  display: flex !important;
  height: 70vh;
}
.hero-intern .slick-track figure {
  margin: var(--no-space);
  position: relative;
  width: 100vw !important;
}
.hero-intern .slick-track figure::after {
  background: var(--filtre-image);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.hero-intern .slick-track figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  width: 100%;
}
.hero-intern .slick-track figure figcaption {
  display: flex;
  flex-direction: column;
  gap: var(--xl);
  left: 10%;
  position: absolute;
  top: 70%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
}
.hero-intern .slick-track figure figcaption .yp-slider__caption-title {
  color: var(--text-image);
  order: 2;
}
.hero-intern .slick-track figure figcaption .yp-slider__caption-description {
  color: var(--text-image);
  margin: var(--no-space);
  opacity: 0.6;
  order: 1;
}
.hero-intern .slick-track figure figcaption a {
  align-items: center;
  background: var(--background);
  border-radius: 0;
  color: var(--title-color);
  display: flex;
  gap: var(--sm);
  padding: 14.5px var(--xxl);
  text-decoration: none;
  transition: all 0.3s ease-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.hero-intern .slick-track figure figcaption a:hover {
  background: var(--primary);
  color: var(--text-image);
}

@media (max-width: 600px) {
  .hero-slider figure figcaption .yp-slider__caption-title {
    width: 100%;
  }
  .hero-slider figure figcaption .yp-slider__caption-description {
    width: 100%;
  }

  .hero-slider .slick-track figure figcaption,
.hero-intern .slick-track figure figcaption {
    left: 5%;
    max-width: 85%;
  }
}
.yp-row--about {
  display: grid;
  gap: 96px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.yp-row--about figure {
  margin: var(--no-space);
}
.yp-row--about figure img {
  height: 100%;
  width: 100%;
}

.yp-reassurance .yp-articles-list {
  -webkit-column-gap: var(--xl);
          column-gap: var(--xl);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin-top: var(--no-space);
  padding: var(--no-space);
}
.yp-reassurance .yp-articles-list .yp-articles-list__item {
  display: flex;
  flex-direction: column;
  gap: var(--xs);
}
.yp-reassurance .yp-articles-list .yp-articles-list__item * {
  margin: var(--no-space);
}
.yp-reassurance .yp-articles-list .yp-articles-list__item i {
  color: var(--accent-color);
}
.yp-reassurance .yp-articles-list .yp-articles-list__item .yp-articles-list__body-preview {
  display: flex;
  flex-direction: column;
  gap: var(--xs);
}
.yp-reassurance .yp-btn {
  border-bottom: 1px solid #39322d4d;
  color: var(--title-color);
  padding: var(--no-space) var(--sm) var(--xs) var(--no-space);
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.yp-reassurance .yp-btn::after {
  content: "";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  position: relative;
  right: -8px;
  transition: all 0.3s ease-out;
}
.yp-reassurance .yp-btn:hover {
  padding: var(--no-space) var(--md) var(--xs) var(--no-space);
}
.yp-reassurance .yp-btn:hover::after {
  right: -16px;
}

.articles-aligned-center {
  display: flex;
  justify-content: center;
  margin-bottom: var(--xxxl);
  width: 100%;
}
.articles-aligned-center .yp-article-single {
  display: flex;
  flex-direction: column;
  gap: var(--lg);
  max-width: 672px;
  text-align: center;
}
.articles-aligned-center .yp-article-single .yp-article-single__title {
  margin: var(--no-space);
}

.card-background .yp-article-single__body {
  background: var(--primary);
  color: #fff !important;
  padding: var(--xl);
}
.card-background .yp-article-single__body h1,
.card-background .yp-article-single__body h2,
.card-background .yp-article-single__body h3,
.card-background .yp-article-single__body h4,
.card-background .yp-article-single__body h5,
.card-background .yp-article-single__body h6 {
  color: #fff !important;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: var(--xxxl);
  width: 100%;
}
.contact-buttons .contact-dual__button {
  display: flex;
  gap: var(--lg);
}
.contact-buttons .contact-dual__button .yp-btn-devis {
  align-items: center;
  background: var(--background);
  border-radius: 0;
  color: var(--title-color) !important;
  display: flex;
  gap: var(--sm);
  padding: 10px var(--xl);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.contact-buttons .contact-dual__button .yp-btn-devis i {
  color: var(--title-color) !important;
  transition: all 0.3s ease-out;
}
.contact-buttons .contact-dual__button .yp-btn-devis:hover {
  background: var(--primary);
  color: var(--background) !important;
}
.contact-buttons .contact-dual__button .yp-btn-devis:hover i {
  color: var(--background) !important;
}
.contact-buttons .contact-dual__button .yp-btn-tel {
  align-items: center;
  background: transparent;
  border: 1px solid #ffffff30;
  border-radius: 0;
  color: var(--background) !important;
  display: flex;
  gap: var(--sm);
  padding: 10px var(--xl);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.contact-buttons .contact-dual__button .yp-btn-tel i {
  color: var(--background) !important;
  transition: all 0.3s ease-out;
}
.contact-buttons .contact-dual__button .yp-btn-tel:hover {
  background: var(--background-second);
  color: var(--title-color) !important;
}
.contact-buttons .contact-dual__button .yp-btn-tel:hover i {
  color: var(--title-color) !important;
}

.articles-sided {
  padding-bottom: var(--7xl);
}
.articles-sided .yp-article-single {
  align-items: center;
  -webkit-column-gap: var(--7xl);
          column-gap: var(--7xl);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 568px);
}
.articles-sided .yp-article-single__header {
  align-self: end;
  grid-column: 1;
  grid-row: 1;
  margin: 0 0 var(--md);
}
.articles-sided .yp-article-single__body {
  align-self: start;
  grid-column: 1;
  grid-row: 2;
}
.articles-sided .yp-article-single__gallery {
  grid-column: 2;
  grid-row: 1/span 2;
}
.articles-sided .yp-article-single__gallery .yp-gallery__figure {
  margin: 0;
}
.articles-sided .yp-article-single__gallery .yp-gallery__img {
  display: block;
  height: 720px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

main.yp-article-single .yp-article-single__header {
  margin: auto;
  max-width: 1320px;
  padding-top: var(--7xl);
}
main.yp-article-single .yp-article-single__header .yp-article-single__title {
  color: var(--title-color);
  font-family: var(--h1-font-family);
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  letter-spacing: var(--h1-font-letterspacing);
  line-height: var(--h1-font-lineheight);
  margin: 0;
  text-align: var(--h1-font-align);
  text-transform: var(--h1-font-transform);
}
main.yp-article-single .yp-article-single__summary {
  height: calc(70vh - var(--7xl));
  overflow: hidden;
  position: relative;
}
main.yp-article-single .yp-article-single__summary .yp-article-single__header {
  left: 10%;
  position: absolute;
  top: 50%;
  z-index: 2;
}
main.yp-article-single .yp-article-single__summary .yp-article-single__title {
  color: var(--text-image);
  font-family: var(--h1-font-family);
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  letter-spacing: var(--h1-font-letterspacing);
  line-height: var(--h1-font-lineheight);
  margin: 0;
  text-align: var(--h1-font-align);
  text-transform: var(--h1-font-transform);
}
main.yp-article-single .yp-article-single__summary p {
  height: 100%;
  margin: 0;
  position: relative;
}
main.yp-article-single .yp-article-single__summary p::after {
  background: rgba(0, 0, 0, 0.35);
  content: "";
  inset: 0;
  position: absolute;
}
main.yp-article-single .yp-article-single__summary img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
main.yp-article-single .yp-article-single__body {
  margin: auto;
  max-width: 1320px;
  padding-top: var(--7xl);
}
main.yp-article-single .yp-article-single__body .yp-article-single__featured {
  float: right;
  margin: var(--no-space) var(--no-space) var(--7xl) var(--7xl);
}
main.yp-article-single .yp-article-single__body .yp-article-single__featured .yp-article-single__featured-img {
  width: 560px;
}

@media (max-width: 768px) {
  .yp-row--about {
    gap: 48px;
    grid-template-columns: 1fr;
    padding: var(--no-space) var(--7xl);
  }

  .articles-sided {
    padding: var(--no-space) var(--7xl) var(--7xl) var(--7xl);
  }
  .articles-sided .yp-article-single {
    display: flex;
    flex-direction: column;
    gap: var(--4xl);
  }
  .articles-sided .yp-article-single__header, .articles-sided .yp-article-single__body {
    width: 100%;
  }
  .articles-sided .yp-article-single__gallery {
    width: 100%;
  }
  .articles-sided .yp-article-single__gallery .yp-gallery__img {
    height: auto;
  }

  main.yp-article-single .yp-article-single__body {
    padding: var(--7xl) var(--7xl) var(--no-space) var(--7xl);
  }
  main.yp-article-single .yp-article-single__body .yp-article-single__featured {
    float: none;
    margin: var(--no-space) auto;
  }
  main.yp-article-single .yp-article-single__body .yp-article-single__featured .yp-article-single__featured-img {
    margin-bottom: var(--xxxl);
    width: 100%;
  }
}
@media (max-width: 600px) {
  .yp-row--about {
    padding: var(--no-space) var(--xxxl);
  }

  .articles-sided {
    padding: var(--no-space) var(--xxxl) var(--xxxl) var(--xxxl);
  }
  .articles-sided .yp-article-single {
    gap: var(--md);
  }

  main.yp-article-single .yp-article-single__summary {
    height: 70vh;
  }
  main.yp-article-single .yp-article-single__summary .yp-article-single__header {
    top: 55%;
  }

  main.yp-article-single .yp-article-single__summary .yp-article-single__title {
    color: #fff;
    font-family: var(--mobile-h1-font-family) !important;
    font-size: var(--mobile-h1-font-size) !important;
    font-weight: var(--mobile-h1-font-weight) !important;
    letter-spacing: var(--mobile-h1-font-letterspacing) !important;
    line-height: var(--mobile-h1-font-lineheight) !important;
    margin: 0;
    text-align: var(--mobile-h1-font-align) !important;
    text-transform: var(--mobile-h1-font-transform) !important;
  }

  main.yp-article-single .yp-article-single__body {
    padding: var(--xxl) var(--xxl) var(--no-space) var(--xxl);
  }
  main.yp-article-single .yp-article-single__body .yp-article-single__featured {
    float: none;
    margin: var(--no-space) auto;
  }
  main.yp-article-single .yp-article-single__body .yp-article-single__featured .yp-article-single__featured-img {
    margin-bottom: var(--xxxl);
    width: 100%;
  }
}
@media (max-width: 450px) {
  .articles-aligned-center {
    margin: var(--no-space) var(--xxxl) var(--xxxl) var(--xxxl);
    width: auto;
  }
}
.list-two-cols .yp-articles-list {
  display: grid;
  grid-column-gap: var(--xl);
  grid-row-gap: var(--xl);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  padding: var(--no-space);
}
.list-two-cols .yp-articles-list .yp-articles-list__item {
  overflow: hidden;
}
.list-two-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body {
  background: var(--background);
  display: flex;
  flex-direction: column;
  gap: var(--sm);
  padding: var(--xxl);
}
.list-two-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body .yp-articles-list__body-preview {
  display: flex;
  flex-direction: column;
  gap: var(--sm);
}
.list-two-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body p {
  margin: var(--no-space);
}
.list-two-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.list-two-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body a span {
  align-items: center;
  display: flex;
  gap: var(--sm);
}
.list-two-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body a:hover {
  color: var(--primary);
}
.list-two-cols .yp-articles-list .yp-articles-list__item img {
  height: 372px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  width: 100%;
}
.list-two-cols .yp-articles-list .yp-articles-list__item img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.list-two-cols .yp-articles-category {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--xxxl);
}
.list-two-cols .yp-articles-category .yp-btn {
  background: var(--primary);
  border-radius: 0;
  color: #fff;
  padding: 10px var(--xl);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.list-two-cols .yp-articles-category .yp-btn:hover {
  opacity: 0.9;
}

.list-three-cols {
  margin: auto;
  max-width: 1280px;
}
.list-three-cols .yp-articles-list {
  display: grid;
  grid-column-gap: var(--xl);
  grid-row-gap: var(--xl);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  padding: var(--no-space);
}
.list-three-cols .yp-articles-list .yp-articles-list__item {
  overflow: hidden;
}
.list-three-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body {
  background: var(--background);
  display: flex;
  flex-direction: column;
  gap: var(--sm);
  padding: var(--xxl);
}
.list-three-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body .yp-articles-list__body-preview {
  display: flex;
  flex-direction: column;
  gap: var(--sm);
}
.list-three-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body p {
  margin: var(--no-space);
}
.list-three-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.list-three-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body a span {
  align-items: center;
  display: flex;
  gap: var(--sm);
}
.list-three-cols .yp-articles-list .yp-articles-list__item .yp-articles-list__body a:hover {
  color: var(--primary);
}
.list-three-cols .yp-articles-list .yp-articles-list__item img {
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  width: 100%;
}
.list-three-cols .yp-articles-list .yp-articles-list__item img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.list-three-cols .yp-articles-category {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--xxxl);
}
.list-three-cols .yp-articles-category .yp-btn {
  background: var(--primary);
  border-radius: 0;
  color: #fff;
  padding: 10px var(--xl);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.list-three-cols .yp-articles-category .yp-btn:hover {
  opacity: 0.9;
}

.list-coordo .yp-articles-list {
  display: flex;
  flex-direction: column;
  gap: var(--lg);
  list-style: none;
  padding-left: var(--no-space);
}
.list-coordo .yp-articles-list .yp-articles-list__item .yp-articles-list__body-preview {
  align-items: start;
  display: flex;
  gap: var(--lg);
}
.list-coordo .yp-articles-list .yp-articles-list__item .yp-articles-list__body-preview span {
  display: flex;
  margin: var(--no-space);
}
.list-coordo .yp-articles-list .yp-articles-list__item .yp-articles-list__body-preview span:nth-child(1) {
  font-family: var(--caption-font-family);
  font-size: var(--caption-font-size);
  font-weight: var(--caption-font-weight);
  letter-spacing: var(--caption-font-letterspacing);
  line-height: var(--caption-font-lineheight);
  margin: auto var(--no-space);
  text-align: var(--caption-font-align);
  text-transform: var(--caption-font-transform);
}
.list-coordo .yp-articles-list .yp-articles-list__item .yp-articles-list__body-preview span:nth-child(2) {
  color: var(--title-color);
}
.list-coordo .yp-articles-list .yp-articles-list__item .yp-articles-list__body-preview i {
  background: var(--background);
  color: var(--accent-color);
  font-size: 16px;
  padding: 14px;
}

.list-reassurance {
  margin: auto;
  max-width: 1180px;
}
.list-reassurance .yp-articles-list {
  display: grid;
  gap: var(--xxl);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-reassurance .yp-articles-list__item {
  background: rgba(255, 255, 255, 0.35);
  padding: var(--xxl);
}
.list-reassurance .yp-articles-list__body, .list-reassurance .yp-articles-list__body-preview {
  height: 100%;
}
.list-reassurance .yp-articles-list .yp-articles-list__body-preview {
  -webkit-column-gap: var(--xl);
          column-gap: var(--xl);
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
}
.list-reassurance .yp-articles-list .yp-articles-list__body-preview > div:first-child {
  align-items: center;
  background: var(--background-second);
  display: flex;
  grid-column: 1;
  grid-row: 1/span 2;
  height: 48px;
  justify-content: center;
  width: 48px;
}
.list-reassurance .yp-articles-list .yp-articles-list__body-preview > div:first-child i {
  color: var(--accent-color);
  font-size: 20px;
}
.list-reassurance .yp-articles-list .yp-articles-list__body-preview h4 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}
.list-reassurance .yp-articles-list .yp-articles-list__body-preview p {
  font-family: var(--label-font-family);
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  grid-column: 2;
  grid-row: 2;
  letter-spacing: var(--label-font-letterspacing);
  line-height: var(--label-font-lineheight);
  margin: 0;
  text-align: var(--label-font-align);
  text-transform: var(--label-font-transform);
}

.normal-list {
  margin: auto;
  max-width: 1320px;
  padding: var(--no-space) var(--7xl);
}
.normal-list .yp-articles-list {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.normal-list .yp-articles-list__item {
  margin: 0;
}
.normal-list .yp-articles-list__body-preview {
  display: flex;
  flex-direction: column;
}
.normal-list .sub-title {
  color: #ddd2c3;
  font-size: 18px;
  margin-bottom: 16px;
}
.normal-list p {
  font-family: var(--label-font-family);
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  letter-spacing: var(--label-font-letterspacing);
  line-height: var(--label-font-lineheight);
  margin: 0;
  text-align: var(--label-font-align);
  text-transform: var(--label-font-transform);
}

@media (max-width: 1280px) {
  .list-three-cols .yp-articles-list {
    padding: var(--no-space) var(--xxxl) !important;
  }
}
@media (max-width: 991px) {
  .normal-list .yp-articles-list {
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .list-two-cols .yp-articles-list {
    gap: var(--xl) !important;
    grid-template-columns: 1fr !important;
  }

  .list-three-cols .yp-articles-list {
    gap: var(--xl) !important;
    grid-template-columns: 1fr !important;
  }
  .list-three-cols .yp-articles-list .yp-articles-list__item img {
    height: 372px;
  }

  .list-reassurance .yp-articles-list {
    grid-template-columns: 1fr !important;
    padding: var(--no-space) var(--7xl);
  }
}
@media (max-width: 600px) {
  .yp-reassurance .yp-articles-category {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: var(--xxxl);
  }

  .list-two-cols .yp-articles-list .yp-articles-list__item img,
.list-three-cols .yp-articles-list .yp-articles-list__item img {
    height: 243px;
  }

  .yp-reassurance .yp-articles-list {
    grid-row-gap: var(--xxl);
    grid-template-columns: 1fr;
  }
  .yp-reassurance .yp-articles-list .yp-articles-list__item .yp-articles-list__body-preview {
    align-items: center;
  }

  .list-reassurance .yp-articles-list {
    grid-template-columns: 1fr !important;
    padding: var(--no-space) var(--xxxl);
  }

  .normal-list {
    padding: var(--no-space) var(--xxxl);
  }
}
@media (max-width: 575px) {
  .normal-list .yp-articles-list {
    grid-template-columns: 1fr;
  }
}
.yp-testimonial-list__body figure .yp-testimonial-list__meta {
  display: flex;
  justify-content: center;
  text-align: center;
}
.yp-testimonial-list__body figure .yp-testimonial-list__meta .yp-testimonial-list__meta-link {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--md);
  margin-bottom: var(--xxxl);
  max-width: 768px;
  text-decoration: none;
}
.yp-testimonial-list__body figure .yp-testimonial-list__meta .yp-testimonial-list__meta-link .yp-testimonials-list__meta-review {
  color: var(--title-color);
  font-family: var(--testi-font-family);
  font-size: var(--testi-font-size);
  font-weight: var(--testi-font-weight);
  letter-spacing: var(--testi-font-letterspacing);
  line-height: var(--testi-font-lineheight);
  text-align: var(--testi-font-align);
  text-transform: var(--testi-font-transform);
}
.yp-testimonial-list__body figure .yp-testimonial-list__meta .yp-testimonial-list__meta-link .yp-testimonial-list__meta-author {
  color: var(--title-color);
  font-family: var(--testi-title-family);
  font-size: var(--testi-title-size);
  font-weight: var(--testi-title-weight);
  letter-spacing: var(--testi-title-letterspacing);
  line-height: var(--testi-title-lineheight);
  text-align: var(--testi-title-align);
  text-transform: var(--testi-title-transform);
}
.yp-testimonial-list__body .yp-testimonial-list__btn.yp-btn--add.yp-btn {
  background: var(--primary);
  border-radius: 0;
  color: var(--background);
  margin-top: var(--xxxl);
  padding: 10px var(--xl);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.yp-testimonial-list__body .yp-testimonial-list__btn.yp-btn--add.yp-btn:hover {
  opacity: 0.9;
}
.yp-testimonial-list__body .slick-dots {
  align-items: center;
  bottom: 10%;
  display: flex !important;
  gap: var(--sm);
  justify-content: center;
  left: 50%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.yp-testimonial-list__body .slick-dots li {
  height: 6px;
  margin: 0;
  transition: width 0.3s ease-out;
  width: 12px;
}
.yp-testimonial-list__body .slick-dots li button {
  background: #ddd2c3;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 6px;
  padding: 0;
  transition: background 0.25s ease;
  width: 100%;
}
.yp-testimonial-list__body .slick-dots li button::before {
  display: none;
}
.yp-testimonial-list__body .slick-dots li.slick-active {
  width: 32px;
}
.yp-testimonial-list__body .slick-dots li.slick-active button {
  background: #a1765c;
}
.yp-testimonial-list__body .slick-arrow {
  align-items: center;
  background: transparent;
  border: 1px solid var(--text-color);
  bottom: -7%;
  color: var(--text-color);
  cursor: pointer;
  display: flex !important;
  height: 42px;
  justify-content: center;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all 0.3s ease-out;
  width: 42px;
  z-index: 10;
}
.yp-testimonial-list__body .slick-arrow i {
  font-size: 18px;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.yp-testimonial-list__body .slick-arrow:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--background);
}
.yp-testimonial-list__body .slick-arrow:hover i {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.yp-testimonial-list__body .slick-next {
  right: 40%;
}
.yp-testimonial-list__body .slick-prev {
  left: 40%;
}

.yp-testimonial-list__body:not(figure *) {
  text-align: center;
}

@media (max-width: 768px) {
  .yp-testimonial-list__body .slick-next {
    bottom: 0%;
    right: 30%;
  }
  .yp-testimonial-list__body .slick-prev {
    bottom: 0%;
    left: 30%;
  }
}
@media (max-width: 600px) {
  .yp-testimonial-list__body .slick-next {
    right: 20%;
  }
  .yp-testimonial-list__body .slick-prev {
    left: 20%;
  }
}
.yp-extension--contact_form {
  background: var(--background);
  padding: var(--xxxl);
}
.yp-extension--contact_form .yp-form {
  display: flex;
}
.yp-extension--contact_form .yp-form .yp-form__body--contact {
  display: flex;
  flex-direction: column;
}
.yp-extension--contact_form .yp-form .yp-form__fields {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  row-gap: var(--sm);
}
.yp-extension--contact_form .yp-form .yp-form__fields .email-input-field {
  display: none;
}
.yp-extension--contact_form .yp-form .yp-form__fields .yp-form__group label {
  text-transform: uppercase;
}
.yp-extension--contact_form .yp-form .yp-form__fields .yp-form__group .yp-form__control {
  background: var(--background-second);
  border: 1px solid #ddd0c6;
  border-radius: 0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: var(--text-color);
  padding: 12px 16px;
  transition: all 0.3s ease-out;
}
.yp-extension--contact_form .yp-form .yp-form__fields .yp-form__group textarea {
  font-family: var(--body-font-family);
  max-width: 100%;
}
.yp-extension--contact_form .yp-form .yp-form__fields .yp-form__group--message {
  grid-column: 1/-1;
}
.yp-extension--contact_form .yp-form .yp-form__fields .yp-recaptcha {
  display: none;
  visibility: hidden;
}
.yp-extension--contact_form .yp-form .yp-form__group--rgpd-description {
  color: #9b8f84;
  cursor: pointer;
  font-size: 14px;
  line-height: 2;
  margin-top: var(--sm);
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}
.yp-extension--contact_form .yp-form .yp-form__group--rgpd-description:not(.is-open) {
  max-height: 32px;
}
.yp-extension--contact_form .yp-form .yp-form__group--rgpd-description::after {
  background: var(--background);
  bottom: 0;
  content: "Voir plus";
  padding-left: 12px;
  position: absolute;
  right: 0;
  top: 0;
}
.yp-extension--contact_form .yp-form .yp-form__group--rgpd-description.is-open {
  max-height: 1000px;
}
.yp-extension--contact_form .yp-form .yp-form__group--rgpd-description.is-open::after {
  content: "Voir moins";
  position: relative;
}
.yp-extension--contact_form .yp-form .yp-form__submit-btn.yp-btn {
  align-items: center;
  background: var(--primary);
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  gap: 12px;
  justify-content: center;
  margin-top: var(--xxxl);
  padding: 10px var(--xl);
  text-decoration: none;
  transition: all 0.3s ease-out;
  width: 100%;
}
.yp-extension--contact_form .yp-form .yp-form__submit-btn.yp-btn::before {
  content: "";
  font-family: "Font Awesome 6 Pro";
  font-size: 18px;
  font-weight: 400;
}
.yp-extension--contact_form .yp-form .yp-form__submit-btn.yp-btn:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  .yp-extension--contact_form .yp-form .yp-form__fields {
    grid-template-columns: 1fr;
  }
}