@charset "UTF-8";
/* ==========================
   00 – Variables
========================== */
/*
* — Color variables definition —
*/
:root {
  --dark: #000000;
  --dark-light: #171A1C;
  --gray: #3B3A38;
  --light-gray: #C5C6C6;
  --light: #FFF;
  --medium: #EEE1CE;
  --primary: #B84E36;
  --secondary: #1F6275;
  --tertiary: #8E524A;
  --fourth: #8E524A;
}

/*
* — Font variables definition —
*/
/* ==========================
   01 – Base
========================== */
/* ===============================================
   Ultimate Modern CSS Reset
   Based on best practices from Eric Meyer,
   Josh W. Comeau, Andy Bell, and modern standards
   =============================================== */
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* 3. Set core body defaults */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* 4. Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

/* 7. Improve text rendering and wrapping */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

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

/* 9. Make images and media easier to work with */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 10. Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

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

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

/* 13. Root stacking context */
#root,
#__next {
  isolation: isolate;
}

/* 14. Enable keyword animations for modern browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
/* 15. HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* 16. Remove quotes from blockquotes and q elements */
blockquote,
q {
  quotes: none;
}

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

/* 17. Table border collapse */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 18. Focus management for accessibility */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* 19. Remove focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/*
* — Fonts —
*/
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: normal;
  src: url("../../assets/fonts/inter-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../../assets/fonts/inter-v20-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../../assets/fonts/inter-v20-latin-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Baloo";
  font-style: normal;
  font-weight: normal;
  src: url("../../assets/fonts/baloo-2-v23-latin-800.woff2") format("woff2");
}
/* ==========================
   00 – Variables
========================== */
/* ==========================
   00 – Variables
========================== */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 129.7rem;
  padding: 0 1.25rem;
}

/* ==========================
   00 – Variables
========================== */
.sr-only {
  border: 0;
  clip: rect(0.1rem, 0.1rem, 0.1rem, 0.1rem);
  clip-path: inset(50%);
  height: 0.1rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 0.1rem;
}

.sr-only-focusable {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

/* ==========================
   00 – Variables
========================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--medium);
  color: var(--dark);
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
}
@media screen and (max-width: 64em) {
  body {
    font-size: 1.5rem;
  }
}

body.overflow-hidden {
  overflow: hidden;
  position: fixed;
  inset: 0;
}

::selection {
  background: var(--gray);
  color: #FFF;
}

/* ==========================
   02 – Components
========================== */
/* ==========================
   00 – Variables
========================== */
.highlight {
  margin: 7.2rem 0;
}
@media screen and (max-width: 64em) {
  .highlight {
    margin: 5.2rem 0;
  }
}

.highlight__inner {
  border-radius: 2rem;
  padding: 6.4rem 10.8rem;
}
@media screen and (max-width: 64em) {
  .highlight__inner {
    padding: 8rem 1.6rem 2.4rem;
    text-align: left;
  }
}

.highlight--is-colored .highlight__inner {
  font-size: 4.8rem;
  font-family: "Baloo", sans-serif;
  text-transform: uppercase;
  background-color: var(--theme-color, var(--primary));
  color: var(--light);
}
@media screen and (max-width: 64em) {
  .highlight--is-colored .highlight__inner {
    font-size: 2.4rem;
  }
}

.highlight--is-transparent .highlight__inner {
  font-size: 4.8rem;
  font-family: "Baloo", sans-serif;
  text-transform: uppercase;
  background-color: var(--medium);
  color: var(--dark);
  padding: 0 10.8rem;
}
@media screen and (max-width: 64em) {
  .highlight--is-transparent .highlight__inner {
    font-size: 2.4rem;
    padding: 0;
    width: auto;
  }
}

.highlight--is-quote svg {
  margin-bottom: 3.2rem;
}
.highlight--is-quote .highlight__inner {
  font-size: 4rem;
  font-family: "Baloo", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
  background-color: var(--theme-color, var(--primary));
  color: var(--light);
  text-align: left;
  padding: 4rem 2.4rem;
}
@media screen and (max-width: 64em) {
  .highlight--is-quote .highlight__inner {
    font-size: 2.4rem;
    padding: 2.4rem 1.6rem;
  }
}
.highlight--is-quote blockquote {
  width: 77.358490566%;
}
@media screen and (max-width: 64em) {
  .highlight--is-quote blockquote {
    width: auto;
  }
}

.menu__list {
  list-style-type: "";
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 64em) {
  .menu__list {
    font-size: 1.6rem;
  }
}

.menu__list a {
  text-decoration: none;
}

.menu__sublist,
.menu__sublist-item {
  color: var(--dark-light);
  list-style-type: "";
  margin: 0;
  padding: 0;
}

.menu__sublist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
  position: relative;
}
@media screen and (max-width: 64em) {
  .menu__sublist {
    border-left: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
    display: block;
  }
}

@media screen and (max-width: 64em) {
  .menu__sublist-item {
    border-bottom: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
  }
}

.menu__clickable {
  background: none;
  border: 0;
  border-bottom: 0.2rem solid transparent;
  padding: 0;
  color: var(--light);
  transition: 0.2s ease border;
}
@media screen and (max-width: 64em) {
  .menu__clickable {
    align-items: center;
    display: flex;
    color: var(--dark);
    width: 100%;
    justify-content: space-between;
  }
}
.menu__clickable:hover {
  cursor: pointer;
}
.menu__clickable svg {
  display: none;
}
@media screen and (max-width: 64em) {
  .menu__clickable svg {
    display: block;
  }
}

.menu__clickable--is-active {
  border-bottom-color: var(--light);
}

.menu__modal {
  background-color: var(--light);
  position: fixed;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 64em) {
  .menu__modal {
    inset: 0;
    overflow: auto;
  }
}

.menu__modal--is-open {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 64em) {
  .menu__modal--is-open {
    z-index: 2;
  }
}

.menu__heading {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 64em) {
  .menu__heading {
    margin: 0 1.25rem 3.2rem;
  }
}

.menu__close {
  border: 0.1rem solid var(--dark-light);
  background: none;
  height: 2rem;
  width: 2rem;
  border-radius: 2rem;
  margin: 2rem 0;
  position: absolute;
  right: 2rem;
  top: 2rem;
  opacity: 0;
}
@media screen and (max-width: 64em) {
  .menu__close {
    display: none;
  }
}
.menu__close:hover, .menu__close:focus {
  cursor: pointer;
}
.menu__close:focus-visible {
  opacity: 1;
}

.menu--is-primary {
  margin-left: 4rem;
}
@media screen and (max-width: 64em) {
  .menu--is-primary {
    margin-left: 0;
    order: 1;
  }
}
.menu--is-primary .menu__list {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 64em) {
  .menu--is-primary .menu__list {
    display: none;
  }
}
.menu--is-primary .menu__list > li {
  position: relative;
}
@media screen and (max-width: 64em) {
  .menu--is-primary .menu__list > li {
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1215686275);
    padding: 2.4rem 0;
    font-weight: 500;
  }
}

.menu--is-secondary {
  margin-left: auto;
}
@media screen and (max-width: 64em) {
  .menu--is-secondary {
    display: none;
    order: 3;
  }
}
.menu--is-secondary .menu__list {
  display: flex;
  gap: 3.2rem;
}

.menu__sublist-item--level-1 {
  flex: 1;
  padding: 4rem 3.2rem;
  display: flex;
  border-left: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
  border-bottom: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
}
.menu__sublist-item--level-1:last-of-type {
  border-right: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
}
@media screen and (max-width: 64em) {
  .menu__sublist-item--level-1 {
    margin: 3.2rem 0;
    border: 0;
    display: block;
    padding: 0;
  }
  .menu__sublist-item--level-1:last-of-type {
    margin-bottom: 0;
    border: 0;
  }
}

@media screen and (max-width: 64em) {
  .menu__sublist-item--level-2 {
    padding: 0 1.25rem 3.2rem;
  }
}

.menu__sublist-item--level-2 li {
  margin-bottom: 2.4rem;
}
.menu__sublist-item--level-2 li:last-of-type {
  margin-bottom: 0;
}

.menu__toggle {
  background: none;
  border: 0;
  height: 4.4rem;
  display: none;
  width: 4.4rem;
  position: relative;
}
@media screen and (max-width: 64em) {
  .menu__toggle {
    display: block;
  }
}
.menu__toggle svg {
  margin: 0 auto;
}

.menu__toggle-open,
.menu__toggle-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: 0.3s ease all;
}

.menu__toggle-close {
  visibility: hidden;
  opacity: 0;
}

.menu__toggle[aria-expanded=true] .menu__toggle-close {
  opacity: 1;
  visibility: visible;
}
.menu__toggle[aria-expanded=true] .menu__toggle-open {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 64em) {
  .menu__wrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    position: fixed;
    inset: 0;
    padding: 0 2.8rem;
    overflow: auto;
  }
}

.menu__wrapper--is-open {
  background-color: var(--light);
  opacity: 1;
  visibility: visible;
}
.menu__wrapper--is-open .menu__list {
  display: block;
}

.menu__back {
  display: none;
  background: none;
  padding: 2.4rem 1.25rem;
  width: 100%;
  border: 0;
  border-bottom: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
  text-align: left;
}
.menu__back svg {
  margin-right: 0.8rem;
}
@media screen and (max-width: 64em) {
  .menu__back {
    align-items: center;
    display: flex;
  }
}

.menu--is-secondary-mobile {
  display: none;
  order: 3;
}
@media screen and (max-width: 64em) {
  .menu--is-secondary-mobile {
    display: block;
  }
}

.button {
  align-items: center;
  background-color: transparent;
  border: 0.1rem solid currentColor;
  border-radius: 4rem;
  box-shadow: 0 0.1rem 0 0 currentColor;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 4.4rem;
  padding: 1rem 4rem;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  color: var(--light);
}

.button--secondary {
  background-color: var(--medium);
  color: var(--dark);
}

.button--third {
  background-color: var(--light);
}

/* ==========================
   00 – Variables
========================== */
.image-text {
  margin: 8rem 0;
}
@media screen and (max-width: 64em) {
  .image-text {
    margin: 6.4rem 0;
  }
}

.image-text--image-multiple {
  margin: 8rem 0 11.2rem 0;
}
@media screen and (max-width: 64em) {
  .image-text--image-multiple {
    margin: 6.4rem 0 8rem 0;
  }
}

.image-text__inner {
  display: flex;
}
@media screen and (max-width: 64em) {
  .image-text__inner {
    flex-direction: column;
  }
}

.image-text__text {
  flex: 1;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}
.image-text__text p {
  margin-bottom: 2.4rem;
}
.image-text__text p:last-of-type {
  margin-bottom: 0;
}
.image-text__text ul {
  margin: 0 1.6rem 1.6rem;
}
.image-text__text li {
  margin-bottom: 1.2rem;
}
.image-text__text li:last-of-type {
  margin-bottom: 0;
}
.image-text__text a[href$=".pdf"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%233B3A38' d='m12 16-5-5 1.4-1.45 2.6 2.6V4h2v8.15l2.6-2.6L17 11l-5 5Zm-6 4c-.55 0-1.021-.196-1.413-.588A1.922 1.922 0 0 1 4 18v-3h2v3h12v-3h2v3c0 .55-.196 1.021-.588 1.413A1.922 1.922 0 0 1 18 20H6Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 2.4rem 2.4rem;
  background-position: left 2.4rem center;
  align-items: center;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  border: 0.1rem solid var(--dark);
  box-shadow: 0 0.1rem 0 0 var(--dark);
  display: flex;
  line-height: 1.5;
  padding: 2.4rem 2.4rem 2.4rem 6.8rem;
  min-height: 7.4rem;
  max-width: 43.1rem;
  border-radius: 4rem;
  width: 100%;
}
@media screen and (max-width: 64em) {
  .image-text__text a[href$=".pdf"] {
    min-height: auto;
    font-size: 1.5rem;
    padding: 1.2rem 1.2rem 1.2rem 6.8rem;
  }
}

.image-text__image {
  flex: 1;
  align-items: center;
  justify-content: center;
  display: flex;
}
.image-text__image img {
  border-radius: 2.4rem;
}

.image-text--left .image-text__text {
  padding-right: 11rem;
}
@media screen and (max-width: 64em) {
  .image-text--left .image-text__text {
    padding: 0;
  }
}
@media screen and (max-width: 64em) {
  .image-text--left .image-text__image {
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 64em) {
  .image-text--left .image-text__image--multiple {
    margin-top: 0;
  }
}

.image-text--right .image-text__inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 64em) {
  .image-text--right .image-text__inner {
    flex-direction: column;
  }
}
.image-text--right .image-text__text {
  padding-left: 11rem;
}
@media screen and (max-width: 64em) {
  .image-text--right .image-text__text {
    padding: 0;
  }
}
@media screen and (max-width: 64em) {
  .image-text--right .image-text__image {
    margin-top: 2.4rem;
  }
}

.image-text__intro {
  order: -1;
  text-transform: uppercase;
  font-size: 1.4rem;
}
@media screen and (max-width: 64em) {
  .image-text__intro {
    font-size: 1.2rem;
  }
}

.image-text__title {
  font-size: 4rem;
  font-family: "Baloo", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 64em) {
  .image-text__title {
    font-size: 2.4rem;
  }
}

.image-text__image--multiple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  padding-top: 4.8rem;
}
@media screen and (max-width: 64em) {
  .image-text__image--multiple {
    padding-top: 2.4rem;
  }
}
.image-text__image--multiple img {
  border-radius: 2rem;
}
.image-text__image--multiple img:nth-child(1) {
  transform: translateY(3.2rem);
}
@media screen and (max-width: 64em) {
  .image-text__image--multiple img:nth-child(1) {
    transform: translateY(1.6rem);
  }
}

/* ==========================
   00 – Variables
========================== */
.wp-block-image {
  max-width: 129.7rem;
  padding: 0 1.25rem;
  margin: 8rem auto;
}
@media screen and (max-width: 64em) {
  .wp-block-image {
    margin: 6.4rem 0;
  }
}
.wp-block-image img {
  margin: 0 auto;
  border-radius: 2rem;
}

/* ==========================
   00 – Variables
========================== */
.hero {
  background-color: var(--theme-color, var(--primary));
  color: var(--light);
  padding-top: 16rem;
  padding-bottom: 5.6rem;
}
@media screen and (max-width: 64em) {
  .hero {
    padding-top: 6.4rem;
    padding-bottom: 4rem;
  }
}

.hero__title {
  font-size: 8rem;
  text-transform: uppercase;
  font-family: "Baloo", sans-serif;
  margin-bottom: 8rem;
}
@media screen and (max-width: 64em) {
  .hero__title {
    font-size: 3.2rem;
  }
}

.hero__title--offset {
  margin-bottom: 23.2rem;
}
@media screen and (max-width: 64em) {
  .hero__title--offset {
    margin-bottom: 7.8rem;
  }
}

.hero__text {
  width: 40.5660377358%;
  box-sizing: content-box;
  line-height: 1.5;
  margin-left: auto;
  padding-right: 10.8rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 64em) {
  .hero__text {
    padding-right: 0;
    width: auto;
  }
}

@media screen and (max-width: 47.9375em) {
  .hero__image picture {
    aspect-ratio: 1;
  }
}
.hero__image picture img {
  border-radius: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .hero__image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.hero__highlight {
  margin: 0;
}
@media screen and (max-width: 64em) {
  .hero__highlight {
    margin: 0;
  }
}

.hero-homepage {
  color: var(--light);
  margin-top: -12.8rem;
  padding: 24rem 0 12rem;
}
@media screen and (max-width: 64em) {
  .hero-homepage {
    margin-top: 0;
    padding: 20rem 0 4rem;
  }
}
.hero-homepage .hero-homepage__inner {
  margin: 0 auto;
  width: 83.0188679245%;
}
@media screen and (max-width: 64em) {
  .hero-homepage .hero-homepage__inner {
    width: auto;
  }
}
.hero-homepage .hero-homepage__top {
  align-items: flex-end;
  display: flex;
}
@media screen and (max-width: 64em) {
  .hero-homepage .hero-homepage__top {
    align-items: center;
    flex-direction: column;
  }
}
.hero-homepage .hero-homepage__gift {
  margin: 0 auto;
}
@media screen and (max-width: 64em) {
  .hero-homepage .hero-homepage__gift {
    margin-top: 4rem;
  }
}
.hero-homepage .hero-homepage__title {
  font-family: "Baloo", sans-serif;
  font-size: 13.3rem;
  line-height: 0.8;
  text-transform: uppercase;
  width: min-content;
}
@media screen and (max-width: 64em) {
  .hero-homepage .hero-homepage__title {
    font-size: 7.6rem;
    width: auto;
  }
}
@media screen and (max-width: 22.5em) {
  .hero-homepage .hero-homepage__title {
    font-size: 5rem;
  }
}
.hero-homepage .hero-homepage__title span {
  display: block;
  font-size: 10.6rem;
}
@media screen and (max-width: 64em) {
  .hero-homepage .hero-homepage__title span {
    font-size: 6.1rem;
  }
}
@media screen and (max-width: 22.5em) {
  .hero-homepage .hero-homepage__title span {
    font-size: 4rem;
  }
}
.hero-homepage .hero-homepage__title:after, .hero-homepage .hero-homepage__title:before {
  background-color: currentColor;
  content: "";
  display: block;
  height: 0.8rem;
  width: 100%;
}
.hero-homepage .hero-homepage__title:before {
  margin-bottom: 4rem;
}
@media screen and (max-width: 64em) {
  .hero-homepage .hero-homepage__title:before {
    margin-bottom: 1.8rem;
  }
}
.hero-homepage .hero-homepage__title::after {
  margin-top: 4rem;
}
@media screen and (max-width: 64em) {
  .hero-homepage .hero-homepage__title::after {
    margin-top: 1.8rem;
  }
}
.hero-homepage .hero-homepage__text {
  font-family: "Baloo", sans-serif;
  font-size: 4.8rem;
  margin-top: 16rem;
  text-transform: uppercase;
}
@media screen and (max-width: 64em) {
  .hero-homepage .hero-homepage__text {
    font-size: 2.4rem;
  }
}

/* ==========================
   00 – Variables
========================== */
.text-columns {
  margin: 8rem 0 0;
}
@media screen and (max-width: 64em) {
  .text-columns {
    margin: 6.4rem 0 0;
  }
}
.text-columns + .text-columns:not(.text-columns--is-vertical):not(.text-columns--is-transparent) {
  margin: -2rem 0 0 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 64em) {
  .text-columns + .text-columns:not(.text-columns--is-vertical):not(.text-columns--is-transparent) {
    margin: -2rem 0 0 0;
  }
}
.text-columns + .text-columns:not(.text-columns--is-vertical):not(.text-columns--is-transparent) .text-columns__inner {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.text-columns + .highlight:not(.highlight--is-transparent) {
  margin: -2rem 0 0 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 64em) {
  .text-columns + .highlight:not(.highlight--is-transparent) {
    margin: -2rem 0 0 0;
  }
}
.text-columns + .highlight:not(.highlight--is-transparent) .highlight__inner {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.text-columns__inner {
  border-radius: 2rem;
  padding: 6.4rem 4rem 0;
}
@media screen and (max-width: 64em) {
  .text-columns__inner {
    padding: 4rem 1.6rem 0;
  }
}

.text-columns__title {
  font-size: 4rem;
  font-family: "Baloo", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 64em) {
  .text-columns__title {
    font-size: 2.4rem;
  }
}

.text-columns__text {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.text-columns__list {
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-top: 6.4rem;
  list-style-type: "";
}
@media screen and (max-width: 64em) {
  .text-columns__list {
    flex-wrap: wrap;
  }
}
.text-columns__list:has(> :nth-child(5)) {
  justify-content: flex-start;
}

.text-columns__list--3 .text-columns__item:last-of-type {
  border-right: 0;
}

.text-columns__list--4 .text-columns__item:nth-child(3) {
  border-right: 0.1rem solid var(--medium);
}
@media screen and (max-width: 64em) {
  .text-columns__list--4 .text-columns__item:nth-child(3) {
    border-right: 0;
  }
}
.text-columns__list--4 .text-columns__item:nth-child(4) {
  border-right: 0;
}

.text-columns__item {
  border-right: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
  padding: 3.2rem 2.4rem 6.4rem;
  width: 25%;
}
.text-columns__item:nth-child(3) {
  border-right: 0;
}
@media screen and (max-width: 64em) {
  .text-columns__item {
    border-right: 0;
    padding: 2.4rem 0;
    width: auto;
  }
  .text-columns__item:last-of-type {
    padding-bottom: 4.8rem;
  }
}

.text-columns__item-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.text-columns__item-text {
  line-height: 1.6;
}
.text-columns__item-text p {
  margin-bottom: 2.4rem;
}
.text-columns__item-text p:last-of-type {
  margin-bottom: 0;
}
.text-columns__item-text li {
  list-style-type: disc;
  margin-bottom: 2.4rem;
  margin-left: 1.6rem;
}
.text-columns__item-text li:last-of-type {
  margin-bottom: 0;
}

.text-columns--is-colored .text-columns__inner {
  background-color: var(--theme-color, var(--primary));
  color: var(--light);
  padding: 4rem 0 0;
}
@media screen and (max-width: 64em) {
  .text-columns--is-colored .text-columns__list {
    margin-top: 0;
    justify-content: flex-start;
  }
}
.text-columns--is-colored .text-columns__item {
  border-right-color: var(--medium);
}
@media screen and (max-width: 64em) {
  .text-columns--is-colored .text-columns__item {
    border-bottom: 0.1rem solid var(--medium);
    padding: 3.2rem 1.6rem 6.4rem;
    width: 50%;
  }
  .text-columns--is-colored .text-columns__item:first-child, .text-columns--is-colored .text-columns__item:nth-child(3) {
    border-right: 0.1rem solid var(--medium);
  }
  .text-columns--is-colored .text-columns__item:nth-child(3), .text-columns--is-colored .text-columns__item:nth-child(4) {
    border-bottom: 0;
  }
}
.text-columns--is-colored .text-columns__item:last-of-type {
  border-right: 0;
}
.text-columns--is-colored .text-columns__item-title {
  font-size: 4.8rem;
  font-family: "Baloo", sans-serif;
}

.text-columns--is-transparent .text-columns__inner {
  background-color: var(--light);
}
@media screen and (max-width: 64em) {
  .text-columns--is-transparent .text-columns__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 64em) {
  .text-columns--is-transparent .text-columns__item {
    border-bottom: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
  }
  .text-columns--is-transparent .text-columns__item:first-child {
    padding-top: 0;
  }
}

.text-columns--is-full .text-columns__item {
  width: 33.3333333333%;
}
@media screen and (max-width: 64em) {
  .text-columns--is-full .text-columns__item {
    width: auto;
  }
}
.text-columns--is-full .text-columns__inner {
  background-color: var(--light);
}
.text-columns--is-full .text-columns__title {
  text-align: center;
}
@media screen and (max-width: 64em) {
  .text-columns--is-full .text-columns__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 64em) {
  .text-columns--is-full .text-columns__item {
    border-bottom: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
  }
  .text-columns--is-full .text-columns__item:first-child {
    padding-top: 0;
  }
}

.text-columns--is-vertical .text-columns__inner {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 64em) {
  .text-columns--is-vertical .text-columns__inner {
    flex-direction: column;
    gap: 0;
  }
}
.text-columns--is-vertical .text-columns__header {
  padding-right: 1.6rem;
  width: 50%;
}
@media screen and (max-width: 64em) {
  .text-columns--is-vertical .text-columns__header {
    padding-right: 0;
    width: auto;
  }
}
.text-columns--is-vertical .text-columns__list {
  flex-direction: column;
  width: 50%;
  margin-top: 0;
}
@media screen and (max-width: 64em) {
  .text-columns--is-vertical .text-columns__list {
    width: auto;
    margin-top: 6.4rem;
  }
}
.text-columns--is-vertical .text-columns__item {
  border-bottom: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
  border-right: 0;
  width: auto;
  padding: 2.4rem 0;
}
.text-columns--is-vertical .text-columns__item:first-of-type {
  padding-top: 0;
}
.text-columns--is-vertical .text-columns__item:last-of-type {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 64em) {
  .text-columns--is-vertical .text-columns__item:last-of-type {
    margin-bottom: 4rem;
  }
}

.text-columns__list---is-wrapped {
  flex-wrap: nowrap;
}
@media screen and (max-width: 64em) {
  .text-columns__list---is-wrapped {
    flex-wrap: wrap;
  }
}
.text-columns__list---is-wrapped .text-columns__item {
  border-right: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
}
@media screen and (max-width: 64em) {
  .text-columns__list---is-wrapped .text-columns__item {
    border-right: 0;
  }
}
.text-columns__list---is-wrapped .text-columns__item:last-of-type {
  border-right: 0;
}

/* ==========================
   00 – Variables
========================== */
.card-list {
  margin: 8rem 0;
}
@media screen and (max-width: 64em) {
  .card-list {
    margin: 6.4rem 0;
  }
}

.card-list__title {
  font-size: 4rem;
  font-family: "Baloo", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 64em) {
  .card-list__title {
    font-size: 2.4rem;
  }
}

.card-list__text {
  font-size: 1.4rem;
}

.card-list__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 64em) {
  .card-list__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.card-list__card:not(.card-list__card--is-intro) {
  border: 0.1rem solid var(--dark);
  border-radius: 4rem;
  display: flex;
  align-items: flex-end;
  padding: 2.4rem;
}
@media screen and (max-width: 64em) {
  .card-list__card:not(.card-list__card--is-intro) {
    align-items: flex-start;
    flex-direction: column;
  }
}
.card-list__card:not(.card-list__card--is-intro) img {
  flex-shrink: 0;
  border-radius: 2rem;
}
@media screen and (max-width: 64em) {
  .card-list__card:not(.card-list__card--is-intro) img {
    align-self: center;
  }
}
.card-list__card:not(.card-list__card--is-intro) .card-list__card-text {
  font-size: 1.4rem;
  margin-left: 6rem;
  line-height: 1.6;
}
@media screen and (max-width: 64em) {
  .card-list__card:not(.card-list__card--is-intro) .card-list__card-text {
    margin-left: 0;
    margin-top: 2.4rem;
  }
}

/* ==========================
   00 – Variables
========================== */
.breadcrumb {
  font-size: 1.4rem;
  margin-bottom: 2.4rem;
  text-transform: uppercase;
}

.breadcrumb__list {
  list-style-type: "";
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb__item:not(.breadcrumb__item:last-of-type):after {
  content: "/";
  margin: 0 0.6rem;
}
.breadcrumb__item:last-of-type .breadcrumb__link {
  text-decoration: underline;
}

.breadcrumb__link {
  color: var(--light);
  text-decoration: none;
}

/* ==========================
   00 – Variables
========================== */
.download {
  margin: 8rem 0;
}
@media screen and (max-width: 64em) {
  .download {
    margin: 6.4rem 0;
  }
}

.download__title {
  font-size: 4rem;
  font-family: "Baloo", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 64em) {
  .download__title {
    font-size: 2.4rem;
  }
}

.download__list {
  flex-wrap: wrap;
  list-style-type: "";
  display: flex;
  gap: 2.4rem;
}

.download__item {
  width: calc(33.3333333333% - 2.4rem);
}
@media screen and (max-width: 64em) {
  .download__item {
    width: auto;
  }
}

.download__link {
  align-items: center;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  border: 0.1rem solid var(--dark);
  box-shadow: 0 0.1rem 0 0 var(--dark);
  display: flex;
  line-height: 1.5;
  padding: 2.4rem;
  min-height: 15.2rem;
  border-radius: 4rem;
  width: 100%;
}
@media screen and (max-width: 64em) {
  .download__link {
    min-height: auto;
    font-size: 1.5rem;
  }
}
.download__link svg {
  flex-shrink: 0;
  margin-right: 6rem;
}
@media screen and (max-width: 64em) {
  .download__link svg {
    margin-right: 1.6rem;
  }
}

/* ==========================
   00 – Variables
========================== */
.timeline {
  margin: 8rem 0;
}
@media screen and (max-width: 64em) {
  .timeline {
    margin: 6.4rem 0;
  }
}

.timeline__inner {
  display: flex;
}
@media screen and (max-width: 64em) {
  .timeline__inner {
    flex-direction: column;
  }
}

.timeline__intro {
  width: 48.9779874214%;
  padding-right: 3.2rem;
}
@media screen and (max-width: 64em) {
  .timeline__intro {
    padding-right: 0;
    width: auto;
  }
}

.timeline__title {
  font-size: 4rem;
  font-family: "Baloo", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 64em) {
  .timeline__title {
    font-size: 2.4rem;
  }
}

.timeline__container {
  position: relative;
  width: 51.0220125786%;
}
@media screen and (max-width: 64em) {
  .timeline__container {
    width: auto;
  }
}

.timeline__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3.2rem;
  padding: 0;
  line-height: 1.5;
  list-style-type: "";
  margin: 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 64em) {
  .timeline__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0.8rem;
  }
}

.timeline__list::before,
.timeline__list::after {
  content: "";
  position: absolute;
  top: -8rem;
  bottom: 8rem;
  width: 0.1rem;
  background-color: rgba(23, 26, 28, 0.1215686275);
}
@media screen and (max-width: 64em) {
  .timeline__list::before,
  .timeline__list::after {
    display: none;
  }
}

.timeline__list::before {
  left: 0;
}

.timeline__list::after {
  left: 50%;
}

.timeline__item {
  border-left: 0.2rem solid var(--gray);
  color: var(--gray);
  padding: 0 2.4rem 1rem;
}
@media screen and (max-width: 64em) {
  .timeline__item {
    padding: 0 1.2rem 0;
  }
}

.timeline__item-title {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--gray);
}
@media screen and (max-width: 64em) {
  .timeline__item-title {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}

.timeline__item-link {
  text-decoration: underline;
  color: var(--gray);
  display: block;
  margin-bottom: 1.2rem;
}

.timeline__item-description {
  font-size: 1.4rem;
}
@media screen and (max-width: 64em) {
  .timeline__item-description {
    font-size: 1.2rem;
  }
}

.timeline__timeline-more {
  position: absolute;
  cursor: pointer;
  bottom: 3rem;
  left: 0;
  right: 0;
  width: fit-content;
  margin: 0 auto;
  z-index: 2;
}

.timeline__timeline--is-open::after {
  display: none;
}
.timeline__timeline--is-open .timeline__list {
  height: auto;
}

/* ==========================
   00 – Variables
========================== */
.edito {
  margin: 8rem 0;
}
@media screen and (max-width: 64em) {
  .edito {
    margin: 6.4rem 0;
  }
}

.edito__title {
  font-size: 4rem;
  font-family: "Baloo", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 64em) {
  .edito__title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
}

.edito__content {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 64em) {
  .edito__content {
    flex-direction: column;
  }
}

.edito__image {
  width: 32.0754716981%;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 64em) {
  .edito__image {
    width: auto;
  }
}

.edito__text {
  width: 54.5597484277%;
  line-height: 1.6;
}
@media screen and (max-width: 64em) {
  .edito__text {
    width: auto;
    order: -1;
  }
}
.edito__text p,
.edito__text ul {
  margin-bottom: 2.4rem;
}
.edito__text p:last-of-type,
.edito__text ul:last-of-type {
  margin-bottom: 0;
}

/* ==========================
   03 – Layout
========================== */
.header {
  background-color: var(--theme-color, var(--primary));
  color: var(--light);
  padding: 2.4rem 0;
}
@media screen and (max-width: 64em) {
  .header {
    border-bottom: 0.1rem solid rgba(23, 26, 28, 0.1215686275);
    padding: 0.8rem 0;
  }
}

.header__inner {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 64em) {
  .header__inner {
    justify-content: space-between;
  }
}

@media screen and (max-width: 64em) {
  .header__logo {
    order: 2;
  }
  .header__logo svg {
    width: 4.6rem;
  }
}
.header__logo a {
  display: block;
}

/* ==========================
   00 – Variables
========================== */
.footer {
  background-color: var(--dark-light);
  color: var(--light);
  margin-top: 8rem;
  padding: 6.4rem 0 2.4rem;
}
@media screen and (max-width: 64em) {
  .footer {
    padding: 4.8rem 0 2.4rem;
    margin-top: 6.4rem;
  }
}

.footer__top {
  align-items: center;
  display: flex;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1215686275);
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1215686275);
}
@media screen and (max-width: 47.9375em) {
  .footer__top {
    flex-direction: column-reverse;
    padding: 2.4rem 0 0;
  }
}

.footer__logo {
  border-right: 0.1rem solid rgba(255, 255, 255, 0.1215686275);
  padding: 4rem 3.2rem 3rem;
  width: 25.786163522%;
}
@media screen and (max-width: 47.9375em) {
  .footer__logo {
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1215686275);
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1215686275);
    border-right: 0;
    margin-top: 2.4rem;
    padding: 4rem 0 7rem;
    width: 100%;
  }
}

.footer__logo svg {
  margin: 0 auto;
}
@media screen and (max-width: 64em) {
  .footer__logo svg {
    width: 13.6rem;
  }
}

.footer__menu {
  margin-left: auto;
}
@media screen and (max-width: 47.9375em) {
  .footer__menu {
    margin: 0;
    width: 100%;
  }
}

.footer__menu-list {
  display: flex;
  gap: 4.4rem;
  list-style-type: "";
}
@media screen and (max-width: 47.9375em) {
  .footer__menu-list {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.footer__menu-list a {
  align-items: center;
  background-color: var(--light);
  border: 0.1rem solid currentColor;
  border-radius: 4rem;
  box-shadow: 0 0.1rem 0 0 currentColor;
  color: var(--gray);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 4.4rem;
  padding: 1rem 4rem;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 47.9375em) {
  .footer__menu-list a {
    width: 100%;
  }
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 2.4rem 0 0 3.2rem;
}
@media screen and (max-width: 64em) {
  .footer__bottom {
    flex-direction: column;
    padding: 2.4rem 0 0;
  }
}

.footer__social-list {
  align-items: center;
  display: flex;
  gap: 2rem;
  list-style-type: "";
}

.footer__social-link {
  color: var(--light-gray);
  text-decoration: none;
}

.footer__copyright {
  color: var(--light-gray);
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (max-width: 64em) {
  .footer__copyright {
    margin-top: 1.6rem;
  }
}
.footer__copyright p {
  margin-bottom: 1rem;
}
.footer__copyright p:last-of-type {
  margin-bottom: 0;
}

/* ==========================
   00 – Variables
========================== */
.path {
  margin: 12.5rem 0;
}
@media screen and (max-width: 64em) {
  .path {
    margin: 6rem 0;
  }
}

.path__inner {
  display: flex;
}
@media screen and (max-width: 64em) {
  .path__inner {
    flex-direction: column;
  }
}

.path__intro {
  width: 48.9779874214%;
  padding-right: 3.2rem;
}
@media screen and (max-width: 64em) {
  .path__intro {
    padding-right: 0;
    width: auto;
  }
}

.path__title {
  font-size: 4rem;
  font-family: "Baloo", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 64em) {
  .path__title {
    font-size: 2.4rem;
  }
}

.path__timeline {
  position: relative;
  width: 51.0220125786%;
}
@media screen and (max-width: 64em) {
  .path__timeline {
    width: auto;
  }
}

.path__timeline::after {
  background: linear-gradient(180deg, rgba(238, 225, 206, 0) 0%, #EEE1CE 100%);
  content: "";
  position: absolute;
  bottom: -5.5rem;
  height: 17rem;
  left: 0;
  right: 0;
}

.path__timeline-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3.2rem;
  padding: 0;
  list-style-type: "";
  margin: 0;
  position: relative;
  height: 40rem;
  overflow: hidden;
}
@media screen and (max-width: 64em) {
  .path__timeline-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0.8rem;
  }
}

.path__timeline-list::before,
.path__timeline-list::after {
  content: "";
  position: absolute;
  top: -8rem;
  bottom: 8rem;
  width: 0.1rem;
  background-color: rgba(23, 26, 28, 0.1215686275);
}
@media screen and (max-width: 64em) {
  .path__timeline-list::before,
  .path__timeline-list::after {
    display: none;
  }
}

.path__timeline-list::before {
  left: 0;
}

.path__timeline-list::after {
  left: 50%;
}

.path__timeline-item {
  border-left: 0.2rem solid var(--gray);
  color: var(--gray);
  padding: 0 2.4rem 1rem;
}
@media screen and (max-width: 64em) {
  .path__timeline-item {
    padding: 0 1.2rem 0;
  }
}

.path__timeline-link {
  text-decoration: underline;
  color: var(--gray);
  display: block;
  margin-bottom: 1.2rem;
}

.path__timeline-reference {
  font-size: 1.4rem;
}
@media screen and (max-width: 64em) {
  .path__timeline-reference {
    font-size: 1.2rem;
  }
}

.path__timeline-more {
  position: absolute;
  cursor: pointer;
  bottom: 3rem;
  left: 0;
  right: 0;
  width: fit-content;
  margin: 0 auto;
  z-index: 2;
}

.path__timeline--is-open::after {
  display: none;
}
.path__timeline--is-open .path__timeline-list {
  height: auto;
}

/* ==========================
   04 – Pages
========================== */
.error {
  margin: 8rem 0 0;
  text-align: center;
}
@media screen and (max-width: 64em) {
  .error {
    margin: 6.4rem 0 0;
  }
}

.error__title {
  margin-bottom: 2rem;
}

.error__text {
  margin-bottom: 2rem;
}

/* ==========================
   00 – Variables
========================== */
.contact__inner {
  display: flex;
  gap: 7.4rem;
  margin: 8rem 0 0;
}
@media screen and (max-width: 64em) {
  .contact__inner {
    margin: 6.4rem 0 0;
    flex-direction: column;
    gap: 3.2rem;
  }
}

.contact__image {
  flex-shrink: 0;
  width: 45.2830188679%;
}
@media screen and (max-width: 64em) {
  .contact__image {
    width: auto;
  }
}

.contact__form {
  flex: 1;
}
.contact__form .hidden-fields-container,
.contact__form .screen-reader-response {
  display: none;
}
.contact__form .wpcf7-not-valid-tip {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 0.8rem;
}
.contact__form .wpcf7-response-output {
  margin-top: 4rem;
}

.contact__column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 3.2rem;
}
@media screen and (max-width: 64em) {
  .contact__column {
    display: block;
  }
}

.contact__mention {
  font-size: 1.4rem;
  margin-bottom: 2.4rem;
}

.contact__item {
  margin-bottom: 4rem;
}
.contact__item label {
  margin-bottom: 0.8rem;
  display: block;
}
.contact__item input {
  background: none;
  border: 0;
  border-bottom: 0.1rem solid var(--dark);
  font-weight: 500;
  width: 100%;
  min-height: 4.4rem;
}
.contact__item input.wpcf7-not-valid {
  border-color: currentColor;
  color: var(--primary);
}
.contact__item textarea {
  background: none;
  border: 0.1rem solid var(--dark);
  width: 100%;
  padding: 1.6rem;
}

.content {
  margin: 6rem 0;
}

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