:root {
  hanging-punctuation: first last;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
}
body {
  min-height: 100svh;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
body:not(.transitions) * {
  transition: none !important;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
  object-fit: cover;
}
img:not(.free),
picture:not(.free),
svg:not(.free),
video:not(.free) {
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: no-preference) {
  :has(:target) {
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-padding-top);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition: none;
  }
}
.content-grid {
  --padding-inline: max(12px, 4vw);
  --content-max-width: 1400px;
  display: grid;
  width: 100%;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [content-start] min(100% - (var(--padding-inline) * 2), var(--content-max-width)) [content-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}
.content-grid > :not(.full-width) {
  grid-column: content;
}
.content-grid > .full-width {
  grid-column: full-width;
}
@media (min-width: 992px) {
  .content-grid .column-md-content {
    grid-column: content;
  }
}
img.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
:has(>.bg-image):not(picture),
:has(>picture>.bg-image) {
  position: relative;
}
/*- SETTINGS -----*/
:root {
  --wpclu-header-height: 80px;
  --wpclu-header-height-mobile: 60px;
  --wpclu-header-padding: 10px;
}
/*- GLOBAL STYLES -----*/
#header {
  --header-height: var(--wpclu-header-height-mobile);
  height: var(--header-height);
  z-index: 10;
}
@media (min-width: 992px) {
  #header {
    --header-height: var(--wpclu-header-height);
  }
}
#header .header-cnt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}
#header .website-logo a {
  display: inline-block;
  height: var(--header-height);
  padding-block: var(--wpclu-header-padding);
}
#header .website-logo a > * {
  height: 100%;
  width: auto;
  min-width: var(--header-height);
}
#header #hamburger {
  display: flex;
  border: none;
  background: transparent;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  overflow: hidden;
}
#header #hamburger span {
  color: transparent;
  height: 0;
  display: inline-block;
  width: 32px;
  border-top: 2px solid #000;
  position: relative;
}
#header #hamburger span:before,
#header #hamburger span:after {
  content: '';
  position: absolute;
  height: 0;
  left: 0;
  right: 0;
  border-top: 2px solid #000;
}
#header #hamburger span:before {
  top: -12px;
}
#header #hamburger span:after {
  bottom: -10px;
}
@media (min-width: 992px) {
  #header #hamburger {
    display: none;
  }
}
body.menu-open #header #hamburger span {
  border-top-color: transparent;
}
body.menu-open #header #hamburger span:before {
  transform: rotate(45deg);
  top: -2px;
}
body.menu-open #header #hamburger span:after {
  transform: rotate(-45deg);
  top: -2px;
}
#header #main-menu {
  display: none;
  position: absolute;
  top: var(--wpclu-header-height-mobile);
  height: calc(100dvh - var(--wpclu-header-height-mobile));
  background: #ffffff;
  left: 0;
  right: 0;
  overflow: auto;
  overscroll-behavior: contain;
}
body.scrolled #header #main-menu {
  height: calc(100dvh - 60px);
}
#header #main-menu .menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  list-style: none;
  padding-left: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-block: 12px 0;
}
@media (min-width: 992px) {
  #header {
    height: var(--wpclu-header-height);
  }
  #header #main-menu {
    display: block;
    position: static;
    background: transparent;
    height: auto !important;
    box-shadow: none;
    overflow: visible;
  }
  #header #main-menu .menu {
    flex-direction: row;
    flex-wrap: nowrap;
    margin-block: 0;
  }
  #header #main-menu .menu li {
    border-bottom: none;
  }
  #header #main-menu .menu li a {
    padding-block: 0;
    height: var(--wpclu-header-height);
    line-height: var(--wpclu-header-height);
    white-space: nowrap;
  }
  #header #main-menu .sub-menu {
    display: none;
  }
}
#header.menu-open {
  background: #ffffff;
}
#header.menu-open #main-menu {
  display: block;
  flex-direction: column;
  justify-content: center;
}
#header.menu-open #hamburger span {
  border-top-color: transparent;
}
#header.menu-open #hamburger span:before {
  transform: rotate(45deg);
  top: -2px;
}
#header.menu-open #hamburger span:after {
  transform: rotate(-45deg);
  top: -2px;
}
/*- CUSTOM STYLES -----*/
body {
  background: #CCC;
}
