/*
  @mixin theme($property, $key, $inlineExtra:null, $postExtra:null)
  Assigns a property a theme value for each defined theme.

  Example usage:
    .mySelector {
      padding: 6px;
      @include theme(background-color, backgroundLight);
      @include theme(border, borderDark, 1px solid);
    }
*/
/*
  @mixin generateThemeMappings(themeName: string, themeMap: map)
  helper function for generating list of theme variables and adding to existing map.
  This will add a new theme to the themes array and the theme color list.
*/
/*
  @mixin generateThemeVariables
  Auto-generates the entire list of theme variables for use in var() statements.
  Really should only be called in the html selector at the app root.
*/
/** this section generates a theme map for each theme **/
/** end theme generation **/
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

button {
  color: inherit;
  padding: 0;
  border: none;
  cursor: pointer;
  background: transparent;
  font-size: inherit;
}

form {
  display: block;
}

select,
input {
  font-size: inherit;
  font-family: inherit;
}

pre {
  font-family: monospace;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

textarea {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  resize: none;
}

hr {
  height: 1px;
  background: var(--border);
  margin: 0;
  padding: 0;
  border: none;
}

*:focus:not(:focus-visible) {
  outline: none;
}

@font-face {
  font-family: "Bangla";
  src: url("../font/acme-gothic-wide.otf");
}
@font-face {
  font-family: "Cochin";
  src: url("../font/Cochin-Regular.otf");
}
@font-face {
  font-family: "Trio";
  src: url("../font/TrioGrotesk-Medium.otf");
}
:root {
  --container-padding: 32px;
  --container-padding-vertical: 32px;
  --container-width: 100%;
}

@media only screen and (width <= 600px) {
  :root {
    --container-padding: 32px;
    --container-padding-vertical: var(--container-padding);
    --container-width: 100% ;
  }
}
@media only screen and (600px <= width <= 850px) {
  :root {
    --container-padding: 32px;
    --container-padding-vertical: var(--container-padding);
    --container-width: 100%;
  }
}
@media only screen and (850px <= width <= 1232px) {
  :root {
    --container-padding: 32px;
  }
}
.fullwidth {
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.header {
  box-sizing: border-box;
  width: 100%;
  padding-left: 1%;
  padding-right: 1%;
}

.article {
  box-sizing: border-box;
  width: 100%;
}

/* Components */
ul .wpml-ls-menu-item a {
  display: none;
}

header.header {
  display: flex;
}
.light header.header, .lightheader.header {
  background-color: var(--theme-light-textDark, #FBF6EC);
}

.light.reverse header.header, .light .reverse header.header, .light header.header.reverse {
  background-color: var(--theme-light-textLight, #1D345E);
}

.light header.header, .lightheader.header {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse header.header, .light .reverse header.header, .light header.header.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

header.header {
  padding-top: 11px;
  padding-bottom: 12px;
  flex-direction: row;
  align-items: center;
  position: fixed;
  width: 100vw;
  height: 84px;
  justify-content: space-between;
  z-index: 7;
  border-bottom: 1px solid;
  font-family: var(--Cochin-font);
}
@media (max-width: 600px) {
  header.header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
header.header .box {
  display: flex;
  justify-content: center;
}
header.header .box div.header-text {
  margin-left: 20px;
  margin-right: 20px;
  text-transform: capitalize;
  font-size: 17px;
  font-weight: bold;
}
@media (width < 600px) {
  header.header .box div.header-text {
    display: none;
  }
}
header.header .box-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 80px;
  gap: 10px;
  align-items: center;
}
header.header .box-right .language {
  height: 24px;
}
header.header .box-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  max-width: 80px;
  gap: 10px;
}
@media (width <= 850px) {
  header.header .box-left {
    display: none;
  }
}
header.header .box:first-child > div {
  margin-right: auto;
}
header.header .box:last-child > div {
  margin-left: auto;
}
header.header.with_alert {
  top: 20px;
}
.light header.header.open, .lightheader.header.open {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse header.header.open, .light .reverse header.header.open, .light header.header.open.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

.light header.header.open, .lightheader.header.open {
  background-color: var(--theme-light-backgroundLight, #FBF6EC);
}

.light.reverse header.header.open, .light .reverse header.header.open, .light header.header.open.reverse {
  background-color: var(--theme-light-backgroundDark, #292D46);
}

.light header.header .monogram, .lightheader.header .monogram {
  background-color: var(--theme-light-textLight, #1D345E);
}

.light.reverse header.header .monogram, .light .reverse header.header .monogram, .light header.header .monogram.reverse {
  background-color: var(--theme-light-textDark, #FBF6EC);
}

header.header .monogram {
  mask-image: url("../assets/instagram.svg");
  -webkit-mask-image: url("../assets/instagram.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: left;
  -webkit-mask-position: left;
  height: 35px;
  width: 35px;
  margin: 3px;
  height: 46px;
  width: 46px;
}
@media (width < 600px) {
  header.header .monogram {
    display: none;
  }
}
header.header .instagram {
  height: 20px;
  width: 80px;
}
@media (width > 850px) {
  header.header .instagram {
    display: none;
  }
}
header.header .instagram-laptop,
header.header .instagram-side {
  aspect-ratio: 256/44;
  width: 256px;
  background-image: url("../assets/instagram.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--theme-light-textLight);
}
header.header .instagram-laptop a,
header.header .instagram-side a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
@media (width <= 850px) {
  header.header .instagram-laptop {
    display: none;
  }
}
header.header .instagram-side {
  background-color: var(--theme-light-textDark);
}
header.header .burger {
  height: 20px;
  width: 20px;
  display: block;
  cursor: pointer;
  z-index: 11;
}
.light header.header .burger, .lightheader.header .burger {
  background-color: var(--theme-light-textLight, #1D345E);
}

.light.reverse header.header .burger, .light .reverse header.header .burger, .light header.header .burger.reverse {
  background-color: var(--theme-light-textDark, #FBF6EC);
}

header.header .burger {
  mask-image: url("../assets/burger.svg");
  -webkit-mask-image: url("../assets/burger.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: left;
  -webkit-mask-position: left;
}
header.header .burger.open {
  background-color: var(--theme-light-textLight);
  mask-image: url("../assets/croix.svg");
  -webkit-mask-image: url("../assets/croix.svg");
  margin-bottom: 5px;
}
@media (width > 850px) {
  header.header .burger {
    display: none;
  }
}
header.header .burger-laptop {
  height: 20px;
  width: 20px;
  display: block;
  cursor: pointer;
  z-index: 11;
}
.light header.header .burger-laptop, .lightheader.header .burger-laptop {
  background-color: var(--theme-light-textLight, #1D345E);
}

.light.reverse header.header .burger-laptop, .light .reverse header.header .burger-laptop, .light header.header .burger-laptop.reverse {
  background-color: var(--theme-light-textDark, #FBF6EC);
}

header.header .burger-laptop {
  mask-image: url("../assets/burger.svg");
  -webkit-mask-image: url("../assets/burger.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: left;
  -webkit-mask-position: left;
}
header.header .burger-laptop.open {
  background-color: var(--theme-light-textLight);
  mask-image: url("../assets/croix.svg");
  -webkit-mask-image: url("../assets/croix.svg");
  margin-bottom: 5px;
}
@media (width <= 850px) {
  header.header .burger-laptop {
    display: none;
  }
}
header.header .logo,
header.header .logo-side {
  display: flex;
  font-size: 10px;
  line-height: 12px;
  justify-content: space-between;
  align-items: center;
}
header.header .logo .stjean,
header.header .logo-side .stjean {
  background-color: var(--theme-light-textLight);
  mask-image: url("../assets/pedone-dal-1959.svg");
  -webkit-mask-image: url("../assets/pedone-dal-1959.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  width: 100%;
  aspect-ratio: 16/3;
  mask-position: center;
  --webkit-mask-position: center;
  width: 23vw;
}
.light header.header .logo .stjean.open, header.header .logo-side .stjean.open, .lightheader.header .logo .stjean.open, header.header .logo-side .stjean.open {
  background-color: var(--theme-light-textDark, #FBF6EC);
}

.light.reverse header.header .logo .stjean.open, header.header .logo-side .stjean.open, .light .reverse header.header .logo .stjean.open, header.header .logo-side .stjean.open, .light header.header .logo .stjean.open, header.header .logo-side .stjean.open.reverse {
  background-color: var(--theme-light-textLight, #1D345E);
}

header.header .logo .stjean a,
header.header .logo-side .stjean a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
@media (width <= 850px) {
  header.header .logo .stjean,
  header.header .logo-side .stjean {
    width: 55vw;
  }
}
header.header .logo,
header.header .logo-side {
  z-index: 9;
}
header.header .logo a img,
header.header .logo-side a img {
  height: 24px;
  vertical-align: bottom;
}
@media (width <= 850px) {
  header.header .logo {
    max-width: 60%;
  }
}
@media (width <= 600px) {
  header.header .logo {
    max-width: 40%;
  }
}
header.header .logo-side {
  max-width: 50%;
}
header.header .logo-side .stjean {
  background-color: var(--theme-light-textLight) !important;
  width: 60%;
}
header.header div.nav-bar-item {
  min-width: 70%;
  padding-left: 150px;
}
@media (max-width: 1015px) {
  header.header div.nav-bar-item {
    display: none;
  }
  header.header div.nav-bar-item li.desktop-link {
    display: none;
  }
  header.header div.nav-bar-item li.mobile-link {
    display: block;
  }
}
header.header div.nav-bar-item li.desktop-link {
  display: block;
}
header.header div.nav-bar-item li.mobile-link {
  display: none;
}

.header__main__menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  font-size: 10px;
  line-height: 12px;
}

.header__sidebar {
  position: fixed;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  overflow: hidden;
  transition: transform var(--transition-duration) var(--transition-timing-function);
  z-index: 10;
}
.light .header__sidebar, .light.header__sidebar {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse .header__sidebar, .light .reverse .header__sidebar, .light .header__sidebar.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

.light .header__sidebar, .light.header__sidebar {
  background-color: var(--theme-light-backgroundLight, #FBF6EC);
}

.light.reverse .header__sidebar, .light .reverse .header__sidebar, .light .header__sidebar.reverse {
  background-color: var(--theme-light-backgroundDark, #292D46);
}

.reverse .header__sidebar {
  background-image: none;
  background-color: var(--theme-light-textDark);
}

@media (width > 850px) {
  .header__sidebar {
    width: 30vw;
    height: 100%;
    transform: translateX(-40vw);
    left: 0;
    border: 1px solid;
    padding-top: 84px;
  }
}
@media (width <= 850px) {
  .header__sidebar {
    width: 100vw;
    transform: translateY(-100%);
    bottom: 0;
    left: 0;
    padding-top: 70px;
  }
}
.header__sidebar.open {
  transform: translateX(0);
  transition: transform var(--transition-duration) var(--transition-timing-function);
}
@media (width <= 850px) {
  .header__sidebar.open {
    transform: translateY(0);
  }
}
.header__sidebar h1 {
  text-align: left !important;
  margin-bottom: 0px !important;
  margin-top: 7px !important;
}
.light .header__sidebar h1, .light.header__sidebar h1 {
  color: var(--theme-light-textDark, #FBF6EC);
}

.light.reverse .header__sidebar h1, .light .reverse .header__sidebar h1, .light .header__sidebar h1.reverse {
  color: var(--theme-light-textLight, #1D345E);
}

.header__sidebar h1 {
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}
.header__sidebar h1.moyenne, .header__sidebar h1.moyenne a {
  font-size: 18px;
}
@media only screen and (width < 850px) {
  .header__sidebar h1 {
    font-size: 0.8rem;
  }
}
.header__sidebar hr {
  height: 1px !important;
  width: 100% !important;
  display: block !important;
  position: relative !important;
}
.light .header__sidebar hr, .light.header__sidebar hr {
  background-color: var(--theme-light-textLight, #1D345E);
}

.light.reverse .header__sidebar hr, .light .reverse .header__sidebar hr, .light .header__sidebar hr.reverse {
  background-color: var(--theme-light-textDark, #FBF6EC);
}

.header__sidebar .menu-header-side {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__sidebar .menu-header-side .logo-side {
  background-color: var(--theme-light-textLight);
  mask-image: url("../assets/pedone-dal-1959.svg");
  -webkit-mask-image: url("../assets/pedone-dal-1959.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  width: 100%;
  aspect-ratio: 1;
  width: 25%;
}
.header__sidebar .menu-footer-side {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: left;
  padding-top: 20px;
  padding-bottom: 50px;
}
.header__sidebar .menu-footer-side p {
  font-family: var(--Bangla-font);
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 900;
  line-height: 135%;
}
@media only screen and (width < 850px) {
  .header__sidebar .menu-footer-side p {
    font-size: 1.26rem;
  }
}
.header__sidebar .menu-entries .header__sidebar__menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1015px) {
  .header__sidebar .menu-entries .header__sidebar__menu li.desktop-link {
    display: none;
  }
  .header__sidebar .menu-entries .header__sidebar__menu li.mobile-link {
    display: block;
  }
}
@media (min-width: 1016px) {
  .header__sidebar .menu-entries .header__sidebar__menu li.desktop-link {
    display: block;
  }
  .header__sidebar .menu-entries .header__sidebar__menu li.mobile-link {
    display: none;
  }
}
.header__sidebar .menu-entries .header__sidebar__menu li {
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: var(--Bangla-font);
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}
.header__sidebar .menu-entries .header__sidebar__menu li.moyenne, .header__sidebar .menu-entries .header__sidebar__menu li.moyenne a {
  font-size: 18px;
}
.light .header__sidebar .menu-entries .header__sidebar__menu li, .light.header__sidebar .menu-entries .header__sidebar__menu li {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse .header__sidebar .menu-entries .header__sidebar__menu li, .light .reverse .header__sidebar .menu-entries .header__sidebar__menu li, .light .header__sidebar .menu-entries .header__sidebar__menu li.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

.header__sidebar .menu-entries .header__sidebar__menu li a {
  text-decoration: none !important;
  text-align: left !important;
}
.light .header__sidebar .menu-entries .header__sidebar__menu li a, .light.header__sidebar .menu-entries .header__sidebar__menu li a {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse .header__sidebar .menu-entries .header__sidebar__menu li a, .light .reverse .header__sidebar .menu-entries .header__sidebar__menu li a, .light .header__sidebar .menu-entries .header__sidebar__menu li a.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

.header__sidebar .menu-entries .header__sidebar__menu li.menu-item-has-children {
  padding-bottom: 0px;
  border-bottom: none;
}
.header__sidebar .menu-entries .header__sidebar__menu ul.sub-menu {
  margin-top: 8px;
}
.header__sidebar .menu-entries .header__sidebar__menu ul.sub-menu li {
  padding-left: 8px;
}
.light .header__sidebar .menu-entries .header__sidebar__menu ul.sub-menu li a, .light.header__sidebar .menu-entries .header__sidebar__menu ul.sub-menu li a {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse .header__sidebar .menu-entries .header__sidebar__menu ul.sub-menu li a, .light .reverse .header__sidebar .menu-entries .header__sidebar__menu ul.sub-menu li a, .light .header__sidebar .menu-entries .header__sidebar__menu ul.sub-menu li a.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

.header__overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-duration) var(--transition-timing-function);
}
.header__overlay.open {
  display: block;
}

.light footer.footer, .lightfooter.footer {
  background-color: var(--theme-light-backgroundDark, #292D46);
}

.light.reverse footer.footer, .light .reverse footer.footer, .light footer.footer.reverse {
  background-color: var(--theme-light-backgroundLight, #FBF6EC);
}

.light footer.footer, .lightfooter.footer {
  color: var(--theme-light-textDark, #FBF6EC);
}

.light.reverse footer.footer, .light .reverse footer.footer, .light footer.footer.reverse {
  color: var(--theme-light-textLight, #1D345E);
}

footer.footer {
  padding-top: 20px;
  padding-bottom: 1em;
  padding-left: 2%;
  padding-right: 2%;
  font-family: var(--Cochin-font);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
@media only screen and (width < 850px) {
  footer.footer {
    padding: 2em;
    font-size: 1em;
  }
}
footer.footer hr {
  background-color: var(--gold-color);
  height: 1px;
  width: 100%;
}
footer.footer div.visual-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 4vw;
  margin-top: 4vw;
  margin-bottom: 4vw;
  width: 100%;
}
footer.footer div.visual-items .picto {
  background-color: var(--gold-color);
}
footer.footer div.visual-items .card-square {
  width: 8vw;
}
@media only screen and (width < 850px) {
  footer.footer div.visual-items .card-square {
    width: 17vw;
  }
}
footer.footer div.visual-items .card-one-liner {
  width: 50vw;
}
@media only screen and (width < 850px) {
  footer.footer div.visual-items .card-one-liner {
    width: 80vw;
    aspect-ratio: 16/2;
  }
}
footer.footer div.visual-items .card-landscape-picto {
  width: 19vw !important;
}
@media only screen and (width < 850px) {
  footer.footer div.visual-items .card-landscape-picto {
    width: 41vw !important;
  }
}
footer.footer div.footer-items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (width < 850px) {
  footer.footer div.footer-items {
    flex-direction: column;
  }
}
footer.footer div.footer-items ul {
  display: grid;
  grid-template-columns: repeat(4, 10vw);
  justify-content: stretch;
  gap: 10px 20vw;
  width: 100%;
}
@media only screen and (width <= 850px) {
  footer.footer div.footer-items ul {
    grid-template-columns: repeat(2, 35vw);
  }
}
footer.footer div.footer-items ul li {
  width: 10vw;
  margin-bottom: 20px;
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}
footer.footer div.footer-items ul li.moyenne, footer.footer div.footer-items ul li.moyenne a {
  font-size: 18px;
}
@media only screen and (width < 850px) {
  footer.footer div.footer-items ul li {
    font-size: 0.8rem;
  }
}
@media only screen and (width <= 850px) {
  footer.footer div.footer-items ul li {
    width: 100%;
    margin-bottom: 5px;
  }
}
footer.footer div.footer-items ul li a {
  text-decoration: none !important;
  color: white !important;
}
footer.footer div.footer-items div.social {
  position: relative;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
  justify-content: space-between;
  align-items: center;
}
footer.footer div.footer-items div.social div.social-icons {
  position: relative;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 90px;
  height: 45px;
}
footer.footer div.footer-items div.social div.social-message p {
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: lowercase;
}
footer.footer div.footer-items div.social div.social-message p.moyenne, footer.footer div.footer-items div.social div.social-message p.moyenne a {
  font-size: 18px;
}
.light footer.footer div.footer-items div.social div.social-message p, .lightfooter.footer div.footer-items div.social div.social-message p {
  color: var(--theme-light-textDark, #FBF6EC);
}

.light.reverse footer.footer div.footer-items div.social div.social-message p, .light .reverse footer.footer div.footer-items div.social div.social-message p, .light footer.footer div.footer-items div.social div.social-message p.reverse {
  color: var(--theme-light-textLight, #1D345E);
}

footer.footer div.footer-items div.social div.social-message p {
  text-align: right;
}
@media only screen and (width < 850px) {
  footer.footer div.footer-items div.social div.social-message p {
    font-size: 12px;
  }
}
.light footer.footer div.footer-items .instagram, .lightfooter.footer div.footer-items .instagram {
  background-color: var(--theme-light-textDark, #FBF6EC);
}

.light.reverse footer.footer div.footer-items .instagram, .light .reverse footer.footer div.footer-items .instagram, .light footer.footer div.footer-items .instagram.reverse {
  background-color: var(--theme-light-textLight, #1D345E);
}

footer.footer div.footer-items .instagram {
  mask-image: url("../assets/instagram.svg");
  -webkit-mask-image: url("../assets/instagram.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: left;
  -webkit-mask-position: left;
  height: 35px;
  width: 35px;
  margin: 3px;
}
footer.footer div.credits {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  width: 100% !important;
  font-family: var(--Cochin-font);
  font-size: 0.8rem;
  line-height: normal;
  font-weight: 600;
  text-transform: lowercase;
}
footer.footer div.credits a {
  text-decoration: none !important;
  font-family: var(--Cochin-font);
  font-size: 0.8rem;
  line-height: normal;
  font-weight: 600;
  text-transform: lowercase;
}
.light footer.footer div.credits a, .lightfooter.footer div.credits a {
  color: var(--theme-light-textDark, #FBF6EC);
}

.light.reverse footer.footer div.credits a, .light .reverse footer.footer div.credits a, .light footer.footer div.credits a.reverse {
  color: var(--theme-light-textLight, #1D345E);
}

footer.footer div.credits a {
  text-transform: none;
}

section.coming-soon {
  color: white;
}
section.coming-soon div.card-landscape {
  width: 100%;
  height: 100vh;
}
section.coming-soon h1 {
  font-size: 2.5rem;
  margin: 0;
}
@media (width <= 850px) {
  section.coming-soon h1 {
    font-size: 1.8rem;
    max-width: 90% !important;
  }
}
section.coming-soon .pedone-logo {
  max-width: 90%;
  background-color: white;
  margin-top: 20px;
  mask-image: url("../assets/pedone-dal-1959.svg");
  -webkit-mask-image: url("../assets/pedone-dal-1959.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  width: 100%;
  aspect-ratio: 16/3;
  mask-position: top;
  --webkit-mask-position: top;
}
@media (width <= 850px) {
  section.coming-soon .pedone-logo {
    max-width: 80%;
  }
}
section.coming-soon div.social {
  position: relative;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 5%;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
}
@media (width <= 850px) {
  section.coming-soon div.social {
    width: 60%;
  }
}
section.coming-soon div.social div.social-icons {
  position: relative;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 90px;
  height: 45px;
}
section.coming-soon div.social div.social-message p {
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: lowercase;
}
section.coming-soon div.social div.social-message p.moyenne, section.coming-soon div.social div.social-message p.moyenne a {
  font-size: 18px;
}
.light section.coming-soon div.social div.social-message p, .lightsection.coming-soon div.social div.social-message p {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse section.coming-soon div.social div.social-message p, .light .reverse section.coming-soon div.social div.social-message p, .light section.coming-soon div.social div.social-message p.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

section.coming-soon div.social div.social-message p {
  text-align: right;
}
@media (max-width: 600px) {
  section.coming-soon div.social div.social-message p {
    font-size: 12px;
  }
}
section.coming-soon .instagram {
  background-color: white;
  mask-image: url("../assets/instagram.svg");
  -webkit-mask-image: url("../assets/instagram.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: left;
  -webkit-mask-position: left;
  height: 35px;
  width: 35px;
  margin: 3px;
}
section.coming-soon .linkedin {
  background-color: white;
  mask-image: url("../assets/linkedin.svg");
  -webkit-mask-image: url("../assets/linkedin.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: left;
  -webkit-mask-position: left;
  height: 35px;
  width: 35px;
  margin: 3px;
}

:root {
  --theme-light-borderDark: #FBF6EC;
  --theme-light-borderLight: #1D345E;
  --theme-light-textDark: #FBF6EC;
  --theme-light-textLight: #1D345E;
  --theme-light-backgroundDark: #292D46;
  --theme-light-backgroundLight: #FBF6EC;
  --theme-light-pictoLight: #292D46;
  --theme-light-pictoDark: #FBF6EC;
  --Cochin-font: "Cochin", sans-serif;
  --Trio-font: "Trio", sans-serif;
  --Bangla-font: "Bangla", sans-serif;
  --image-text: #ffffff;
  --gold-color: #E7D19F;
  --transition-duration: .3s;
  --transition-duration-2: .3s;
  --transition-timing-function: linear;
  --transition-timing-function-2: ease-in-out;
}

@media only screen and (width >= 850px) {
  .mobile {
    display: none !important;
  }
}

@media only screen and (width < 850px) {
  .desktop {
    display: none !important;
  }
}

body {
  background-color: var(--theme-light-backgroundLight) !important;
}

div#map {
  width: 90vw;
  background-position: center;
  background-size: cover;
}
div#map a {
  width: 100%;
  height: 100%;
  display: block;
}

.light section, .lightsection {
  background-color: var(--theme-light-backgroundLight, #FBF6EC);
}

.light.reverse section, .light .reverse section, .light section.reverse {
  background-color: var(--theme-light-backgroundDark, #292D46);
}

section {
  padding-left: 0;
  padding-right: 0;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
section.last {
  padding-bottom: 50px;
}
section.first {
  padding-top: 80px !important;
  padding-top: 80px !important;
  padding-bottom: 0 !important;
}
.with_alert section.first {
  padding-top: 80px !important;
}

section.first p:first-of-type {
  margin-top: 20px;
}
@media only screen and (width >= 850px) {
  section.half {
    padding-left: 25%;
    padding-right: 25%;
  }
}
@media only screen and (width >= 850px) {
  section.third {
    padding-left: 33%;
    padding-right: 33%;
  }
}
section.white {
  background-color: white !important;
}
section.top-margins {
  margin-top: var(--container-padding-vertical);
}
section.bottom-margins {
  margin-bottom: var(--container-padding-vertical);
}
section.top-padding {
  padding-top: var(--container-padding-vertical);
}
section.bottom-padding {
  padding-bottom: var(--container-padding-vertical);
}
@media only screen and (width < 850px) {
  section {
    padding-left: 0;
    padding-right: 0;
  }
}

section.body {
  align-items: flex-start;
}

.masonry {
  width: 100%;
  column-count: 1;
  column-gap: 0;
}
@media screen and (min-width: 400px) {
  .masonry {
    column-count: 2;
  }
}
@media screen and (min-width: 600px) {
  .masonry {
    column-count: 3;
  }
}
@media screen and (min-width: 800px) {
  .masonry {
    column-count: 4;
  }
}
@media screen and (min-width: 1100px) {
  .masonry {
    column-count: 5;
  }
}

.masonry-item {
  box-sizing: border-box;
  break-inside: avoid;
  padding: 10px;
}
.masonry-item__content {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (width < 850px) {
  .page-template-page-actu .text-container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}
.page-template-page-actu .text-container h2.golden-text {
  color: var(--gold-color) !important;
  margin-bottom: 0;
  text-align: center;
}
.page-template-page-actu .text-container p {
  margin-top: 2em;
  margin-bottom: 2em;
  text-align: center;
}
.page-template-page-actu section.actu {
  color: var(--theme-light-textDark) !important;
}
.page-template-page-actu section.actu div.card-portrait {
  aspect-ratio: 4/5;
}
.page-template-page-actu hr {
  background-color: var(--gold-color) !important;
  width: 30%;
  margin: 0 auto;
  height: 2px;
}

section.two-cols {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}
@media only screen and (width < 850px) {
  section.two-cols {
    flex-direction: column;
  }
}
section.two-cols div.column {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media only screen and (width < 850px) {
  section.two-cols div.column {
    width: 100%;
  }
}
section.two-cols div.column.centered {
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
}

div.ardoise {
  color: var(--theme-light-textLight) !important;
  background-color: var(--theme-light-backgroundLight) !important;
  position: relative;
}
@media only screen and (width >= 850px) {
  div.ardoise {
    margin-top: 80px;
    margin-bottom: 80px;
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media only screen and (width < 850px) {
  div.ardoise {
    margin: var(--container-padding);
    padding: 1rem;
  }
  div.ardoise h2 {
    font-size: 1.2rem !important;
  }
}
div.ardoise p,
div.ardoise h2 {
  color: var(--theme-light-textLight) !important;
  background-color: var(--theme-light-backgroundLight) !important;
}
div.ardoise h2:before,
div.ardoise p:last-of-type:after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-color: var(--theme-light-backgroundDark);
  position: absolute;
}
div.ardoise h2:before {
  top: 0;
  right: 0;
  border-bottom-left-radius: 100%;
  box-shadow: -1px -1px var(--theme-light-backgroundDark);
}
div.ardoise p:last-of-type:after {
  bottom: 0;
  left: 0;
  border-top-right-radius: 100%;
  box-shadow: -1px -1px var(--theme-light-backgroundDark);
}

div.ardoise:before,
div.ardoise:after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-color: var(--theme-light-backgroundDark);
  position: absolute;
}

div.ardoise:before {
  top: 0;
  left: 0;
  border-bottom-right-radius: 100%;
  box-shadow: -1px -1px var(--theme-light-backgroundDark);
}

div.ardoise:after {
  bottom: 0;
  right: 0;
  border-top-left-radius: 100%;
  box-shadow: 1px 1px var(--theme-light-backgroundDark);
}

div.baseline {
  width: 100%;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (width < 850px) {
  div.baseline {
    margin-top: 40px;
  }
}
div.baseline p {
  font-family: var(--Bangla-font);
  font-size: 3rem;
  line-height: normal;
  font-weight: 500;
  line-height: 135%;
}
@media only screen and (width < 850px) {
  div.baseline p {
    font-size: 1.8rem;
  }
}
div.baseline p {
  text-align: center !important;
}

div.golden-text {
  padding-top: 80px;
  padding-bottom: 80px;
}
div.golden-text p {
  font-family: var(--Bangla-font);
  font-size: 3rem;
  line-height: normal;
  font-weight: 500;
  line-height: 135%;
}
@media only screen and (width < 850px) {
  div.golden-text p {
    font-size: 1.8rem;
  }
}
div.golden-text p {
  font-size: 2rem;
  color: var(--gold-color) !important;
}
@media only screen and (width < 850px) {
  div.golden-text p {
    font-size: 1.2rem;
  }
}
@media only screen and (width < 850px) {
  div.golden-text {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.force-centered {
  text-align: center !important;
}

div.carte {
  width: 100%;
}
div.carte h2.carte {
  color: #5681B1 !important;
  margin-top: 2em !important;
  margin-bottom: 2em !important;
}
@media (width < 850px) {
  div.carte h2.carte {
    text-align: center !important;
  }
}
div.carte h3 {
  font-family: var(--Bangla-font);
  font-size: 3rem;
  line-height: normal;
  font-weight: 500;
  line-height: 135%;
}
@media only screen and (width < 850px) {
  div.carte h3 {
    font-size: 1.8rem;
  }
}
div.carte h3 {
  text-align: center !important;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (width < 850px) {
  div.carte h3 {
    text-align: left !important;
    margin-bottom: 0;
  }
}
div.carte p.carte {
  margin-bottom: 3em !important;
}

div.two-cols {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 20px;
}
@media only screen and (width < 850px) {
  div.two-cols {
    flex-direction: column;
  }
}
div.two-cols div.column {
  width: 50%;
}
@media only screen and (width < 850px) {
  div.two-cols div.column {
    width: 100%;
  }
}

div.space-between-wrapper {
  position: relative;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
div.space-between-wrapper div.top {
  width: 100%;
}
div.space-between-wrapper div.top h1 {
  text-align: left;
  margin-top: 0px;
}
div.space-between-wrapper div.top p {
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}
div.space-between-wrapper div.top p.moyenne, div.space-between-wrapper div.top p.moyenne a {
  font-size: 18px;
}
@media only screen and (width < 850px) {
  div.space-between-wrapper div.top p {
    font-size: 0.8rem;
  }
}
div.space-between-wrapper div.bottom {
  width: 100%;
}

.light h1, .lighth1 {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse h1, .light .reverse h1, .light h1.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

h1 {
  margin-top: var(--container-padding-vertical);
  margin-bottom: var(--container-padding-vertical);
  font-family: var(--Bangla-font);
  font-size: 3rem;
  text-align: center;
  line-height: normal;
  letter-spacing: 11%;
  font-weight: bold;
}
@media only screen and (width < 850px) {
  h1 {
    font-size: 2.4rem;
  }
}
h1 {
  text-transform: uppercase;
}
h1 a {
  text-decoration: none;
  text-transform: none;
  font-weight: normal;
}
.light h1 a, .lighth1 a {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse h1 a, .light .reverse h1 a, .light h1 a.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

h1 a {
  font-family: var(--Bangla-font);
  font-size: 3rem;
  text-align: center;
  line-height: normal;
  letter-spacing: 11%;
  font-weight: bold;
}
@media only screen and (width < 850px) {
  h1 a {
    font-size: 2.4rem;
  }
}

.light h2, .lighth2 {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse h2, .light .reverse h2, .light h2.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

h2 {
  font-family: var(--Trio-font);
  font-size: 2rem;
  text-align: left;
  line-height: normal;
}
@media only screen and (width < 850px) {
  h2 {
    font-size: 1.6rem;
  }
}
h2 {
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.light h3, .lighth3 {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse h3, .light .reverse h3, .light h3.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

h3 {
  font-family: var(--Cochin-font);
  font-size: 1.6rem;
  text-align: left;
  line-height: normal;
}
@media only screen and (width < 850px) {
  h3 {
    font-size: 1.28rem;
  }
}
h3 {
  margin-bottom: 1rem;
}

.light p, .lightp {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse p, .light .reverse p, .light p.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

p {
  font-family: var(--Cochin-font);
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 700;
  line-height: 135%;
}
@media only screen and (width < 850px) {
  p {
    font-size: 1.28rem;
  }
}
p a {
  text-decoration: underline !important;
}

@media only screen and (width < 850px) {
  div.centered-text-container,
  div.left-text-container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}
div.centered-text-container p,
div.centered-text-container h2,
div.left-text-container p,
div.left-text-container h2 {
  text-align: center !important;
  width: 66%;
  margin: auto;
}
@media only screen and (width < 850px) {
  div.centered-text-container p,
  div.centered-text-container h2,
  div.left-text-container p,
  div.left-text-container h2 {
    text-align: left !important;
    width: 100%;
  }
  div.centered-text-container p.force-centered,
  div.centered-text-container h2.force-centered,
  div.left-text-container p.force-centered,
  div.left-text-container h2.force-centered {
    text-align: center !important;
  }
}
div.centered-text-container p,
div.left-text-container p {
  margin-bottom: 1.5em !important;
}
div.centered-text-container h2,
div.left-text-container h2 {
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}

div.left-text-container p,
div.left-text-container h2 {
  text-align: left !important;
  width: 100%;
}
div.left-text-container h2 {
  margin-top: 0 !important;
}

div.exergue p:first-of-type {
  font-family: var(--Bangla-font);
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 900;
  line-height: 135%;
}
@media only screen and (width < 850px) {
  div.exergue p:first-of-type {
    font-size: 1.26rem;
  }
}

.block-title {
  font-family: var(--Bangla-font);
  font-size: 3rem;
  text-align: center;
  line-height: normal;
  letter-spacing: 11%;
  font-weight: bold;
}
@media only screen and (width < 850px) {
  .block-title {
    font-size: 2.4rem;
  }
}
.light .block-title, .light.block-title {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse .block-title, .light .reverse .block-title, .light .block-title.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

.section-spacing-vertical {
  padding-top: var(--container-padding-vertical);
  padding-bottom: var(--container-padding-vertical);
}

.section-spacing-horizontal {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section-spacing {
  padding-top: var(--container-padding-vertical);
  padding-bottom: var(--container-padding-vertical);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section-margins-vertical {
  margin-top: var(--container-padding-vertical);
  margin-bottom: var(--container-padding-vertical);
}

.section-margins-vertical-half {
  margin-top: calc(var(--container-padding-vertical) / 2);
  margin-bottom: calc(var(--container-padding-vertical) / 2);
}

a.lien-menu-groupes {
  font-size: 18px;
  text-transform: lowercase;
}

p {
  text-align: justify;
  font-family: var(--Cochin-font);
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 700;
  line-height: 135%;
}
@media only screen and (width < 850px) {
  p {
    font-size: 1.28rem;
  }
}
.light p, .lightp {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse p, .light .reverse p, .light p.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

p {
  margin-bottom: 1rem;
}
p em {
  font-style: italic;
}

.intro {
  width: 90%;
  margin: auto;
  background-color: white !important;
}
.intro p {
  font-family: var(--Cochin-font);
  font-size: 1.1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
  text-align: justify;
  font-style: italic;
  margin-bottom: 1em;
}
.intro p a {
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: underline;
}

div.image-card {
  position: relative;
  background-size: cover;
  background-position: center;
}
div.image-card h1,
div.image-card p {
  color: var(--image-text) !important;
  max-width: 60%;
  text-align: center;
}
div.image-card p {
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}
div.image-card p.moyenne, div.image-card p.moyenne a {
  font-size: 18px;
}
@media only screen and (width < 850px) {
  div.image-card p {
    font-size: 0.8rem;
  }
}
div.image-card p {
  font-size: 1.4rem;
}

.light div.with-border, .lightdiv.with-border {
  border: 1px solid var(--theme-light-borderLight, #1D345E);
}

.light.reverse div.with-border, .light .reverse div.with-border, .light div.with-border.reverse {
  border: 1px solid var(--theme-light-borderDark, #FBF6EC);
}

div.card-square {
  width: 100%;
  aspect-ratio: 1/1;
}

div.card-square-picto {
  width: 100%;
  aspect-ratio: 1/1;
}
div.card-square-picto.medium {
  width: 50%;
}
@media (width < 850px) {
  div.card-square-picto.medium {
    width: 100%;
  }
}

div.card-portrait {
  width: 100%;
  aspect-ratio: 9/16;
}
@media (width < 850px) {
  div.card-portrait {
    aspect-ratio: 1;
  }
}

div.card-one-liner {
  width: 100%;
  aspect-ratio: 16/1;
}

div.card-product {
  width: 100%;
  aspect-ratio: 4/5;
}

div.card-landscape {
  width: 100%;
  aspect-ratio: 16/9;
  aspect-ratio: 3;
}
@media (width < 850px) {
  div.card-landscape {
    aspect-ratio: 4/5;
  }
}

div.card-landscape-picto {
  width: 100%;
  aspect-ratio: 16/9;
  aspect-ratio: 118/77;
  width: 26vw;
}
@media (width < 850px) {
  div.card-landscape-picto {
    width: 50vw !important;
  }
}
@media (width < 850px) {
  div.card-landscape-picto.large {
    width: 70vw !important;
  }
}

body.page-template-page-contenu div.card-landscape {
  aspect-ratio: 15/7;
}
@media (width < 850px) {
  body.page-template-page-contenu div.card-landscape {
    aspect-ratio: 9/15;
  }
}

div.centered-text-wrapper,
section.centered-text-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

div.bottom-text-wrapper,
section.bottom-text-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

div.top-text-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

div.even-row-wrapper {
  position: relative;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1em;
}
@media (width < 850px) {
  div.even-row-wrapper {
    flex-direction: column;
  }
}
@media only screen and (width >= 850px) {
  div.even-row-wrapper.half {
    padding-left: 25%;
    padding-right: 25%;
  }
}

div.stack-wrapper-left {
  align-items: start !important;
  width: 100% !important;
  position: relative;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

div.stack-wrapper-right {
  align-items: end !important;
  width: 100% !important;
  gap: 10px !important;
  position: relative;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.light div.button, .lightdiv.button {
  background-color: var(--theme-light-borderDark, #FBF6EC);
}

.light.reverse div.button, .light .reverse div.button, .light div.button.reverse {
  background-color: var(--theme-light-borderLight, #1D345E);
}

div.button {
  mask-image: url("../assets/button.svg");
  -webkit-mask-image: url("../assets/button.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  height: 40px;
}
.light div.button, .lightdiv.button {
  background-color: var(--theme-light-backgroundDark, #292D46);
}

.light.reverse div.button, .light .reverse div.button, .light div.button.reverse {
  background-color: var(--theme-light-backgroundLight, #FBF6EC);
}

div.button {
  padding: 10px;
  width: 320px;
  height: 46px;
  text-align: center;
}
div.button a {
  text-decoration: none !important;
  font-family: var(--Bangla-font);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.light div.button a, .lightdiv.button a {
  color: var(--theme-light-textDark, #FBF6EC);
}

.light.reverse div.button a, .light .reverse div.button a, .light div.button a.reverse {
  color: var(--theme-light-textLight, #1D345E);
}

@media (width < 850px) {
  div.button {
    margin-left: auto;
    margin-right: auto;
  }
}

.light div.picto, .lightdiv.picto {
  background-color: var(--theme-light-backgroundDark, #292D46);
}

.light.reverse div.picto, .light .reverse div.picto, .light div.picto.reverse {
  background-color: var(--theme-light-backgroundLight, #FBF6EC);
}

div.picto {
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  width: 30%;
}
div.picto a {
  width: 100%;
  display: block;
  height: 100%;
}

div.picto-png {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  aspect-ratio: 1/1;
  width: 106px;
}

div.tampon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: var(--container-padding-vertical);
  margin-bottom: var(--container-padding-vertical);
  width: 10%;
  background-image: url("../assets/tampon.png");
  margin-left: 30%;
}
@media (width < 850px) {
  div.tampon {
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
}

p.address {
  text-align: center !important;
  letter-spacing: 11% !important;
  line-height: 135% !important;
  font-size: 1.6rem !important;
  font-family: var(--Trio-font);
  font-size: 2rem;
  text-align: left;
  line-height: normal;
}
@media only screen and (width < 850px) {
  p.address {
    font-size: 1.6rem;
  }
}

span.horaire {
  text-align: center !important;
  letter-spacing: 4% !important;
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}
span.horaire.moyenne, span.horaire.moyenne a {
  font-size: 18px;
}
@media only screen and (width < 850px) {
  span.horaire {
    font-size: 0.8rem;
  }
}

p.minuscule {
  text-align: center !important;
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: lowercase;
}
p.minuscule.moyenne, p.minuscule.moyenne a {
  font-size: 18px;
}

span.derniere-commande {
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: lowercase;
}
span.derniere-commande.moyenne, span.derniere-commande.moyenne a {
  font-size: 18px;
}

section#menu h1 {
  margin-bottom: 0px !important;
}

section.insta {
  position: relative;
}
section.insta .sb_instagram_header {
  display: none;
}
section.insta #sbi_load {
  display: none;
}
section.insta #sb_instagram #sbi_images {
  padding: 0px;
}
section.insta .button.cta {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: max-content;
  z-index: 2;
  width: 420px;
}
section.insta .button.cta a {
  font-size: 1.1rem;
}

.form-section {
  width: 100%;
}
.form-section .wpcf7-form p {
  margin-top: var(--container-padding-vertical);
  margin-bottom: var(--container-padding-vertical);
  text-align: left;
}
.form-section .wpcf7-form p:last-of-type {
  margin-top: 32px;
  margin-bottom: 0px;
  text-align: center;
}
.form-section .wpcf7-form label {
  text-align: left !important;
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}
.form-section .wpcf7-form label.moyenne, .form-section .wpcf7-form label.moyenne a {
  font-size: 18px;
}
@media only screen and (width < 850px) {
  .form-section .wpcf7-form label {
    font-size: 0.8rem;
  }
}
.form-section .wpcf7-form .wpcf7-form-control {
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}
.form-section .wpcf7-form .wpcf7-form-control.moyenne, .form-section .wpcf7-form .wpcf7-form-control.moyenne a {
  font-size: 18px;
}
@media only screen and (width < 850px) {
  .form-section .wpcf7-form .wpcf7-form-control {
    font-size: 0.8rem;
  }
}
.light .form-section .wpcf7-form .wpcf7-form-control, .light.form-section .wpcf7-form .wpcf7-form-control {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse .form-section .wpcf7-form .wpcf7-form-control, .light .reverse .form-section .wpcf7-form .wpcf7-form-control, .light .form-section .wpcf7-form .wpcf7-form-control.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

.light .form-section .wpcf7-form .wpcf7-form-control, .light.form-section .wpcf7-form .wpcf7-form-control {
  background-color: var(--theme-light-backgroundLight, #FBF6EC);
}

.light.reverse .form-section .wpcf7-form .wpcf7-form-control, .light .reverse .form-section .wpcf7-form .wpcf7-form-control, .light .form-section .wpcf7-form .wpcf7-form-control.reverse {
  background-color: var(--theme-light-backgroundDark, #292D46);
}

.light .form-section .wpcf7-form .wpcf7-form-control, .light.form-section .wpcf7-form .wpcf7-form-control {
  border: 1px solid var(--theme-light-borderLight, #1D345E);
}

.light.reverse .form-section .wpcf7-form .wpcf7-form-control, .light .reverse .form-section .wpcf7-form .wpcf7-form-control, .light .form-section .wpcf7-form .wpcf7-form-control.reverse {
  border: 1px solid var(--theme-light-borderDark, #FBF6EC);
}

.form-section .wpcf7-form .wpcf7-not-valid-tip {
  border: none !important;
  margin-top: 5px !important;
  text-transform: none !important;
  font-style: italic !important;
  color: var(--theme-orange-textLight) !important;
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}
.form-section .wpcf7-form .wpcf7-not-valid-tip.moyenne, .form-section .wpcf7-form .wpcf7-not-valid-tip.moyenne a {
  font-size: 18px;
}
@media only screen and (width < 850px) {
  .form-section .wpcf7-form .wpcf7-not-valid-tip {
    font-size: 0.8rem;
  }
}
.light .form-section .wpcf7-form .wpcf7-not-valid-tip, .light.form-section .wpcf7-form .wpcf7-not-valid-tip {
  background-color: var(--theme-light-backgroundLight, #FBF6EC);
}

.light.reverse .form-section .wpcf7-form .wpcf7-not-valid-tip, .light .reverse .form-section .wpcf7-form .wpcf7-not-valid-tip, .light .form-section .wpcf7-form .wpcf7-not-valid-tip.reverse {
  background-color: var(--theme-light-backgroundDark, #292D46);
}

.form-section .wpcf7-form .wpcf7-text,
.form-section .wpcf7-form .wpcf7-textarea,
.form-section .wpcf7-form .wpcf7-select {
  width: 100%;
}
.form-section .wpcf7-form .wpcf7-submit {
  border: none !important;
  cursor: pointer;
  min-width: 150px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-image: url("../assets/button.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 5px;
}
.form-section .wpcf7-form .wpcf7-submit:hover {
  background-image: url("../assets/button-hover.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.light .form-section .wpcf7-form .wpcf7-submit:hover a, .light.form-section .wpcf7-form .wpcf7-submit:hover a {
  color: var(--theme-light-textDark, #FBF6EC);
}

.light.reverse .form-section .wpcf7-form .wpcf7-submit:hover a, .light .reverse .form-section .wpcf7-form .wpcf7-submit:hover a, .light .form-section .wpcf7-form .wpcf7-submit:hover a.reverse {
  color: var(--theme-light-textLight, #1D345E);
}

.form-section .wpcf7-form .wpcf7-submit a {
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-family: var(--Bangla-font);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.light .form-section .wpcf7-form .wpcf7-submit a, .light.form-section .wpcf7-form .wpcf7-submit a {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse .form-section .wpcf7-form .wpcf7-submit a, .light .reverse .form-section .wpcf7-form .wpcf7-submit a, .light .form-section .wpcf7-form .wpcf7-submit a.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

.form-section .wpcf7-form .wpcf7-response-output {
  color: var(--theme-orange-textLight) !important;
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}
.form-section .wpcf7-form .wpcf7-response-output.moyenne, .form-section .wpcf7-form .wpcf7-response-output.moyenne a {
  font-size: 18px;
}
@media only screen and (width < 850px) {
  .form-section .wpcf7-form .wpcf7-response-output {
    font-size: 0.8rem;
  }
}
.light .form-section .wpcf7-form .wpcf7-response-output, .light.form-section .wpcf7-form .wpcf7-response-output {
  background-color: var(--theme-light-backgroundLight, #FBF6EC);
}

.light.reverse .form-section .wpcf7-form .wpcf7-response-output, .light .reverse .form-section .wpcf7-form .wpcf7-response-output, .light .form-section .wpcf7-form .wpcf7-response-output.reverse {
  background-color: var(--theme-light-backgroundDark, #292D46);
}

.light .form-section .wpcf7-form .wpcf7-response-output, .light.form-section .wpcf7-form .wpcf7-response-output {
  border: 1px solid var(--theme-light-borderLight, #1D345E);
}

.light.reverse .form-section .wpcf7-form .wpcf7-response-output, .light .reverse .form-section .wpcf7-form .wpcf7-response-output, .light .form-section .wpcf7-form .wpcf7-response-output.reverse {
  border: 1px solid var(--theme-light-borderDark, #FBF6EC);
}

.form-section .wpcf7-form .wpcf7-spinner {
  background-color: var(--theme-orange-textLight);
}

.single-post section.body p {
  text-align: left;
}
.single-post section.body h2 {
  color: var(--theme-light-textLight);
  font-size: 50px !important;
  margin-top: var(--container-padding-vertical);
  margin-bottom: var(--container-padding-vertical);
  font-family: var(--Bangla-font);
  font-size: 3rem;
  text-align: center;
  line-height: normal;
  letter-spacing: 11%;
  font-weight: bold;
}
@media only screen and (width < 850px) {
  .single-post section.body h2 {
    font-size: 2.4rem;
  }
}
.single-post section.body .wp-element-button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.light .single-post section.body .wp-element-button, .light.single-post section.body .wp-element-button {
  background-color: var(--theme-light-borderDark, #FBF6EC);
}

.light.reverse .single-post section.body .wp-element-button, .light .reverse .single-post section.body .wp-element-button, .light .single-post section.body .wp-element-button.reverse {
  background-color: var(--theme-light-borderLight, #1D345E);
}

.single-post section.body .wp-element-button {
  mask-image: url("../assets/button.svg");
  -webkit-mask-image: url("../assets/button.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  height: 40px;
}
.light .single-post section.body .wp-element-button, .light.single-post section.body .wp-element-button {
  color: var(--theme-light-textDark, #FBF6EC);
}

.light.reverse .single-post section.body .wp-element-button, .light .reverse .single-post section.body .wp-element-button, .light .single-post section.body .wp-element-button.reverse {
  color: var(--theme-light-textLight, #1D345E);
}

.single-post section.body .wp-element-button {
  width: 100%;
  border-radius: 0px;
}
.single-post section.body .wp-element-button a {
  text-decoration: none !important;
  font-family: var(--Bangla-font);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.light .single-post section.body .wp-element-button a, .light.single-post section.body .wp-element-button a {
  color: var(--theme-light-textDark, #FBF6EC);
}

.light.reverse .single-post section.body .wp-element-button a, .light .reverse .single-post section.body .wp-element-button a, .light .single-post section.body .wp-element-button a.reverse {
  color: var(--theme-light-textLight, #1D345E);
}

strong {
  min-width: 80px;
  display: inline-block;
  font-family: var(--Cochin-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}
strong.moyenne, strong.moyenne a {
  font-size: 18px;
}
@media only screen and (width < 850px) {
  strong {
    font-size: 0.8rem;
  }
}
.light strong, .lightstrong {
  color: var(--theme-light-textLight, #1D345E);
}

.light.reverse strong, .light .reverse strong, .light strong.reverse {
  color: var(--theme-light-textDark, #FBF6EC);
}

.slides-container {
  position: relative;
  overflow: hidden;
  display: flex;
  flex: 1;
  width: 100%;
}

.slide {
  position: absolute !important;
  font-size: 90px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.slides-inner {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
@media (width < 850px) {
  .slides-inner {
    aspect-ratio: 4/5;
  }
}
.slides-inner .card-landscape {
  aspect-ratio: 16/9 !important;
}
@media (width < 850px) {
  .slides-inner .card-landscape {
    aspect-ratio: 4/5 !important;
  }
}

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