@charset "UTF-8";
:root {
  --neutral-50: #F3F0EE;
  --neutral-100: #E9E5E2;
  --neutral-900: #44230F;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transform: scale(1);
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
}
a:focus-visible {
  outline: 1px solid #44230F;
  border-radius: 4px;
  outline-offset: 4px;
}
a:active {
  outline: none;
  transform: scale(0.97);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: #44230F;
  color: #F3F0EE;
}

/* width */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #beb2ac;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #755f51;
  border-radius: 9999px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #988477;
}

body {
  background-color: #F3F0EE;
  background-image: url("./img/noise.png");
  background-repeat: repeat;
}

@font-face {
  font-family: "Switzer";
  src: url("./fonts/Switzer/Switzer-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nyght-Serif";
  src: url("./fonts/Nyght-Serif/NyghtSerif-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nyght-Serif";
  src: url("./fonts/Nyght-Serif/NyghtSerif-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: Italic;
}
@font-face {
  font-family: "Nyght-Serif";
  src: url("./fonts/Nyght-Serif/NyghtSerif-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nyght-Serif";
  src: url("./fonts/Nyght-Serif/NyghtSerif-RegularItalic.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: Italic;
}
@font-face {
  font-family: "Nyght-Serif";
  src: url("./fonts/Nyght-Serif/NyghtSerif-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nyght-Serif";
  src: url("./fonts/Nyght-Serif/NyghtSerif-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: Italic;
}
@font-face {
  font-family: "Nyght-Serif";
  src: url("./fonts/Nyght-Serif/NyghtSerif-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nyght-Serif";
  src: url("./fonts/Nyght-Serif/NyghtSerif-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: Italic;
}
@font-face {
  font-family: "Nyght-Serif";
  src: url("./fonts/Nyght-Serif/NyghtSerif-Dark.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nyght-Serif";
  src: url("./fonts/Nyght-Serif/NyghtSerif-DarkItalic.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: Italic;
}
body {
  font-family: "Switzer", Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  line-height: 1.333;
  color: #44230F;
}

strong, b {
  font-weight: 600;
}

input[type=password], input[type=text], input[type=email], textarea, input[type=submit] {
  font-family: "Switzer", Arial, Helvetica, sans-serif;
}

h1 + *, h2 + *, h3 + *, h4 + *, h5 + *, h6 + *, p + *, p + p {
  margin-top: 1.25rem;
}

p + * {
  margin-top: 2rem;
}

h1 + *, h2 + * {
  margin-top: 1.75rem;
}

h1, h2, h3 {
  font-family: "Nyght-Serif", "Times New Roman", Times, serif;
  font-weight: 300;
  line-height: 1.1;
}

h4, h5, h6 {
  font-weight: 600;
  line-height: 1.333;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 7rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-style: italic;
}

h3 {
  font-size: clamp(1.75rem, 5vw, 2rem);
  line-height: 1.25;
  font-weight: 400;
  font-style: italic;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

.text-lg {
  font-size: 1.5rem;
  line-height: 1.333;
}

a {
  color: #44230F;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

hr {
  border-top: 1px solid #beb2ac;
}

section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

body.acf-editor-styles {
  background-color: #ffffff !important;
  background-image: none !important;
  padding: 2rem;
}

@media (max-width: 576px) {
  .text-lg, p, section ul {
    font-size: 1rem;
    line-height: 1.333;
  }
  h3 {
    font-weight: 300;
  }
}
.container {
  max-width: 1382px;
  margin: 6rem auto 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-lg {
  width: 100%;
  padding: 0 clamp(1rem, 5vw, 8rem);
}

.container-xl {
  width: 100%;
}

.intro-content {
  max-width: 796px;
  margin-bottom: 3rem;
}

.page-template-default main {
  min-height: 50dvh;
}

footer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  bottom: 0;
  gap: 2rem;
  margin-top: 6rem;
  padding-bottom: 2rem;
}
footer .links {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}
footer .links > a {
  justify-self: end;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer .footer-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}
footer .socials {
  display: flex;
  gap: 1rem;
}

.img-container {
  overflow: hidden;
  background-color: #E9E5E2;
}
.img-container.img-frame {
  background-color: unset;
}

.img-frame {
  border-radius: 9999px 9999px 0 0;
  border: 1px solid #beb2ac;
  padding: 1rem;
}
.img-frame img {
  border-radius: 9999px 9999px 0 0;
}

#footer-img {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  bottom: -2rem;
  width: 100%;
}

@media (max-width: 1200px) {
  footer .links {
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  footer .links > a {
    justify-self: center;
  }
  footer .logo {
    max-width: 420px;
  }
}
@media (max-width: 768px) {
  .container {
    margin: 4rem auto 0;
  }
  footer .links ul {
    flex-direction: column;
    align-items: center;
  }
  .img-frame {
    padding: 0.5rem;
  }
}
@media (max-width: 1382px) {
  .container-lg {
    padding: 0 1rem;
  }
}
header {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header .mobile-menu-container {
  display: none;
}
header.header-interior {
  background-color: #F3F0EE;
  border-bottom: 1px solid #beb2ac;
}
header {
  position: sticky;
  top: 0;
  z-index: 999;
}
header .line-container {
  position: absolute;
  display: flex;
  justify-content: space-between;
  bottom: 0;
  width: 100%;
}
header .line-container .line {
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 40vw;
  border-bottom: 1px solid #beb2ac;
}
header.header-hidden {
  transform: translate(0, -101%);
}
header.header-scrolled {
  background-color: #F3F0EE;
}
header.header-scrolled .logo {
  clip-path: inset(60% 0 0 0);
  transform: translate(-50%, -72%) scale(0.65);
}
header.header-scrolled .line {
  width: 50vw;
}
header .logo, header .clip-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: clamp(400px, 25vw, 540px);
  min-width: 200px;
}
header .logo img, header .clip-logo img {
  width: 100%;
}
header .logo, header .clip-logo {
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header .logo {
  transform: translate(-50%, -15%) scale(1);
  clip-path: inset(0 0 0 0);
}
header .clip-logo {
  transform: translate(-50%, -72%) scale(0.65);
  clip-path: inset(60% 0 0 0);
}
header .main-nav {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .main-nav .nav-left ul, header .main-nav .nav-right ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1rem;
}
header .main-nav .btn-menu a {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  background-color: unset;
  color: #44230F;
  border: 1px solid #beb2ac;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  margin-top: 1rem;
}
header .main-nav .btn-menu a img {
  transform: translateY(3px);
  display: inline-block;
  margin-right: 0.25rem;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
header .main-nav .btn-menu a:hover {
  background-color: #44230F;
  color: #F3F0EE;
}
header .main-nav .btn-menu a:hover img {
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: invert(100%) sepia(50%);
}
header .main-nav .btn-menu a {
  margin-top: 0;
}
header .main-nav a {
  text-decoration: none;
}
header .main-nav ul:not(.sub-menu) > li:not(.btn-menu) > a {
  position: relative;
}
header .main-nav ul:not(.sub-menu) > li:not(.btn-menu) > a::after {
  position: absolute;
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid #beb2ac;
  transform: rotate(45deg);
  background-color: #F3F0EE;
  background-color: unset;
  transform: rotate(45deg);
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  top: calc(-50% - 6px);
  left: calc(50% - 5px);
  pointer-events: none;
  z-index: -1;
}
header .main-nav ul:not(.sub-menu) > li:not(.btn-menu) a:hover::after, header .main-nav ul:not(.sub-menu) > li:not(.btn-menu).current_page_item a::after {
  transform: rotate(135deg);
  opacity: 1;
}
header .main-nav .menu-item-has-children {
  position: relative;
}
header .main-nav .menu-item-has-children:hover .sub-menu, header .main-nav .menu-item-has-children:focus-within .sub-menu {
  visibility: visible;
  pointer-events: auto;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
  transform: translateY(0);
}
header .main-nav .menu-item-has-children .expand-icon {
  display: inline-block;
  width: 12px;
}
header .main-nav .menu-item-has-children .sub-menu {
  visibility: hidden;
  pointer-events: none;
  text-transform: none;
  font-size: 1rem;
  position: absolute;
  top: 50px;
  gap: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 340px;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(-10px);
  padding-top: 28px;
  margin-top: -28px;
  z-index: 500;
}
header .main-nav .menu-item-has-children .sub-menu li {
  width: 100%;
  background-color: #E9E5E2;
  border-left: 1px solid #beb2ac;
  border-right: 1px solid #beb2ac;
}
header .main-nav .menu-item-has-children .sub-menu li:first-of-type {
  border-top: 1px solid #beb2ac;
}
header .main-nav .menu-item-has-children .sub-menu li:last-of-type {
  border-bottom: 1px solid #beb2ac;
}
header .main-nav .menu-item-has-children .sub-menu a {
  padding: 0.5rem 1rem;
  width: 100%;
  background-color: #E9E5E2;
  display: inline-block;
}
header .main-nav .menu-item-has-children .sub-menu a:hover {
  background-color: #d8d2cd;
}
header .main-nav .menu-item-has-children .sub-menu a:focus-visible {
  outline-offset: 0;
}

@media screen and (max-width: 1200px) {
  header {
    overflow: hidden;
    padding: 1rem 0;
  }
  header.is-open .main-nav {
    visibility: visible;
    opacity: 1;
    background-color: #F3F0EE;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  header .mobile-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .mobile-menu-container img {
    height: 24px;
  }
  header .mobile-menu-toggle {
    z-index: 99;
    display: block;
    width: 24px;
    height: 24px;
    background-color: transparent;
    cursor: pointer;
    border: none;
    transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  header .mobile-menu-toggle .menu-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 18px;
  }
  header .mobile-menu-toggle .menu-icon::before, header .mobile-menu-toggle .menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #44230F;
    border-radius: 2px;
  }
  header .mobile-menu-toggle .menu-icon::before {
    top: 4px;
  }
  header .mobile-menu-toggle .menu-icon::after {
    top: calc(50% + 4px);
    transform: translateY(-50%);
  }
  header .mobile-menu-toggle .menu-icon, header .mobile-menu-toggle .menu-icon::after, header .mobile-menu-toggle .menu-icon::before {
    transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  header .mobile-menu-toggle:focus-visible {
    outline: 1px solid #beb2ac;
    outline-offset: 2px;
  }
  header .mobile-menu-toggle[aria-expanded=true] .menu-icon {
    border-bottom-color: transparent;
    transform: rotate(-45deg);
  }
  header .mobile-menu-toggle[aria-expanded=true] .menu-icon::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  header .mobile-menu-toggle[aria-expanded=true] .menu-icon::after {
    opacity: 0;
    transform: translateY(-50%) scale(0);
  }
  header .line-container {
    display: none;
  }
  header .main-nav {
    position: fixed;
    top: 48px;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    max-height: 100dvh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    gap: 1rem;
  }
  header .main-nav .logo, header .main-nav .clip-logo {
    display: none;
  }
  header .main-nav .nav-left ul, header .main-nav .nav-right ul {
    flex-direction: column;
    justify-content: end;
    align-items: end;
  }
  header .main-nav ul:not(.sub-menu) > li:not(.btn-menu) > a {
    position: relative;
  }
  header .main-nav ul:not(.sub-menu) > li:not(.btn-menu) > a::after {
    top: calc(50% - 5px);
    left: calc(0% - 16px);
    width: 6px;
    height: 6px;
  }
  header .main-nav .menu-item-has-children {
    text-align: end;
  }
  header .main-nav .menu-item-has-children .sub-menu {
    position: relative;
    visibility: visible;
    opacity: 1;
    transform: none;
    margin-top: 0;
    padding-top: 0;
    top: unset;
    width: 60vw;
    display: none;
  }
  header .main-nav .menu-item-has-children .sub-menu li {
    background-color: unset;
    border: none;
    padding: 0.5rem 1rem;
    border-right: 1px solid #beb2ac;
  }
  header .main-nav .menu-item-has-children .sub-menu li:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 1rem;
  }
  header .main-nav .menu-item-has-children .sub-menu li:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 1rem;
  }
  header .main-nav .menu-item-has-children .sub-menu a {
    width: auto;
    background-color: unset;
    border: none;
    padding: 0;
  }
  header .main-nav .menu-item-has-children .sub-menu a:hover {
    background: #d8d2cd;
  }
}
.post-password-form {
  padding: 0 1rem;
  max-width: 1382px;
  margin: 6rem auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.post-password-form p:last-of-type {
  width: 100%;
  max-width: 400px;
}
.post-password-form label {
  padding-bottom: 2rem;
}
.post-password-form input[type=submit], .post-password-form input[type=password] {
  margin-top: 1rem;
  width: 100%;
  display: block;
}

label {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
}

input[type=password], input[type=text], input[type=email], textarea {
  font-family: "Switzer", Arial, Helvetica, sans-serif;
  border: none;
  font-size: 1.125rem;
  padding: calc(0.5rem + 2px);
  color: #44230F;
  border-radius: 8px;
  background-color: #d8d2cd;
  width: 100%;
}
input[type=password]:active, input[type=text]:active, input[type=email]:active, textarea:active {
  border-color: #44230F;
  outline: none;
}
input[type=password]:focus-visible, input[type=text]:focus-visible, input[type=email]:focus-visible, textarea:focus-visible {
  outline-color: #44230F;
  outline: 1px solid #beb2ac;
}

input[type=checkbox] {
  min-width: 20px;
  height: 20px;
  margin-top: 0;
  border: 2px solid #beb2ac;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: background-color 0.2s, border-color 0.2s;
}
input[type=checkbox]:checked {
  background-color: #44230F;
  border-color: #44230F;
}
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 50%;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
input[type=checkbox]:hover {
  border-color: #988477, 10%;
}

.wpcf7-list-item {
  margin: 0 !important;
}
.wpcf7-list-item label {
  display: flex;
  gap: 0.25rem;
}
.wpcf7-list-item label input {
  margin-top: 0 !important;
}

.wpcf7-list-item-label {
  text-transform: none;
  font-size: 0.875rem;
  line-height: 1.25em;
}

input[type=submit] {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  background-color: #44230F;
  color: #F3F0EE;
  border: 1px solid #beb2ac;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  margin-top: 1rem;
}
input[type=submit] img {
  transform: translateY(3px);
  display: inline-block;
  margin-right: 0.25rem;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
input[type=submit]:hover {
  background-color: unset;
  color: #44230F;
}
input[type=submit]:hover img {
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: invert(100%) sepia(50%);
}

textarea {
  resize: none;
  height: 10rem;
}

input::placeholder, textarea::placeholder {
  color: #755f51;
}

.form-row input, .form-row textarea {
  margin-top: 0.5rem;
}
.form-row {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.form-row p {
  width: 100%;
  margin: 0;
}

.wpcf7-not-valid-tip {
  text-transform: none;
  font-size: 0.875rem;
}

.wpcf7-response-output {
  background-color: #E9E5E2;
  padding: 0.5rem;
  border-radius: 4px;
  text-align: center;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  input[type=submit] {
    width: 100%;
  }
}
/* CSS for the shortcode [cmplz-cookies]
 * If you want to disable document CSS, without losing the Cookie Table CSS
 */
.cmplz-service-header {
  background-color: #F3F0EE;
}

#cmplz-cookies-overview {
  margin-bottom: 2rem;
}

#cmplz-manage-consent .cmplz-manage-consent {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background-color: #44230F !important; /* change color */
  border: none !important;
  background-image: url("./img/cookie.svg") !important; /*  use your .svg path*/
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 50% !important;
  bottom: 3% !important;
  right: 2% !important;
  display: block !important;
  padding: 0 !important;
  min-width: unset !important;
  color: transparent !important; /* hiding . text */
}

/* Hide the dot (text inside the button) */
.cmplz-manage-consent::before {
  content: "" !important;
}

/* Cacher le lien "Gérer les services" dans la bannière Complianz */
.cmplz-manage-third-parties {
  display: none !important;
}

.cmplz-manage-consent {
  background-color: #beb2ac;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories summary {
  display: block;
  cursor: pointer;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories summary::-webkit-details-marker,
#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories summary::marker {
  display: none;
  content: "";
}

#cmplz-cookies-overview .cmplz-dropdown .cmplz-service-description,
#cmplz-document .cmplz-dropdown .cmplz-service-description,
#cmplz-cookies-overview .cmplz-dropdown .cmplz-sharing-data,
#cmplz-document .cmplz-dropdown .cmplz-sharing-data {
  display: inline-block;
  width: calc(50% - 35px);
  vertical-align: top;
}

#cmplz-cookies-overview .cmplz-dropdown .cmplz-service-header .cmplz-accept-service,
#cmplz-document .cmplz-dropdown .cmplz-service-header .cmplz-accept-service {
  display: none;
}

@media only screen and (max-width: 600px) {
  #cmplz-cookies-overview .cmplz-dropdown .cmplz-service-description,
  #cmplz-document .cmplz-dropdown .cmplz-service-description,
  #cmplz-cookies-overview .cmplz-dropdown .cmplz-sharing-data,
  #cmplz-document .cmplz-dropdown .cmplz-sharing-data {
    width: 100%;
  }
}
#cmplz-cookies-overview .cmplz-dropdown summary,
#cmplz-document .cmplz-dropdown summary {
  display: block;
  cursor: pointer;
}

#cmplz-cookies-overview .cmplz-dropdown summary::-webkit-details-marker,
#cmplz-document .cmplz-dropdown summary::-webkit-details-marker,
#cmplz-cookies-overview .cmplz-dropdown summary::marker,
#cmplz-document .cmplz-dropdown summary::marker {
  display: none;
  content: "";
}

#cmplz-cookies-overview .cmplz-dropdown summary div,
#cmplz-document .cmplz-dropdown summary div {
  display: grid;
  grid-template: "heading chevron";
  grid-template-columns: 2fr 35px;
  grid-gap: 15px;
  align-items: center;
}

#cmplz-cookies-overview .cmplz-dropdown summary div h3,
#cmplz-document .cmplz-dropdown summary div h3 {
  grid-area: heading;
  margin: 0;
}

#cmplz-cookies-overview .cmplz-dropdown summary div:after,
#cmplz-document .cmplz-dropdown summary div:after {
  grid-area: chevron;
}

#cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary,
#cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary {
  display: block;
}

#cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div,
#cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div {
  grid-template: "heading paragraph checkbox chevron";
  grid-template-columns: 2fr auto auto 35px;
}

#cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div p,
#cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div p {
  grid-area: paragraph;
}

#cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose,
#cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose {
  display: grid;
}

@media only screen and (min-width: 600px) {
  #cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose,
  #cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template: "purpose purpose purpose" "header1 header2 header3" auto;
  }
  #cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose .purpose,
  #cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose .purpose {
    grid-area: purpose;
  }
  #cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose .name-header,
  #cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose .name-header {
    grid-area: header1;
  }
  #cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose .retention-header,
  #cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose .retention-header {
    grid-area: header2;
  }
  #cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose .function-header,
  #cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose .function-header {
    grid-area: header3;
  }
}
@media only screen and (max-width: 600px) {
  #cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose,
  #cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose {
    grid-template-columns: 100px 1fr;
  }
  #cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose .purpose,
  #cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose .purpose {
    grid-column: span 2;
  }
}
/**
* Categories on the cookie policy
* Do not wrap in cmplz-document, to ensure it works with the separate shortcode
 */
#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories {
  margin-top: 10px;
  display: block;
  width: 100%;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category {
  background-color: rgba(239, 239, 239, 0.25);
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category summary::marker {
  display: none;
  content: "";
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category summary::-webkit-details-marker {
  display: none;
  content: "";
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-description {
  padding: 10px;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category:not(:last-child) {
  margin-bottom: 5px;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header {
  display: grid;
  grid-template-columns: 1fr auto 25px;
  grid-template-rows: auto;
  align-items: center;
  grid-gap: 10px;
  padding: 5px 10px;
  background-color: rgba(239, 239, 239, 0.5);
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header section {
  padding: initial;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header h2 {
  grid-column-start: 1;
  width: 100%;
  justify-self: start;
  font-size: 18px;
  text-align: left;
  margin-top: 8px;
  text-transform: initial;
  padding-bottom: 10px;
  border-bottom: 0;
  margin-bottom: 0px;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header h2:before {
  height: 0;
  margin: initial;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-always-active {
  font-size: var(--cmplz_category_header_active_font_size);
  color: var(--cmplz_category_header_always_active_color);
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-always-active label,
#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-always-active input {
  display: none;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header label > span {
  display: none;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-banner-checkbox {
  display: flex;
  align-items: center;
  margin: 0;
  padding: initial;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-icon.cmplz-open {
  grid-column-start: 3;
  cursor: pointer;
  content: "";
  background: var(--cmplz_category_open_icon_url) no-repeat;
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-size: cover;
  height: 25px;
  width: 25px;
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category[open] .cmplz-icon.cmplz-open {
  transform: rotate(180deg);
}

.postbox #cmplz-document {
  margin: auto auto;
}

#cmplz-document {
  font-size: 14px;
  margin-top: 0;
  max-width: 600px;
  text-justify: inter-word;
  /* Buttons styles */
  /*WCAG2.0 */
}

#cmplz-cookies-overview .cmplz-dropdown h4,
#cmplz-document .cmplz-dropdown h4 {
  font-size: 18px;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 5px;
  text-transform: initial;
}

#cmplz-cookies-overview .cmplz-dropdown summary h3,
#cmplz-document .cmplz-dropdown summary h3 {
  padding: 0 5px;
  font-size: 18px;
  border-bottom: 0;
}

#cmplz-cookies-overview .cmplz-dropdown summary p,
#cmplz-document .cmplz-dropdown summary p {
  text-align: right;
  padding: 0;
  margin: 0;
  font-size: 14px;
  border-bottom: 0;
}

#cmplz-document input::-moz-focus-inner,
#cmplz-document button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

#cmplz-document a {
  text-decoration: underline;
}

#cmplz-document a[target=_blank]::after {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
  margin: 0 3px 0 5px;
}

#cmplz-document a:focus {
  border: 1px solid black;
  padding: 2px;
}

#cmplz-document #cmplz-dnsmpd-form label {
  margin-right: 20px;
  min-width: 100px;
  display: inline-block;
}

#cmplz-document .alert {
  padding: 7px;
  color: white;
  margin: 10px 0;
}

#cmplz-document .alert.error {
  background-color: #f44336;
}

#cmplz-document .alert.success {
  background-color: green;
}

#cmplz-document .close {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

#cmplz-document .close:hover {
  color: black;
}

#cmplz-document h2,
#cmplz-document h3 {
  font-size: 22px;
  text-align: left;
  margin-top: 15px;
  text-transform: initial;
  padding-bottom: 10px;
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 10px;
}

#cmplz-document.impressum h2,
#cmplz-document.impressum h3 {
  border-bottom: none;
  font-size: 1em;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

#cmplz-document.impressum p {
  margin-bottom: 7px;
}

#cmplz-document h4 {
  font-size: 18px;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 5px;
  text-transform: initial;
}

#cmplz-document h5 {
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 5px;
  text-transform: initial;
}

#cmplz-document h3.annex,
#cmplz-document h4.annex {
  font-weight: bold;
}

#cmplz-document span h3 {
  font-size: 14px;
  border-bottom: 0;
}

#cmplz-document p,
#cmplz-document li,
#cmplz-document td {
  font-size: 14px;
  margin-top: 0;
}

#cmplz-document ol.alphabetic {
  counter-reset: list;
  list-style-type: none;
}

#cmplz-document ol.alphabetic li:before {
  font-weight: bold;
  content: counter(list, lower-alpha) ") ";
  counter-increment: list;
}

#cmplz-document ul {
  list-style: disc;
  margin-left: 15px;
  margin-bottom: 15px;
}

#cmplz-document ol.alphabetic ol {
  counter-reset: list;
  list-style-type: none;
}

#cmplz-document ol.alphabetic ol li:before {
  font-weight: bold;
  content: counter(list, decimal) ") ";
  counter-increment: list;
}

#cmplz-document .cmplz-subtitle {
  font-weight: bold;
  margin-top: 25px;
}

#cmplz-document .cmplz-indent {
  margin-left: 36px;
}

#cmplz-cookies-overview .cmplz-dropdown,
#cmplz-document .cmplz-dropdown {
  background-color: rgba(239, 239, 239, 0.25);
}

#cmplz-cookies-overview .cmplz-dropdown p,
#cmplz-document .cmplz-dropdown p,
#cmplz-cookies-overview .cmplz-dropdown a,
#cmplz-document .cmplz-dropdown a {
  font-size: 14px;
  margin-top: 0;
}

#cmplz-cookies-overview .cmplz-dropdown p,
#cmplz-document .cmplz-dropdown p,
#cmplz-cookies-overview .cmplz-dropdown a,
#cmplz-document .cmplz-dropdown a,
#cmplz-cookies-overview .cmplz-dropdown h4,
#cmplz-document .cmplz-dropdown h4,
#cmplz-cookies-overview .cmplz-dropdown ul,
#cmplz-document .cmplz-dropdown ul {
  padding: 0 15px;
}

#cmplz-cookies-overview .cmplz-dropdown p.legal-obligations-description,
#cmplz-document .cmplz-dropdown p.legal-obligations-description {
  padding-bottom: 15px;
}

#cmplz-cookies-overview .cmplz-dropdown summary::marker,
#cmplz-document .cmplz-dropdown summary::marker {
  display: none;
  content: "";
}

#cmplz-cookies-overview .cmplz-dropdown summary::-webkit-details-marker,
#cmplz-document .cmplz-dropdown summary::-webkit-details-marker {
  display: none;
  content: "";
}

#cmplz-cookies-overview .cmplz-dropdown summary,
#cmplz-document .cmplz-dropdown summary {
  display: block;
  background-color: rgba(239, 239, 239, 0.5);
  margin: 5px 0;
  padding: 5px 10px;
  align-items: center;
  justify-items: stretch;
}

#cmplz-cookies-overview .cmplz-dropdown summary div:after,
#cmplz-document .cmplz-dropdown summary div:after {
  cursor: pointer;
  content: "";
  background: url(../images/down.png) no-repeat;
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-size: cover;
  height: 25px;
  width: 25px;
  margin: 5px;
}

#cmplz-cookies-overview .cmplz-dropdown[open],
#cmplz-document .cmplz-dropdown[open] {
  padding-bottom: 1px;
}

#cmplz-cookies-overview .cmplz-dropdown[open] summary div:after,
#cmplz-document .cmplz-dropdown[open] summary div:after {
  transform: rotate(180deg);
}

#cmplz-cookies-overview .cmplz-dropdown h4,
#cmplz-document .cmplz-dropdown h4 {
  font-size: 15px;
  margin: 5px 0;
}

#cmplz-cookies-overview .cmplz-dropdown h5,
#cmplz-document .cmplz-dropdown h5 {
  margin: 0;
}

#cmplz-cookies-overview .cmplz-dropdown .cmplz-service-description,
#cmplz-document .cmplz-dropdown .cmplz-service-description,
#cmplz-cookies-overview .cmplz-dropdown .cmplz-sharing-data,
#cmplz-document .cmplz-dropdown .cmplz-sharing-data {
  padding: 0 15px 15px;
}

#cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose,
#cmplz-document .cmplz-dropdown .cookies-per-purpose {
  border: 1px solid #dadada;
  grid-gap: 1px;
  background-color: #dadada;
  margin-bottom: 10px;
}

#cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose div,
#cmplz-document .cmplz-dropdown .cookies-per-purpose div {
  background-color: white;
  padding: 15px;
}

@media only screen and (min-width: 600px) {
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .name-header,
  #cmplz-document .cmplz-dropdown .cookies-per-purpose .name-header {
    background-color: #f7f7f7;
  }
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .retention-header,
  #cmplz-document .cmplz-dropdown .cookies-per-purpose .retention-header {
    background-color: #f7f7f7;
  }
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .function-header,
  #cmplz-document .cmplz-dropdown .cookies-per-purpose .function-header {
    background-color: #f7f7f7;
  }
}
@media only screen and (max-width: 600px) {
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose h5,
  #cmplz-document .cmplz-dropdown .cookies-per-purpose h5 {
    line-height: 1.8;
  }
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+2),
  #cmplz-document .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+2),
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+3),
  #cmplz-document .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+3),
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+4),
  #cmplz-document .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+4),
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+5),
  #cmplz-document .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+5),
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+6),
  #cmplz-document .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+6),
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+7),
  #cmplz-document .cmplz-dropdown .cookies-per-purpose div:nth-child(12n+7) {
    background-color: #f7f7f7;
  }
}
@media (max-width: 600px) {
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose {
    display: flex !important;
    flex-direction: column !important;
  }
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .purpose, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .name-header, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .name, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .retention-header, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .retention, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .function-header, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .function {
    padding: 0.5rem;
    font-size: 1rem;
    word-wrap: break-word;
  }
  #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .purpose h5, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .name-header h5, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .name h5, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .retention-header h5, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .retention h5, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .function-header h5, #cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .function h5 {
    font-size: 1rem;
    font-weight: 500;
  }
}
.btn {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  background-color: unset;
  color: #44230F;
  border: 1px solid #beb2ac;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  margin-top: 1rem;
}
.btn img {
  transform: translateY(3px);
  display: inline-block;
  margin-right: 0.25rem;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn:hover {
  background-color: #44230F;
  color: #F3F0EE;
}
.btn:hover img {
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: invert(100%) sepia(50%);
}

.btn-dark {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  background-color: #44230F;
  color: #F3F0EE;
  border: 1px solid #beb2ac;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  margin-top: 1rem;
}
.btn-dark img {
  transform: translateY(3px);
  display: inline-block;
  margin-right: 0.25rem;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-dark:hover {
  background-color: unset;
  color: #44230F;
}
.btn-dark:hover img {
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: invert(100%) sepia(50%);
}

.hero-block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(100dvh - 4rem);
  background-color: #44230F;
  color: #F3F0EE;
  position: relative;
}
.hero-block__content {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 1rem;
  padding-bottom: clamp(4rem, 15vw, 12rem);
}
.hero-block picture {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.hero-block picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-block picture::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
}

@media (max-width: 992px) {
  .hero-block {
    min-height: 60dvh;
  }
}
.breadcrumbs {
  max-width: 1382px;
  margin: 1rem auto;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.breadcrumbs .breadcrumb_last {
  font-weight: 600;
}
.breadcrumbs a {
  display: inline;
}
.breadcrumbs #breadcrumbs span:first-of-type {
  display: flex;
  gap: 0.5rem;
}

.cta {
  padding: clamp(3rem, 10vw, 4rem) clamp(0.25rem, 10vw, 8rem);
  border: 1px solid #beb2ac;
  text-align: center;
  position: relative;
}
.cta .diamond {
  position: absolute;
  top: -0.5rem;
  left: 50%;
}

.disclaimer {
  padding: clamp(1rem, 20vw, 2rem) clamp(0.25rem, 10vw, 8rem);
  background-color: #E9E5E2;
  text-align: center;
  font-size: 1rem;
}

.text-image-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 5vw, 8rem);
  align-items: center;
}
.text-image-block__content {
  direction: ltr;
}
.text-image-block__image {
  align-self: start;
}

@media (max-width: 768px) {
  .text-image-block {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.full-width-block__content {
  max-width: 820px;
  margin: 0 auto;
}
.full-width-block.with-background .full-width-block__content {
  padding: 0 1rem;
}

.resources-block__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.resources-block__card {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #beb2ac;
  padding: 1rem;
  text-decoration: none;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.resources-block__card img {
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.resources-block__card p, .resources-block__card h6 {
  margin: 0;
}
.resources-block__card:hover {
  border-left-width: 4px;
  border-left-color: #44230F;
  background-color: #E9E5E2;
}
.resources-block__card:hover img {
  transform: translateX(-4px);
}

.accordions-block {
  display: flex;
  flex-direction: column;
}
.accordions-block__card {
  position: relative;
  border-top: 1px solid #beb2ac;
}
.accordions-block__card__title {
  text-align: left;
  cursor: pointer;
  padding: 2rem 3rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  background-color: unset;
  color: #44230F;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.accordions-block__card__title:hover, .accordions-block__card__title[aria-expanded=true] {
  background-color: #E9E5E2;
}
.accordions-block__card__title[aria-expanded=true] {
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.accordions-block__card__title[aria-expanded=true] .lines:first-of-type {
  transform: rotate(-180deg);
}
.accordions-block__card__title[aria-expanded=true] .lines:nth-last-of-type(1) {
  transform: rotate(180deg);
}
.accordions-block__card__icon {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.accordions-block__card__icon .lines {
  position: absolute;
  top: 0;
  width: 2rem;
  height: 1px;
  background-color: #44230F;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.accordions-block__card__icon .lines:first-of-type {
  transform: rotate(0deg);
}
.accordions-block__card__icon .lines:nth-last-of-type(1) {
  transform: rotate(90deg);
}
.accordions-block__card__content {
  padding: 0 3rem 3rem;
  overflow: hidden;
  max-height: 0px;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.accordions-block__card__content__container {
  max-width: 680px;
}
.accordions-block__card__content.active {
  background-color: #E9E5E2;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 1382px) {
  .accordions-block__card__title {
    padding: 1rem 2rem 1rem 1rem;
  }
  .accordions-block__card__content {
    padding: 0.25rem 1rem 2rem;
  }
  .accordions-block__card__icon .lines {
    top: 0;
    width: 1rem;
  }
}
.testimonial {
  text-align: center;
}

.testimonials-block {
  padding: 6rem 1rem;
  background-color: #E9E5E2;
}
.testimonials-block__content {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonial p {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .testimonials-block {
    padding: 3rem 1rem;
  }
}
.swiper {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.swiper-pagination {
  position: relative;
  margin-top: 0.5rem;
}

.swiper-pagination-bullet {
  background-color: #beb2ac;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #44230F;
}

.diamond {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #beb2ac;
  transform: rotate(45deg);
  background-color: #F3F0EE;
}

.with-background {
  background-color: #E9E5E2;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.no-select {
  pointer-events: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

.grid-direction-rtl {
  direction: rtl;
}

.border-bottom {
  border-bottom: 1px solid #beb2ac;
}

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

.hidden {
  display: none !important;
}

.show {
  display: block !important;
}

@media (max-width: 768px) {
  .with-background {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.page-template-accueil .img-background {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 100dvh;
  z-index: -1;
  mix-blend-mode: multiply;
}
.page-template-accueil .img-background div {
  display: inline-block;
  height: auto;
}
.page-template-accueil #hero {
  position: relative;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(300px, 50vw, 800px);
  height: 80dvh;
  padding: 18rem 0;
  margin-top: 2rem;
}
.page-template-accueil #hero .img-container {
  position: relative;
  width: clamp(280px, 17vw, 400px);
  height: auto;
  aspect-ratio: 330/540;
}
.page-template-accueil #hero .img-container img {
  object-fit: cover;
  height: 100%;
}
.page-template-accueil #hero .diamond-container {
  position: relative;
}
.page-template-accueil #hero .diamond-container .diamond {
  z-index: 2;
  position: absolute;
}
.page-template-accueil #hero .diamond-container .diamond:first-of-type {
  top: calc(0% - 0.5rem);
  left: calc(50% - 0.5rem);
}
.page-template-accueil #hero .diamond-container .diamond:nth-of-type(2) {
  top: 30%;
  left: calc(0% - 0.5rem);
}
.page-template-accueil #hero .diamond-container .diamond:last-of-type {
  top: 80%;
  right: calc(0% - 0.5rem);
}
.page-template-accueil .img-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.page-template-accueil .img-cards a {
  text-decoration: none;
  border: none;
}
.page-template-accueil .img-cards__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #F3F0EE;
  padding: 1rem;
  min-height: 302px;
  background-position: center;
  background-size: cover;
}
.page-template-accueil .img-cards__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
  background-color: #E9E5E2;
  transform: scale(1.05);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.page-template-accueil .img-cards__card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(33, 16, 6, 0.1), rgba(33, 16, 6, 0.7));
  z-index: 1;
}
.page-template-accueil .img-cards__card:hover::before {
  transform: scale(1);
}
.page-template-accueil .img-cards__card > * {
  position: relative;
  z-index: 2;
}
.page-template-accueil .img-cards__title {
  display: flex;
  justify-content: space-between;
}
.page-template-accueil .img-cards__title img {
  display: inline-block;
  margin: 0;
  max-width: 48px;
}
.page-template-accueil hr {
  margin-top: 4rem;
}

@media (max-width: 1200px) {
  .page-template-accueil #hero {
    height: 50dvh;
  }
  .page-template-accueil .divider-container {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-template-accueil .img-cards {
    grid-template-columns: 1fr;
  }
  .page-template-accueil .img-cards__card {
    min-height: 240px;
  }
  .page-template-accueil #hero .diamond-container .diamond {
    width: 14px;
    height: 14px;
  }
  .page-template-accueil #hero .diamond-container .diamond:first-of-type {
    top: -0.4375rem;
    left: calc(50% - 0.4375rem);
  }
  .page-template-accueil #hero .diamond-container .diamond:nth-of-type(2) {
    top: 30%;
    left: -0.4375rem;
  }
  .page-template-accueil #hero .diamond-container .diamond:last-of-type {
    top: 80%;
    right: -0.4375rem;
  }
}
.services-block {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.services-block__card {
  padding: 2rem;
  border: 1px solid #beb2ac;
  text-decoration: none;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
.services-block__card img {
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(0);
}
.services-block__card:hover {
  background-color: #E9E5E2;
}
.services-block__card:hover img {
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-block {
    grid-template-columns: 1fr;
  }
}
.podcast-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.podcast-block__card {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 2rem;
  border: 1px solid #beb2ac;
  padding: 1.5rem;
  position: relative;
  align-items: start;
}
.podcast-block__card h4 + p {
  margin-top: 0.5rem;
}
.podcast-block__card .links a {
  margin-top: 0;
}
.podcast-block__card .links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.podcast-block__card .img-container {
  align-self: start;
  width: 100%;
  height: auto;
  border: 1px solid #beb2ac;
  position: relative;
}
.podcast-block__card .img-container img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.podcast-block__card::after {
  position: absolute;
  content: "";
  top: calc(50% - 8px);
  left: -8px;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #beb2ac;
  transform: rotate(45deg);
  background-color: #F3F0EE;
}

.page-template-podcast .load-more-section {
  display: flex;
  flex-direction: column;
}
.page-template-podcast .load-more-btn {
  margin-top: 2rem;
  align-self: center;
}

@media (max-width: 992px) {
  .podcast-block__card {
    grid-template-columns: 1fr;
  }
  .podcast-block .img-container {
    max-width: 300px;
  }
}
@media (max-width: 576px) {
  .podcast-block__card {
    padding: 1rem;
  }
  .podcast-block__card::after {
    position: absolute;
    content: "";
    top: -8px;
    left: calc(50% - 8px);
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #beb2ac;
    transform: rotate(45deg);
    background-color: #F3F0EE;
  }
  .podcast-block .img-container {
    max-width: 100%;
  }
}
.page-template-contact .form-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 5vw, 8rem);
  align-items: start;
}
.page-template-contact .form-block__form {
  width: 100%;
}

@media (max-width: 992px) {
  .page-template-contact .form-block {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

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