:root {
  --white: #ffffff;
  --black: #000000;
  --orange: #da3e1b;
  --offwhite: #f1dfc4;
  --blue: #002364;
  --backdrop: rgba(0, 0, 0, 0.4);
  --success: #7CCF91;
  --error: #CF7D7D;
  --background-color: var(--offwhite);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  touch-action: manipulation;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

@font-face {
  font-family: "Franchise";
  src: url("./fonts/franchise_2/Franchise.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dela";
  src: url("./fonts/DelaGothicOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Australian";
  src: url("./fonts/AustralianSignature.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  --wrapper-large: 1560px;
  --wrapper: 1285px;
  --wrapper-small: 1000px;
  --wrapper-body: 700px;
  --wrapper-h-padding: 40px;
  --radius: 10px;
  --card-radius: 3.8rem;
  --images-radius: 3.8rem;
  --screen-medium: 1000px;
  --screen-small: 765px;
  --bloc-v-padding: 10vh;
  --logged-in-offest: 46px;
  --full-height-bloc: min(1200px, 100vh);
  --color-transition-speed: 100ms;
  --fade-in-duration: .7s;
  --fade-in-delta: 20px;
  --fade-in-curve: cubic-bezier(0.52, 0, 0.25, 0.99);
  --clip-reveal-curve: cubic-bezier(0.72, 0.01, 0.21, 0.99);
  --clip-reveal-duration: 1s;
  position: relative;
  background: var(--green);
}
body::-webkit-scrollbar {
  display: none;
}

.page {
  overflow-x: hidden;
}

.wrapper-large {
  max-width: var(--wrapper);
}

.wrapper {
  max-width: var(--wrapper);
}

.wrapper-small {
  max-width: var(--wrapper-small);
}

.wrapper-body {
  max-width: var(--wrapper-body);
}

.wrapper,
.wrapper-small,
.wrapper-body,
.wrapper-large,
.wrapper-full {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--wrapper-h-padding);
}

.cover,
.contain {
  width: 100%;
  height: 100%;
}

.cover {
  object-fit: cover;
}

.contain {
  object-fit: contain;
}

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

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 1000px) {
  body {
    --wrapper-h-padding: 20px;
  }
}
html:has(.logged-in) {
  margin-top: 0 !important;
}

@keyframes fadeIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes shutterIn {
  from {
    clip-path: polygon(30% 30%, 90% 30%, 90% 90%, 30% 90%);
  }
  to {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
:root {
  font-size: 10px;
  --title-font: "Franchise";
  --subtitle-font: "Australian";
  --text-font: "Dela";
  --huge-size: 13rem;
  --mobile-huge-size: 8rem;
  --huge-baseline-size: 8rem;
  --mobile-huge-baseline-size: 5rem;
  --title-size: 6rem;
  --mobile-title-size: 4rem;
  --title-two-size: 9rem;
  --mobile-title-two-size: 6rem;
  --subtitle-size: 6rem;
  --mobile-subtitle-size: 3rem;
  --body-size: 1.6rem;
  --button-size: 2rem;
  --text-color: var(--black);
  font-family: var(--text-font);
  color: var(--text-color);
  background: var(--background-color);
}

.australian-typo {
  font-family: "Australian";
}

.franchise-typo {
  font-family: "Franchise";
}

.dela-typo {
  font-family: "Dela";
}

p {
  color: var(--text-color);
}

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

h1,
h2 {
  font-family: var(--title-font);
}

h3 {
  font-family: var(--subtitle-font);
}

p {
  color: var(--text-color);
}

h1,
.heading {
  font-size: clamp(var(--mobile-title-two-size), 3.5vw, var(--title-size));
  font-weight: 300;
  line-height: 0.95em;
}

.huge {
  font-size: clamp(var(--mobile-huge-size), 13vw, var(--huge-size));
}

.huge-baseline {
  color: var(--title-color);
  font-size: clamp(var(--mobile-huge-baseline-size), 5vw, var(--huge-baseline-size));
}

h2,
.heading-two {
  font-size: clamp(var(--mobile-title-two-size), 9vw, var(--title-two-size));
  font-weight: 400;
  line-height: 1.1em;
}

h3,
.subtitle {
  font-size: clamp(var(--mobile-title-two-size), 4.5vw, var(--title-two-size));
  font-weight: 400;
  line-height: 1.1em;
}

p,
cite,
.text {
  font-family: var(--text-font);
  color: var(--text-color);
  font-weight: normal;
  font-size: var(--body-size);
  line-height: 1.2em;
}

.small-title {
  font-family: "Franchise", sans-serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
}

.medium-title {
  font-family: "Franchise", sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
}

.big-title {
  font-family: "Franchise", sans-serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
}

.body-text {
  font-family: "Dela", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.button-text {
  font-family: "Dela", sans-serif;
  font-size: 16.19px;
  font-weight: 400;
  line-height: 1;
}

.dela-medium-text {
  font-family: "Dela", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.button-large {
  font-family: "Dela", sans-serif;
  font-size: 26.51px;
  font-weight: 400;
  line-height: 1;
}

.address {
  font-family: "Dela", sans-serif;
  font-size: 36.35px;
  font-weight: 400;
  line-height: 0.948;
}

.contact {
  font-family: "Australian", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.subtitle {
  font-family: "Australian", sans-serif;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.5;
}

.menu {
  font-family: "Australian", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 0.774;
}

.placeholder-email {
  font-family: "Australian", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.quote {
  font-family: "Australian", sans-serif;
  font-size: 62.056px;
  font-weight: 400;
  line-height: 0.885;
}

.contact-us,
.come-see-us {
  font-family: "Australian", sans-serif;
  font-size: 78.586px;
  font-weight: 400;
  line-height: 1;
}

.presentation-subtitle-text {
  font-family: "Australian", sans-serif;
  font-size: 124.194px;
  font-weight: 400;
  line-height: 1.715;
}

@media screen and (max-width: 750px) {
  body {
    --titleOne: var(--mobile-title-one);
    --titleTwo: var(--mobile-title-two);
    --body-size: 1.4rem;
    --overlineSize: .7rem;
  }
  h1,
  .headingOne {
    line-height: 1.1em;
  }
}
@media screen and (max-width: 350px) {
  .huge {
    font-size: 6rem;
  }
  h1 {
    font-size: clamp(1.3rem, 8vw, var(--titleTwo));
  }
}
.section {
  background: var(--background-color);
}

.backdrop-section {
  --text-color: var(--white);
  --title-color: var(--white);
  --background-color: var(--backdrop);
}

.offwhite-section, .wpcf7-form {
  --title-color: var(--orange);
  --text-color: var(--black);
  --background-color: var(--offwhite);
}

.orange-section {
  --title-color: var(--offwhite);
  --text-color: var(--offwhite);
  --background-color: var(--orange);
}

.wp-block-heading,
.single-content p:not(.text):not(.big-text):not(.headingOne):not(.headingTwo):not(.text-cta):not(blockquote p),
.wp-block-list,
blockquote {
  margin-bottom: 2rem;
}

.side-page-content h2:not(.headingOne, .headingTwo) {
  padding-left: 0;
  margin-top: 12vh;
}

.block-editor-block-list__layout {
  display: grid;
  gap: 15px;
}

.wp-block:not(li, ul, blockquote, p, h2) {
  max-width: unset;
  width: 100%;
  border-top: dotted 3px rgb(0, 0, 0);
  border-bottom: dotted 3px rgb(0, 0, 0);
}

p:has(+ ul) {
  margin-bottom: 0 !important;
}

ul,
.wp-block-list {
  padding-left: 2em;
}

ul.splide__list {
  max-width: none;
}

ul:not(.acf-radio-list, .acf-tab-group) li:not(.nav-item),
.wp-block-list li:not(.nav-item) {
  position: relative;
  display: block;
  color: var(--text-color);
  width: 100%;
}

.flamingo-section li::before {
  color: var(--text-color);
}

.wp-block-list-item div {
  display: inline-block;
}

ul + p {
  margin-top: 1em !important;
}

blockquote p {
  font-size: var(--titleTwo);
  font-weight: 500;
  padding-left: 0.5em;
  border-left: solid 1px var(--text-color);
}

blockquote p::before {
  content: '"';
  display: inline-block;
  margin-right: 0.5em;
}

blockquote cite {
  padding-top: 1em;
  padding-left: calc(15px + 2rem);
  border-left: solid 1px var(--text-color);
}

.wp-block:is(blockquote) cite {
  min-height: 4em;
}

.top-wave-clip {
  clip-path: shape(from 0% 6%, curve to 20% 0% with 6% 0%, curve to 52% 15% with 35% 0%, curve to 75% 11% with 59% 20%, curve to 94% 8% with 84% 6%, curve to 100% 10% with 100% 10%, line to 100% 100%, line to 0% 100%, close);
}

@media screen and (max-width: 800px) {
  .top-wave-clip {
    clip-path: shape(from 0% 5%, curve to 50% 0% with 20% 0%, curve to 80% 5% with 65% 0%, curve to 100% 7% with 90% 8%, line to 100% 100%, line to 0% 100%, close);
  }
}
.header {
  --text-color: var(--white);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2vh 0;
  color: var(--text-color);
}

.logo-icon {
  --filling: var(--offwhite);
  --strokes: var(--orange);
}

.logo-icon .filling {
  fill: var(--filling);
}

.logo-icon .strokes {
  fill: var(--strokes);
}

.logged-in .header {
  top: var(--logged-in-offest);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header-content-wrapper {
  flex: 1;
  pointer-events: none;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: all;
}

.header-logo {
  position: relative;
  z-index: 1000;
  width: 15rem;
}

.header-logo svg {
  width: 100%;
  height: auto;
}

.header-mobile-title {
  display: none;
}

.header-menu .nav {
  display: flex;
  align-items: center;
  gap: 3vw;
}

.nav-item a {
  padding: 10px;
  position: relative;
  font-family: var(--subtitle-font);
  font-size: 3rem;
  color: var(--text-color) !important;
  transition: color var(--color-transition-speed);
}

.nav-item a::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--text-color);
  position: absolute;
  bottom: 10px;
  left: 0;
  transform-origin: center center;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-item a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.current-menu-item {
  opacity: 0.7;
  pointer-events: none;
}

.header-close {
  display: none;
}

.header-close svg {
  stroke: var(--text-color);
  pointer-events: none;
  min-height: 100%;
  width: 100%;
  transition: transform 0.2s;
}

.header input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.button {
  border-radius: 3px 10px 0 16px;
  padding: 0.7em;
  border: solid 1px var(--white);
}

@media screen and (max-width: 1000px) {
  .header-content-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
  }
  .header-content {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20vh 2rem 5vh;
    margin: 0 auto;
    transform: translateY(-100%);
    pointer-events: none;
    background: var(--orange);
  }
  .header-mobile-title {
    display: block;
    font-size: var(--mobile-huge-size);
    text-align: center;
    border-top: solid 3px white;
    border-bottom: solid 3px white;
    padding: 3vh 0;
  }
  .header-menu .nav {
    overflow: hidden;
    margin-top: 3vh;
    padding: 3vh 0;
    border-top: solid 3px white;
    border-bottom: solid 3px white;
    flex-direction: column;
    align-items: start;
    gap: 3vh;
  }
  .header-menu .nav-item a {
    font-size: min(3.5rem, 5vh);
    font-family: "Dela";
  }
  .header-close {
    display: block;
    width: 4rem;
    aspect-ratio: 1/1;
    position: relative;
    z-index: 1000;
    overflow: hidden;
  }
  .header-label-btn {
    cursor: pointer;
  }
  .header-close svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .header-close .burger-icon {
    display: block;
  }
  .header-close .close-icon {
    display: none;
  }
  .header-phone {
    margin-top: 10vh;
  }
  .header:has(input:checked) .header-content {
    transform: translateY(0);
    pointer-events: all;
  }
  .header:has(input:checked) .logo-icon {
    --filling: var(--orange);
    --strokes: var(--offwhite);
  }
  .header:has(input:checked) .header-phone {
    transition-delay: 1s;
  }
  .header-close:has(input:checked) .burger-icon {
    display: none;
  }
  .header-close:has(input:checked) .close-icon {
    display: block;
  }
}
.footer {
  color: var(--text-color);
  background: var(--background-color);
  padding: 10% 0 10vh;
}

.footer-wrapper {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 3fr 1fr;
}

.footer-menu {
  align-self: center;
}

.footer-menu .nav {
  text-align: center;
}

.footer-menu .nav-item {
  margin-bottom: 3vh;
}

.footer-figure {
  justify-self: center;
}

.footer-figure svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-utils {
  align-self: center;
}

.footer-title {
  text-align: center;
  font-size: 5rem;
  margin-bottom: 1vh;
}

.footer-utils p {
  text-align: center;
}

.footer-utils .openings-list {
  text-align: center;
  padding: 0;
}

.footer-utils li.openings-oppenning {
  font-family: "Dela";
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.all-rights {
  display: block;
  text-align: center;
  margin-top: 3rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  margin-top: 2vh;
  gap: 1rem;
}

.footer-socials a {
  display: grid;
  width: 40px;
  aspect-ratio: 1/1;
}

.footer-socials svg {
  align-self: center;
  justify-self: center;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.by-who {
  text-align: center;
  font-size: 1rem;
  margin-top: 1vh;
}

@media screen and (max-width: 800px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-figure {
    width: 60%;
  }
}
.single {
  background: var(--background-color);
}

.single-related {
  padding-top: var(--ariane-padding);
  padding-bottom: 15vh;
  background: var(--background-color);
}

@media screen and (max-width: 1000px) {
  .single-related-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .single-hero {
    padding-bottom: 12vh;
  }
}
.card-objectif {
  --padding: 30px;
  container-type: inline-size;
  container-name: objectifCard;
  cursor: pointer;
  width: 100%;
  min-width: 200px;
  min-height: 280px;
}

.card-objectif-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: var(--padding);
  pointer-events: none;
}

.card-objectif-background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--text-color);
  border-radius: var(--radius);
  background: var(--backdrop-color);
  backdrop-filter: blur(3px);
  transition: transform 50ms;
}

.card-objectif-head {
  display: flex;
  justify-content: space-between;
}

.card-objectif-title {
  flex: 1;
  font-size: min(3vw, var(--titleTwo));
}

.card-objectif-tag {
  color: var(--text-color);
}

.card-objectif-arrow {
  width: 45px;
  height: 45px;
  opacity: 0;
  transform-origin: center center;
  transform: rotateZ(45deg);
  transition: opacity 0.2s, transform 0.2s;
}

.card-objectif:hover .card-objectif-arrow {
  transform: rotateZ(0);
  opacity: 1;
}

.card-objectif-bg-image {
  display: none;
  pointer-events: none;
}

@media screen and (max-width: 700px) {
  .card-objectif-head {
    flex-direction: column;
    min-height: 15vh;
  }
  .card-objectif-title {
    display: flex;
    align-items: end;
    order: 2;
    font-size: var(--titleTwo);
    margin-bottom: 0;
  }
  .card-objectif-tag {
    margin-top: 1em;
  }
  .card-objectif-arrow {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
@container objectifCard (max-width: 350px) {
  .card-objectif-head {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .card-objectif-arrow {
    order: 1;
    margin-bottom: 2vh;
    transform: rotateZ(0);
    opacity: 1;
  }
  .card-objectif-title {
    order: 2;
  }
  .card-objectif:hover .card-objectif-arrow,
  .card-objectif:hover .card-objectif-arrow circle {
    stroke: var(--flamingo);
  }
  .card-objectif:hover .card-objectif-arrow {
    transform: translate(5px, -5px) rotateZ(0);
  }
}
.card-conseil {
  --border-padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  cursor: pointer;
}

.card-conseil-mention {
  margin-bottom: 24px;
}

.card-conseil-title {
  margin-bottom: 34px;
}

.card-conseil-btn {
  margin-top: auto;
}

.card-conseil:hover .card-conseil-btn {
  color: var(--flamingo);
}

.card-conseil:hover .card-conseil-btn .pill-button-background {
  background: var(--background-color);
  border-color: var(--flamingo);
}

.card-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  min-height: 280px;
}

.card-cta-background {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--background-color);
  border-radius: var(--radius);
  transition: transform 50ms;
}

.card-cta-head {
  pointer-events: none;
}

.card-cta-mention {
  margin-bottom: 1rem;
}

.card-cta-title {
  margin-bottom: 0.5rem;
}

.card-cta-icon {
  width: 45px;
  height: 45px;
  pointer-events: none;
  transition: color var(--color-transition-speed), transform var(--color-transition-speed);
}

.card-cta:hover .card-cta-icon {
  --text-color: var(--flamingo);
  transform: translate(5px, -5px) rotateZ(0);
}

.profil-card {
  --padding: 40px;
  --top-padding: 16px;
  background: var(--background-color);
  padding: var(--padding);
  border-radius: var(--radius);
  max-width: 500px;
}

.profil-card-head {
  border-top: solid 1px var(--text-color);
  margin-bottom: 3rem;
}

.profil-card-prefix {
  display: inline-block;
  padding-right: 3em;
  color: var(--text-color);
  padding: var(--top-padding) 3em 0 0;
}

.profil-card-title {
  color: var(--text-color);
  margin-bottom: 0.5em;
}

.profil-card-desc {
  color: var(--text-color);
}

.profil-card.appear {
  opacity: 0;
}

.profil-card.appear .profil-card-head,
.profil-card.appear .profil-card-title,
.profil-card.appear .profil-card-desc {
  transform: translateY(var(--fade-in-delta));
  opacity: 0;
  transition: transform var(--fade-in-duration) var(--delay) var(--fade-in-curve), opacity var(--fade-in-duration) var(--delay) var(--fade-in-curve);
}

.profil-card:nth-child(2n-1) .profil-card-head {
  --delay: 450ms;
}

.profil-card:nth-child(2n) .profil-card-head {
  --delay: 500ms;
}

.profil-card:nth-child(2n-1) .profil-card-title {
  --delay: 500ms;
}

.profil-card:nth-child(2n) .profil-card-title {
  --delay: 550ms;
}

.profil-card:nth-child(2n-1) .profil-card-desc {
  --delay: 550ms;
}

.profil-card:nth-child(2n) .profil-card-desc {
  --delay: 600ms;
}

.profil-card.visible,
.acf-block-preview .profil-card {
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  opacity: 1;
  animation: unwrapPath var(--clip-reveal-duration) 50ms var(--clip-reveal-curve) forwards;
}

.profil-card:nth-child(2n) {
  animation-delay: 100ms;
}

.profil-card.visible .profil-card-head,
.profil-card.visible .profil-card-title,
.profil-card.visible .profil-card-desc,
.acf-block-preview .profil-card-head,
.acf-block-preview .profil-card-title,
.acf-block-preview .profil-card-desc {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

@keyframes unwrapPath {
  from {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  to {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@media screen and (max-width: 500px) {
  .profil-card-desc {
    font-size: var(--smallTextSize);
  }
  .profil-card:nth-child(2n) .profil-card-head {
    --delay: 450ms;
  }
  .profil-card:nth-child(2n) .profil-card-title {
    --delay: 500ms;
  }
  .profil-card:nth-child(2n) .profil-card-desc {
    --delay: 550ms;
  }
  .profil-card:nth-child(2n) {
    animation-delay: 50ms;
  }
}
.hero-video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--full-height-bloc);
  padding-bottom: 5vh;
}

.hero-video-figure {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.hero-video-figure::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--backdrop);
}

.hero-video-figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-content {
  position: relative;
  z-index: 1;
}

.hero-video-mention {
  margin-bottom: 1.1em;
}

.hero-video-title {
  margin-bottom: 1em;
  max-width: 17ch;
}

.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 35vh;
  padding-bottom: 8vh;
}

.home-hero-figure {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-hero-figure::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--backdrop);
}

.home-hero-figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  height: 100%;
  z-index: 1;
}

.home-hero-title {
  text-align: center;
  max-width: 17ch;
}

.home-hero-baseline {
  margin-bottom: auto;
}

.home-hero-secondary-content {
  padding-top: 3vh;
}
.home-hero-secondary-content hr {
  height: 2px;
  border: 0;
  background: var(--text-color);
}

.home-hero-address {
  font-size: 3rem;
  margin-bottom: 2vh;
}

.home-hero-secondary-content li.openings-oppenning {
  font-family: "Dela";
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.home-hero-secondary-content .openings-oppenning-day {
  font-family: "Australian";
  font-size: 3rem;
}

@media screen and (max-width: 800px) {
  .home-hero {
    padding-top: 25vh;
  }
}
.clip-text {
  display: inline-block;
  position: relative;
  color: var(--text-color);
  text-align: left;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .clip-text span {
    color: transparent;
    background-clip: text;
    line-height: 1.3;
    -webkit-background-clip: text;
    background-image: linear-gradient(-45deg, var(--highlight-color) 0%, var(--highlight-color) 50%, var(--text-color) 50%, var(--text-color) 100%);
    background-repeat: no-repeat;
    background-size: 250%;
    background-position-x: 99%;
    background-position-x: 0%;
    transition: background-position 1s linear;
  }
  .clip-text span:nth-child(4n-3) {
    transition-delay: 0s;
  }
  .clip-text span:nth-child(4n-2) {
    transition-delay: 0.15s;
  }
  .clip-text span:nth-child(4n-1) {
    transition-delay: 0.3s;
  }
  .clip-text span:nth-child(4n) {
    transition-delay: 0.45s;
  }
  .clip-text span + span {
    margin-top: -0.3em;
  }
}
@media screen and (min-width: 800px) {
  .clip-text span {
    display: block;
    background-position-x: 99%;
  }
  .clip-text.animated span {
    background-position-x: 0%;
  }
}
.pill-button {
  font-family: "Dela";
  position: relative;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-self: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pill-button span {
  position: relative;
  z-index: 1;
  width: 100%;
  font-size: 2rem;
  padding: 1rem 2rem;
  color: var(--text-color);
  border: solid 2px var(--text-color);
  border-radius: var(--radius);
  background: var(--background-color);
  transform: translate(-5px, -5px);
  transition: transform 0.2s;
}

.pill-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-color);
  border-radius: var(--radius);
}

.pill-button:hover span {
  transform: translate(0, -5px);
  border-color: var(--title-color);
}

.pill-button:active span {
  transform: translate(0, 0px);
  border-color: var(--title-color);
}

.offwhite-section .pill-button, .wpcf7-form .pill-button {
  --background-color: var(--offwhite);
  --text-color: var(--orange);
}

.offwhite-section .pill-button-background, .wpcf7-form .pill-button-background {
  --backdrop-color: var(--orange);
}

.orange-section .pill-button {
  --background-color: var(--orange);
  --text-color: var(--offwhite);
}

.orange-section .pill-button-background {
  --backdrop-color: var(--offwhite);
}

.pill-button.cancel span {
  color: white;
  border-color: white;
  --background-color: var(--orange);
}

.pill-button.cancel::before {
  background-color: var(--orange);
}

.circled-arrow {
  stroke: var(--text-color);
}

.circled-arrow path {
  fill: var(--text-color);
}

.circled-arrow circle {
  stroke: var(--text-color);
  fill: transparent;
}

.ariane-pagination {
  --top-margin: 20px;
  --top-padding: 16px;
  width: 100%;
  overflow-y: hidden;
}

.ariane-pagination-container {
  display: flex;
  justify-content: space-between;
  border-top: solid 1px var(--text-color);
}

.ariane-pagination-text {
  text-transform: uppercase;
  padding: var(--top-padding) 3em 0 0;
}

.ariane-pagination-number {
  padding-top: var(--top-padding);
}

.ariane-pagination.appear .ariane-pagination-text,
.ariane-pagination.appear .ariane-pagination-number {
  border-color: transparent;
  transform: translateY(-100%);
  transition: transform 0.76s cubic-bezier(0.27, -0.01, 0.1, 1.01), border-color 0.2s 1s;
}

.ariane-pagination.appear .ariane-pagination-number {
  transition-delay: 0.2s;
  border-color: var(--text-color);
}

.ariane-pagination.appear.visible .ariane-pagination-text,
.ariane-pagination.appear.visible .ariane-pagination-number {
  transform: translateY(0);
}

.wpcf7-form {
  --padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 0 auto 10vh;
  max-width: 800px;
}

.wpcf7-form label {
  display: flex;
  position: relative;
  white-space: nowrap;
  font-family: "Australian";
  border-radius: 1.8rem;
  font-size: 3rem;
  gap: 2rem;
  padding: 1rem 2rem;
  border: solid 3px var(--text-color);
  background: var(--background-color);
}

.wpcf7-form input:not([type=submit]) {
  flex: 1;
  font-family: "Dela";
  border: solid 3px var(--text-color);
  border: 0;
  background: none;
  width: 100%;
}

.wpcf7-form textarea {
  font-family: "Dela";
  width: 100%;
  background: none;
  border: none;
}

.wpcf7-form-control-wrap {
  position: unset;
}

.wpcf7-form input[type=submit] {
  grid-column: 1/3;
  justify-self: center;
}

.wpcf7-form label:has(textarea) {
  grid-column: 1/3;
  flex-direction: column;
}

.wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(calc(100% + 1em));
  font-family: "Dela";
  font-size: 1rem;
}

.wpcf7-response-output {
  grid-column: 1/3;
}

.text-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.slider-text-content {
  min-height: 350px;
}

.text-slider-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  overflow-x: hidden;
}

.text-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.2s;
  transform-origin: left center;
  transform: translateX(0);
  overflow: hidden;
}

.text-slider-slide {
  padding: 0 80px 0 0;
}

.text-slider-text {
  font-size: clamp(var(--bigTextSize), 3vw, var(--titleTwo));
}

.text-slider-controls {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
  min-width: 200px;
  padding-top: 10vh;
  margin-top: auto;
}

.text-slider-control {
  cursor: pointer;
  width: 80px;
  height: 80px;
}

.text-slider-control svg {
  width: 100%;
  height: 100%;
}

.text-slider-control.left .text-slider-icon {
  transform: rotate(-135deg);
}

.text-slider-control.right .text-slider-icon {
  transform: rotate(45deg);
}

.text-slider-control-pages {
  margin-left: auto;
}

.text-slider-icon {
  transform-origin: center center;
  transition: transform 0.2s;
}

.text-slider-control.left:hover .text-slider-icon {
  transform: translateX(-10px) rotate(-135deg);
}

.text-slider-control.right:hover .text-slider-icon {
  transform: translateX(10px) rotate(45deg);
}

.text-slider.little-text .text-slider-text {
  font-size: var(--bigTextSize);
}

.text-slider.little-text .text-slider-control {
  height: 45px;
  width: 45px;
}

.filter-list-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.filter-item {
  cursor: pointer;
  line-height: 1;
}

.select-container {
  display: none;
  position: relative;
  width: 100%;
  max-width: 500px;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 16px;
  transform-origin: center center;
  transform: translateY(-50%);
}

.select-arrow svg {
  width: 100%;
  stroke: var(--text-color);
}

.filter-list-select {
  border: solid 1px var(--text-color);
  padding: 16px 24px 16px 24px;
  border-radius: 1000px;
  background: transparent;
  color: var(--text-color);
  width: 100%;
  appearance: none;
}

@media screen and (max-width: 650px) {
  .filter-list-buttons {
    display: none;
  }
  .select-container {
    display: block;
  }
}
.card-slider-container {
  display: block;
}

.card-slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5vh;
}

.card-slider-footer .ariane-pagination {
  flex: 1;
}

.card-slider-footer .ariane-pagination .ariane-pagination-number {
  display: none;
}

.card-slider-controls {
  display: flex;
  gap: 25px;
  margin-left: 8vw;
}

.card-slider-control {
  cursor: pointer;
}

.card-slider-control.left .card-slider-icon {
  transform: rotate(-135deg);
}

.card-slider-control.right .card-slider-icon {
  transform: rotate(45deg);
}

.card-slider-icon {
  transform-origin: center center;
  transition: transform 0.2s;
}

.card-slider-control.left:hover .card-slider-icon {
  transform: translateX(-10px) rotate(-135deg);
}

.card-slider-control.right:hover .card-slider-icon {
  transform: translateX(10px) rotate(45deg);
}

.card-slider-control:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.splide__track {
  overflow: visible;
}

.splide__slide {
  padding: 0 var(--wrapper-h-padding);
  transition: border-color 0.2s;
  border-right: solid 1px transparent;
}

.splide__slide .card-conseil {
  height: 100%;
}

.splide__slide.is-visible:has(+ .splide__slide.is-visible) {
  border-color: var(--text-color);
}

@media screen and (max-width: 650px) {
  .splide__track {
    width: max(90%, 280px);
  }
  .card-slider-controls {
    display: none;
  }
}
.bread-container {
  --top-padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: solid 1px var(--text-color);
}

.bread-duration {
  padding-top: var(--top-padding);
}

.yoast-breadcrumbs {
  color: var(--text-color);
  padding: var(--top-padding) 3em 0 0;
}

.breadcrumb_last {
  padding-top: var(--top-padding);
  color: var(--text-lighten);
}

@media screen and (max-width: 800px) {
  .bread-container {
    flex-wrap: wrap;
    gap: 0;
  }
  .yoast-breadcrumbs {
    padding-right: 0;
  }
  .bread-duration {
    padding-right: 0;
  }
}
.splash {
  --welcomeSpeed: 1s;
  --loadSpeed: .3s;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s 1s;
}

.splash-top,
.splash-bot {
  width: 100%;
  height: 50%;
  background: var(--green);
}

.splash-top {
  display: none;
}

.splash-bot {
  display: none;
  background: lightblue;
}

.splash-embleme {
  opacity: 0;
}

.splash-embleme {
  transition: opacity 0.2s 0s, transform 5s 0.1s ease-out;
  transform-origin: center center;
}

.splash.load .splash-embleme {
  display: block;
  opacity: 1;
  transform: scale(3);
}

.splash.loaded .splash-embleme {
  transform: scale(0);
  opacity: 1;
  transition: transform var(--loadSpeed) ease-out;
}

.splash.loaded {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s var(--loadSpeed);
}

.splash.welcome .splash-embleme {
  display: none;
}

.splash-welcome {
  display: none;
}

.splash.welcome {
  display: block;
  background: transparent;
  transition: opacity 0.2s var(--welcomeSpeed);
}

.splash.welcome .splash-welcome {
  display: block;
  justify-content: center;
  align-items: center;
}

.splash-welcome {
  position: relative;
  height: 100%;
  width: 100%;
}

.splash-welcome-top,
.splash-welcome-bot {
  display: flex;
  justify-content: center;
  background: var(--green);
  width: 100%;
  height: 50%;
  transition: transform var(--welcomeSpeed) cubic-bezier(0.43, 0, 0, 1);
  padding: 5px;
}

.splash-welcome-top {
  align-items: end;
}

.splash-welcome-bot {
  align-items: start;
}

.splash-welcome-top svg,
.splash-welcome-bot svg {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  animation: logoUnwrap var(--clip-reveal-duration) var(--clip-reveal-curve) forwards;
}

.splash-welcome-bot svg {
  animation-delay: 300ms;
}

.splash-welcome-bot svg {
  animation-delay: 700ms;
}

@keyframes logoUnwrap {
  from {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.splash.loaded .splash-welcome-top {
  transform: translateY(-50vh);
}

.splash.loaded .splash-welcome-bot {
  transform: translateY(50vh);
}

.splash.welcome .splash-embleme {
  display: none;
}

@keyframes bigger {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(2);
  }
}
@media screen and (max-width: 700px) {
  .splash-welcome-top svg {
    width: 250px;
    height: 50px;
  }
  .splash-welcome-bot svg {
    width: 250px;
    height: 12px;
  }
}
.contact-section-bloc {
  --hero-top-padding: calc(var(--hero-height) + 5vh);
  display: flex;
  position: relative;
  flex-direction: column;
  background: var(--background-color);
  padding-top: 20vh;
  min-height: var(--full-height-bloc);
}

.contact-section-bloc-title {
  color: var(--title-color);
  text-align: center;
  margin-bottom: 2vh;
}

.contact-section-bloc-description {
  color: var(--title-color);
  font-size: 5rem;
  text-align: center;
  margin-bottom: 5vh;
}

.contact-icon-left,
.contact-icon-right {
  position: absolute;
  bottom: 0;
  width: 45%;
  height: 70%;
}

.contact-icon-left svg,
.contact-icon-right svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-icon-left {
  left: 0;
  transform: translateX(-30%);
}

.contact-icon-right {
  right: 0;
  transform: scaleX(-1) translateX(-30%);
}

@media screen and (max-width: 760px) {
  .contact-section-bloc-title {
    margin-bottom: 5vh;
  }
}
.hero-bloc {
  background: var(--background-color);
  position: relative;
  padding: 25vh 0 10vh;
}

.hero-bloc-content {
  position: relative;
  z-index: 1;
}

.hero-bloc-title {
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-bloc hr {
  margin: 10vh auto;
  width: 60%;
  border: 0;
  height: 3px;
  background: var(--text-color);
}

.hero-bloc-baseline {
  text-align: center;
}

.hero-bloc-desc {
  font-family: "Dela";
  font-size: var(--body-size);
  width: 100%;
}

.hero-bloc-figure {
  position: absolute;
  inset: 0;
}

.image-and-content-section {
  position: relative;
  padding: 10vh 0;
}

.image-and-content-section-wrapper {
  display: flex;
  gap: 10vw;
}

.image-and-content-section.reverse .image-and-content-section-wrapper {
  flex-direction: row-reverse;
}

.image-and-content-section-image-container {
  width: 45%;
  border-radius: var(--images-radius);
  overflow: hidden;
}

.image-and-content-section-image-container svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-and-content-section-image-pixel {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
}

.image-and-content-section-content {
  flex: 1;
  min-height: 50vh;
  overflow: hidden;
}

.image-and-content-section-subtitle {
  color: var(--title-color);
  font-size: 3rem;
}

.image-and-content-section-content-title {
  margin-bottom: 5vh;
}

.image-and-content-section-content-text,
.image-and-content-section-content-text p {
  padding: 0 !important;
  margin-bottom: 2vh;
}

.image-and-content-section-content-button {
  margin: 5vh 0 5vh;
}

.image-and-content-section-content-icon svg {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 801px) {
  .image-and-content-section-content {
    overflow: visible;
  }
  .image-and-content-section-wrapper,
  .image-and-content-section.reverse .image-and-content-section-wrapper {
    flex-direction: column;
  }
  .image-and-content-section-image-container {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
  }
}
.mixt-content-bloc {
  background: var(--background-color);
  color: var(--text-color);
  padding: 5vh;
}

.mixt-content-bloc h1 {
  margin-bottom: 2rem;
}

.mixt-content-bloc h2 {
  margin-bottom: 1rem;
}

.mixt-content-bloc h3 {
  margin-bottom: 0.8rem;
}

.mixt-content-wrapper p,
.mixt-content-wrapper ul {
  padding: 0 !important;
}

.mixt-content-wrapper ul {
  margin: 2rem 0;
}

.mixt-content-wrapper li {
  font-size: var(--body-size);
  gap: 0;
}

.mixt-content-wrapper li::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 1em;
  border-radius: 50%;
  background: var(--title-color);
}

.flamingo-section + .mixt-content-bloc li::before {
  color: var(--text-color) !important;
}

.mixt-content-wrapper blockquote {
  padding: 0;
}

.mixt-content-wrapper blockquote p {
  padding-left: 0.5em !important;
}

.bloc-formulas-slider {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 0;
  overflow: hidden;
  clip-path: shape(from 0% 10%, line to 0% 0%, line to 100% 0%, line to 100% 10%, line to 100% 88%, curve to 76% 95% with 96% 95%, curve to 29% 85% with 60% 94%, curve to 0% 84% with 14% 80%, close);
}

.formulas-header {
  max-width: 800px;
  margin-bottom: 2vh;
}

.formulas-title {
  white-space: nowrap;
  font-size: var(--subtitle-size);
  text-align: center;
  margin-bottom: 3vh;
}

.formulas-main {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  height: 80vh;
}

.formulas-ctr {
  align-self: center;
  justify-self: center;
  opacity: 0.5;
  transform-origin: center center;
  transform: scale(1);
  transition: opacity 0.1s, transform 0.1s;
  cursor: pointer;
}

.formulas-ctr:hover {
  transform: scale(1.1);
  opacity: 1;
}

.formulas-content {
  position: relative;
  aspect-ratio: 1/1;
  justify-self: center;
  align-items: center;
}

.formulas-steps {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.formula-step {
  position: absolute;
  inset: 0;
}

.formula-circle {
  width: 100%;
}

.formula-circle circle {
  stroke: var(--text-color);
}

.circle-text {
  font-family: var(--subtitle-font);
  fill: var(--text-color);
  font-size: var(--button-size);
  opacity: 0.5;
  transition: opacity 0.1s;
  cursor: pointer;
}

.circle-text.active,
.circle-text:hover {
  opacity: 1;
}

.formulas-dishes-list {
  position: relative;
  width: 100%;
  height: 100%;
}

.formula-dishes {
  position: absolute;
  padding: 12rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: rotate(180deg) translateY(-150%);
  transition: transform 1s, opacity 0.3s;
  transform-origin: center center;
}

.formula-dishes.active {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

@media screen and (max-width: 900px) {
  .bloc-formulas-slider {
    clip-path: shape(from 0% 10%, line to 0% 0%, line to 100% 0%, line to 100% 10%, line to 100% 88%, curve to 76% 93% with 87% 90%, curve to 25% 97% with 51% 100%, curve to 0% 90% with 8% 95%, close);
  }
  .formulas-main {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 30px;
    margin-bottom: 15vh;
    height: 80vh;
    max-width: 740px;
  }
  .formulas-content {
    width: 100%;
    grid-column: span 2;
  }
  .formulas-ctr.left,
  .formulas-ctr.right {
    position: relative;
    z-index: 100;
    transform: translateY(-100%);
  }
  .formulas-ctr.left {
    grid-row: 2/3;
  }
  .formula-dishes {
    padding: 15vw;
  }
  .formulas-ctr.right {
    grid-row: 2/3;
  }
}
@media screen and (max-width: 600px) {
  .bloc-formulas-slider {
    padding-top: 4rem;
  }
  .formulas-main {
    height: 65vh;
  }
}
@media screen and (max-width: 500px) {
  .formulas-main {
    height: 50vh;
  }
  .formulas-ctr.left,
  .formulas-ctr.right {
    transform: translateY(-50%);
  }
}
.centered-bloc {
  position: relative;
  padding: 10vh 0;
}

.centered-bloc-content {
  position: relative;
  z-index: 1;
  font-size: var(--title-two-size);
  max-width: 900px;
  margin: 0 auto;
}

.offscreen-figure {
  position: absolute;
  z-index: 0;
  max-height: 50vh;
  min-width: 35vw;
}

.offscreen-figure svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offscreen-figure.left {
  left: 0;
  bottom: 0;
  transform: translateX(-50%);
}

.offscreen-figure.right {
  right: 0;
  top: 0;
  transform: translateX(50%);
}

@media screen and (max-width: 800px) {
  .centered-bloc {
    padding: 10vh 0 35vh;
  }
  .offscreen-figure.left {
    left: 50%;
    height: 30vh;
    bottom: 5vh;
  }
  .offscreen-figure.right {
    height: 25vh;
    transform: translateX(20%);
  }
}
.gallery-bloc {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0;
}

.gallery-bloc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gallery-bloc-row {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-bloc-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
  overflow: hidden;
}

.gallery-bloc-item {
  border-radius: var(--images-radius);
  overflow: hidden;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-bloc-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.gallery-bloc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 765px) {
  .gallery-bloc-item {
    width: 200px;
    height: 200px;
  }
  .gallery-bloc-wrapper {
    gap: 1rem;
  }
  .gallery-bloc-track {
    gap: 1rem;
  }
}
.utils-bloc {
  position: relative;
  padding-top: 10vh;
  padding-bottom: 5vh;
}

.utils-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-30%, 30%);
  width: 300px;
  height: auto;
  max-height: 50vh;
}

.utils-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.utils-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2rem;
  border-radius: var(--images-radius);
}

.utils-content:after,
.utils-content:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: var(--images-radius);
}

.utils-content:after {
  z-index: 1;
  inset: 1rem;
  border: solid 3px var(--title-color);
  background: var(--background-color);
}

.utils-content:before {
  z-index: 0;
  inset: 0rem;
  background: var(--title-color);
  transform: translate(5px, 5px);
}

.utils-openings {
  position: relative;
  z-index: 2;
  padding: 4vh 0;
}

.utils-oppenning {
  --text-color: var(--title-color);
  text-align: center;
}

.utils-oppenning-day {
  font-size: 6em;
}

.utils-oppenning-hours {
  font-size: 2.5rem;
}

.utils-separator {
  height: 3rem;
  margin: 1vh 0;
}

.utils-separator svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.utils-contacts {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 3px 1fr;
  gap: 1rem;
  --text-color: var(--background-color);
  background-color: var(--title-color);
  border-radius: var(--images-radius);
}

.utils-contacts hr {
  border: 0;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  margin: 0;
}

.utils-contact-phone {
  align-self: center;
  justify-self: center;
}

.utils-contacts-address {
  align-self: center;
  justify-self: center;
}

.utils-contacts-title {
  font-size: 6rem;
  margin-bottom: 2vh;
}

.utils-contacts-link {
  color: var(--text-color);
  font-family: "Dela";
  font-size: 2em;
}

.utils-contacts-link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .utils-content {
    grid-template-columns: 1fr;
  }
  .utils-contacts-title {
    font-size: 5rem;
    text-align: center;
  }
  .utils-contacts-link {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    width: 100%;
  }
  .utils-openings {
    padding: 0 2rem;
  }
  .utils-oppenning-day {
    font-size: 4rem;
  }
}
.reservation-section {
  padding: 25vh 0 15vh;
}

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

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

.reservation-section hr {
  height: 3px;
  width: 400px;
  border: 0;
  background: var(--text-color);
  margin: 2rem auto;
}

.cnc-bloc {
  padding-top: 20vh;
}

.cnc-header {
  margin-bottom: 5vh;
}

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

.cnc-description {
  color: var(--title-color);
  text-align: center;
  font-size: 5rem;
}/*# sourceMappingURL=main.css.map */