/* Plaats hier je design system Sass van de vorige opdracht en nieuwe Sass code */
/* activeer de Sass plugin zodat de correcte SCSS wordt aangemaakt */
/*---------------------------------------/*
 # SETTINGS
/*---------------------------------------*/
/*---------------------------------------/*
 # GENERIC - BOOTSTRAP
/*---------------------------------------*/
.navbar-nav {
  gap: 16px;
  padding-top: 1rem;
}
@media (max-width: 1199px) {
  .navbar-nav {
    gap: 0.5rem;
  }
}

.navbar-toggler {
  border: 2px solid #964d40;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0px 2px #964d40;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url(../img/hamburger.svg);
}

.row {
  overflow: visible;
}

.accordion {
  --bs-accordion-color: red;
}

.accordion-item:first-of-type {
  border-radius: 0;
}

.accordion-item:last-of-type {
  border-radius: 0;
}

.accordion-item {
  background-color: transparent;
  color: #463130;
  border: none;
  border-bottom: 2px solid #964d40;
}

.accordion-button {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 22px;
  color: #463130;
  border: none;
  background-color: transparent;
  padding: 2rem 1rem 0.5rem 0;
}
@media (max-width: 991px) {
  .accordion-button {
    font-size: 18px;
  }
}
.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #463130;
  box-shadow: none;
}

.accordion-body {
  max-width: 50rem;
}

.modal-content {
  background-color: #fffbf8;
  color: #463130;
}

.btn-close {
  --bs-btn-close-color: $color-neutral-dark;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgb(255, 251, 248, 0.25);
}

.mapboxgl-popup-content {
  background-color: #fffbf8;
  padding: 1rem 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mapboxgl-popup-close-button {
  border-radius: 2px;
  padding: 0 0.5rem 0.125rem;
}
.mapboxgl-popup-close-button:hover {
  background-color: #964d40;
  color: #fffbf8;
}

/*---------------------------------------/*
 # ELEMENTS
/*---------------------------------------*/
h1,
h2,
h3 {
  font-family: "Gelasio", serif;
  font-style: normal;
}

h1 {
  color: #964d40;
  font-size: 64px;
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 991px) {
  h1 {
    font-size: 54px;
  }
}
@media (max-width: 650px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  color: #964d40;
  font-size: 40px;
}
@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 650px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 32px;
}
@media (max-width: 991px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  h3 {
    font-size: 22px;
  }
}

body {
  font-family: "Faculty Glyphic", sans-serif;
  font-style: normal;
  font-size: 18px;
  background-color: #fffbf8;
  scroll-behavior: smooth;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

p {
  margin: 0;
}

:root {
  scroll-padding-top: 140px;
}

.choices[data-type*=select-multiple] .choices__inner, .choices[data-type*=text] .choices__inner {
  cursor: default;
}
.choices__inner {
  cursor: default;
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #ffefe4;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: none;
  border-bottom: 2px solid #964d40;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.choices__input {
  background-color: transparent;
  font-size: 1rem;
  padding: 0.25rem 1rem 0.25rem 0.25rem;
  margin-bottom: 0;
}
.choices__list--multiple .choices__item,
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #964d40;
  border-color: #964d40;
}
.choices__list--single {
  padding: 0.25rem 1rem 0.625rem 0.25rem;
}
.choices__list--dropdown .choices__list__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__list__item--selectable.is-highlighted {
  background-color: #964d40;
}
.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
  border-left: none;
  margin: 0;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent;
  border-width: 0;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
@media (min-width: 640px) {
  .choices .choices__list--dropdown .choices__item--selectable,
  .choices .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 0;
  }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #964d40;
  color: #fffbf8;
}

.choices__list--dropdown {
  z-index: 9999 !important;
}

.choices__list {
  z-index: 9999;
}

/*---------------------------------------/*
 # OBJECTS
/*---------------------------------------*/
/*---------------------------------------/*
 # COMPONENTS
/*---------------------------------------*/
.c-header {
  margin-top: 8rem;
}
.c-header__homepage::after {
  display: inline-block;
  content: "";
  background-image: url(../img/homepage-header-ornaments.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(20rem, 70vw, 50rem);
  aspect-ratio: 3/1;
  height: auto;
  position: absolute;
  transform: translate(-45%, -50%);
  left: 52%;
  top: 14.5rem;
}
@media (max-width: 991px) {
  .c-header__homepage::after {
    top: 13.5rem;
  }
}
@media (max-width: 650px) {
  .c-header__homepage::after {
    top: 10.75rem;
  }
}
@media (max-width: 575px) {
  .c-header__homepage::after {
    top: 10.25rem;
  }
}
@media (max-width: 480px) {
  .c-header__homepage::after {
    top: 9.75rem;
  }
}
.c-header__subtitle {
  color: #964d40;
  text-align: center;
}
.c-header__subtitle--homepage {
  margin-top: clamp(1rem, 5vw, 3.5rem);
  text-align: center;
}
@media (max-width: 991px) {
  .c-header__subtitle--homepage {
    max-width: 75vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .c-header__subtitle--homepage {
    max-width: 70vw;
  }
}
@media (max-width: 650px) {
  .c-header__subtitle--homepage {
    margin-top: clamp(1rem, 6vw, 3.5rem);
  }
}
@media (max-width: 480px) {
  .c-header__subtitle--homepage {
    margin-top: clamp(1rem, 5vw, 3.5rem);
  }
}
.c-header__normalpage {
  margin-bottom: 12rem;
}
.c-header__normalpage::after {
  display: inline-block;
  content: "";
  background-image: url(../img/title-underline.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 39.75rem;
  aspect-ratio: 3/1;
  height: auto;
  position: absolute;
  transform: translate(-50%, 0);
  left: 50%;
  top: 11rem;
}
@media (max-width: 991px) {
  .c-header__normalpage::after {
    top: 11.5rem;
    width: 65vw;
    min-width: 32rem;
  }
}
@media (max-width: 650px) {
  .c-header__normalpage::after {
    top: 8.5rem;
    width: 90vw;
    min-width: 0;
  }
}
.c-header__normalpage--subtitle {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 6rem;
}
.c-header__normalpage--subtitle::after {
  display: inline-block;
  position: relative;
  width: 45rem;
  height: 7.5rem;
  top: 0;
}
@media (max-width: 991px) {
  .c-header__normalpage--subtitle::after {
    top: 0;
    width: 65vw;
    min-width: 35rem;
  }
}
@media (max-width: 650px) {
  .c-header__normalpage--subtitle::after {
    top: 0;
    width: 90vw;
    min-width: 10rem;
    height: 5rem;
  }
}
@media (max-width: 370px) {
  .c-header__normalpage--subtitle::after {
    top: 0;
  }
}
@media (max-width: 650px) {
  .c-header {
    margin-top: 6rem;
  }
}

.c-navigatie {
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 5.875rem;
  min-height: 6rem;
  background-color: rgba(255, 249, 243, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 1.5rem 1rem;
}
.c-navigatie__logo {
  font-family: "Gelasio", serif;
  color: #964d40;
  text-align: center;
  font-size: 32px;
  text-decoration: none;
  width: 7rem;
  height: auto;
}
.c-navigatie__itemlist {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.5rem;
}
.c-navigatie__container {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 991px) {
  .c-navigatie {
    height: auto;
  }
}

.c-ornamenttitle {
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-ornamenttitle::before {
  content: "";
  background-image: url(../img/seedline-l.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  width: 4.9375rem;
  height: 1.5rem;
  margin-left: auto;
}
@media (max-width: 650px) {
  .c-ornamenttitle::before {
    width: 3rem;
    height: 1rem;
  }
}
.c-ornamenttitle::after {
  content: "";
  background-image: url(../img/seedline-l.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 4.9375rem;
  height: 1.5rem;
  margin-right: auto;
  position: absolute;
  bottom: -1rem;
}
@media (max-width: 650px) {
  .c-ornamenttitle::after {
    width: 3rem;
    height: 1rem;
    bottom: -0.5rem;
  }
}

.c-button {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 22px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #463130;
  overflow: hidden;
  border-radius: 5px;
  padding: 0 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
@media (max-width: 991px) {
  .c-button {
    font-size: 18px;
  }
}
.c-button__text {
  color: #463130;
  position: relative;
  display: inline-block;
  z-index: 0;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}
.c-button__text--dark {
  color: #fffbf8;
}
.c-button__text--active {
  color: #fffbf8;
}
.c-button__text--popup {
  z-index: 2;
}
.c-button__hovercircle {
  z-index: -2;
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #964d40;
  border-radius: 1000px;
  position: absolute;
  top: -25px;
  right: -25px;
  transition: transform 0.4s ease-in-out;
}
.c-button__hovercircle--dark {
  z-index: 0;
  background-color: #fffbf8;
}
.c-button__hovercircle--popup {
  z-index: 1;
}
.c-button__activecircle {
  z-index: -1;
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #463130;
  border-radius: 1000px;
  position: absolute;
  top: -25px;
  right: -25px;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
.c-button__checkbox {
  display: none;
}
.c-button__checkbox:checked ~ .c-button__activecircle {
  transform: scale(25);
}
.c-button__checkbox:checked ~ .c-button__text {
  color: #fffbf8;
}
.c-button--active {
  background-color: #964d40;
  color: #fffbf8;
}
.c-button--popup {
  padding: 0.25rem 0.5rem;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 991px) {
  .c-button--popup {
    font-size: 16px;
  }
}
.c-button:hover > .c-button__hovercircle {
  transform: scale(25);
}
.c-button:hover > .c-button__text {
  color: #fffbf8;
}
.c-button:hover > .c-button__text--dark {
  color: #463130;
}
.c-button:focus-visible {
  outline: 0;
}

.c-arrowbutton {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 22px;
  text-decoration: none;
  color: #463130;
  position: relative;
  padding: 0.25rem 0.5rem 0.25rem 0;
}
@media (max-width: 991px) {
  .c-arrowbutton {
    font-size: 18px;
  }
}
.c-arrowbutton::before {
  pointer-events: none;
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("../img/arrow-dot.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  right: -1rem;
  transition: right 0.5s cubic-bezier(0.73, -0.01, 0.34, 1.34);
}
.c-arrowbutton::after {
  pointer-events: none;
  content: "";
  display: inline-block;
  height: 0.75rem;
  width: 1.5rem;
  background-image: url("../img/arrow-spike.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  right: -3.25rem;
  transition: right 0.5s cubic-bezier(0.73, -0.01, 0.34, 1.34);
  transition-delay: 0.03s;
}
.c-arrowbutton:hover::before {
  right: -2rem;
}
.c-arrowbutton:hover::after {
  right: -4.5rem;
}
.c-arrowbutton:focus-visible {
  outline: 0;
}

.c-arrowlarge {
  display: inline-block;
  width: 6rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
}
.c-arrowlarge__container {
  position: relative;
  transform-origin: center;
}
@media (max-width: 767px) {
  .c-arrowlarge__container {
    transform: scale(0.6);
  }
}
@media (max-width: 575px) {
  .c-arrowlarge__container--desktop {
    opacity: 0;
    pointer-events: none;
  }
}
.c-arrowlarge::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("../img/arrow-dot-gold.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  transition: left 0.5s cubic-bezier(0.73, -0.01, 0.34, 1.34);
}
.c-arrowlarge::after {
  content: "";
  display: inline-block;
  height: 1.75rem;
  width: 3.5rem;
  background-image: url("../img/arrow-spike.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 2rem;
  transition: left 0.5s cubic-bezier(0.73, -0.01, 0.34, 1.34);
  transition-delay: 0.03s;
}
.c-arrowlarge:hover::before {
  left: 1.5rem;
}
.c-arrowlarge:hover::after {
  left: 4.5rem;
}

.c-arrowlargeflipped {
  display: inline-block;
  width: 6rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
}
.c-arrowlargeflipped::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("../img/arrow-dot-gold.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  transition: right 0.5s cubic-bezier(0.73, -0.01, 0.34, 1.34);
}
.c-arrowlargeflipped::after {
  content: "";
  display: inline-block;
  height: 1.75rem;
  width: 3.5rem;
  background-image: url("../img/arrow-spike.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  position: absolute;
  right: 2rem;
  transition: right 0.5s cubic-bezier(0.73, -0.01, 0.34, 1.34);
  transition-delay: 0.03s;
}
.c-arrowlargeflipped:hover::before {
  right: 1.5rem;
}
.c-arrowlargeflipped:hover::after {
  right: 4.5rem;
}

.c-card {
  position: relative;
  width: 225px;
  height: 225px;
  background-color: transparent;
  border-radius: 0 15px 0 15px;
  overflow: visible;
}
.c-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -4;
  border-radius: 0 15px 0 15px;
}
.c-card__inschrijvingsbadge {
  position: absolute;
  top: 8px;
  right: 13px;
  background-color: #fffbf8;
  color: #463130;
  padding: 0 8px;
  border-radius: 0px 10px 0px 10px;
}
.c-card__inschrijvingsbadge--small {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 14px;
}
.c-card__border {
  position: relative;
  height: 225px;
  width: 225px;
  border-radius: 0 15px 0 15px;
  border: 2px solid #964d40;
  position: absolute;
  left: -5px;
  top: -5px;
  overflow: hidden;
}
.c-card__border--large {
  width: 306px;
}
.c-card__textbg {
  border-radius: 100px;
  width: 1.625rem;
  height: 1.625rem;
  background-color: #964d40;
  position: absolute;
  left: -13px;
  top: -13px;
  transition: scale 0.3s ease-in-out;
}
.c-card__content {
  position: relative;
  z-index: 2;
  color: #fffbf8;
  text-align: center;
  height: 100%;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.c-card__text {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 14px;
}
.c-card__container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
}
.c-card:hover .c-card__textbg {
  scale: 30;
}
.c-card:hover .c-card__content {
  opacity: 1;
}
.c-card--large {
  width: 306px;
}

.c-infocard {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 25rem;
  height: 225px;
  background-color: transparent;
  border-radius: 0 15px 0 15px;
  border: 2px solid #964d40;
  overflow: hidden;
  position: relative;
}
.c-infocard__img {
  width: 10rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .c-infocard__img {
    display: none;
  }
}
.c-infocard__content {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.c-infocard__text {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 14px;
  flex-wrap: wrap;
}
.c-infocard__header {
  font-size: 22px;
  text-align: center;
  color: #964d40;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
}
.c-infocard__accent {
  color: #964d40;
}
.c-infocard__buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 575px) {
  .c-infocard__buttons {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
}
.c-infocard--small {
  height: 225px;
}
.c-infocard--large {
  width: 525px;
  height: 260px;
}
@media (max-width: 575px) {
  .c-infocard--large {
    height: auto;
  }
}
.c-infocard::before, .c-infocard::after {
  content: "";
  border-radius: 100px;
  width: 1.625rem;
  height: 1.625rem;
  background-color: #964d40;
  position: absolute;
  transition: scale 0.5s ease-in-out;
}
.c-infocard::before {
  left: -13px;
  top: -13px;
}
.c-infocard::after {
  right: -13px;
  bottom: -13px;
}
@media (max-width: 575px) {
  .c-infocard {
    width: 90%;
  }
}

.c-carousel {
  width: 100%;
  max-width: 55rem;
  min-width: 16rem;
  aspect-ratio: 3/2;
  position: relative;
}
.c-carousel__img {
  width: 100%;
  height: 100%;
  border-radius: 15px 15px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-carousel__inner {
  border-radius: 15px 15px 0 0;
  height: 100%;
  overflow: hidden;
}
.c-carousel__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  position: relative;
}
@media (max-width: 767px) {
  .c-carousel__container {
    gap: 8px;
  }
}
.c-carousel__border {
  width: calc(100% + 16px);
  height: 100%;
  border-radius: 20px 20px 0 0;
  z-index: -1;
  border: 2px solid #964d40;
  transform: translate(-50%, 0);
  position: absolute;
  top: clamp(-8px, -1.5vw, -2vw);
  left: 50%;
}
.c-carousel__mobilearrows {
  display: none;
  position: absolute;
  bottom: -2rem;
}
@media (max-width: 575px) {
  .c-carousel__mobilearrows {
    display: flex;
  }
}

.c-image {
  position: relative;
  width: 414px;
  height: 270px;
}
.c-image::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 5;
  background-image: url(../img/image-ornament-l.svg);
  background-repeat: no-repeat;
  width: 234px;
  height: 234px;
  left: -40px;
  top: -40px;
}
@media (max-width: 991px) {
  .c-image::before {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-40px, -20%, -20%);
    left: clamp(-40px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 767px) {
  .c-image::before {
    width: 11.25rem;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-30px, -12%, 0%);
    left: clamp(-30px, -13%, 0%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 575px) {
  .c-image::before {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-27px, -20%, -20%);
    left: clamp(-27px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
.c-image::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 5;
  background-image: url(../img/image-ornament-r.svg);
  background-repeat: no-repeat;
  width: 234px;
  height: 234px;
  right: -40px;
  top: -40px;
}
@media (max-width: 991px) {
  .c-image::after {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-40px, -20%, -20%);
    right: clamp(-40px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 767px) {
  .c-image::after {
    width: 11.25rem;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-30px, -12%, 0%);
    right: clamp(-30px, -13%, 0%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 575px) {
  .c-image::after {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-27px, -20%, -20%);
    right: clamp(-27px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 991px) {
  .c-image {
    width: 60vw;
    aspect-ratio: 100/65;
    height: auto;
    min-width: 14rem;
  }
}
@media (max-width: 575px) {
  .c-image {
    width: 70vw;
    aspect-ratio: 100/65;
    height: auto;
    min-width: 14rem;
  }
}
.c-image__symbol {
  position: relative;
  width: 414px;
  height: 270px;
  border-radius: 20px 20px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .c-image__symbol {
    width: 60vw;
    aspect-ratio: 100/65;
    height: auto;
    min-width: 14rem;
  }
}
@media (max-width: 575px) {
  .c-image__symbol {
    width: 70vw;
    aspect-ratio: 100/65;
    height: auto;
    min-width: 14rem;
  }
}

.c-centerimage {
  width: 95%;
  max-width: 53.5rem;
  aspect-ratio: 2/1;
  height: auto;
  margin: 0 auto;
  position: relative;
}
.c-centerimage__img {
  width: 100%;
  height: 100%;
  border-radius: 15px 15px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-centerimage__border {
  width: calc(100% + 16px);
  height: 100%;
  border-radius: 20px 20px 0 0;
  z-index: -1;
  border: 2px solid #964d40;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 48%;
  left: 50%;
}
@media (max-width: 767px) {
  .c-centerimage {
    width: 92%;
  }
}

.c-input {
  border: none;
  border-bottom: 2px solid #964d40;
  background-color: #ffefe4;
  color: #463130;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 46px;
  padding: 0.375rem 1.25rem 0.375rem 0.75rem;
  font-size: 1rem;
}
.c-input__container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-input__container--slider::after {
  content: "";
  width: 102%;
  border-bottom: 2px solid #964d40;
  position: absolute;
  bottom: 0.45rem;
}
.c-input__container--regio .choices .choices__button {
  display: none !important;
}
.c-input__label {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 22px;
  color: #463130;
}
@media (max-width: 991px) {
  .c-input__label {
    font-size: 18px;
  }
}
.c-input__label--small {
  font-size: 18px;
}
@media (max-width: 767px) {
  .c-input__label--small {
    font-size: 16px;
  }
}
.c-input__icon {
  fill: #463130;
  display: inline-block;
  z-index: 3;
  position: absolute;
  right: 0.5rem;
  bottom: 5px;
  width: 22px;
  height: 22px;
}
.c-input__option:hover {
  color: #fffbf8;
  background-color: #964d40;
}
.c-input__slider {
  background-color: transparent;
  border: none;
  height: auto;
  padding: 0;
  padding-left: 0.25rem;
}
.c-input__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #964d40;
  cursor: pointer;
}
.c-input__textarea {
  height: auto;
}
.c-input::-moz-placeholder {
  color: rgba(70, 59, 48, 0.7);
}
.c-input::placeholder, .c-input:disabled {
  color: rgba(70, 59, 48, 0.7);
}
.c-input:focus-visible {
  outline: none;
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  position: relative;
  min-width: 14rem;
  margin: 0 14rem;
}
.c-pagination__button {
  display: inline-block;
  width: 4rem;
  height: 1.25rem;
}
.c-pagination__button--prev::after {
  pointer-events: none;
  content: "";
  display: inline-block;
  height: 1.25rem;
  width: 4rem;
  background-image: url("../img/arrow-spike.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(180deg);
  transition: left 0.4s cubic-bezier(0.73, -0.01, 0.34, 1.34);
}
.c-pagination__button--prev:hover::after {
  left: -1rem;
}
.c-pagination__button--next::after {
  pointer-events: none;
  content: "";
  display: inline-block;
  height: 1.25rem;
  width: 4rem;
  background-image: url("../img/arrow-spike.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transition: right 0.4s cubic-bezier(0.73, -0.01, 0.34, 1.34);
}
.c-pagination__button--next:hover::after {
  right: -1rem;
}
.c-pagination__button--disabled {
  pointer-events: none;
  opacity: 0.65;
}

.c-main {
  display: flex;
  flex-direction: column;
  margin-top: 8rem;
  justify-content: flex-start;
  gap: 7rem;
  margin-bottom: 7rem;
}
@media (max-width: 575px) {
  .c-main {
    margin-top: 5rem;
    gap: 5rem;
  }
}

.c-textsection {
  display: flex;
  flex-direction: row;
  gap: 5rem;
}
@media (max-width: 991px) {
  .c-textsection {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .c-textsection {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 90vw;
  }
}

.c-textblock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.c-textblock--center {
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.c-cardsection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
}
.c-cardsection__cardcontainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  row-gap: 2rem;
}
.c-cardsection__boekingprijs {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 22px;
  text-align: center;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .c-cardsection__boekingprijs {
    font-size: 18px;
  }
}
.c-cardsection__input {
  width: 100%;
}
.c-cardsection--horscroll {
  width: 100vw;
}

.c-nieuwsbrief__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
.c-nieuwsbrief__img {
  width: 100%;
  border-radius: 1.25rem 0 0 1.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  padding-right: 2.5vw;
}
@media (max-width: 991px) {
  .c-nieuwsbrief__img {
    border-radius: 20px 20px 0 0;
    margin-bottom: 2rem;
    padding-right: 0;
  }
}
@media (max-width: 620px) {
  .c-nieuwsbrief__img {
    width: 85%;
  }
}
.c-nieuwsbrief__img--small {
  max-height: 24rem;
}
.c-nieuwsbrief__imgcontainer {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.c-nieuwsbrief__imgcontainer::before, .c-nieuwsbrief__imgcontainer::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 5;
  background-image: url(../img/image-ornament-l.svg);
  background-repeat: no-repeat;
  aspect-ratio: 1;
  height: auto;
  width: 234px;
  max-width: 234px;
}
@media (max-width: 991px) {
  .c-nieuwsbrief__imgcontainer::before, .c-nieuwsbrief__imgcontainer::after {
    width: 30vw;
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 767px) {
  .c-nieuwsbrief__imgcontainer::before, .c-nieuwsbrief__imgcontainer::after {
    width: 30vw;
    min-width: 13rem;
    max-width: 234px;
  }
}
@media (max-width: 620px) {
  .c-nieuwsbrief__imgcontainer::before, .c-nieuwsbrief__imgcontainer::after {
    width: 11rem;
  }
}
@media (max-width: 575px) {
  .c-nieuwsbrief__imgcontainer::before, .c-nieuwsbrief__imgcontainer::after {
    width: 40vw;
    min-width: 3rem;
  }
}
.c-nieuwsbrief__imgcontainer::before {
  left: -29px;
  top: -40px;
}
@media (max-width: 991px) {
  .c-nieuwsbrief__imgcontainer::before {
    top: clamp(-40px, -20%, -20%);
    left: clamp(-29px, -13%, -13%);
  }
}
@media (max-width: 767px) {
  .c-nieuwsbrief__imgcontainer::before {
    top: clamp(-35px, -12%, 0%);
    left: clamp(-26px, -13%, 0%);
  }
}
@media (max-width: 620px) {
  .c-nieuwsbrief__imgcontainer::before {
    top: clamp(-32px, -22%, -20%);
    left: clamp(6px, 3%, 2rem);
  }
}
@media (max-width: 575px) {
  .c-nieuwsbrief__imgcontainer::before {
    top: clamp(-37px, -12%, 0px);
    left: clamp(15px, 0%, 2rem);
  }
}
.c-nieuwsbrief__imgcontainer::after {
  transform: rotate(-90deg);
  left: -29px;
  bottom: -40px;
}
@media (max-width: 991px) {
  .c-nieuwsbrief__imgcontainer::after {
    transform: rotate(90deg);
    top: clamp(-40px, -20%, -20%);
    right: clamp(-29px, -13%, -13%);
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 767px) {
  .c-nieuwsbrief__imgcontainer::after {
    top: clamp(-35px, -12%, 0%);
    right: clamp(-26px, -13%, 0%);
    left: auto;
    bottom: auto;
  }
}
@media (max-width: 620px) {
  .c-nieuwsbrief__imgcontainer::after {
    top: clamp(-32px, -22%, -20%);
    right: clamp(6px, 3%, 2rem);
    left: auto;
    bottom: auto;
  }
}
@media (max-width: 575px) {
  .c-nieuwsbrief__imgcontainer::after {
    top: clamp(-37px, -12%, 0px);
    right: clamp(15px, 0%, 2rem);
    left: auto;
    bottom: auto;
  }
}
.c-nieuwsbrief__standplaatsen {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-overzicht__cards {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 2rem;
}
.c-overzicht__filters {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 2rem;
}
@media (max-width: 1199px) {
  .c-overzicht__filters {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.c-overzicht__filters .c-input__container {
  max-width: 26rem;
}
@media (max-width: 991px) {
  .c-overzicht__filters .c-input__container {
    max-width: 20rem;
  }
}
@media (max-width: 767px) {
  .c-overzicht__filters .c-input__container {
    max-width: 15rem;
  }
}
@media (max-width: 575px) {
  .c-overzicht__filters .c-input__container {
    max-width: none;
  }
}
.c-overzicht__filters--stadsplan {
  row-gap: 0;
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .c-overzicht__filters--stadsplan {
    gap: 1rem;
  }
}
.c-overzicht__filtertitle {
  display: block;
  width: 100%;
  color: #964d40;
}
.c-overzicht__poicontainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 1rem;
}
@media (max-width: 991px) {
  .c-overzicht__poicontainer {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
    row-gap: 1rem;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .c-overzicht__poicontainer {
    justify-content: space-between;
  }
}
.c-overzicht__poi {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .c-overzicht__poi {
    gap: 1rem;
  }
}

.c-map {
  margin: 0 auto;
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 3/2;
  background-image: url(../img/placeholder/mapbox-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
@media (max-width: 1199px) {
  .c-map {
    aspect-ratio: 10/9;
  }
}
@media (max-width: 991px) {
  .c-map {
    aspect-ratio: 3/2;
  }
}
@media (max-width: 575px) {
  .c-map {
    width: 90%;
    aspect-ratio: 1;
  }
}
.c-map--small {
  width: 100%;
  aspect-ratio: 5/2;
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .c-map--small {
    width: 90%;
    aspect-ratio: 2/1;
  }
}
.c-map__outercontainer {
  height: 100%;
  width: 100%;
  position: relative;
}
.c-map__outercontainer::before {
  pointer-events: none;
  z-index: -2;
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 5;
  background-image: url(../img/image-ornament-l.svg);
  background-repeat: no-repeat;
  width: 234px;
  height: 234px;
  left: -40px;
  top: -40px;
}
@media (max-width: 991px) {
  .c-map__outercontainer::before {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-40px, -20%, -20%);
    left: clamp(-40px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 767px) {
  .c-map__outercontainer::before {
    width: 160px;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-27px, -18%, 30px);
    left: clamp(-27px, -13%, 0%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 575px) {
  .c-map__outercontainer::before {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-27px, -25%, -20%);
    left: clamp(-27px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 420px) {
  .c-map__outercontainer::before {
    width: 15vw;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-19px, -20%, -20%);
    left: clamp(-19px, -13%, -13%);
    max-width: 234px;
    min-width: 7.5rem;
  }
}
.c-map__outercontainer::after {
  pointer-events: none;
  z-index: -2;
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 5;
  background-image: url(../img/image-ornament-r.svg);
  background-repeat: no-repeat;
  width: 234px;
  height: 234px;
  right: -40px;
  top: -40px;
}
@media (max-width: 991px) {
  .c-map__outercontainer::after {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-40px, -20%, -20%);
    right: clamp(-40px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 767px) {
  .c-map__outercontainer::after {
    width: 160px;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-27px, -18%, 30px);
    right: clamp(-27px, -13%, 0%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 575px) {
  .c-map__outercontainer::after {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-27px, -20%, -20%);
    right: clamp(-27px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 420px) {
  .c-map__outercontainer::after {
    width: 15vw;
    aspect-ratio: 1;
    height: auto;
    top: clamp(-19px, -20%, -20%);
    right: clamp(-19px, -13%, -13%);
    max-width: 234px;
    min-width: 7.5rem;
  }
}
.c-map__innercontainer {
  height: 100%;
  width: 100%;
  position: relative;
}
.c-map__innercontainer::before {
  z-index: -2;
  pointer-events: none;
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 5;
  background-image: url(../img/image-ornament-l.svg);
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  width: 234px;
  height: 234px;
  left: -40px;
  bottom: -40px;
}
@media (max-width: 991px) {
  .c-map__innercontainer::before {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    bottom: clamp(-40px, -20%, -20%);
    left: clamp(-40px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 767px) {
  .c-map__innercontainer::before {
    width: 160px;
    aspect-ratio: 1;
    height: auto;
    bottom: clamp(-27px, -18%, 30px);
    left: clamp(-27px, -13%, 0%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 575px) {
  .c-map__innercontainer::before {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    bottom: clamp(-27px, -25%, -20%);
    left: clamp(-27px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 420px) {
  .c-map__innercontainer::before {
    width: 15vw;
    aspect-ratio: 1;
    height: auto;
    bottom: clamp(-19px, -20%, -20%);
    left: clamp(-19px, -13%, -13%);
    max-width: 234px;
    min-width: 7.5rem;
  }
}
.c-map__innercontainer::after {
  pointer-events: none;
  z-index: -2;
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 5;
  background-image: url(../img/image-ornament-r.svg);
  background-repeat: no-repeat;
  transform: rotate(90deg);
  width: 234px;
  height: 234px;
  right: -40px;
  bottom: -40px;
}
@media (max-width: 991px) {
  .c-map__innercontainer::after {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    bottom: clamp(-40px, -20%, -20%);
    right: clamp(-40px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 767px) {
  .c-map__innercontainer::after {
    width: 160px;
    aspect-ratio: 1;
    height: auto;
    bottom: clamp(-27px, -18%, 30px);
    right: clamp(-27px, -13%, 0%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 575px) {
  .c-map__innercontainer::after {
    width: 30vw;
    aspect-ratio: 1;
    height: auto;
    bottom: clamp(-27px, -20%, -20%);
    right: clamp(-27px, -13%, -13%);
    max-width: 234px;
    min-width: 10rem;
  }
}
@media (max-width: 420px) {
  .c-map__innercontainer::after {
    width: 15vw;
    aspect-ratio: 1;
    height: auto;
    bottom: clamp(-19px, -20%, -20%);
    right: clamp(-19px, -13%, -13%);
    max-width: 234px;
    min-width: 7.5rem;
  }
}
.c-map__map {
  width: 100%;
  height: 100%;
}
.c-map__centericon {
  width: 3.5rem;
  height: 3.5rem;
  background-image: url(../img/icon-target.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.c-map__marker {
  width: 3.5rem;
  height: 3.5rem;
  background-image: url(../img/icon-target.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}
.c-map__marker--wc {
  background-image: url(../img/icon-toilet.svg);
}
.c-map__marker--bike {
  background-image: url(../img/icon-bike.svg);
}
.c-map__marker--recycle {
  background-image: url(../img/icon-recycle.svg);
}
.c-map__marker--info {
  background-image: url(../img/icon-info.svg);
}
.c-map__marker--interactable {
  cursor: pointer;
}
.c-map__marker--interactable:hover {
  z-index: 2;
  width: 4.5rem;
  height: 4.5rem;
  transform-origin: center center;
}
.c-map__markertitle {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 22px;
  background-color: #fffbf8;
  color: #463130;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .c-map__markertitle {
    font-size: 18px;
  }
}

.c-likes {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 22px;
  color: #463130;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
@media (max-width: 991px) {
  .c-likes {
    font-size: 18px;
  }
}
.c-likes__amount {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25rem;
}
.c-likes__iconcontainer {
  width: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-likes__icon {
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../img/icon-heart.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: all 0.2s ease-in-out;
}
.c-likes__icon--liked {
  background-image: url(../img/icon-heart-filled.svg);
  pointer-events: none;
}
.c-likes__icon:hover {
  width: 1rem;
  height: 1rem;
}

.c-sponsors {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 1199px) {
  .c-sponsors {
    margin-top: 0.5rem;
  }
}
@media (max-width: 991px) {
  .c-sponsors {
    margin-top: 1rem;
  }
}
.c-sponsors__img {
  width: auto;
  height: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-noactivities {
  color: #964d40;
  text-align: center;
}

.c-footer__content {
  background-color: #463130;
  color: #fffbf8;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 1300px) {
  .c-footer__content {
    padding: 2.5rem 7.5vw;
  }
}
@media (max-width: 991px) {
  .c-footer__content {
    flex-direction: column;
  }
}
.c-footer__titleblock {
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem;
  position: relative;
  padding: 16px;
  margin: 0 0 4rem;
  height: 7.25rem;
}
.c-footer__titleblock::before {
  content: "";
  z-index: 2;
  background-image: url(../img/seedline-l-light.svg);
  width: 7.125rem;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 3/1;
  height: auto;
  transform: rotate(90deg);
  position: absolute;
  left: 12.5rem;
  top: 1.5rem;
}
@media (max-width: 991px) {
  .c-footer__titleblock::before {
    left: 10.25rem;
  }
}
@media (max-width: 650px) {
  .c-footer__titleblock::before {
    left: 7rem;
  }
}
.c-footer__titleblock::after {
  content: "";
  z-index: 2;
  background-image: url(../img/seedline-l-light.svg);
  width: 7.125rem;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 3/1;
  height: auto;
  transform: rotate(-90deg);
  position: absolute;
  left: 15rem;
  bottom: 1.5rem;
}
@media (max-width: 991px) {
  .c-footer__titleblock::after {
    left: 12.75rem;
  }
}
@media (max-width: 650px) {
  .c-footer__titleblock::after {
    left: 9.5rem;
  }
}
@media (max-width: 991px) {
  .c-footer__titleblock {
    margin: 0 auto 3rem;
  }
}
@media (max-width: 620) {
  .c-footer__titleblock {
    gap: 2rem;
  }
}
.c-footer__title {
  color: #fffbf8;
  margin: 0;
}
.c-footer__copyright {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 14px;
  width: 10.5rem;
  margin: 0;
}
@media (max-width: 650px) {
  .c-footer__copyright {
    font-size: 12px;
    width: 9rem;
  }
}
.c-footer__school {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 14px;
  text-align: center;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.c-footer__schoollogo {
  height: 2rem;
  width: auto;
}
.c-footer__links {
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  row-gap: 3rem;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .c-footer__links {
    padding: 0 5rem;
    width: 100%;
    padding: 0 9rem;
  }
}
@media (max-width: 767px) {
  .c-footer__links {
    padding: 0 5rem;
  }
}
.c-footer__link {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 14px;
  padding: 0 0.5rem;
}
.c-footer__link--paragraph {
  margin: 0;
  pointer-events: none;
}
.c-footer__contentblock {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
}
@media (max-width: 620px) {
  .c-footer__contentblock {
    align-items: center;
    text-align: center;
  }
}
.c-footer__duosection {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 620px) {
  .c-footer__duosection {
    flex-direction: column;
  }
}
.c-footer__blocktitle {
  margin: 0;
  color: #ffefe4;
}

.c-loader {
  display: inline-block;
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
}
.c-loader--inverse .c-loader__sphere {
  background: #964d40;
}
.c-loader__sphere {
  position: absolute;
  top: 2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #964d40;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.c-loader__sphere:nth-child(1) {
  left: 0.5rem;
  animation: loader1 0.6s infinite;
}
.c-loader__sphere:nth-child(2) {
  left: 0.5rem;
  animation: loader2 0.6s infinite;
}
.c-loader__sphere:nth-child(3) {
  left: 2rem;
  animation: loader2 0.6s infinite;
}
.c-loader__sphere:nth-child(4) {
  left: 3.5rem;
  animation: loader3 0.6s infinite;
}
.c-loader__container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.c-modal__title {
  margin: 0;
}
.c-modal__closebtn {
  background-image: url(../img/close-x.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1rem;
  height: 1rem;
}

@keyframes loader1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loader3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes loader2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/*---------------------------------------/*
 # UTILITIES
/*---------------------------------------*/
.u-highlight {
  font-weight: bold;
  color: #964d40;
}

.u-hidden {
  display: none;
}

.u-disabled {
  pointer-events: none;
}