/*
  @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: "Neutraface";
  src: url("../font/Neutraface-Text-Book.otf");
}
@font-face {
  font-family: "Trio";
  src: url("../font/TrioGrotesk-Medium.otf");
}
:root {
  --container-padding: 1%;
  --container-padding-vertical: 32px;
  --container-width: 100%;
}

@media only screen and (width <= 600px) {
  :root {
    --container-padding: 16px;
    --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;
}

body.home header.header {
  display: none;
}

header.header {
  display: flex;
  padding-top: 11px;
  padding-bottom: 12px;
  flex-direction: row;
  align-items: center;
  position: fixed;
  box-shadow: 0px 2px 2px -2px var(--color-orange);
  width: 100vw;
  justify-content: space-between;
  z-index: 7;
  border-bottom: 1px solid;
  font-family: var(--Neutraface-font);
}

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

.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, #CAE6E7);
}

@media (max-width: 600px) {
  header.header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
header.header .box {
  flex: 1;
  display: flex;
  justify-content: center;
}

header.header .box-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 80px;
  gap: 10px;
}

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-textDark, #CAE6E7);
}

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

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

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

header.header .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;
  height: 30px;
  width: 30px;
  max-width: 80px;
}

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

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

header.header .instagram a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

@media (width > 850px) {
  header.header .instagram {
    display: none;
  }
}
header.header .instagram-laptop,
header.header .instagram-side {
  height: 30px;
  width: 30px;
  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;
  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,
  header.header .instagram-side {
    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;
  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;
}

.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, #CAE6E7);
}

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;
  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;
}

.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, #CAE6E7);
}

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: center;
  max-width: 12%;
  z-index: 9;
}

header.header .logo .pedone,
header.header .logo-side .pedone {
  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;
}

.light header.header .logo .pedone.open, header.header .logo-side .pedone.open, .lightheader.header .logo .pedone.open, header.header .logo-side .pedone.open {
  background-color: var(--theme-light-textDark, #CAE6E7);
}

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

header.header .logo .pedone a,
header.header .logo-side .pedone a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

header.header .logo a img,
header.header .logo-side a img {
  height: 24px;
  vertical-align: bottom;
}

@media (width <= 850px) {
  header.header .logo {
    max-width: 40%;
  }
}
header.header .logo-side {
  max-width: 50%;
}

header.header .logo-side .pedone {
  background-color: var(--theme-light-textDark) !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;
}

.pedone-stripes div.stripe {
  width: 100%;
  height: 17px;
}

.pedone-stripes div.stripe:nth-child(1), .pedone-stripes div#stripe1 {
  background-color: var(--pedone-stripes-1);
}

.pedone-stripes div.stripe:nth-child(2), .pedone-stripes div#stripe2 {
  background-color: var(--pedone-stripes-2);
}

.pedone-stripes div.stripe:nth-child(3), .pedone-stripes div#stripe3 {
  background-color: var(--pedone-stripes-3);
}

.pedone-stripes div.stripe:nth-child(4), .pedone-stripes div#stripe4 {
  background-color: var(--pedone-stripes-4);
}

.header__sidebar {
  position: fixed;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-duration) var(--transition-timing-function);
  z-index: 10;
}

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

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

.light .header__sidebar, .light.header__sidebar {
  background-color: var(--theme-light-backgroundDark, #1D345E);
}

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

.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;
  }
}
@media (width <= 850px) {
  .header__sidebar {
    width: 100vw;
    transform: translateX(100%);
    right: 0;
  }
}
.header__sidebar.open {
  transform: translateX(0);
  transition: transform var(--transition-duration) var(--transition-timing-function);
}

.header__sidebar h1 {
  text-align: left !important;
  margin-bottom: 0px !important;
  margin-top: 7px !important;
  font-family: var(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}

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

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

.header__sidebar h1.moyenne, .header__sidebar h1.moyenne a {
  font-size: 18px;
}

.header__sidebar hr {
  height: 1px !important;
  width: 100% !important;
  position: relative !important;
  left: 0px !important;
  margin-top: calc(var(--container-padding-vertical) / 2);
  margin-bottom: calc(var(--container-padding-vertical) / 2);
}

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

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

.header__sidebar.open hr {
  width: 100%;
  position: relative;
}

.header__sidebar .menu-footer-side {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
}

.header__sidebar .menu-footer-side .logo-side {
  width: 50%;
}

.header__sidebar .menu-footer-side .instagram-side {
  width: 20%;
}

.header__sidebar .menu-entries {
  margin-left: var(--container-padding-vertical);
  margin-right: var(--container-padding-vertical);
  margin-top: var(--container-padding-vertical);
  margin-bottom: var(--container-padding-vertical);
}

.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(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  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, #CAE6E7);
}

.light .header__sidebar .menu-entries .header__sidebar__menu li, .light.header__sidebar .menu-entries .header__sidebar__menu li {
  border-bottom: 1px solid var(--theme-light-borderLight, #86CCCF);
}

.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 {
  border-bottom: 1px solid var(--theme-light-borderDark, #CAE6E7);
}

.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-textDark, #CAE6E7);
}

.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-textLight, #1D345E);
}

.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, #CAE6E7);
}

.header__sidebar .menu-entries .header__sidebar__menu ul.sub-menu li:nth-child(1n) {
  background-color: var(--pedone-stripes-1);
}

.header__sidebar .menu-entries .header__sidebar__menu ul.sub-menu li:nth-child(2n) {
  background-color: var(--pedone-stripes-2);
}

.header__sidebar .menu-entries .header__sidebar__menu ul.sub-menu li:nth-child(3n) {
  background-color: var(--pedone-stripes-3);
}

.header__sidebar .menu-entries .header__sidebar__menu ul.sub-menu li:nth-child(4n) {
  background-color: var(--pedone-stripes-4);
}

.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;
}

section.prefooter img {
  width: 100%;
  aspect-ratio: 16/5;
  object-fit: cover;
  filter: grayscale(1);
}

footer.footer {
  padding-top: 20px;
  padding-bottom: 1em;
  padding-left: 5%;
  padding-right: 5%;
  font-family: var(--Neutraface-font);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}

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

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

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

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

footer.footer hr {
  margin-top: calc(var(--container-padding-vertical) / 2);
  margin-bottom: calc(var(--container-padding-vertical) / 2);
  height: 1px;
  width: 100%;
}

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

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

@media (max-width: 600px) {
  footer.footer {
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1em;
  }
}
footer.footer div.footer-items ul {
  position: relative;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

@media only screen and (width <= 600px) {
  footer.footer div.footer-items ul {
    justify-content: space-between;
  }
}
footer.footer div.footer-items ul li {
  width: 25%;
  margin-bottom: 20px;
  font-family: var(--Neutraface-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 <= 600px) {
  footer.footer div.footer-items ul li {
    width: 45%;
  }
}
footer.footer div.footer-items ul li a {
  text-decoration: none !important;
}

.light footer.footer div.footer-items ul li a, .lightfooter.footer div.footer-items ul li a {
  color: var(--theme-light-textDark, #CAE6E7);
}

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

footer.footer div.logo {
  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;
}

.light footer.footer div.logo, .lightfooter.footer div.logo {
  background-color: var(--theme-light-textDark, #CAE6E7);
}

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

footer.footer div.footer-items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 600px) {
  footer.footer div.footer-items {
    flex-direction: column;
  }
}
footer.footer div.footer-items div.left,
footer.footer div.footer-items div.right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

footer.footer div.footer-items div.left {
  width: 75%;
}

@media only screen and (width <= 600px) {
  footer.footer div.footer-items div.left {
    margin-top: 16px;
    width: 100%;
  }
}
footer.footer div.footer-items div.right {
  width: 25%;
}

@media only screen and (width <= 600px) {
  footer.footer div.footer-items div.right {
    margin-top: 16px;
    width: 100%;
  }
}
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(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: lowercase;
  text-align: right;
}

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, #CAE6E7);
}

.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);
}

@media (max-width: 600px) {
  footer.footer div.footer-items div.social div.social-message p {
    font-size: 12px;
  }
}
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;
}

.light footer.footer div.footer-items .instagram, .lightfooter.footer div.footer-items .instagram {
  background-color: var(--theme-light-textDark, #CAE6E7);
}

.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 .linkedin {
  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;
}

.light footer.footer div.footer-items .linkedin, .lightfooter.footer div.footer-items .linkedin {
  background-color: var(--theme-light-textDark, #CAE6E7);
}

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

footer.footer div.credits {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  width: 100% !important;
  font-family: var(--Neutraface-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(--Neutraface-font);
  font-size: 0.8rem;
  line-height: normal;
  font-weight: 600;
  text-transform: lowercase;
  text-transform: none;
}

.light footer.footer div.credits a, .lightfooter.footer div.credits a {
  color: var(--theme-light-textDark, #CAE6E7);
}

.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);
}

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(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: lowercase;
  text-align: right;
}

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, #CAE6E7);
}

@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: #CAE6E7;
  --theme-light-borderLight: #86CCCF;
  --theme-light-textDark: #CAE6E7;
  --theme-light-textLight: #1D345E;
  --theme-light-backgroundDark: #1D345E;
  --theme-light-backgroundLight: #FFFFFF;
  --theme-light-pictoLight: #1D345E;
  --theme-light-pictoDark: #CAE6E7;
  --Neutraface-font: "Neutraface", sans-serif;
  --Trio-font: "Trio", sans-serif;
  --pedone-stripes-1: #E8F5F7;
  --pedone-stripes-2: #CAE6E7;
  --pedone-stripes-3: #86CCCF;
  --pedone-stripes-4: #5681B1;
  --image-text: #ffffff;
  --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;
  }
}
div#map {
  width: 100%;
  aspect-ratio: 16/9;
  background-position: center;
}

div#map a {
  width: 100%;
  height: 100%;
  display: block;
}

section {
  padding-top: var(--container-padding-vertical);
  padding-bottom: var(--container-padding-vertical);
  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);
}

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

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

section.last {
  padding-bottom: 50px;
}

section.first {
  padding-top: 80px !important;
  padding-top: 60px !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.body {
  align-items: flex-start;
}

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 {
  width: 50%;
}

@media only screen and (width < 850px) {
  section.two-cols div.column {
    width: 100%;
  }
}
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%;
  padding: 1rem;
}

div.space-between-wrapper div.top h1, div.space-between-wrapper div.bottom h1 {
  text-align: left;
  margin-top: 0px;
}

div.space-between-wrapper div.top p {
  font-family: var(--Neutraface-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;
}

div.space-between-wrapper div.bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
}

@media only screen and (width < 850px) {
  div.full-height {
    padding: 1rem;
  }
}
h1 {
  margin-top: var(--container-padding-vertical);
  margin-bottom: var(--container-padding-vertical);
  font-family: var(--Trio-font);
  font-size: 3rem;
  text-align: center;
  line-height: normal;
  text-transform: uppercase;
}

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

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

@media only screen and (width < 850px) {
  h1 {
    max-width: 90%;
    font-size: 2.2rem;
  }
}
h1 a {
  text-decoration: none;
  text-transform: none;
  font-weight: normal;
  font-family: var(--Trio-font);
  font-size: 3rem;
  text-align: center;
  line-height: 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, #CAE6E7);
}

h1.product-header {
  font-size: 5rem;
}

@media only screen and (width < 850px) {
  h1.product-header {
    font-size: 3rem;
  }
}
section.product-intro p {
  font-size: 1.5rem;
}

section.product-list {
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 0px;
}

@media only screen and (width < 850px) {
  section.product-list {
    flex-direction: column !important;
  }
}
section.product-list div.product {
  width: 32%;
}

@media only screen and (width < 850px) {
  section.product-list div.product {
    width: 100%;
  }
}
section.product-list div.product.filler-1, section.product-list div.product.filler-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
}

@media only screen and (width < 850px) {
  section.product-list div.product.filler-1, section.product-list div.product.filler-2 {
    display: none !important;
  }
}
section.product-list div.product.filler-2 {
  width: 66%;
}

section.product-list div.product.filler-2 .image-card {
  aspect-ratio: 8.2/5;
}

section.product-list div.product .image-card, section.product-list div.product .video-card {
  padding: 12px;
  transition: all var(--transition-duration-2) var(--transition-timing-function-2);
}

section.product-list div.product .image-card:hover, section.product-list div.product .video-card:hover {
  border-radius: 20px;
  box-shadow: 0 0 0 3px var(--pedone-stripes-1), 0 0 0 6px var(--pedone-stripes-2), 0 0 0 9px var(--pedone-stripes-3), 0 0 0 12px var(--pedone-stripes-4);
  scale: 1.02;
  transition: all var(--transition-duration-2) var(--transition-timing-function-2);
}

section.product-list div.product .video-card {
  display: flex;
  justify-content: center;
  padding: 0px;
}

section.product-list div.product .video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.product-list div.product .video-card video:hover {
  border-radius: 20px;
}

section.product-list div.product .product-info {
  margin-top: 20px;
  min-height: 200px;
}

section.product-list div.product .product-info p {
  font-size: 1.5rem;
}

section.product-list div.product .product-info p.description {
  font-weight: bold;
}

h2 {
  font-family: var(--Neutraface-font);
  font-size: 2rem;
  text-align: left;
  line-height: normal;
  margin-bottom: 1rem;
}

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

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

h3 {
  font-family: var(--Neutraface-font);
  font-size: 1.6rem;
  text-align: left;
  line-height: normal;
  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, #CAE6E7);
}

.block-title {
  font-family: var(--Trio-font);
  font-size: 3rem;
  text-align: center;
  line-height: normal;
}

.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, #CAE6E7);
}

.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(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 500;
  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, #CAE6E7);
}

p em {
  font-style: italic;
}

.intro {
  width: 90%;
  margin: auto;
  background-color: white !important;
}

.intro p {
  font-family: var(--Neutraface-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;
}

@media only screen and (width < 850px) {
  div.products-popup {
    flex-wrap: wrap;
  }
}
div.popup-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  aspect-ratio: 4/3;
}

@media only screen and (width < 850px) {
  div.popup-wrapper {
    width: 40%;
  }
  div.popup-wrapper a {
    width: 100%;
    height: 100%;
  }
}
div.popup-wrapper div.product-popup {
  opacity: 0;
  width: 300px;
  aspect-ratio: 4/3;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 0 0 3px var(--pedone-stripes-1), 0 0 0 6px var(--pedone-stripes-2), 0 0 0 9px var(--pedone-stripes-3), 0 0 0 12px var(--pedone-stripes-4);
  top: 130px;
}

@media only screen and (width < 850px) {
  div.popup-wrapper div.product-popup {
    width: 100%;
    top: 50%;
  }
}
div.products-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  width: 100%;
}

@media only screen and (width < 850px) {
  div.products-wrapper {
    flex-direction: column;
    padding: 1rem;
  }
}
div.products-wrapper .product {
  width: 25%;
  aspect-ratio: 3/4;
}

@media only screen and (width < 850px) {
  div.products-wrapper .product {
    width: 100%;
  }
}
div.products-wrapper h2 {
  font-family: var(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0px !important;
  margin-top: 1rem;
  font-size: 1.5rem;
}

div.products-wrapper h2.moyenne, div.products-wrapper h2.moyenne a {
  font-size: 18px;
}

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;
}

@media only screen and (width < 850px) {
  div.image-card h1, div.image-card p {
    max-width: 90%;
  }
}
div.image-card p {
  font-family: var(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 135%;
}

div.image-card p.moyenne, div.image-card p.moyenne a {
  font-size: 18px;
}

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

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

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

div.card-portrait {
  width: 100%;
  aspect-ratio: 9/16;
}

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

div.card-landscape {
  width: 100%;
  aspect-ratio: 16/9;
}

@media (width < 850px) {
  div.card-landscape {
    aspect-ratio: 9/16;
  }
}
div.card-landscape.product-header {
  aspect-ratio: 16/7;
}

@media (width < 850px) {
  div.card-landscape.product-header {
    aspect-ratio: 9/16;
  }
}
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.video-card-landscape {
  width: 100%;
  aspect-ratio: 16/9;
}

@media (width < 850px) {
  div.video-card-landscape {
    aspect-ratio: 9/16;
  }
}
@media (max-width: 600px) {
  div.video-card-landscape video {
    object-fit: cover;
    height: 100%;
  }
}
@media (max-width: 600px) {
  div.video-card-landscape h1 {
    font-size: 63px;
  }
}
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%;
}

@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;
}

div.button {
  display: 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: 15px;
}

div.button:hover {
  background-image: url("../assets/button-hover.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.light div.button:hover a, .lightdiv.button:hover a {
  color: var(--theme-light-textDark, #CAE6E7);
}

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

div.button a {
  text-decoration: none !important;
  font-family: var(--Neutraface-font);
  font-size: 1.3rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: -1px;
}

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

.light.reverse div.button a, .light .reverse div.button a, .light div.button a.reverse {
  color: var(--theme-light-textDark, #CAE6E7);
}

div.button-cta {
  min-width: 150px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-image: url("../assets/button-cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 5px;
  margin-bottom: -3px;
}

div.button-cta a {
  text-decoration: none !important;
  font-family: var(--Neutraface-font);
  font-size: 1.3rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: -1px;
}

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

.light.reverse div.button-cta a, .light .reverse div.button-cta a, .light div.button-cta a.reverse {
  color: var(--theme-light-textDark, #CAE6E7);
}

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%;
  aspect-ratio: 16/9;
}

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

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

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;
}

p.address {
  text-align: center !important;
  letter-spacing: 4% !important;
  line-height: 150% !important;
  font-family: var(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}

p.address.moyenne, p.address.moyenne a {
  font-size: 18px;
}

@media only screen and (width >= 850px) {
  p.address {
    text-align: left !important;
  }
}
span.horaire {
  text-align: center !important;
  letter-spacing: 4% !important;
  font-family: var(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}

span.horaire.moyenne, span.horaire.moyenne a {
  font-size: 18px;
}

p.minuscule {
  text-align: center !important;
  font-family: var(--Neutraface-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(--Neutraface-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.anime {
  width: 100%;
  height: calc(100vh - 68px);
}

section.anime div.image-card {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

@media (width <= 850px) {
  section.anime div.image-card {
    aspect-ratio: 9/16;
  }
}
section.anime .pedone-logo {
  margin-top: 30px;
  max-width: 90%;
  background-color: white;
  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;
}

@media (width <= 850px) {
  section.anime .pedone-logo {
    max-width: 80%;
  }
}
section.anime #video-intro {
  z-index: 5;
}

section.anime #video-intro video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

section.anime #video-text-wrapper {
  position: relative;
  top: -100%;
}

section.anime #playa {
  z-index: 4;
  position: relative;
  top: -100%;
}
section.anime #playa div.centered-text-wrapper {
  justify-content: center;
  flex-direction: row;
  gap: 40px;
}
@media (width <= 850px) {
  section.anime #playa div.centered-text-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0px;
  }
}

section#stripes {
  position: relative;
  z-index: 6;
}

section#stripes div#scroll {
  display: none;
  position: absolute;
  top: -25px;
  height: 50px;
}

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;
}

.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(--Neutraface-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;
}

.form-section .wpcf7-form .wpcf7-form-control {
  font-family: var(--Neutraface-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;
}

.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, #CAE6E7);
}

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

.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, #1D345E);
}

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

.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, #CAE6E7);
}

.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(--Neutraface-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;
}

.light .form-section .wpcf7-form .wpcf7-not-valid-tip, .light.form-section .wpcf7-form .wpcf7-not-valid-tip {
  background-color: var(--theme-light-backgroundLight, #FFFFFF);
}

.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, #1D345E);
}

.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: 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, #CAE6E7);
}

.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(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  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, #CAE6E7);
}

.form-section .wpcf7-form .wpcf7-response-output {
  color: var(--theme-orange-textLight) !important;
  font-family: var(--Neutraface-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;
}

.light .form-section .wpcf7-form .wpcf7-response-output, .light.form-section .wpcf7-form .wpcf7-response-output {
  background-color: var(--theme-light-backgroundLight, #FFFFFF);
}

.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, #1D345E);
}

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

.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, #CAE6E7);
}

.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(--Trio-font);
  font-size: 3rem;
  text-align: center;
  line-height: normal;
}

.single-post section.body .wp-element-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  mask-image: url("../assets/button-background.svg");
  -webkit-mask-image: url("../assets/button-background.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;
  width: 100%;
  border-radius: 0px;
}

.light .single-post section.body .wp-element-button, .light.single-post section.body .wp-element-button {
  background-color: var(--theme-light-borderDark, #CAE6E7);
}

.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, #86CCCF);
}

.light .single-post section.body .wp-element-button, .light.single-post section.body .wp-element-button {
  color: var(--theme-light-textDark, #CAE6E7);
}

.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 a {
  text-decoration: none !important;
  font-family: var(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  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, #CAE6E7);
}

.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(--Neutraface-font);
  font-size: 1rem;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
}

strong.moyenne, strong.moyenne a {
  font-size: 18px;
}

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

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

.slides-container {
  position: relative;
  overflow: hidden;
  display: flex;
  flex: 1;
  height: 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: 1;
  width: 100%;
  overflow: hidden;
}



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