@import url("https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,400;1,600&display=swap");
p {
  line-height: 2;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
}

a {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
}
a img {
  border: 0;
}

li {
  list-style: none;
}

fieldset {
  border: 0;
}

button {
  border: 0;
  text-align: left;
  background: transparent;
}

*:focus {
  outline: none;
}

button, input, textarea {
  font: inherit;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 90%;
}
@media screen and (min-width: 750px) {
  html {
    font-size: 75%;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 80%;
  }
}
@media screen and (min-width: 1150px) {
  html {
    font-size: 85%;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 90%;
  }
}
@media screen and (min-width: 1375px) {
  html {
    font-size: 95%;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 1750px) {
  html {
    font-size: 105%;
  }
}
@media screen and (min-width: 2150px) {
  html {
    font-size: 120%;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #9C3D1A;
  color: #9C3D1A;
  background-color: #FFFAF6;
  position: relative;
}
body.open-menu {
  position: fixed;
}
body.debug * {
  outline: 1px solid rgba(255, 0, 0, 0.107);
  background-color: rgba(255, 0, 0, 0.108);
}

::-webkit-scrollbar {
  width: 0.4rem;
  background-color: #FFFAF6;
}

::-webkit-scrollbar-thumb {
  background-color: #9C3D1A;
}

::-moz-selection {
  background-color: #9C3D1A;
  color: #E95B29;
}

::selection {
  background-color: #9C3D1A;
  color: #E95B29;
}

.cookie-notice {
  position: fixed;
  z-index: 9999;
  background-color: #FFFAF6;
  padding: 2em;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #9C3D1A;
  border-radius: 10px;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.cookie-notice--open {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media screen and (min-width: 1024px) {
  .cookie-notice {
    left: unset;
    bottom: 2em;
    right: 2em;
  }
}
.cookie-notice__text {
  color: #9C3D1A;
}

.cookie-notice__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  width: 100%;
  gap: 2em;
}

.cookie-notice__wrapper > div {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .cookie-notice__wrapper > div {
    text-align: left;
  }
}
.cookie-notice__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}

@media screen and (min-width: 650px) {
  .cookie-notice__footer {
    gap: 2em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .cookie-notice__footer {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.cookie-notice__link {
  text-decoration: underline;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookie-notice__link:after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg width='24' xmlns='http://www.w3.org/2000/svg' height='24' fill='none' viewBox='0 0 24 24'><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9.25 4.75H6.75C5.64543 4.75 4.75 5.64543 4.75 6.75V17.25C4.75 18.3546 5.64543 19.25 6.75 19.25H17.25C18.3546 19.25 19.25 18.3546 19.25 17.25V14.75'/><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19.25 9.25V4.75H14.75'/><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19 5L11.75 12.25'/></svg>");
  background-size: cover;
  width: 16px;
  height: 16px;
  margin-left: 0.25em;
}

.cookie-notice__button {
  cursor: pointer;
  text-align: center;
  border: 1px solid #9C3D1A;
  color: #9C3D1A;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  padding: 0.6666666667em 1em;
}

.cookie-notice__button:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.cookie-notice__button--agree {
  background-color: #9C3D1A;
  color: white;
}

.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__slide a {
  display: block;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #FFFAF6;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 3rem;
  width: 3rem;
  aspect-ratio: 1/1;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: opacity 300ms ease-in-out, scale 300ms ease-in-out;
  transition: opacity 300ms ease-in-out, scale 300ms ease-in-out;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
  scale: 1.1;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--next {
  right: 1em;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  width: 8px;
}
@media (prefers-reduced-motion: no-preference) {
  .splide__pagination__page {
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  }
}

.splide__pagination__page.is-active {
  background: #fff;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.carousel-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.carousel-image {
  overflow: hidden;
}
.carousel-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -webkit-transition: scale 600ms ease-in-out;
  transition: scale 600ms ease-in-out;
}
.carousel-image--pdf {
  position: relative;
}
.carousel-image--pdf:before {
  content: "";
  width: 15px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 1rem;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.92 20"><path fill="%23E95B29" d="M15.68,7.21L9.71,1.24c-.81-.8-1.87-1.24-3.01-1.24h-2.45C1.91,0,0,1.9,0,4.25v11.5c0,2.34,1.91,4.25,4.25,4.25h8.42c2.34,0,4.25-1.91,4.25-4.25v-5.53c0-1.14-.44-2.2-1.24-3.01ZM8.9,2.55l5.46,5.47h-4.21c-.69,0-1.25-.56-1.25-1.25V2.55ZM15.42,15.75c0,1.52-1.23,2.75-2.75,2.75H4.25c-1.51,0-2.75-1.23-2.75-2.75V4.25c0-1.52,1.24-2.75,2.75-2.75h2.45c.24,0,.47.03.7.09v5.18c0,1.51,1.23,2.75,2.75,2.75h5.18c.06.23.09.46.09.7v5.53ZM11.71,15c-.28,0-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5h1.5c.28,0,.5.22.5.5s-.22.5-.5.5h-1v.75h1c.28,0,.5.22.5.5s-.22.5-.5.5h-1v.75c0,.28-.22.5-.5.5ZM8.21,15h-.5c-.28,0-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5h.5c1.1,0,2,.9,2,2s-.9,2-2,2ZM8.21,12v2c.55,0,1-.45,1-1s-.45-1-1-1ZM3.71,15c-.28,0-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5h1c.83,0,1.5.67,1.5,1.5s-.67,1.5-1.5,1.5h-.5v.5c0,.28-.22.5-.5.5ZM4.21,13h.5c.28,0,.5-.22.5-.5s-.22-.5-.5-.5h-.5v1Z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  background-color: #FFFAF6;
  border-radius: 50%;
  border: 2px solid #E95B29;
  z-index: 3;
}
.carousel-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(20, 20, 20, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 22'%3E%3Cpath fill='%23FFFAF6' d='M15,7c2.21,0,4,1.79,4,4s-1.79,4-4,4-4-1.79-4-4,1.79-4,4-4ZM29.94,10.66C27.54,4.44,21.66.25,15,0,8.34.25,2.46,4.44.06,10.66c-.08.22-.08.46,0,.68,2.4,6.22,8.28,10.41,14.94,10.66,6.66-.25,12.54-4.44,14.94-10.66.08-.22.08-.46,0-.68M15,17.5c-3.59,0-6.5-2.91-6.5-6.5s2.91-6.5,6.5-6.5,6.5,2.91,6.5,6.5c0,3.59-2.91,6.49-6.5,6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  opacity: 0;
  -webkit-transition: opacity 600ms ease-in-out;
  transition: opacity 600ms ease-in-out;
}
.carousel-image:hover:after {
  opacity: 1;
}
.carousel-image:hover img {
  scale: 1.04;
}

.photo-text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .photo-text-block {
    gap: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.photo-text-block__photo {
  position: relative;
}
.photo-text-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .photo-text-block__content {
    width: 70%;
    padding-left: 3rem;
  }
  .photo-text-block__content:after {
    content: "";
    width: 4px;
    height: 80%;
    position: absolute;
    background-color: #E95B29;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .photo-text-block__content:before {
    content: "";
    height: 4px;
    width: 3rem;
    background-color: #E95B29;
    position: absolute;
    top: calc(90% - 4px);
    left: 0;
    z-index: -1;
  }
}
.photo-text-block__header {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .photo-text-block__header {
    width: 30%;
    padding-right: 3rem;
  }
  .photo-text-block__header:after {
    content: "";
    height: 4px;
    width: 3rem;
    background-color: #E95B29;
    position: absolute;
    top: 10%;
    right: 0;
    z-index: -1;
  }
}
.text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .text-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.text-block--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.text-block--vertical:after {
  content: "";
  width: 100%;
  aspect-ratio: 5/3;
  position: absolute;
  right: -10%;
  top: 50%;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 635.68 331.98'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23e85c28; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='m399.18,331.98H85.61L0,261.51,209.59,84.48h185.23l6.53-7.47,2.26,1.97-2.26-1.97L468.61,0l166.27,178.43-2.2,2.04h3v122.5h-6v-120.55l-225.27-99.81-5.23,5.99v243.37Zm-311.42-6h305.42V90.48h-181.4L9.37,261.45l78.39,64.53ZM408.55,77.88l211.95,93.91L468.76,8.96l-60.21,68.93Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom left;
  opacity: 0.3;
}
@media screen and (min-width: 1024px) {
  .text-block--vertical:after {
    opacity: 1;
    width: 50%;
  }
}
div.text-block--horizontal .text-block__header {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  div.text-block--horizontal .text-block__header {
    width: 30%;
  }
}
div.text-block--vertical .text-block__body {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  div.text-block--vertical .text-block__body {
    max-width: 60%;
  }
}
.text-block__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
div.text-block--horizontal .text-block__wrapper {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  div.text-block--horizontal .text-block__wrapper {
    width: 70%;
  }
}

.button-wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button {
  cursor: pointer;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
  color: #9C3D1A;
  background-color: #FFFAF6;
  border-radius: 10px;
  border: 1px solid #9C3D1A;
  position: relative;
  border-right-width: 5px;
  border-bottom-width: 5px;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: transform 300ms ease-in-out, border-right-width 300ms ease-in-out, border-bottom-width 300ms ease-in-out;
  -webkit-transition: border-right-width 300ms ease-in-out, border-bottom-width 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: border-right-width 300ms ease-in-out, border-bottom-width 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, border-right-width 300ms ease-in-out, border-bottom-width 300ms ease-in-out;
  transition: transform 300ms ease-in-out, border-right-width 300ms ease-in-out, border-bottom-width 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}
.button:hover {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  border-right-width: 1px;
  border-bottom-width: 1px;
}
.button--secondary {
  color: #E95B29;
  border-color: #E95B29;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
  border: 1px solid #E95B29;
  padding: 8px;
  color: #E95B29;
  cursor: pointer;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: transform 300ms ease-in-out;
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  width: 100%;
}
.card__photo {
  width: 100%;
}
.card__photo img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__title {
  text-transform: uppercase;
  font-family: "ABeeZee", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1rem, 0.3846153846rem + 3.0769230769vw, 2rem);
  width: 100%;
}
.card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}
@media screen and (min-width: 650px) {
  .card__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}
.card__body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #9C3D1A;
  width: 100%;
}
.card:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.card:hover .button {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  border-right-width: 1px;
  border-bottom-width: 1px;
}

.hamburger-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .hamburger-container {
    display: none;
  }
}

.hamburger {
  cursor: pointer;
  width: 32px;
  height: 20px;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.hamburger-top, .hamburger-mid, .hamburger-bot {
  position: absolute;
  background: #E95B29;
  top: 0px;
  left: 0px;
  width: 32px;
  height: 3px;
  -webkit-transform-origin: center;
          transform-origin: center;
  border-radius: 2px;
}
.hamburger-top {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.hamburger-mid {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}
.hamburger-bot {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transform: translateY(14px);
          transform: translateY(14px);
}
.hamburger.open {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}
.hamburger.open .hamburger-mid {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.hamburger.open .hamburger-bot {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.open .hamburger-top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.icon-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  gap: 1rem;
}
.icon-link__icon {
  height: 100%;
  padding-top: 3px;
}

.icon {
  /*
  	Config
   */
  display: block;
  width: 0.4rem;
  height: 0.4rem;
}
@media screen and (min-width: 650px) {
  .icon {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #9C3D1A;
}
.icon--dim svg {
  fill: #E95B29;
}

.logo {
  width: 150px;
}
.logo path {
  fill: #E95B29;
}
.logo--alt path {
  fill: #FFFAF6;
}

.page-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 6rem 0;
}
.page-intro__header, .page-intro__body {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .page-intro__header, .page-intro__body {
    width: 40%;
  }
}
.page-intro__body {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (min-width: 1024px) {
  .page-intro__body {
    text-align: right;
  }
}

.photo {
  display: block;
  width: 100%;
}
.photo img {
  display: block;
  width: 100%;
}

.property-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.property-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid #9C3D1A;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.property-list__column {
  width: 50%;
}
.property-list__key {
  font-size: 1.4rem;
}
.property-list__value {
  text-align: right;
}

.sticky-text-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .sticky-text-gallery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sticky-text-gallery__column {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .sticky-text-gallery__column:first-child {
    width: 40%;
  }
  .sticky-text-gallery__column:last-child {
    width: 60%;
  }
}
.sticky-text-gallery__container {
  height: 100%;
  position: relative;
}
.sticky-text-gallery__content {
  position: sticky;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.sticky-text-gallery__photo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.sticky-text-gallery__photo {
  width: 75%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
  background-color: #FFFAF6;
}
.sticky-text-gallery__photo--horizontal {
  width: 90%;
}
.sticky-text-gallery__photo:nth-child(even) {
  padding: 8px;
  border: 4px solid #E95B29;
}
.sticky-text-gallery__photo:nth-child(even):before, .sticky-text-gallery__photo:nth-child(even):after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  z-index: -1;
}
.sticky-text-gallery__photo:nth-child(even):after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 150px;
  height: 100px;
  top: 50%;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 234.37 206'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23e85c28; %7D %3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='143.52 206 3.38 206 3.38 200 141.5 200 224.65 136.92 62.95 6 0 6 0 0 65.07 0 65.9 .67 234.37 137.08 143.52 206'/%3E%3C/svg%3E");
  right: -150px;
}
@media screen and (min-width: 1024px) {
  .sticky-text-gallery__photo:nth-child(even):after {
    width: 140px;
    height: 160px;
  }
}
.sticky-text-gallery__photo:nth-child(even):before {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 158.83 240.35'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23e85c28; %7D %3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='154.62 240.35 0 87.74 0 0 6 0 6 85.23 158.83 236.08 154.62 240.35'/%3E%3C/svg%3E");
  width: 140px;
  height: 160px;
  top: 100%;
  left: 60%;
}
.sticky-text-gallery__photo:nth-child(odd) {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.sticky-text-gallery__photo:nth-child(odd):after {
  content: "";
  width: 140px;
  height: 160px;
  position: absolute;
  bottom: -100px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 182.2 233.48'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23e85c28; %7D %3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='167.37 233.48 0 135.21 178.58 0 182.2 4.78 10.77 134.58 170.41 228.3 167.37 233.48'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  left: -70px;
  z-index: -1;
}
.sticky-text-gallery__photo:last-child:before, .sticky-text-gallery__photo:last-child:after {
  content: unset;
}
.sticky-text-gallery__photo img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.sticky-text-gallery__photo img {
  display: block;
  width: 100%;
}

.title {
  font-family: "ABeeZee", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.title__subtitle {
  color: #9C3D1A;
}
.title__content {
  color: #E95B29;
  font-size: clamp(2rem, 1.3846153846rem + 3.0769230769vw, 3rem);
}
.title__content > span:nth-child(2), .title__content > span:first-child {
  color: #9C3D1A;
}
.title--secondary .title__content {
  font-size: clamp(1rem, 0.3846153846rem + 3.0769230769vw, 2rem);
}

.checkbox {
  /*
  Config
  */
  position: relative;
  padding-left: 2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.checkbox__field {
  position: absolute;
  top: 40%;
  left: 0;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1rem;
  height: 1rem;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  opacity: 0;
}
.checkbox__label {
  color: #9C3D1A;
  cursor: pointer;
}
.checkbox__label:before, .checkbox__label:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1rem;
  height: 1rem;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
}
.checkbox__label:before {
  border: 1px solid #9C3D1A;
  background-color: transparent;
  vertical-align: middle;
  border: 1px solid #9C3D1A;
}
.checkbox__label:after {
  -webkit-transform: scale(0) translateY(-40%);
          transform: scale(0) translateY(-40%);
  background-color: #E95B29;
  -webkit-transition: background-color 0.1s, -webkit-transform 0.15s;
  transition: background-color 0.1s, -webkit-transform 0.15s;
  transition: background-color 0.1s, transform 0.15s;
  transition: background-color 0.1s, transform 0.15s, -webkit-transform 0.15s;
  border: 1px solid #9C3D1A;
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
}
.checkbox__label a {
  border-bottom: 1px solid #E95B29;
  color: #E95B29;
}
.checkbox input:checked + label:after {
  -webkit-transform: scale(1) translateY(-40%);
          transform: scale(1) translateY(-40%);
}

.field {
  /*
  	Config
   */
  display: block;
  width: 100%;
  padding: 0.7rem;
  padding-left: 1rem;
  border: 0;
  border-radius: 0;
  border: 1px solid #E95B29;
  color: #9C3D1A;
  background-color: #FFFAF6;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0.5rem;
}
.field::-ms-expand {
  display: none;
}
.field::-webkit-input-placeholder {
  color: #9C3D1A;
}
.field::-moz-placeholder {
  color: #9C3D1A;
}
.field:-ms-input-placeholder {
  color: #9C3D1A;
}
.field::-ms-input-placeholder {
  color: #9C3D1A;
}
.field::placeholder {
  color: #9C3D1A;
}
.field:active, .field:focus {
  border-color: #E95B29;
}
.field--negative {
  border: none;
}

.fieldset-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.fieldset-group__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-bottom: 2rem;
}
.fieldset-group__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 650px) {
  .fieldset-group__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin: 0 0.5rem;
  }
  .fieldset-group__item:first-child {
    margin-left: 0;
  }
  .fieldset-group__item:last-child {
    margin-right: 0;
  }
}

.fieldset {
  display: block;
  width: 100%;
  color: #E95B29;
}
.fieldset__label {
  margin-bottom: 0.5rem;
}
.fieldset__input {
  /* for reference */
}
.fieldset--required .fieldset__label > label {
  position: relative;
}
.fieldset--required .fieldset__label > label:after {
  content: "(*)";
  position: absolute;
  left: calc(100% + 5px);
}

.form {
  display: block;
  width: 100%;
}
.form__header {
  margin-bottom: 2rem;
}
.form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.form__footer {
  margin-top: 2rem;
}

.label { /* for reference */ }

.textarea {
  /*
  	Config
   */
  display: block;
  width: 100%;
  height: 100%;
  min-height: 7rem;
  padding: 1rem;
  padding-left: 1rem;
  border: 0;
  border-radius: 0;
  border: 1px solid #E95B29;
  resize: none;
  color: #E95B29;
  background-color: #FFFAF6;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  border-radius: 10px;
}
.textarea:active, .textarea:focus {
  border-color: #E95B29;
}
.textarea::-webkit-input-placeholder {
  color: #E95B29;
}
.textarea::-moz-placeholder {
  color: #E95B29;
}
.textarea:-ms-input-placeholder {
  color: #E95B29;
}
.textarea::-ms-input-placeholder {
  color: #E95B29;
}
.textarea::placeholder {
  color: #E95B29;
}

.breadcrumbs {
  /*
  	Config
   */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #9C3D1A;
}
.breadcrumbs__item {
  position: relative;
  display: block;
  padding-left: 1rem;
  margin-left: 1rem;
}
.breadcrumbs__item:nth-last-child(n+3), .breadcrumbs__item:nth-last-child(n+4) {
  display: none;
}
.breadcrumbs__item:first-child {
  display: block;
  padding-left: 0;
  margin-left: 0;
}
.breadcrumbs__item:first-child:after {
  display: none;
}
.breadcrumbs__item:after {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  bottom: 0.15em;
  width: 1px;
  background-color: #9C3D1A;
}
@media screen and (min-width: 1024px) {
  .breadcrumbs__item:nth-last-child(n+3), .breadcrumbs__item:nth-last-child(n+4) {
    display: block;
  }
}

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  grid-gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 6rem;
  }
}
.card-grid__item {
  grid-row: span 4;
  width: 100%;
}
.card-grid__spacer {
  display: none;
}
@media screen and (min-width: 1024px) {
  .card-grid__spacer {
    display: block;
  }
}

.company-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .company-info {
    grid-template-columns: 1fr 1fr;
  }
}
.company-info > a {
  cursor: pointer;
}

.content-block {
  width: 100%;
  border-top: 1px solid #E95B29;
  padding: 4rem 0;
}
@media screen and (min-width: 1024px) {
  .content-block {
    padding: 6rem 0;
  }
}
.content-block--columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .content-block--columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.content-block--project {
  padding-top: 0;
}
.content-block--no-border {
  border-top: unset;
}
.content-block__column {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.content-block__column-right, .content-block__column-left {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .content-block__column-right, .content-block__column-left {
    width: 50%;
  }
}
.content-block__column-left {
  padding-right: 2rem;
}
.content-block__column-right {
  padding-left: 2rem;
  margin-top: 4rem;
}
@media screen and (min-width: 1024px) {
  .content-block__column-right {
    margin-top: unset;
  }
}

.content-section {
  display: block;
  width: 100%;
}
.content-section__header {
  margin-top: 4rem;
}
.content-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer {
  padding: 2rem 0;
  background-color: #9C3D1A;
  color: #FFFAF6;
  position: relative;
}
.footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1146.4 654.76'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff5ec; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='m755.93,165.79h-304.59l-8.67-.49L301.6,0,0,348.94v233.7h42.25v-212.82l358.19-169.69v454.62h572.21l173.76-150.86-390.37-338.21-.1.1Zm-618.04,112.61l-32.28,15.22L301.99,63.52l85.59,97.29-249.69,117.68v-.1Zm822.49,326.01H442.58V207.55h301.2l334.27,296.64-117.67,100.21Z'/%3E%3C/svg%3E");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  opacity: 0.1;
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .footer__logo {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  z-index: 5;
  position: relative;
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .footer__content {
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .footer__info {
    width: 40%;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .footer__nav {
    width: 20%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__nav-item--active {
  border-bottom: 1px solid #FFFAF6;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.footer__legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  opacity: 0.7;
}
.footer__legal svg > * {
  fill: #FFFAF6;
}
.footer__legal--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .footer__legal--wrapper {
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer__socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.footer__socials > a {
  cursor: pointer;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: transform 300ms ease-in-out;
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}
.footer__socials > a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.footer__socials svg {
  width: 30px;
}

.header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header__nav {
    gap: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__logo {
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.header__nav-item {
  text-transform: uppercase;
  position: relative;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}
.header__nav-item:before, .header__nav-item:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -10%;
  height: 1.5px;
  width: 0;
  background-color: #E95B29;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}
.header__nav-item:before {
  width: 0px;
  left: -8%;
  background-color: #E95B29;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.header__nav-item--active, .header__nav-item:hover {
  color: #E95B29;
}
.header__nav-item--active:after, .header__nav-item:hover:after {
  width: 110%;
}
.header__nav-item--active:before, .header__nav-item:hover:before {
  width: 12px;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4rem 0;
  gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .hero {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 6rem 0;
  }
}
.hero__column {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hero__column:first-child {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 1024px) {
  .hero__column {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  .hero__column:first-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 40%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 3px;
  }
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.hero__photo {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .hero__photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hero__photo--desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .hero__photo--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hero__photo--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.6rem;
}
@media screen and (min-width: 1024px) {
  .hero__photo--mobile {
    display: none;
  }
}
.hero__photo img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__photo--primary {
  -webkit-mask-image: url(../../../../assets/img/masks/hero-1-mask.png);
  mask-image: url(../../../../assets/img/masks/hero-1-mask.png);
  padding-bottom: 2px;
}
.hero__photo--secondary {
  -webkit-mask-image: url(../../../../assets/img/masks/hero-2-mask.png);
  mask-image: url(../../../../assets/img/masks/hero-2-mask.png);
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .hero__photo--secondary {
    width: 70%;
  }
}

.mobile-nav {
  position: fixed;
  background-color: #FFFAF6;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  border-right: 2px solid #E95B29;
  -webkit-transition: transform 300ms ease-in-out, border-right-width 300ms ease-in-out;
  -webkit-transition: border-right-width 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: border-right-width 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, border-right-width 300ms ease-in-out;
  transition: transform 300ms ease-in-out, border-right-width 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}
body.open-menu .mobile-nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  border-right-width: 0px;
}
.mobile-nav__items {
  width: 90%;
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  font-size: clamp(1rem, 0.3846153846rem + 3.0769230769vw, 2rem);
}
.mobile-nav__item {
  width: 100%;
  text-align: center;
  padding: 0.6rem 0;
  border-radius: 10px;
  color: #E95B29;
}
.mobile-nav__item--active {
  background-color: #E95B29;
  color: #FFFAF6;
}

.pagination {
  /**
  	Config
   */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination__previous {
  margin-right: 0.5rem;
  cursor: pointer;
}
.pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 0.2rem;
  -webkit-transition: color 0.25s, background-color 0.2s;
  transition: color 0.25s, background-color 0.2s;
}
.pagination__item:first-child {
  margin-left: 0;
}
.pagination__item:last-child {
  margin-right: 0;
}
.pagination__item > * {
  padding: 0.4rem;
}
.pagination__item:hover, .pagination__item:active {
  color: #FFFAF6;
  background-color: #E95B29;
}
.pagination__active-item {
  color: #FFFAF6;
  background-color: #E95B29;
}
.pagination__next {
  margin-left: 0.5rem;
  cursor: pointer;
}

.wrap {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (min-width: 1024px) {
  .wrap {
    padding: 0 6.6%;
  }
}
@media screen and (min-width: 1500px) {
  .wrap {
    padding: 0 10%;
  }
}
@media screen and (min-width: 650px) {
  .wrap--small {
    padding: 0 11.55%;
  }
}
@media screen and (min-width: 1500px) {
  .wrap--small {
    padding: 0 17.5%;
  }
}

.wysiwyg {
  /*
  	Config
   */
}
.wysiwyg p, .wysiwyg ul {
  margin-bottom: 2rem;
}
.wysiwyg p:last-child, .wysiwyg ul:last-child {
  margin-bottom: 0;
}
.wysiwyg ul, .wysiwyg ol {
  margin-left: 1rem;
}
.wysiwyg ul li,
.wysiwyg ol li {
  padding-left: 0.66rem;
  list-style: square;
}
.wysiwyg ul li:last-child,
.wysiwyg ol li:last-child {
  margin-bottom: 0;
}
.wysiwyg a {
  border-bottom: 1px solid #9C3D1A;
}
.wysiwyg strong {
  font-weight: bold;
}
.wysiwyg em {
  font-style: italic;
}