:root {
  --pink: #ffedef;
  --pinker: #f7d0ca;
  --dark-pink: #f9c8c8;
  --green: #276c22;
  --yellow: #F5FF07;
  --yellower: #F5FF07;
  --blue: #5c98b6;
  --dark-blue: #2a6386;
  --caption-blue: #1e8195;
  --green: #008296;
  --h-m-height: 16px;
  --h-m-width: 28px;
  --h-m-thickness: 2px;
  --h-height: 16px;
  --h-width: 28px;
  --h-thickness: 2px;
  --h-color: #000;
}

@font-face {
  font-family: "Raisonne";
  src: url("./../../assets/fonts/RaisonnePro-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Raisonne";
  src: url("./../../assets/fonts/RaisonnePro-Oblique.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Raisonne";
  src: url("./../../assets/fonts/RaisonnePro-Bold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Raisonne";
  src: url("./../../assets/fonts/RaisonnePro-BoldOblique.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "GT-Sectra";
  src: url("./../../assets/fonts/GT-Sectra-Display-Medium.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "GT-Sectra";
  src: url("./../../assets/fonts/GT-Sectra-Display-Medium-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
:root {
  --cc-bg: #fff;
  --cc-text: #000;
  --cc-border-radius: 0;
  --cc-btn-primary-bg: #F5FF07;
  --cc-btn-primary-text: var(--cc-text);
  --cc-btn-primary-hover-bg: #F5FF07;
  --cc-btn-secondary-bg: #fff;
  --cc-btn-secondary-text: var(--cc-text);
  --cc-btn-secondary-hover-bg: #f0f0f0;
  --cc-btn-border-radius: 0;
  --cc-toggle-bg-off: #fff;
  --cc-toggle-bg-on: #fff;
  --cc-toggle-bg-readonly: #fff;
  --cc-toggle-knob-bg: #111;
  --cc-toggle-knob-icon-color: #111;
  --cc-block-text: var(--cc-text);
  --cc-cookie-category-block-bg: #f0f0f0;
  --cc-cookie-category-block-bg-hover: transparent;
  --cc-section-border: transparent;
  --cc-cookie-table-border: #fff;
  --cc-overlay-bg: rgba(0, 0, 0, 0.4);
  --cc-webkit-scrollbar-bg: #fff;
  --cc-webkit-scrollbar-bg-hover: #fff;
}

#cm,
#s-cnt {
  font-family: Raisonne, serif;
}

:root {
  --pink: #ffedef;
  --pinker: #f7d0ca;
  --dark-pink: #f9c8c8;
  --green: #276c22;
  --yellow: #F5FF07;
  --yellower: #F5FF07;
  --blue: #5c98b6;
  --dark-blue: #2a6386;
  --caption-blue: #1e8195;
  --green: #008296;
  --h-m-height: 16px;
  --h-m-width: 28px;
  --h-m-thickness: 2px;
  --h-height: 16px;
  --h-width: 28px;
  --h-thickness: 2px;
  --h-color: #000;
}

:root {
  --pink: #ffedef;
  --pinker: #f7d0ca;
  --dark-pink: #f9c8c8;
  --green: #276c22;
  --yellow: #F5FF07;
  --yellower: #F5FF07;
  --blue: #5c98b6;
  --dark-blue: #2a6386;
  --caption-blue: #1e8195;
  --green: #008296;
  --h-m-height: 16px;
  --h-m-width: 28px;
  --h-m-thickness: 2px;
  --h-height: 16px;
  --h-width: 28px;
  --h-thickness: 2px;
  --h-color: #000;
}

.nav {
  background-color: var(--yellow);
  display: grid;
  justify-items: center;
  max-height: 70px;
  padding: 0 4vw;
  position: fixed;
  top: 0;
  transition: max-height 0.4s ease;
  width: 100%;
  z-index: 20;
}
.nav.is-open {
  height: auto;
  max-height: 600px;
}

.nav-content {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr 40px;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .nav-content {
    grid-template-columns: 1fr auto 40px;
  }
}
@media screen and (min-width: 1100px) {
  .nav-content {
    grid-template-columns: 1fr auto;
  }
}
.nav-content .nav-logo {
  align-items: center;
  display: flex;
  height: 40px;
  margin: 15px 0;
  order: 1;
  white-space: nowrap;
}
@media screen and (min-width: 800px) {
  .nav-content .nav-logo {
    order: 1;
  }
}
.nav-content .nav-logo h1 {
  font-family: "GT-Sectra";
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(1em, 6vw, 2em);
}
@media screen and (min-width: 480px) {
  .nav-content .nav-logo h1 {
    font-size: 2em;
  }
}
.nav-content .nav-desktop {
  display: none;
  order: 2;
}
@media screen and (min-width: 1100px) {
  .nav-content .nav-desktop {
    display: block;
    height: 100%;
  }
}
.nav-content .nav-desktop ul {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
  font-size: 0.925em;
}
.nav-content .nav-desktop .editions {
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  gap: 3px;
  color: inherit;
}
.nav-content .nav-desktop .editions svg {
  height: 20px;
  width: auto;
  transform: translateY(-2px);
  margin-right: -7px;
  transition: transform 0.3s;
}
.nav-content .nav-desktop .editions[aria-pressed=true] svg {
  transform: translateY(0px) rotate(180deg);
}
.nav-content .nav-desktop .editions[aria-pressed=true] + .editions-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(10px);
}
.nav-content .nav-desktop .editions-dropdown {
  align-items: flex-start;
  background-color: #fff;
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
  gap: 0.325rem;
  height: auto;
  margin-left: -2px;
  opacity: 0;
  font-size: 0.925em;
  overflow: auto;
  padding: 8px 16px;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s, transform 0.3s;
}
.nav-content .nav-desktop .editions-dropdown a:hover {
  text-underline-offset: 0.2em;
  text-decoration: underline;
}
.nav-content .nav-menu {
  grid-column: span 2;
  margin: 17px 0 20px 0;
  opacity: 0;
  order: 3;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.6s ease;
}
@media screen and (min-width: 800px) {
  .nav-content .nav-menu {
    grid-column: span 1;
    margin: 17px 40px;
    max-width: 400px;
    min-width: 220px;
    order: 2;
    width: auto;
  }
}
@media screen and (min-width: 1100px) {
  .nav-content .nav-menu {
    display: none;
  }
}
.nav-content .nav-menu ul {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.nav-content .nav-menu.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.nav-content .nav-menu .mobile-editions {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  gap: 3px;
  margin: 0;
  padding: 0;
  color: inherit;
}
.nav-content .nav-menu .mobile-editions svg {
  height: 20px;
  width: auto;
  transform: translateY(-2px);
  margin-right: -7px;
  transition: transform 0.3s;
}
.nav-content .nav-menu .mobile-editions[aria-pressed=true] svg {
  transform: translateY(0px) rotate(180deg);
}
.nav-content .nav-menu .mobile-editions[aria-pressed=true] + .mobile-editions-dropdown {
  height: auto;
  padding-top: 0.5em;
}
.nav-content .nav-menu .mobile-editions-dropdown {
  height: 0;
  overflow: hidden;
  margin-left: 1.25em;
  padding-top: 0;
  transition: padding 0.3s;
}
.nav-content .nav-menu .highlight .platform-font {
  font-family: "GT-Sectra";
  letter-spacing: 0.01em;
  font-size: 1.825em;
}
.nav-content .nav-menu .highlight > li {
  border-top: 4px solid;
  font-size: 1.75em;
  line-height: 1;
  padding: 0.25em 0 4px 0;
}
.nav-content .nav-menu .highlight > ul {
  margin-bottom: 0.25em;
}
.nav-content .nav-menu .highlight ul {
  display: flex;
  flex-wrap: wrap;
}
.nav-content .nav-menu .highlight ul li:not(:last-child):after {
  margin-left: 0.5em;
  content: "|";
  margin-right: 0.5em;
}
.nav-content .nav-menu .selected-sections {
  border-top: 4px solid;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0 0 0;
}
.nav-content .nav-menu .selected-sections li:not(:last-child):after {
  margin-left: 0.5em;
  content: "|";
  margin-right: 0.5em;
}
.nav-content .nav-toggle-wrapper {
  align-items: center;
  display: flex;
  height: 70px;
  justify-content: center;
  margin: 0;
  order: 2;
}
@media screen and (min-width: 800px) {
  .nav-content .nav-toggle-wrapper {
    order: 3;
  }
}
@media screen and (min-width: 1100px) {
  .nav-content .nav-toggle-wrapper {
    display: none;
  }
}

:root {
  --pink: #ffedef;
  --pinker: #f7d0ca;
  --dark-pink: #f9c8c8;
  --green: #276c22;
  --yellow: #F5FF07;
  --yellower: #F5FF07;
  --blue: #5c98b6;
  --dark-blue: #2a6386;
  --caption-blue: #1e8195;
  --green: #008296;
  --h-m-height: 16px;
  --h-m-width: 28px;
  --h-m-thickness: 2px;
  --h-height: 16px;
  --h-width: 28px;
  --h-thickness: 2px;
  --h-color: #000;
}

.nav-toggle {
  cursor: pointer;
  height: var(--h-m-height);
  position: relative !important;
  transform: rotate(0deg);
  transition: 0.2s ease;
  width: var(--h-m-width);
}
@media screen and (min-width: 420px) {
  .nav-toggle {
    height: var(--h-height);
    width: var(--h-width);
  }
}

.nav-toggle span {
  background: var(--h-color);
  border-radius: 3px;
  display: block !important;
  height: var(--h-m-thickness);
  left: 0;
  opacity: 1;
  position: absolute;
  transform: rotate(0deg);
  transition: all 0.2s ease;
  width: 100%;
}
@media screen and (min-width: 420px) {
  .nav-toggle span {
    height: var(--h-thickness);
  }
}
.nav-toggle span:nth-child(1) {
  margin-top: 0;
}
.nav-toggle span:nth-child(2), .nav-toggle span:nth-child(3) {
  margin-top: calc(var(--h-m-height) / 2 - var(--h-m-thickness) / 2);
}
@media screen and (min-width: 420px) {
  .nav-toggle span:nth-child(2), .nav-toggle span:nth-child(3) {
    margin-top: calc(var(--h-height) / 2 - var(--h-thickness) / 2);
  }
}
.nav-toggle span:nth-child(4) {
  margin-top: calc(var(--h-m-height) - var(--h-m-thickness));
}
@media screen and (min-width: 420px) {
  .nav-toggle span:nth-child(4) {
    margin-top: calc(var(--h-height) - var(--h-thickness));
  }
}

.nav-toggle.is-open span {
  background-color: var(--h-color);
}
.nav-toggle.is-open span:nth-child(1),
.nav-toggle.is-open span:nth-child(4) {
  left: 50%;
  margin-top: calc(var(--h-height) / 2 - var(--h-thickness));
  width: 0%;
}
.nav-toggle.is-open span:nth-child(2) {
  transform: rotate(45deg);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

:root {
  --pink: #ffedef;
  --pinker: #f7d0ca;
  --dark-pink: #f9c8c8;
  --green: #276c22;
  --yellow: #F5FF07;
  --yellower: #F5FF07;
  --blue: #5c98b6;
  --dark-blue: #2a6386;
  --caption-blue: #1e8195;
  --green: #008296;
  --h-m-height: 16px;
  --h-m-width: 28px;
  --h-m-thickness: 2px;
  --h-height: 16px;
  --h-width: 28px;
  --h-thickness: 2px;
  --h-color: #000;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.marquee {
  background-color: #fff;
  display: flex;
  overflow: hidden;
  height: 40px;
  align-items: center;
}
.marquee h2 {
  font-size: 1em;
  white-space: nowrap;
  padding: 0 8vw;
  display: flex;
  align-items: center;
  margin-top: 0.2em;
  gap: 16vw;
  font-weight: 400;
}

.footer-content {
  border-top: 2px solid;
  margin: 0 4vw;
  padding: 3vw 0;
  width: calc(100% - 8vw);
  gap: 40px;
  display: grid;
}
@media screen and (min-width: 800px) {
  .footer-content {
    grid-template-columns: auto auto auto 70px;
    gap: 20px;
  }
}
.footer-content .partners .label {
  font-size: 0.75em;
  margin-bottom: 0.875rem;
}
.footer-content .partners .by .partners-logos {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-content .partners .by .partners-logos img {
  height: auto;
  max-width: 8em;
  width: 100%;
}
.footer-content .partners .by .partners-logos > *:last-child {
  max-width: 9em;
}
.footer-content .partners .main-sponsor img {
  max-width: 220px;
}
.footer-content .partners .collaborations img {
  max-width: 160px;
}
.footer-content .partners .collaborations .logos {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
.footer-content .copyright p {
  display: flex;
  margin: 0;
  align-items: center;
}
.footer-content .copyright p:first-child {
  margin-bottom: 0.5rem;
}
.footer-content .copyright p:last-child {
  font-size: 0.75em;
}
.footer-content .copyright img {
  width: 1em;
  height: auto;
  margin-right: 10px;
  display: inline-block;
  transform: translateY(-2px);
}
.footer-content .newsletter a {
  background-color: #000;
  color: #fff;
  padding: 0.25em 0.75em;
}
.footer-content .social {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}
.footer-content .social a {
  margin: 0;
}
.footer-content .social svg {
  width: 30px;
  height: 30px;
  display: block;
}

:root {
  --pink: #ffedef;
  --pinker: #f7d0ca;
  --dark-pink: #f9c8c8;
  --green: #276c22;
  --yellow: #F5FF07;
  --yellower: #F5FF07;
  --blue: #5c98b6;
  --dark-blue: #2a6386;
  --caption-blue: #1e8195;
  --green: #008296;
  --h-m-height: 16px;
  --h-m-width: 28px;
  --h-m-thickness: 2px;
  --h-height: 16px;
  --h-width: 28px;
  --h-thickness: 2px;
  --h-color: #000;
}

:root {
  --pink: #ffedef;
  --pinker: #f7d0ca;
  --dark-pink: #f9c8c8;
  --green: #276c22;
  --yellow: #F5FF07;
  --yellower: #F5FF07;
  --blue: #5c98b6;
  --dark-blue: #2a6386;
  --caption-blue: #1e8195;
  --green: #008296;
  --h-m-height: 16px;
  --h-m-width: 28px;
  --h-m-thickness: 2px;
  --h-height: 16px;
  --h-width: 28px;
  --h-thickness: 2px;
  --h-color: #000;
}

.block-text {
  margin: clamp(20px, 6vw, 60px) 0;
  font-size: 1em;
}
@media screen and (min-width: 420px) {
  .block-text {
    font-size: 1.125em;
  }
}
@media screen and (min-width: 640px) {
  .block-text .text {
    width: 72.5%;
  }
  .block-text .text *:last-child {
    margin-bottom: 0;
  }
  .block-text[data-text-position=center] {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .block-text[data-text-position=right] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

:root {
  --pink: #ffedef;
  --pinker: #f7d0ca;
  --dark-pink: #f9c8c8;
  --green: #276c22;
  --yellow: #F5FF07;
  --yellower: #F5FF07;
  --blue: #5c98b6;
  --dark-blue: #2a6386;
  --caption-blue: #1e8195;
  --green: #008296;
  --h-m-height: 16px;
  --h-m-width: 28px;
  --h-m-thickness: 2px;
  --h-height: 16px;
  --h-width: 28px;
  --h-thickness: 2px;
  --h-color: #000;
}

:root {
  --pink: #ffedef;
  --pinker: #f7d0ca;
  --dark-pink: #f9c8c8;
  --green: #276c22;
  --yellow: #F5FF07;
  --yellower: #F5FF07;
  --blue: #5c98b6;
  --dark-blue: #2a6386;
  --caption-blue: #1e8195;
  --green: #008296;
  --h-m-height: 16px;
  --h-m-width: 28px;
  --h-m-thickness: 2px;
  --h-height: 16px;
  --h-width: 28px;
  --h-thickness: 2px;
  --h-color: #000;
}

.block-image {
  margin: clamp(20px, 6vw, 60px) 0;
  display: grid;
}
.block-image .caption {
  font-weight: 500;
  color: var(--caption-blue);
  font-size: 0.925em;
  margin-top: 1em;
  width: 72.5%;
}
.block-image .caption *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 580px) {
  .block-image {
    grid-template-columns: repeat(6, 1fr);
  }
  .block-image[data-image-size=small] {
    gap: clamp(20px, 6vw, 80px);
  }
  .block-image[data-image-size=small] .image {
    grid-column: span 4;
  }
}
@media screen and (min-width: 580px) and (min-width: 640px) {
  .block-image[data-image-size=small] .image {
    grid-column: span 2;
  }
}
@media screen and (min-width: 580px) {
  .block-image[data-image-size=small] .caption {
    grid-column: span 4;
  }
  .block-image[data-image-size=small][data-image-position=left] .caption {
    grid-column: span 2;
  }
  .block-image[data-image-size=small][data-image-position=right] .caption {
    grid-column: span 1/3;
  }
  .block-image[data-image-size=medium] {
    gap: clamp(20px, 6vw, 80px);
  }
  .block-image[data-image-size=medium] .image {
    grid-column: span 3;
  }
  .block-image[data-image-size=medium] .caption {
    display: flex;
    flex-direction: column;
    grid-column: span 3;
  }
  .block-image[data-image-size=medium] .caption[data-caption-vertical-position=center] {
    justify-content: center;
  }
  .block-image[data-image-size=medium] .caption[data-caption-vertical-position=bottom] {
    justify-content: flex-end;
  }
  .block-image[data-image-size=large] {
    gap: 0 clamp(20px, 6vw, 80px);
  }
  .block-image[data-image-size=large] .image {
    grid-column: span 6;
  }
  .block-image[data-image-size=large] .caption {
    grid-column: span 3;
    margin-top: 1em;
  }
  .block-image[data-image-size=large] .caption[data-caption-position=right] {
    grid-column: span 3/7;
  }
  .block-image[data-image-position=right] .image {
    order: 2;
  }
  .block-image .caption {
    margin-top: 0;
    width: 100%;
  }
}

:root {
  --pink: #ffedef;
  --pinker: #f7d0ca;
  --dark-pink: #f9c8c8;
  --green: #276c22;
  --yellow: #F5FF07;
  --yellower: #F5FF07;
  --blue: #5c98b6;
  --dark-blue: #2a6386;
  --caption-blue: #1e8195;
  --green: #008296;
  --h-m-height: 16px;
  --h-m-width: 28px;
  --h-m-thickness: 2px;
  --h-height: 16px;
  --h-width: 28px;
  --h-thickness: 2px;
  --h-color: #000;
}

:root {
  --pink: #ffedef;
  --pinker: #f7d0ca;
  --dark-pink: #f9c8c8;
  --green: #276c22;
  --yellow: #F5FF07;
  --yellower: #F5FF07;
  --blue: #5c98b6;
  --dark-blue: #2a6386;
  --caption-blue: #1e8195;
  --green: #008296;
  --h-m-height: 16px;
  --h-m-width: 28px;
  --h-m-thickness: 2px;
  --h-height: 16px;
  --h-width: 28px;
  --h-thickness: 2px;
  --h-color: #000;
}

.block-mix {
  margin: clamp(20px, 6vw, 60px) 0;
  display: grid;
  gap: clamp(20px, 4vw, 60px);
}
@media screen and (min-width: 580px) {
  .block-mix {
    gap: clamp(20px, 6vw, 80px);
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.block-mix .text {
  font-size: 1.125em;
  grid-column: span 2;
}
@media screen and (min-width: 420px) {
  .block-mix .text {
    font-size: 1.25em;
  }
}
.block-mix .text *:last-child {
  margin-bottom: 0;
}
.block-mix[data-text-position=left] .text {
  order: 1;
}
.block-mix[data-text-position=left] > .image,
.block-mix[data-text-position=left] > .caption {
  order: 2;
}
.block-mix[data-text-position=right] > .image,
.block-mix[data-text-position=right] > .caption {
  order: 1;
}
.block-mix[data-text-position=right] .text {
  order: 2;
}
.block-mix .caption {
  font-weight: 500;
  color: var(--caption-blue);
  font-size: 0.925em;
  margin-top: 1em;
}

.content-action-shape {
  width: 100%;
  background-color: var(--yellow);
  transition: 0.4s ease all;
  display: flex;
  padding: 40px 30px 40px 30px;
  flex-direction: column;
  justify-content: center;
  margin-bottom: clamp(20px, 6vw, 60px);
  margin-top: 0.5em;
}
@media screen and (min-width: 640px) {
  .content-action-shape {
    padding: 40px 30px 40px 30px;
  }
}
@media screen and (min-width: 960px) {
  .content-action-shape {
    padding: 40px 30px 40px 30px;
  }
}
.content-action-shape h2 {
  margin-bottom: 1.5em;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.6;
}
.content-action-shape p {
  width: 100%;
  padding: 1.5em 0;
  margin-bottom: 0;
}
.content-action-shape #mc_embed_signup {
  font-size: 1rem;
  transition: opacity 0.1s ease, height 0.3s ease;
}
.content-action-shape #mc_embed_signup label {
  font-size: 0.75rem;
}
.content-action-shape #mc_embed_signup input {
  -webkit-appearance: none;
  border-radius: 0 !important;
  border: none;
  font-family: "Raisonne", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5em;
  outline: none;
  padding: 0.5em;
  width: 100%;
}
.content-action-shape #mc_embed_signup input[type=submit] {
  background: var(--pinker);
  margin-top: 1.5em;
  transition: color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  margin-bottom: 0.5em;
}
.content-action-shape #mc_embed_signup input[type=submit]:hover {
  background-color: #111;
  color: #fff;
}

.is-layout {
  width: 100%;
}
.is-layout p:empty {
  display: none;
}
.is-layout a {
  border-bottom: 1px solid;
}
.is-layout section {
  display: grid;
  gap: 0px;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (min-width: 640px) {
  .is-layout section {
    gap: 40px;
  }
}
@media screen and (min-width: 800px) {
  .is-layout section {
    gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .is-layout section {
    gap: 80px;
  }
}
.is-layout section[data-vertical-alignment=top] {
  align-items: flex-start;
}
.is-layout section[data-vertical-alignment=center] {
  align-items: center;
}
.is-layout section .column {
  margin-bottom: 40px;
  grid-column: span 6;
}
@media screen and (min-width: 640px) {
  .is-layout section .column {
    grid-column: span var(--span);
  }
}
.is-layout section figure {
  border: 0;
}
.is-layout section iframe {
  border: 0;
}
.is-layout section figcaption {
  font-weight: 500;
  color: var(--caption-blue);
  font-size: 0.925em;
  margin-top: 1em;
  margin-bottom: 2em;
  max-width: 475px;
}
.is-layout section .block.caption_vdb {
  font-weight: 500;
  color: var(--caption-blue);
  font-size: 0.925em;
  margin-top: 1em;
}
.is-layout section .block.gallery {
  margin-bottom: 2em;
}
.is-layout section .block.gallery:hover .flickity-button.flickity-fullscreen-button {
  opacity: 1;
}
.is-layout section .block.gallery .flickity-button.flickity-fullscreen-button {
  opacity: 0;
  transition: 0.3s opacity ease;
}
.is-layout section .block.gallery figure {
  position: relative;
}
.is-layout section .block.gallery figure > ul {
  width: 100%;
  position: relative;
}
.is-layout section .block.gallery figure > ul li {
  height: auto;
  width: 100%;
  margin: 0;
  margin: 0 10px;
}
.is-layout section .block.gallery figure > ul li .caption {
  display: none;
}
.is-layout section .block.gallery figure > ul li img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  height: auto;
  width: 100%;
  max-height: calc(100vh - 100px);
}
@media screen and (orientation: portrait) {
  .is-layout section .block.gallery figure > ul li img {
    max-height: 100vw;
  }
}
.is-layout section .block.gallery figure .dot {
  width: 6px;
  height: 6px;
  margin: 0 4px;
}
.is-layout section .block.video .js-reframe {
  padding-top: 56.5% !important;
}
.is-layout section .block.video video {
  width: 100%;
  height: auto;
}
.is-layout section .block.text {
  font-size: 1.125em;
  margin-bottom: 1em;
}
.is-layout section .block.text p {
  max-width: 100%;
}

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

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100%;
  color: #000;
  font-weight: 400;
  font-family: Raisonne, serif;
}
@media screen and (min-width: 640px) {
  body {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  body {
    font-size: 17px;
  }
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) {
  body {
    font-size: 19px;
  }
}

strong {
  font-weight: 600;
}

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

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

a.underline {
  text-decoration: none;
  background-image: linear-gradient(#111, #111);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s;
}
a.underline:hover, a.underline:focus {
  background-size: 100% 1px;
}

h1 {
  font-size: 2em;
}

h2 {
  line-height: 1.2;
}

p {
  margin-bottom: 1em;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

figure {
  margin: 0;
}

.main {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 0 auto;
  margin-bottom: 40px;
}

.footer {
  flex-shrink: 0;
}

.flickity-viewport {
  transition: height 0.2s ease;
}

.flickity-prev-next-button.previous,
.flickity-prev-next-button.next {
  background-color: transparent;
  transform: scale(0.75);
}
.flickity-prev-next-button.previous:hover,
.flickity-prev-next-button.next:hover {
  background-color: transparent;
}
.flickity-prev-next-button.previous svg,
.flickity-prev-next-button.next svg {
  fill: #666;
}

.flickity-prev-next-button.previous {
  left: -5px;
}

.flickity-prev-next-button.next {
  right: -5px;
}

.flickity-enabled.is-fullscreen {
  position: fixed !important;
  padding: 30px;
  z-index: 100;
}
@media screen and (ordientation: portrait) {
  .flickity-enabled.is-fullscreen img {
    max-height: 100vw !important;
  }
}
@media screen and (ordientation: landscape) {
  .flickity-enabled.is-fullscreen img {
    max-height: calc(100% - 6em) !important;
  }
}
.flickity-enabled.is-fullscreen .flickity-page-dots {
  width: calc(100% - 60px);
}
.flickity-enabled.is-fullscreen li:not(.dot) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100% !important;
}
.flickity-enabled.is-fullscreen .caption {
  display: block !important;
  font-size: 0.875em;
  color: #fff;
  min-height: 3em;
  padding: 20px;
  text-align: center;
}
