:root {
  --size-1: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
  --size-2: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  --size-3: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  --size-4: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  --size-5: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
  --size-6: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
  --size-7: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
  --size-8: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
  --size-9: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
  --size-10: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}

@font-face {
  font-family: "Parkinsans";
  src: url("/fonts/Parkinsans-Bold.woff2") format("woff2"), url("/fonts/Parkinsans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Parkinsans";
  src: url("/fonts/Parkinsans-Medium.woff2") format("woff2"), url("/fonts/Parkinsans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Parkinsans";
  src: url("/fonts/Parkinsans-Regular.woff2") format("woff2"), url("/fonts/Parkinsans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Parkinsans";
  src: url("/fonts/Parkinsans-SemiBold.woff2") format("woff2"), url("/fonts/Parkinsans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --neutral-100: white;
  --neutral-200: #EDECE2;
  --neutral-900: black;
  --accent-400: #FDB718;
  --accent-500: #F47D38;
  --primary-300: #92D0DB;
  --primary-400: #009CDA;
  --primary-500: #403C98;
  --primary-900: #202752;
  --white-opacity-50: rgba(255, 255, 255, 0.05);
  --white-opacity-100: rgba(255, 255, 255, 0.1);
  --white-opacity-200: rgba(255, 255, 255, 0.2);
  --white-opacity-300: rgba(255, 255, 255, 0.3);
  --white-opacity-400: rgba(255, 255, 255, 0.4);
  --white-opacity-500: rgba(255, 255, 255, 0.5);
  --white-opacity-600: rgba(255, 255, 255, 0.6);
  --white-opacity-700: rgba(255, 255, 255, 0.7);
  --white-opacity-800: rgba(255, 255, 255, 0.8);
  --white-opacity-900: rgba(255, 255, 255, 0.9);
  --black-opacity-50: rgba(0, 0, 0, 0.05);
  --black-opacity-100: rgba(0, 0, 0, 0.1);
  --black-opacity-200: rgba(0, 0, 0, 0.2);
  --black-opacity-300: rgba(0, 0, 0, 0.3);
  --black-opacity-400: rgba(0, 0, 0, 0.4);
  --black-opacity-500: rgba(0, 0, 0, 0.5);
  --black-opacity-600: rgba(0, 0, 0, 0.6);
  --black-opacity-700: rgba(0, 0, 0, 0.7);
  --black-opacity-800: rgba(0, 0, 0, 0.8);
  --black-opacity-900: rgba(0, 0, 0, 0.9);
  --success-400: #279053;
  --danger-300: #F37F95;
  --danger-400: #EE2638;
  --danger-500: #A31D47;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
  font-weight: unset;
  font-size: unset;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  font-family: "Parkinsans";
  font-weight: 400;
  font-size: clamp(1rem, 0.9489rem + 0.2273vw, 1.125rem);
  color: var(--neutral-900);
  background-color: var(--neutral-200);
}

main {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 100px;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

p {
  line-height: 1.5;
  text-wrap: pretty;
}

a {
  display: block;
  color: inherit;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul[data-type=list] {
  margin: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) 0;
  padding-left: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
ul[data-type=list] li {
  line-height: 1.6;
  list-style: disc;
}

ol {
  margin: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) 0;
  padding-left: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
ol li {
  line-height: 1.6;
}

table {
  width: 100%;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-collapse: collapse;
}
table th {
  font-weight: 700;
}
table td, table th {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  padding: 10px;
  text-align: center;
  display: grid;
  place-content: center;
  min-width: 150px;
}
table tr {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

@media (hover: hover) and (pointer: fine) {
  .social-icon:hover path.circle {
    fill: var(--primary-400);
  }
  .social-icon:hover path:not(.circle) {
    fill: var(--neutral-100);
  }
}

.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.button {
  line-height: 1.2;
  text-decoration: none;
  display: flex;
  justify-self: start;
  justify-content: start;
  align-self: start;
}
.button .btn-content {
  border-radius: 100vw;
  padding: 0.8em 1.2em;
  position: relative;
  overflow: hidden;
}
.button .btn-content .btn-mask {
  z-index: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}
.button .btn-content .btn-mask .btn-text {
  color: #fff;
  --text-duplicate-distance: 1.5em;
  text-shadow: 0px var(--text-duplicate-distance) currentColor;
  transition: all 0.5s cubic-bezier(0.625, 0.05, 0, 1);
  font-weight: 600;
}
.button .btn-content .btn-bg {
  z-index: 0;
  width: 120%;
  height: 100%;
  position: absolute;
  bottom: 0%;
  left: -10%;
  transform: translate(0, 175%);
  transition: all 0.5s cubic-bezier(0.625, 0.05, 0, 1);
}
.button[data-icon] .btn-content {
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.button[data-icon] .btn-content svg {
  position: relative;
  z-index: 1;
}
.button[data-icon] .btn-content svg path {
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  transition: all 0.5s cubic-bezier(0.625, 0.05, 0, 1);
}
.button[data-type=primary] .btn-content {
  background-color: var(--primary-400);
}
.button[data-type=primary] .btn-content .btn-mask .btn-text {
  color: var(--neutral-100);
}
.button[data-type=primary] .btn-content .btn-bg {
  background-color: var(--accent-400);
}
.button[data-type=primary] .btn-content svg path {
  stroke: var(--neutral-100);
}
.button[data-type=secondary] .btn-content {
  background-color: var(--primary-300);
}
.button[data-type=secondary] .btn-content .btn-mask .btn-text {
  color: var(--neutral-900);
}
.button[data-type=secondary] .btn-content .btn-bg {
  background-color: var(--accent-400);
}
.button[data-type=secondary] .btn-content svg path {
  stroke: var(--neutral-100);
}
.button[data-type=accent] .btn-content {
  background-color: var(--accent-400);
}
.button[data-type=accent] .btn-content .btn-mask .btn-text {
  color: var(--neutral-900);
}
.button[data-type=accent] .btn-content .btn-bg {
  background-color: var(--primary-400);
}
.button[data-type=accent] .btn-content svg path {
  stroke: var(--neutral-900);
}
.button[data-type=danger] .btn-content {
  background-color: var(--danger-400);
}
.button[data-type=danger] .btn-content .btn-mask .btn-text {
  color: var(--neutral-100);
}
.button[data-type=danger] .btn-content .btn-bg {
  background-color: var(--primary-400);
}
.button[data-type=danger] .btn-content svg path {
  stroke: var(--neutral-900);
}
.button[data-type=white] .btn-content {
  background-color: var(--neutral-200);
}
.button[data-type=white] .btn-content .btn-mask .btn-text {
  color: var(--neutral-900);
}
.button[data-type=white] .btn-content .btn-bg {
  background-color: var(--primary-400);
}
.button[data-type=white] .btn-content svg path {
  stroke: var(--neutral-900);
}
.button[data-type=white-white] .btn-content {
  background-color: var(--neutral-100);
}
.button[data-type=white-white] .btn-content .btn-mask .btn-text {
  color: var(--neutral-900);
}
.button[data-type=white-white] .btn-content .btn-bg {
  background-color: var(--neutral-100);
}
.button[data-type=white-white] .btn-content svg path {
  stroke: var(--neutral-900);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover .btn-content .btn-mask .btn-text {
    transform: translate(0px, calc(-1 * var(--text-duplicate-distance)));
  }
  .button:hover .btn-content .btn-bg {
    transform: translate(0px, 0%);
  }
  .button:hover[data-type=primary] .btn-content .btn-mask .btn-text {
    color: var(--neutral-900);
  }
  .button:hover[data-type=accent] .btn-content .btn-mask .btn-text {
    color: var(--neutral-100);
  }
  .button:hover[data-type=white] .btn-content .btn-mask .btn-text {
    color: var(--neutral-100);
  }
  .button:hover[data-type=white] .btn-content svg path {
    stroke: var(--neutral-100);
  }
}

.text-draw {
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.text-draw-span {
  margin-bottom: 0;
}

.text-draw-box {
  color: var(--danger-400);
  width: 100%;
  height: 0.625em;
  position: absolute;
  bottom: -0.625em;
  pointer-events: none;
}

.text-draw-box svg {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: visible !important;
}

.arrow-btn {
  width: 50px;
  height: 50px;
}
.arrow-btn path:not(.circle) {
  stroke: var(--neutral-900);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.arrow-btn[data-type=accent] path.circle {
  fill: var(--accent-400);
}
.arrow-btn[data-type=white] path.circle {
  fill: var(--neutral-100);
}
.arrow-btn[data-flip] {
  transform: scaleX(-1);
}
@media (hover: hover) and (pointer: fine) {
  .arrow-btn:hover[data-type=accent] path.circle {
    fill: var(--primary-400);
  }
  .arrow-btn:hover[data-type=accent] path:not(.circle) {
    stroke: var(--neutral-100);
  }
}

.news-card p {
  padding-top: 0.7em;
}
.news-card h3 {
  padding-top: 0.1em;
}
.news-card img.default-logo {
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-card svg.arrow-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  margin: 1rem;
  transform: translateX(-5px) rotate(-5deg) scale(0.9);
  transform-origin: bottom left;
  opacity: 0;
  transition: 0.2s cubic-bezier(0.625, 0.05, 0, 1);
}
@media (hover: hover) and (pointer: fine) {
  .news-card:hover svg.arrow-btn {
    transform: translateX(0px) rotate(0) scale(1);
    opacity: 1;
  }
}

.programme-card h3 {
  padding-top: 0.5em;
}
.programme-card svg.arrow-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  margin: 1rem;
  transform: translateX(-5px) rotate(-5deg) scale(0.9);
  transform-origin: bottom left;
  opacity: 0;
  transition: 0.2s cubic-bezier(0.625, 0.05, 0, 1);
}
@media (hover: hover) and (pointer: fine) {
  .programme-card:hover svg.arrow-btn {
    transform: translateX(0px) rotate(0) scale(1);
    opacity: 1;
  }
}

[data-scrolling-started=true][data-scrolling-direction=down] header {
  transform: translateY(-100%);
}

header {
  transition: 0.5s cubic-bezier(0.625, 0.05, 0, 1);
  height: 100px;
  display: grid;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
header .nav-links-wrapper {
  display: none;
  padding: 0.8em 1.5em;
}
@media screen and (min-width: 62em) {
  header .nav-links-wrapper {
    display: block;
  }
  header .burger-wrap {
    display: none;
  }
}

li.section-link {
  position: relative;
}
li.section-link .section-nav-link {
  cursor: pointer;
  display: flex;
  gap: 0.3em;
  align-items: center;
}
li.section-link .section-nav-link svg.arrow {
  transition: all 0.3s cubic-bezier(0.625, 0.05, 0, 1);
}
li.section-link .nav-dropdown-content {
  width: 15em;
  padding-top: 1.5rem;
  position: absolute;
  z-index: 10;
  pointer-events: none;
  transform: translate(-2rem, 0.5rem);
  transition: all 0.3s cubic-bezier(0.625, 0.05, 0, 1);
  opacity: 0;
  transform-origin: top center;
}
li.section-link .nav-dropdown-content .inner {
  padding: 2rem;
}
li.section-link .nav-dropdown-content .inner ul {
  justify-items: start;
}
li.section-link:hover .section-nav-link svg.arrow {
  transform: rotate(180deg);
}
li.section-link:hover .nav-dropdown-content {
  pointer-events: all;
  transform: translate(-2rem, 0%);
  opacity: 1;
}

.burger-wrap {
  position: relative;
  display: grid;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.2em;
  cursor: pointer;
}
.burger-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.burger {
  transform: scale(0.4);
  transition: all 0.7s, font-size 0s;
  transition-timing-function: cubic-bezier(0.68, -0.35, 0.265, 1.35);
}
.burger > div {
  transition: all 0.1s 0.3s, font-size 0s;
  width: 3.5rem;
  height: 0.5rem;
  border-radius: 1em;
  background: var(--primary-400);
}
.burger > div::before, .burger > div::after {
  transition: all 0.3s 0.2s, font-size 0s;
  content: "";
  display: block;
  position: absolute;
  width: 3.5rem;
  height: 0.5rem;
  background: var(--primary-400);
  border-radius: 1em;
}
.burger > div::before {
  margin-top: -1.5rem;
}
.burger > div::after {
  margin-top: 1.5rem;
}
.burger.toggled {
  transform: rotate(180deg) scale(0.4);
}
.burger.toggled > div::before {
  transform: rotate(45deg) translate(1.1rem, 1rem);
}
.burger.toggled > div {
  background: transparent;
}
.burger.toggled > div::after {
  transform: rotate(-45deg) translate(1.1rem, -1rem);
}

#mobile-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: var(--primary-400);
  font-size: clamp(1.728rem, 1.536rem + 0.8532vw, 2.1973rem);
  font-weight: 500;
  text-align: center;
  padding: 0.8rem;
  width: min(90%, 350px);
  border-radius: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  will-change: transform;
  transition: 0.7s cubic-bezier(0.68, -0.35, 0.265, 1.35);
}
#mobile-menu ul {
  display: grid;
  gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  background-color: var(--neutral-100);
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  padding: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem) 5%;
}
#mobile-menu a {
  text-decoration: none;
  line-height: 1.2;
}
#mobile-menu[data-status=not-active] {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -20%) rotate(-5deg);
}
#mobile-menu[data-status=active] {
  pointer-events: all;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0);
}

#main-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  transition: 0.7s cubic-bezier(0.68, -0.35, 0.265, 1.35);
}
#main-overlay[data-status=not-active] {
  opacity: 0;
  pointer-events: none;
}
#main-overlay[data-status=active] {
  opacity: 1;
  pointer-events: all;
}

footer {
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none;
}

.input-wrapper {
  display: grid;
}
.input-wrapper label {
  padding-bottom: 0.8em;
  font-size: clamp(0.8333rem, 0.8061rem + 0.1212vw, 0.9rem);
}
.input-wrapper input, .input-wrapper select, .input-wrapper textarea {
  background-color: var(--neutral-100);
  border: 1px solid var(--black-opacity-50);
  outline: none;
  padding: 0.8em 1em;
  border-radius: 0.15em;
}
.input-wrapper input:focus, .input-wrapper select:focus, .input-wrapper textarea:focus {
  border: 1px solid var(--black-opacity-300);
}
.input-wrapper textarea {
  resize: vertical;
}
.input-wrapper.required label::after {
  content: "*";
  color: var(--danger-400);
  padding-left: 0.1em;
}
.input-wrapper.required .error-text {
  font-size: clamp(0.8333rem, 0.8061rem + 0.1212vw, 0.9rem);
  color: var(--danger-400);
  padding-top: 0.6em;
}
.input-wrapper.required.error input, .input-wrapper.required.error select, .input-wrapper.required.error textarea {
  border: 1px solid var(--danger-400);
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 20.5C16.0228 20.5 20.5 16.0228 20.5 10.5C20.5 4.97715 16.0228 0.5 10.5 0.5C4.97715 0.5 0.5 4.97715 0.5 10.5C0.5 16.0228 4.97715 20.5 10.5 20.5Z' fill='%23FFF2F1' stroke='%23FF1100' vector-effect='non-scaling-stroke'/%3E%3Cpath d='M10.5 5.5V12.8846' stroke='%23FF1100'/%3E%3Cpath d='M10.5 15.7314V14.1929' stroke='%23FF1100' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) 50%;
}

.aspect-ratio-3-2 {
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
}
.aspect-ratio-3-2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aspect-ratio-16-9 {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.aspect-ratio-16-9 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-blocks {
  display: grid;
  gap: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.page-blocks .block video {
  max-width: 100%;
}
.page-blocks .block.image {
  overflow: hidden;
  aspect-ratio: 3/2;
  position: relative;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.page-blocks .block.image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-blocks .block.image-text {
  display: grid;
  gap: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  align-items: start;
}
.page-blocks .block.image-text .image {
  overflow: hidden;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
@media (min-width: 600px) {
  .page-blocks .block.image-text {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-blocks .block.image-text.reverse .image {
    order: 2;
  }
  .page-blocks .block.image-text.reverse .text {
    order: 1;
  }
}
@media screen and (min-width: 62em) {
  .page-blocks .block.image-text {
    grid-template-columns: 1fr;
  }
  .page-blocks .block.image-text[data-type=reverse] .image {
    order: unset;
  }
  .page-blocks .block.image-text[data-type=reverse] .text {
    order: unset;
  }
}
@media (min-width: 1200px) {
  .page-blocks .block.image-text {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-blocks .block.image-text[data-type=reverse] .image {
    order: 2;
  }
  .page-blocks .block.image-text[data-type=reverse] .text {
    order: 1;
  }
}
.page-blocks .block.file {
  justify-self: start;
}
.page-blocks .block.file a {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  text-decoration: none;
}
.page-blocks .block.file svg {
  width: 1.3rem;
}
.page-blocks .block.file svg path {
  vector-effect: non-scaling-stroke;
}
.page-blocks .block.gallery .f-carousel__slide {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.page-blocks .block.gallery .f-carousel__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (hover: hover) and (pointer: fine) {
  .page-blocks .block.gallery:hover .f-button {
    opacity: 1;
  }
}
.page-blocks .block.quote svg {
  width: 100%;
  max-width: 5rem;
}
.page-blocks .block.quote svg path {
  fill: var(--primary-400);
}
.page-blocks .block.quote .text {
  font-size: clamp(1.2rem, 1.1156rem + 0.375vw, 1.4063rem);
  font-weight: 600;
  padding-top: 0.5em;
}
.page-blocks .block.quote span {
  display: block;
  padding-top: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  padding-bottom: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.page-blocks .block.youtube {
  overflow: hidden;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.page-blocks .block.youtube.aspect-ratio-9by16 {
  text-align: center;
}
.page-blocks .block.youtube.aspect-ratio-9by16 iframe {
  aspect-ratio: 9/16;
  width: 100%;
  max-width: 400px;
}
.page-blocks .block.youtube.aspect-ratio-16by9 iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.page-blocks .f-thumbs {
  --f-thumb-clip-width: 35px;
  margin-top: calc(-1 * clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem));
}
.page-blocks .f-button {
  opacity: 0;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  width: auto;
  height: auto;
  --f-arrow-pos: 20px;
}
.page-blocks .f-button svg {
  stroke: unset;
  width: 50px;
  height: 50px;
}
@media (hover: hover) and (pointer: fine) {
  .page-blocks .f-button:hover path.circle {
    fill: var(--accent-400);
  }
}

.wysiwyg {
  display: grid;
  gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.wysiwyg h2 {
  font-size: clamp(2.0736rem, 1.7983rem + 1.2236vw, 2.7466rem);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}
.wysiwyg h3 {
  font-size: clamp(1.44rem, 1.31rem + 0.5778vw, 1.7578rem);
  font-weight: 600;
  line-height: 1.3;
  text-wrap: balance;
}
.wysiwyg h4 {
  font-size: clamp(1.2rem, 1.1156rem + 0.375vw, 1.4063rem);
  font-weight: 600;
  line-height: 1.3;
  text-wrap: balance;
}
.wysiwyg ul {
  list-style: disc;
  margin: 0;
  padding: 0;
  padding-left: 2.5rem;
  display: grid;
  gap: 0.6rem;
  line-height: 1.5;
}
.wysiwyg ol {
  margin: 0;
  padding: 0;
  padding-left: 2.5rem;
  display: grid;
  gap: 0.6rem;
  line-height: 1.5;
}
.wysiwyg strong {
  font-weight: 600;
}
.wysiwyg a {
  display: inline-block;
  justify-self: start;
  color: var(--primary-400);
  line-height: 1.5;
  text-decoration: none;
  position: relative;
}
.wysiwyg a::before, .wysiwyg a::after {
  content: "";
  position: absolute;
  bottom: 0em;
  left: 0;
  width: 100%;
  height: 0.0625em;
  background-color: var(--primary-400);
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
}
.wysiwyg a::before {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg);
  transition-delay: 0.3s;
}
.wysiwyg a::after {
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
  transition-delay: 0s;
}
@media (hover: hover) and (pointer: fine) {
  .wysiwyg a:hover::before {
    transform-origin: right;
    transform: scaleX(0) rotate(0.001deg);
    transition-delay: 0s;
  }
  .wysiwyg a:hover::after {
    transform-origin: left;
    transform: scaleX(1) rotate(0.001deg);
    transition-delay: 0.3s;
  }
}

.pager-wrapper ol.pager .page-no span, .pager-wrapper ol.pager a,
.pager-wrapper ol.pager .ellipses span {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}

.pager-wrapper {
  display: grid;
  justify-content: center;
  padding-top: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.pager-wrapper ol.pager {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.pager-wrapper ol.pager li {
  width: 35px;
  height: 35px;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
@media (hover: hover) and (pointer: fine) {
  .pager-wrapper ol.pager li:has(a):hover {
    background-color: var(--black-opacity-100);
  }
}
.pager-wrapper ol.pager a,
.pager-wrapper ol.pager .ellipses span {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.05);
}
.pager-wrapper ol.pager .page-no span {
  background-color: var(--neutral-900);
  color: var(--neutral-100);
  line-height: 1;
}

.page-navigation {
  overflow: hidden;
  background-color: var(--primary-400);
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  margin-bottom: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
  color: var(--neutral-100);
}
.page-navigation span.section-name {
  font-size: clamp(1.44rem, 1.31rem + 0.5778vw, 1.7578rem);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  padding: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem) clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) 0 clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
  justify-content: space-between;
  align-items: center;
}
.page-navigation span.section-name svg.arrow-btn {
  opacity: 1;
  transform: rotate(90deg);
}
.page-navigation .links {
  background-color: var(--neutral-100);
  color: var(--neutral-900);
  border-radius: 0.5em;
  margin: 0.8rem;
}
.page-navigation .sub-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.4em 1.4rem;
  border-radius: 100vw;
}
.page-navigation .sub-section-dropdown {
  display: grid;
}
.page-navigation .sub-section-dropdown ul {
  display: grid;
  justify-items: start;
  margin: 0;
}
.page-navigation .sub-section-dropdown ul li:last-of-type {
  margin-bottom: 0.8em;
}
.page-navigation .sub-section-dropdown ul li:first-of-type {
  margin-top: 0.5em;
}
.page-navigation .sub-section-dropdown ul a {
  padding: 0.6em 1.4rem;
  font-size: clamp(0.8333rem, 0.8061rem + 0.1212vw, 0.9rem);
}
.page-navigation svg.arrow-btn {
  width: 40px;
  height: 40px;
  opacity: 0;
}
.page-navigation ul {
  display: grid;
  gap: 0.3em;
  margin-inline: 1rem;
}
.page-navigation ul li {
  color: var(--neutral-900);
  border-radius: 100vw;
}
.page-navigation ul li:first-of-type {
  margin-top: 1em;
}
.page-navigation ul li:last-of-type {
  margin-bottom: 1em;
}
.page-navigation ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 0.4em 1.4rem;
  line-height: 1.4;
  border-radius: 100vw;
}
.page-navigation ul li a h3 {
  line-height: 1.5;
}
.page-navigation ul li a.sub-section-title {
  color: var(--neutral-100);
}
@media (hover: hover) and (pointer: fine) {
  .page-navigation ul li:not([data-dropdown-parent]):hover {
    background-color: var(--neutral-200);
  }
  .page-navigation ul li:not([data-dropdown-parent]):hover a svg.arrow-btn {
    opacity: 1;
  }
  .page-navigation ul li:hover .sub-section-title {
    background-color: var(--neutral-200);
  }
  .page-navigation ul li:hover .sub-section-title svg.arrow-btn {
    opacity: 1;
  }
}
.page-navigation ul li.active {
  background-color: var(--neutral-200);
}
.page-navigation ul li.active svg.arrow-btn {
  opacity: 1;
}
.page-navigation ul li.sub-active {
  border-bottom: 1px solid var(--black-opacity-100);
  border-radius: unset;
  background-color: transparent;
}
.page-navigation ul li.sub-active .sub-section-title {
  background-color: var(--neutral-200);
}
.page-navigation ul li.sub-active svg.arrow-btn {
  opacity: 1;
}
.page-navigation ul li.sub-active .sub-section-dropdown {
  grid-template-rows: 1fr;
}
.page-navigation ul li.sub-active .sub-section-dropdown ul {
  visibility: visible;
}
@media screen and (min-width: 62em) {
  .page-navigation {
    align-self: flex-start;
  }
  .page-navigation span.section-name {
    padding: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem) clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem) calc(clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem) + .8rem + 1.4rem);
  }
  .page-navigation span.section-name .burger-wrap {
    display: none;
  }
  .page-navigation .links {
    margin: 0 0.8rem 0.8rem 0.8rem;
    padding: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  }
  .page-navigation .sub-section-title {
    padding: 0.4em 1.4rem;
  }
  .page-navigation ul {
    margin-inline: 0;
  }
  .page-navigation ul li:last-of-type {
    margin-bottom: 0;
  }
  .page-navigation ul li:first-of-type {
    margin-top: 0;
  }
  .page-navigation ul li a {
    padding: 0.4em 1.4rem;
  }
}

.news-sidebar {
  overflow: hidden;
  background-color: var(--primary-400);
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  margin-bottom: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
  color: var(--neutral-100);
}
.news-sidebar .title {
  font-size: clamp(1.728rem, 1.536rem + 0.8532vw, 2.1973rem);
  font-weight: 600;
  padding: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem) clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem) calc(clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem) + .8rem);
}
.news-sidebar .inner {
  background-color: var(--neutral-100);
  color: var(--neutral-900);
  margin: 0 0.8rem 0.8rem 0.8rem;
  padding: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.news-sidebar .news-card {
  border-bottom: 1px solid var(--black-opacity-100);
  padding-block: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.news-sidebar .news-card:last-of-type {
  border-bottom: 0;
}
.news-sidebar .news-card p {
  padding-top: 0;
}

.breadcrumb {
  padding-bottom: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6em;
  font-size: clamp(0.8333rem, 0.8061rem + 0.1212vw, 0.9rem);
}
.breadcrumb h4 {
  color: var(--black-opacity-500);
}
.breadcrumb span {
  color: var(--black-opacity-300);
}
.breadcrumb a {
  text-decoration: none;
  line-height: 1;
}
@media (hover) {
  .breadcrumb a:hover {
    color: var(--accent-400);
  }
}
.breadcrumb svg {
  width: 1rem;
  margin-top: 0.1rem;
}
.breadcrumb svg path {
  fill: var(--neutral-900);
}
@media (hover) {
  .breadcrumb svg:hover path {
    fill: var(--accent-400);
  }
}

/**
 * AUTO-GRID LAYOUT
 *
 * This CSS utility creates a responsive grid layout that automatically adjusts the number of columns
 * based on the available space and specified constraints. It aims to fit as many cells as possible
 * in a single row, while respecting minimum cell width and maximum columns constraints.
 *
 * Customizable Properties:
 * --auto-grid-min-size: Sets the minimum width for each cell in the grid.
 *                       Default is 10rem.
 * --auto-grid-max-columns: Sets the maximum number of columns in the grid.
 *                          Default is 'infinity' (as many as can fit).
 * --auto-grid-gap: Sets the horizontal gap between grid cells. It also sets
 *                  the vertical gap if --auto-grid-gap-vertical is not defined.
 *                  Default is 1rem.
 * --auto-grid-gap-vertical: Specifically sets the vertical gap between rows
 *                           of cells. If not set, it falls back to the value
 *                           of '--auto-grid-gap'.
 *
 * The grid utilizes CSS 'display: grid' with the 'auto-fit' feature and the 'minmax()'
 * function to ensure that cells expand to fill available space while maintaining
 * the set minimum size.
 *
 * Example Usage:
 * <div class="auto-grid" style="--auto-grid-min-size: 10rem; --auto-grid-max-columns: 3; --auto-grid-gap: 0.5rem;">
 *   <!-- grid items here -->
 * </div>
 *
 * The above example will create a grid with a minimum cell width of 10rem, a maximum
 * of 3 columns, and a gap of 0.5rem between both rows and columns.
 */
.auto-grid {
  --auto-grid-max-column-width: 100% / var(--auto-grid-max-columns, infinity) - var(--auto-grid-gap);
  --auto-grid-column-width: max(
      var(--auto-grid-max-column-width),
      min(var(--auto-grid-min-size, 10rem), 100%)
  );
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-column-width), 1fr));
  /* vertical gap falls back to general gap then falls back to 1rem*/
  gap: var(--auto-grid-gap-vertical, var(--auto-grid-gap, 1rem)) var(--auto-grid-gap, 1rem);
}
@media screen and (min-width: 48em) {
  .auto-grid[data-type=reverse] div:last-of-type {
    order: -1;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  align-items: center;
}
.flex.justify-space-between {
  justify-content: space-between;
  width: 100%;
}

.grid {
  display: grid;
}

.justify-self-end {
  justify-self: end;
}

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

.pile {
  display: grid;
  grid-template-areas: "pile";
  place-content: center;
}
.pile > * {
  grid-area: pile;
}

.clr-neutral-100 {
  color: var(--neutral-100);
}

.bg-neutral-100 {
  background-color: var(--neutral-100);
}

.clr-neutral-200 {
  color: var(--neutral-200);
}

.bg-neutral-200 {
  background-color: var(--neutral-200);
}

.clr-neutral-900 {
  color: var(--neutral-900);
}

.bg-neutral-900 {
  background-color: var(--neutral-900);
}

.clr-accent-400 {
  color: var(--accent-400);
}

.bg-accent-400 {
  background-color: var(--accent-400);
}

.clr-accent-500 {
  color: var(--accent-500);
}

.bg-accent-500 {
  background-color: var(--accent-500);
}

.clr-primary-300 {
  color: var(--primary-300);
}

.bg-primary-300 {
  background-color: var(--primary-300);
}

.clr-primary-400 {
  color: var(--primary-400);
}

.bg-primary-400 {
  background-color: var(--primary-400);
}

.clr-primary-500 {
  color: var(--primary-500);
}

.bg-primary-500 {
  background-color: var(--primary-500);
}

.clr-primary-900 {
  color: var(--primary-900);
}

.bg-primary-900 {
  background-color: var(--primary-900);
}

.clr-white-opacity-50 {
  color: var(--white-opacity-50);
}

.bg-white-opacity-50 {
  background-color: var(--white-opacity-50);
}

.clr-white-opacity-100 {
  color: var(--white-opacity-100);
}

.bg-white-opacity-100 {
  background-color: var(--white-opacity-100);
}

.clr-white-opacity-200 {
  color: var(--white-opacity-200);
}

.bg-white-opacity-200 {
  background-color: var(--white-opacity-200);
}

.clr-white-opacity-300 {
  color: var(--white-opacity-300);
}

.bg-white-opacity-300 {
  background-color: var(--white-opacity-300);
}

.clr-white-opacity-400 {
  color: var(--white-opacity-400);
}

.bg-white-opacity-400 {
  background-color: var(--white-opacity-400);
}

.clr-white-opacity-500 {
  color: var(--white-opacity-500);
}

.bg-white-opacity-500 {
  background-color: var(--white-opacity-500);
}

.clr-white-opacity-600 {
  color: var(--white-opacity-600);
}

.bg-white-opacity-600 {
  background-color: var(--white-opacity-600);
}

.clr-white-opacity-700 {
  color: var(--white-opacity-700);
}

.bg-white-opacity-700 {
  background-color: var(--white-opacity-700);
}

.clr-white-opacity-800 {
  color: var(--white-opacity-800);
}

.bg-white-opacity-800 {
  background-color: var(--white-opacity-800);
}

.clr-white-opacity-900 {
  color: var(--white-opacity-900);
}

.bg-white-opacity-900 {
  background-color: var(--white-opacity-900);
}

.clr-black-opacity-50 {
  color: var(--black-opacity-50);
}

.bg-black-opacity-50 {
  background-color: var(--black-opacity-50);
}

.clr-black-opacity-100 {
  color: var(--black-opacity-100);
}

.bg-black-opacity-100 {
  background-color: var(--black-opacity-100);
}

.clr-black-opacity-200 {
  color: var(--black-opacity-200);
}

.bg-black-opacity-200 {
  background-color: var(--black-opacity-200);
}

.clr-black-opacity-300 {
  color: var(--black-opacity-300);
}

.bg-black-opacity-300 {
  background-color: var(--black-opacity-300);
}

.clr-black-opacity-400 {
  color: var(--black-opacity-400);
}

.bg-black-opacity-400 {
  background-color: var(--black-opacity-400);
}

.clr-black-opacity-500 {
  color: var(--black-opacity-500);
}

.bg-black-opacity-500 {
  background-color: var(--black-opacity-500);
}

.clr-black-opacity-600 {
  color: var(--black-opacity-600);
}

.bg-black-opacity-600 {
  background-color: var(--black-opacity-600);
}

.clr-black-opacity-700 {
  color: var(--black-opacity-700);
}

.bg-black-opacity-700 {
  background-color: var(--black-opacity-700);
}

.clr-black-opacity-800 {
  color: var(--black-opacity-800);
}

.bg-black-opacity-800 {
  background-color: var(--black-opacity-800);
}

.clr-black-opacity-900 {
  color: var(--black-opacity-900);
}

.bg-black-opacity-900 {
  background-color: var(--black-opacity-900);
}

.clr-success-400 {
  color: var(--success-400);
}

.bg-success-400 {
  background-color: var(--success-400);
}

.clr-danger-300 {
  color: var(--danger-300);
}

.bg-danger-300 {
  background-color: var(--danger-300);
}

.clr-danger-400 {
  color: var(--danger-400);
}

.bg-danger-400 {
  background-color: var(--danger-400);
}

.clr-danger-500 {
  color: var(--danger-500);
}

.bg-danger-500 {
  background-color: var(--danger-500);
}

.fs-200 {
  font-size: clamp(0.6944rem, 0.684rem + 0.0465vw, 0.72rem);
}

.fs-300 {
  font-size: clamp(0.8333rem, 0.8061rem + 0.1212vw, 0.9rem);
}

.fs-400 {
  font-size: clamp(1rem, 0.9489rem + 0.2273vw, 1.125rem);
}

.fs-500 {
  font-size: clamp(1.2rem, 1.1156rem + 0.375vw, 1.4063rem);
}

.fs-600 {
  font-size: clamp(1.44rem, 1.31rem + 0.5778vw, 1.7578rem);
}

.fs-700 {
  font-size: clamp(1.728rem, 1.536rem + 0.8532vw, 2.1973rem);
  line-height: 1.2;
}

.fs-800 {
  font-size: clamp(2.0736rem, 1.7983rem + 1.2236vw, 2.7466rem);
  line-height: 1.2;
}

.fs-900 {
  font-size: clamp(2.4883rem, 2.1018rem + 1.718vw, 3.4332rem);
  line-height: 1.2;
}

.fs-1000 {
  font-size: clamp(2.986rem, 2.4519rem + 2.3737vw, 4.2915rem);
  line-height: 1.2;
}

.section-padding {
  padding-block: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}

.mx-auto {
  margin-inline: auto;
}

.push-right {
  margin-left: auto;
}

.margin-1 {
  margin: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-top-1 {
  margin-block-start: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-bottom-1 {
  margin-block-end: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-block-1 {
  margin-block: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-left-1 {
  margin-inline-start: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-right-1 {
  margin-inline-end: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-inline-1 {
  margin-inline: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}

.padding-1 {
  padding: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-top-1 {
  padding-block-start: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-bottom-1 {
  padding-block-end: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-block-1 {
  padding-block: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-left-1 {
  padding-inline-start: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-right-1 {
  padding-inline-end: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-inline-1 {
  padding-inline: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}

.margin-2 {
  margin: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-top-2 {
  margin-block-start: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-bottom-2 {
  margin-block-end: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-block-2 {
  margin-block: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-left-2 {
  margin-inline-start: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-right-2 {
  margin-inline-end: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-inline-2 {
  margin-inline: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}

.padding-2 {
  padding: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-top-2 {
  padding-block-start: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-bottom-2 {
  padding-block-end: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-block-2 {
  padding-block: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-left-2 {
  padding-inline-start: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-right-2 {
  padding-inline-end: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-inline-2 {
  padding-inline: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}

.margin-3 {
  margin: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-top-3 {
  margin-block-start: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-bottom-3 {
  margin-block-end: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-block-3 {
  margin-block: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-left-3 {
  margin-inline-start: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-right-3 {
  margin-inline-end: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-inline-3 {
  margin-inline: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

.padding-3 {
  padding: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-top-3 {
  padding-block-start: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-bottom-3 {
  padding-block-end: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-block-3 {
  padding-block: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-left-3 {
  padding-inline-start: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-right-3 {
  padding-inline-end: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-inline-3 {
  padding-inline: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

.margin-4 {
  margin: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-top-4 {
  margin-block-start: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-bottom-4 {
  margin-block-end: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-block-4 {
  margin-block: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-left-4 {
  margin-inline-start: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-right-4 {
  margin-inline-end: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-inline-4 {
  margin-inline: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}

.padding-4 {
  padding: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-top-4 {
  padding-block-start: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-bottom-4 {
  padding-block-end: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-block-4 {
  padding-block: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-left-4 {
  padding-inline-start: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-right-4 {
  padding-inline-end: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-inline-4 {
  padding-inline: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}

.margin-5 {
  margin: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-top-5 {
  margin-block-start: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-bottom-5 {
  margin-block-end: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-block-5 {
  margin-block: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-left-5 {
  margin-inline-start: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-right-5 {
  margin-inline-end: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-inline-5 {
  margin-inline: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}

.padding-5 {
  padding: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-top-5 {
  padding-block-start: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-bottom-5 {
  padding-block-end: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-block-5 {
  padding-block: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-left-5 {
  padding-inline-start: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-right-5 {
  padding-inline-end: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-inline-5 {
  padding-inline: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}

.margin-6 {
  margin: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-top-6 {
  margin-block-start: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-bottom-6 {
  margin-block-end: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-block-6 {
  margin-block: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-left-6 {
  margin-inline-start: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-right-6 {
  margin-inline-end: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-inline-6 {
  margin-inline: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}

.padding-6 {
  padding: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-top-6 {
  padding-block-start: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-bottom-6 {
  padding-block-end: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-block-6 {
  padding-block: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-left-6 {
  padding-inline-start: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-right-6 {
  padding-inline-end: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-inline-6 {
  padding-inline: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}

.margin-7 {
  margin: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-top-7 {
  margin-block-start: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-bottom-7 {
  margin-block-end: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-block-7 {
  margin-block: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-left-7 {
  margin-inline-start: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-right-7 {
  margin-inline-end: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-inline-7 {
  margin-inline: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}

.padding-7 {
  padding: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-top-7 {
  padding-block-start: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-bottom-7 {
  padding-block-end: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-block-7 {
  padding-block: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-left-7 {
  padding-inline-start: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-right-7 {
  padding-inline-end: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-inline-7 {
  padding-inline: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}

.margin-8 {
  margin: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-top-8 {
  margin-block-start: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-bottom-8 {
  margin-block-end: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-block-8 {
  margin-block: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-left-8 {
  margin-inline-start: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-right-8 {
  margin-inline-end: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-inline-8 {
  margin-inline: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}

.padding-8 {
  padding: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-top-8 {
  padding-block-start: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-bottom-8 {
  padding-block-end: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-block-8 {
  padding-block: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-left-8 {
  padding-inline-start: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-right-8 {
  padding-inline-end: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-inline-8 {
  padding-inline: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}

.margin-9 {
  margin: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-top-9 {
  margin-block-start: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-bottom-9 {
  margin-block-end: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-block-9 {
  margin-block: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-left-9 {
  margin-inline-start: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-right-9 {
  margin-inline-end: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-inline-9 {
  margin-inline: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}

.padding-9 {
  padding: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-top-9 {
  padding-block-start: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-bottom-9 {
  padding-block-end: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-block-9 {
  padding-block: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-left-9 {
  padding-inline-start: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-right-9 {
  padding-inline-end: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-inline-9 {
  padding-inline: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}

.margin-10 {
  margin: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-top-10 {
  margin-block-start: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-bottom-10 {
  margin-block-end: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-block-10 {
  margin-block: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-left-10 {
  margin-inline-start: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-right-10 {
  margin-inline-end: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-inline-10 {
  margin-inline: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}

.padding-10 {
  padding: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-top-10 {
  padding-block-start: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-bottom-10 {
  padding-block-end: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-block-10 {
  padding-block: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-left-10 {
  padding-inline-start: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-right-10 {
  padding-inline-end: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-inline-10 {
  padding-inline: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}

.container {
  --max-width: 90rem;
  width: min(90%, var(--max-width));
  margin-inline: auto;
}

.container[data-type=small] {
  --max-width: 70rem;
}

.container[data-type=large] {
  --max-width: 90%;
}

.container[data-type=full-bleed] {
  --max-width: 100%;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.gap-1 {
  gap: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}

.gap-2 {
  gap: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}

.gap-3 {
  gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

.gap-4 {
  gap: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}

.gap-5 {
  gap: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}

.gap-6 {
  gap: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}

.gap-7 {
  gap: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}

.gap-8 {
  gap: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}

.gap-9 {
  gap: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}

.gap-10 {
  gap: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}

.gap-y-1 {
  row-gap: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}

.gap-y-2 {
  row-gap: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}

.gap-y-3 {
  row-gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

.gap-y-4 {
  row-gap: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}

.gap-y-5 {
  row-gap: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}

.gap-y-6 {
  row-gap: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}

.gap-y-7 {
  row-gap: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}

.gap-y-8 {
  row-gap: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}

.gap-y-9 {
  row-gap: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}

.gap-y-10 {
  row-gap: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}

.standard-gap {
  gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

:root {
  --standard-gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

.ff-base {
  font-family: "Parkinsans";
}

.ff-accent {
  font-family: serif;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-underline {
  text-decoration: underline;
}

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

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

.box-shadow-1 {
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.012), 0px 22px 18px rgba(0, 0, 0, 0.018), 0px 100px 80px rgba(0, 0, 0, 0.03);
}

.box-shadow-2 {
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.016), 0px 22px 18px rgba(0, 0, 0, 0.024), 0px 100px 80px rgba(0, 0, 0, 0.04);
}

.box-shadow-3 {
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.02), 0px 22px 18px rgba(0, 0, 0, 0.03), 0px 100px 80px rgba(0, 0, 0, 0.05);
}

.box-shadow-4 {
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.03), 0px 22px 18px rgba(0, 0, 0, 0.042), 0px 100px 80px rgba(0, 0, 0, 0.07);
}

.box-shadow-5 {
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.04), 0px 22px 18px rgba(0, 0, 0, 0.06), 0px 100px 80px rgba(0, 0, 0, 0.1);
}

.heading-hero {
  font-size: clamp(2.986rem, 2.4519rem + 2.3737vw, 4.2915rem);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

.heading-1 {
  font-size: clamp(2.4883rem, 2.1018rem + 1.718vw, 3.4332rem);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

.heading-2 {
  font-size: clamp(2.0736rem, 1.7983rem + 1.2236vw, 2.7466rem);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

.heading-3 {
  font-size: clamp(1.44rem, 1.31rem + 0.5778vw, 1.7578rem);
  font-weight: 600;
  line-height: 1.3;
  text-wrap: balance;
}

.heading-4 {
  font-size: clamp(1.2rem, 1.1156rem + 0.375vw, 1.4063rem);
  font-weight: 600;
  line-height: 1.3;
  text-wrap: balance;
}

.round {
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.border-1 {
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}

.border-2 {
  border-radius: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}

.border-100 {
  border-radius: 100vw;
}

main#home-page section.hero-section {
  height: calc(100vh - 100px - 5vw);
}
main#home-page section.hero-section .container {
  height: 100%;
  position: relative;
  z-index: 3;
}
main#home-page section.hero-section .hero-wrapper {
  position: relative;
  display: grid;
  align-content: center;
  height: 100%;
  background-color: black;
  color: var(--neutral-100);
  border-radius: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  overflow: hidden;
}
main#home-page section.hero-section .hero-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
main#home-page section.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  object-fit: cover;
  object-position: 50% 10%;
  width: 100%;
  height: 100%;
}
main#home-page section.hero-section h1 {
  max-width: 10ch;
}
main#home-page section.about-section {
  overflow: hidden;
}
main#home-page section.about-section .about-grid {
  display: grid;
  gap: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
  position: relative;
}
main#home-page section.about-section .circle-image {
  width: 100%;
}
main#home-page section.about-section .pink {
  display: none;
}
@media screen and (min-width: 48em) {
  main#home-page section.about-section .about-grid {
    gap: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
    grid-template-columns: repeat(12, 1fr);
  }
  main#home-page section.about-section .about-grid .title-block {
    grid-column: 1/13;
  }
  main#home-page section.about-section .about-grid .text-block {
    grid-column: 7/13;
    align-self: center;
    max-width: 45ch;
  }
  main#home-page section.about-section .about-grid .orange {
    grid-column: 1/7;
    grid-row: 2/3;
    align-self: flex-end;
    transform: translate(-20%, 10%);
  }
}
@media screen and (min-width: 62em) {
  main#home-page section.about-section .about-grid .title-block {
    grid-column: 1/9;
  }
  main#home-page section.about-section .about-grid .text-block {
    grid-column: 6/13;
    align-self: center;
    max-width: 45ch;
  }
  main#home-page section.about-section .about-grid .circle-image {
    width: 35vw;
  }
  main#home-page section.about-section .about-grid .pink {
    display: block;
    grid-column: 9/13;
    transform: translate(25%, -20%);
  }
  main#home-page section.about-section .about-grid .orange {
    grid-column: 1/5;
    grid-row: 2/3;
    align-self: flex-end;
    transform: translate(-25%, 0%);
  }
}
main#home-page section.programme-section {
  overflow: hidden;
}
main#home-page section.programme-section .count {
  display: flex;
  align-items: center;
  gap: 0.8em;
  color: var(--black-opacity-300);
}
main#home-page section.programme-section .count .next-button, main#home-page section.programme-section .count .previous-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
main#home-page section.programme-section #programme-carousel {
  --f-carousel-slide-width: calc((100% - 15px) / 1.01);
  --f-carousel-gap: 15px;
}
main#home-page section.programme-section #programme-carousel .f-carousel__viewport {
  overflow: visible;
}
main#home-page section.programme-section #programme-carousel .f-carousel__slide {
  text-decoration: none;
}
main#home-page section.programme-section #programme-carousel .f-carousel__slide .image {
  background-color: black;
  aspect-ratio: 3/2;
  width: 100%;
  position: relative;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
main#home-page section.programme-section #programme-carousel .f-carousel__slide .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 48em) {
  main#home-page section.programme-section #programme-carousel {
    --f-carousel-slide-width: calc((100% - 25px) / 2);
    --f-carousel-gap: 25px;
  }
}
@media screen and (min-width: 62em) {
  main#home-page section.programme-section #programme-carousel {
    --f-carousel-slide-width: calc((100% - 50px) / 3);
  }
}
main#home-page section.cta-section .mobile {
  transform: translateY(10%);
  position: relative;
  z-index: 1;
  justify-self: center;
}
@media screen and (min-width: 48em) {
  main#home-page section.cta-section .mobile {
    justify-self: end;
  }
}

main#contact-page .confirmation {
  font-weight: 500;
  color: white;
  background: var(--success-400);
  padding: 0.8em 3em 0.8em 1em;
  border-radius: 0.15em;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.75 20.75C16.2728 20.75 20.75 16.2728 20.75 10.75C20.75 5.22715 16.2728 0.75 10.75 0.75C5.22715 0.75 0.75 5.22715 0.75 10.75C0.75 16.2728 5.22715 20.75 10.75 20.75Z' stroke='white' stroke-width='1.5' vector-effect='non-scaling-stroke'/%3E%3Cpath d='M6.75 10.75L9.75 13.75L14.75 8.75' stroke='white' stroke-width='1.5' stroke-miterlimit='10' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) 50%;
  background-size: 1.5em;
}
main#contact-page form {
  display: grid;
  gap: 1.5em;
}
main#contact-page form button {
  background-color: transparent;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin-top: -1.5em;
}
main#contact-page form input, main#contact-page form textarea {
  border-radius: 0.5em;
  background-color: var(--neutral-200);
}
main#contact-page .map {
  aspect-ratio: 16/9;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  overflow: hidden;
}
main#contact-page .map iframe {
  width: 100%;
  height: 100%;
}
main#contact-page .contact-card {
  border-radius: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  display: flex;
  flex-direction: column;
}
main#contact-page .contact-card .title {
  padding: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem) calc(clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem) + 1rem) clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
main#contact-page .contact-card .inner {
  height: 100%;
  background-color: var(--neutral-100);
  padding: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  margin: 1rem;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
main#contact-page .contact-card .inner .links {
  padding-top: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  display: grid;
  gap: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  justify-items: start;
}

:root {
  --c-text: #5A5A64;
  --c-text-light: #A1A1B6;
  --c-text-selection: rgb(198, 18, 42);
  --c-background-selection: rgba(198, 18, 42, 0.15);
  --c-shadow: rgba(41, 41, 86, 0.06);
  --c-shadow-active: rgba(198, 18, 42, 0.15);
}

main#login-page {
  display: grid;
  align-items: center;
  margin-left: unset;
}
main#login-page h1 {
  padding-bottom: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
main#login-page section.login-form .container {
  width: min(90%, 600px);
  margin-inline: auto;
}
main#login-page section.login-form .container form {
  display: grid;
  gap: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
main#login-page section.login-form .container form .remember-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4em;
}
main#login-page section.login-form .container form .flex {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
}
main#login-page section.login-form .container form .flex button {
  display: unset;
  padding: 0;
  background-color: transparent;
  margin: 0;
  width: 100%;
  border: 0;
  max-width: 100%;
}
main#login-page section.login-form .container form .flex button div {
  text-align: center;
  justify-content: center;
}
main#login-page section.login-form .container form .flex a {
  text-decoration: none;
}

main#generic-page section.hero-section {
  height: min(100vh - 100px - 5vw, 550px);
}
main#generic-page section.hero-section .container {
  height: 100%;
}
main#generic-page section.hero-section .hero-wrapper {
  display: grid;
  align-items: center;
  position: relative;
  height: 100%;
  background-color: black;
  color: var(--neutral-100);
  border-radius: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  overflow: hidden;
}
main#generic-page section.hero-section .hero-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
main#generic-page section.hero-section .hero-wrapper .text {
  position: relative;
  z-index: 3;
  height: 100%;
}
main#generic-page section.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
main#generic-page section.hero-section .breadcrumb {
  position: absolute;
  bottom: 0;
}
main#generic-page section.hero-section .breadcrumb path {
  fill: var(--neutral-100);
}
main#generic-page section.hero-section .breadcrumb span {
  color: var(--white-opacity-300);
}
main#generic-page section.hero-section .breadcrumb h4 {
  color: var(--white-opacity-500);
}
main#generic-page section.page-content .page-wrapper {
  padding: 0 0 clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem) 0;
}
main#generic-page section.page-content .page-wrapper .news-sidebar {
  display: none;
}
@media screen and (min-width: 62em) {
  main#generic-page section.page-content .page-wrapper {
    display: grid;
    gap: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
    padding: 0;
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
  main#generic-page section.page-content .page-wrapper .news-sidebar {
    display: block;
  }
}

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