@charset "UTF-8";
/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-cell {
  position: absolute;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

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

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

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: "";
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
  tab-size: 4; /* 3 */
  font-family: poppins, sans-serif; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/
button,
[role=button] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}

/*
Ensure the default browser behavior of the `hidden` attribute.
*/
[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}

[data-bg=white] {
  background-color: #FFFFFF;
}

[data-bg=white-shaded] {
  background-color: #FFFEFB;
}

[data-bg=grey-light] {
  background-color: #F9F6F0;
}

* {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

body {
  font-size: 14px;
  line-height: 21px;
  font-family: "poppins";
  color: #121418;
  counter-reset: step;
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
    line-height: 25px;
  }
}

div, section, main, header, footer, canvas, a, nav, button {
  position: relative;
}

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

button {
  padding: 0;
  background-color: transparent;
  border: none;
}

input {
  width: 100%;
}

.inner {
  width: 100%;
  max-width: 1446px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .inner {
    padding: 50px 20px;
  }
}
@media (min-width: 768px) {
  .inner {
    padding: 75px 35px;
  }
}

.h1, .subscription-block__price, .page-title__title, .newsletter__title, .h2, .heading h2, .subscription-block__title, .intro-text__title, .rich-text h2, .filter-group-timeline__title, .member-showcase__title, .form-title, .cta-content__title, .sponsors__title, .h3, .heading h3, .rich-text h3, .big-heading__title, .h4, .heading h4, .color-block__title, .search-result--info--title, .rich-text h4, .nav-sidebar__key span, .project-details__title, .filter-group__title, .member-info__mentorship-title, .no-results__message, .contact__title, .pagination__total, .sponsors__subtitle, .filter-groups__title, .newsletter__text, .h5, .section-heading__title, .heading h5, .color-block__counter, .rich-text h5, .project-details__label, .color-blocks__title, .contact-social__title, .contact-info__title, .step:before, .form-subtitle, .form-label, .entry-thumb__category, .button--pagination, .title-text__title, .member-info__available, .member-info__details .link--secondary, .member-info__company, .scroll-to__title, .pagination__link, .page-title__date, .h6, .heading h6, .rich-text h6, .entry-nav-item__label, .form-list, .entry-thumb__status, .page-title__sponsor-by {
  display: block;
  margin-bottom: 15px;
}

.h1, .subscription-block__price, .page-title__title, .newsletter__title, h2 {
  font-family: "domaine display", serif;
  font-weight: 700;
}

.h3, .heading h3, .rich-text h3, .big-heading__title, .h4, .heading h4, .color-block__title, .search-result--info--title, .rich-text h4, .nav-sidebar__key span, .project-details__title, .filter-group__title, .member-info__mentorship-title, .no-results__message, .contact__title, .pagination__total, .sponsors__subtitle, .filter-groups__title, .newsletter__text, .h5, .section-heading__title, .heading h5, .color-block__counter, .rich-text h5, .project-details__label, .color-blocks__title, .contact-social__title, .contact-info__title, .step:before, .form-subtitle, .form-label, .entry-thumb__category, .button--pagination, .title-text__title, .member-info__available, .member-info__details .link--secondary, .member-info__company, .scroll-to__title, .pagination__link, .page-title__date {
  font-family: "poppins";
  font-weight: 600;
}

.h6, .heading h6, .rich-text h6, .entry-nav-item__label, .form-list, .entry-thumb__status, .page-title__sponsor-by {
  font-weight: 500;
}

.h1, .subscription-block__price, .page-title__title, .newsletter__title {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h1, .subscription-block__price, .page-title__title, .newsletter__title {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .h1, .subscription-block__price, .page-title__title, .newsletter__title {
    font-size: 52px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h1, .subscription-block__price, .page-title__title, .newsletter__title {
    line-height: 48px;
  }
}
@media (min-width: 1024px) {
  .h1, .subscription-block__price, .page-title__title, .newsletter__title {
    line-height: 60px;
  }
}

.h2, .heading h2, .subscription-block__title, .intro-text__title, .rich-text h2, .filter-group-timeline__title, .member-showcase__title, .form-title, .cta-content__title, .sponsors__title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 26px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h2, .heading h2, .subscription-block__title, .intro-text__title, .rich-text h2, .filter-group-timeline__title, .member-showcase__title, .form-title, .cta-content__title, .sponsors__title {
    font-size: 31px;
  }
}
@media (min-width: 1024px) {
  .h2, .heading h2, .subscription-block__title, .intro-text__title, .rich-text h2, .filter-group-timeline__title, .member-showcase__title, .form-title, .cta-content__title, .sponsors__title {
    font-size: 34px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h2, .heading h2, .subscription-block__title, .intro-text__title, .rich-text h2, .filter-group-timeline__title, .member-showcase__title, .form-title, .cta-content__title, .sponsors__title {
    line-height: 38px;
  }
}
@media (min-width: 1024px) {
  .h2, .heading h2, .subscription-block__title, .intro-text__title, .rich-text h2, .filter-group-timeline__title, .member-showcase__title, .form-title, .cta-content__title, .sponsors__title {
    line-height: 42px;
  }
}

.h3, .heading h3, .rich-text h3, .big-heading__title {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 22px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h3, .heading h3, .rich-text h3, .big-heading__title {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .h3, .heading h3, .rich-text h3, .big-heading__title {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h3, .heading h3, .rich-text h3, .big-heading__title {
    line-height: 32px;
  }
}
@media (min-width: 1024px) {
  .h3, .heading h3, .rich-text h3, .big-heading__title {
    line-height: 34px;
  }
}

.h4, .heading h4, .color-block__title, .search-result--info--title, .rich-text h4, .nav-sidebar__key span, .project-details__title, .filter-group__title, .member-info__mentorship-title, .no-results__message, .contact__title, .pagination__total, .sponsors__subtitle, .filter-groups__title, .newsletter__text {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 18px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h4, .heading h4, .color-block__title, .search-result--info--title, .rich-text h4, .nav-sidebar__key span, .project-details__title, .filter-group__title, .member-info__mentorship-title, .no-results__message, .contact__title, .pagination__total, .sponsors__subtitle, .filter-groups__title, .newsletter__text {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .h4, .heading h4, .color-block__title, .search-result--info--title, .rich-text h4, .nav-sidebar__key span, .project-details__title, .filter-group__title, .member-info__mentorship-title, .no-results__message, .contact__title, .pagination__total, .sponsors__subtitle, .filter-groups__title, .newsletter__text {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h4, .heading h4, .color-block__title, .search-result--info--title, .rich-text h4, .nav-sidebar__key span, .project-details__title, .filter-group__title, .member-info__mentorship-title, .no-results__message, .contact__title, .pagination__total, .sponsors__subtitle, .filter-groups__title, .newsletter__text {
    line-height: 30px;
  }
}
@media (min-width: 1024px) {
  .h4, .heading h4, .color-block__title, .search-result--info--title, .rich-text h4, .nav-sidebar__key span, .project-details__title, .filter-group__title, .member-info__mentorship-title, .no-results__message, .contact__title, .pagination__total, .sponsors__subtitle, .filter-groups__title, .newsletter__text {
    line-height: 30px;
  }
}

.h5, .section-heading__title, .heading h5, .color-block__counter, .rich-text h5, .project-details__label, .color-blocks__title, .contact-social__title, .contact-info__title, .step:before, .form-subtitle, .form-label, .entry-thumb__category, .button--pagination, .title-text__title, .member-info__available, .member-info__details .link--secondary, .member-info__company, .scroll-to__title, .pagination__link, .page-title__date {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h5, .section-heading__title, .heading h5, .color-block__counter, .rich-text h5, .project-details__label, .color-blocks__title, .contact-social__title, .contact-info__title, .step:before, .form-subtitle, .form-label, .entry-thumb__category, .button--pagination, .title-text__title, .member-info__available, .member-info__details .link--secondary, .member-info__company, .scroll-to__title, .pagination__link, .page-title__date {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .h5, .section-heading__title, .heading h5, .color-block__counter, .rich-text h5, .project-details__label, .color-blocks__title, .contact-social__title, .contact-info__title, .step:before, .form-subtitle, .form-label, .entry-thumb__category, .button--pagination, .title-text__title, .member-info__available, .member-info__details .link--secondary, .member-info__company, .scroll-to__title, .pagination__link, .page-title__date {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h5, .section-heading__title, .heading h5, .color-block__counter, .rich-text h5, .project-details__label, .color-blocks__title, .contact-social__title, .contact-info__title, .step:before, .form-subtitle, .form-label, .entry-thumb__category, .button--pagination, .title-text__title, .member-info__available, .member-info__details .link--secondary, .member-info__company, .scroll-to__title, .pagination__link, .page-title__date {
    line-height: 24px;
  }
}
@media (min-width: 1024px) {
  .h5, .section-heading__title, .heading h5, .color-block__counter, .rich-text h5, .project-details__label, .color-blocks__title, .contact-social__title, .contact-info__title, .step:before, .form-subtitle, .form-label, .entry-thumb__category, .button--pagination, .title-text__title, .member-info__available, .member-info__details .link--secondary, .member-info__company, .scroll-to__title, .pagination__link, .page-title__date {
    line-height: 24px;
  }
}

.h6, .heading h6, .rich-text h6, .entry-nav-item__label, .form-list, .entry-thumb__status, .page-title__sponsor-by {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h6, .heading h6, .rich-text h6, .entry-nav-item__label, .form-list, .entry-thumb__status, .page-title__sponsor-by {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .h6, .heading h6, .rich-text h6, .entry-nav-item__label, .form-list, .entry-thumb__status, .page-title__sponsor-by {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h6, .heading h6, .rich-text h6, .entry-nav-item__label, .form-list, .entry-thumb__status, .page-title__sponsor-by {
    line-height: 20px;
  }
}
@media (min-width: 1024px) {
  .h6, .heading h6, .rich-text h6, .entry-nav-item__label, .form-list, .entry-thumb__status, .page-title__sponsor-by {
    line-height: 20px;
  }
}

p {
  margin-bottom: 20px;
}

.uppercase {
  text-transform: uppercase;
}

.row, [data-layout=four-up-flex], [data-layout=five-up-flex] {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(2rem / 2 * -1);
  margin-right: calc(2rem / 2 * -1);
}

@font-face {
  font-family: "domaine display";
  font-weight: bold;
  src: url("/assets/font/domaine_display/domaine-display-bold.woff2"), url("/assets/font/domaine_display/domaine-display-bold.otf");
}
@font-face {
  font-family: "poppins";
  font-weight: 600;
  src: url("/assets/font/poppins/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: "poppins";
  font-weight: 500;
  src: url("/assets/font/poppins/Poppins-Medium.ttf");
}
@font-face {
  font-family: "poppins";
  font-weight: normal;
  src: url("/assets/font/poppins/Poppins-Regular.ttf");
}
[data-layout=five-up-flex] > * {
  padding-left: calc(2rem / 2);
  padding-right: calc(2rem / 2);
  margin-top: calc(2rem / 2);
}
@media (max-width: 499px) {
  [data-layout=five-up-flex] > * {
    width: 100%;
  }
  [data-layout=five-up-flex] > *:first-child {
    margin-top: 0;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  [data-layout=five-up-flex] > * {
    width: 50%;
  }
  [data-layout=five-up-flex] > *:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media (min-width: 500px) {
  [data-layout=five-up-flex] > * {
    margin-top: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [data-layout=five-up-flex] > * {
    width: 33.333%;
  }
  [data-layout=five-up-flex] > *:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  [data-layout=five-up-flex] > * {
    width: 20%;
  }
  [data-layout=five-up-flex] > *:nth-child(-n+5) {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  [data-layout=filter-group-five] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  [data-layout=filter-group-five] > * {
    margin-bottom: 15px;
  }
  [data-layout=filter-group-five] > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [data-layout=filter-group-five] > * {
    grid-column: span 4;
  }
}
@media (min-width: 1024px) and (max-width: 1535px) {
  [data-layout=filter-group-five] > * {
    grid-column: span 3;
  }
}
@media (min-width: 1536px) {
  [data-layout=filter-group-five] > * {
    grid-column: span 2;
  }
}

[data-layout=four-up-flex] > * {
  padding-left: calc(2rem / 2);
  padding-right: calc(2rem / 2);
  margin-top: calc(2rem / 2);
}
@media (max-width: 499px) {
  [data-layout=four-up-flex] > *:first-child {
    margin-top: 0;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  [data-layout=four-up-flex] > * {
    width: 50%;
  }
  [data-layout=four-up-flex] > *:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media (min-width: 500px) {
  [data-layout=four-up-flex] > * {
    margin-top: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [data-layout=four-up-flex] > * {
    width: 33.333%;
  }
  [data-layout=four-up-flex] > *:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  [data-layout=four-up-flex] > * {
    width: 25%;
  }
  [data-layout=four-up-flex] > *:nth-child(-n+4) {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  [data-layout=four-up] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  [data-layout=four-up] > * {
    margin-bottom: 2rem;
  }
  [data-layout=four-up] > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [data-layout=four-up] > * {
    grid-column: span 6;
  }
}
@media (min-width: 1024px) {
  [data-layout=four-up] > * {
    grid-column: span 3;
  }
}

@media (min-width: 768px) {
  [data-layout=masonry] {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  [data-layout=masonry] > * {
    margin-bottom: 25px;
  }
  [data-layout=masonry] > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  [data-layout=masonry] > *:nth-child(4n+1) {
    grid-column-start: 1;
    grid-column-end: 6;
    height: 385px;
  }
}
@media (min-width: 1024px) {
  [data-layout=masonry] > *:nth-child(4n+1) {
    height: 585px;
  }
}
@media (min-width: 768px) {
  [data-layout=masonry] > *:nth-child(4n+2) {
    grid-column-start: 6;
    grid-column-end: 13;
    height: 385px;
  }
}
@media (min-width: 1024px) {
  [data-layout=masonry] > *:nth-child(4n+2) {
    height: 585px;
  }
}
@media (min-width: 768px) {
  [data-layout=masonry] > *:nth-child(4n+3) {
    grid-column-start: 1;
    grid-column-end: 8;
    height: 485px;
  }
}
@media (min-width: 1024px) {
  [data-layout=masonry] > *:nth-child(4n+3) {
    height: 830px;
  }
}
@media (min-width: 768px) {
  [data-layout=masonry] > *:nth-child(4n+4) {
    grid-column-start: 8;
    grid-column-end: 13;
    height: 485px;
  }
}
@media (min-width: 1024px) {
  [data-layout=masonry] > *:nth-child(4n+4) {
    height: 830px;
  }
}

[data-layout=member-two-up] {
  display: flex;
}
@media (max-width: 767px) {
  [data-layout=member-two-up] {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  [data-layout=member-two-up] {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  [data-layout=member-two-up] > * {
    margin-bottom: 2rem;
  }
  [data-layout=member-two-up] > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  [data-layout=member-two-up] > *:first-child {
    width: 42%;
    max-width: 550px;
  }
}
@media (min-width: 768px) {
  [data-layout=member-two-up] > *:last-child {
    width: 42%;
  }
}

@media (min-width: 768px) {
  [data-layout=offset-one] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  [data-layout=offset-one] > * {
    grid-column-start: 2;
    grid-column-end: 13;
  }
}

[data-layout=one-up] > * {
  margin-bottom: 2rem;
}
[data-layout=one-up] > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  [data-layout=six-up] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  [data-layout=six-up] > * {
    margin-bottom: 2rem;
  }
  [data-layout=six-up] > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [data-layout=six-up] > * {
    grid-column: span 3;
  }
}
@media (min-width: 1024px) {
  [data-layout=six-up] > * {
    grid-column: span 2;
  }
}

[data-layout=sponsors] {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
[data-layout=sponsors] > * {
  grid-column: span 6;
  padding: 15%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  [data-layout=sponsors] > * {
    grid-column: span 4;
  }
}
@media (min-width: 1024px) {
  [data-layout=sponsors] > * {
    grid-column: span 3;
  }
}

@media (min-width: 768px) {
  [data-layout=three-seven] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  [data-layout=three-seven] > * {
    margin-bottom: calc(2rem / 2);
  }
  [data-layout=three-seven] > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [data-layout=three-seven] > *:first-child {
    grid-column: span 4;
  }
}
@media (min-width: 1024px) {
  [data-layout=three-seven] > *:first-child {
    grid-column: span 3;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [data-layout=three-seven] > *:last-child {
    grid-column: span 8;
  }
}
@media (min-width: 1024px) {
  [data-layout=three-seven] > *:last-child {
    grid-column: span 7;
  }
}

@media (min-width: 1024px) {
  [data-layout=three-seven-form] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 1023px) {
  [data-layout=three-seven-form] > * {
    margin-bottom: calc(2rem / 2);
  }
  [data-layout=three-seven-form] > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1535px) {
  [data-layout=three-seven-form] > *:first-child {
    grid-column: span 4;
  }
}
@media (min-width: 1280px) {
  [data-layout=three-seven-form] > *:first-child {
    grid-column: span 3;
  }
}
@media (min-width: 1024px) and (max-width: 1535px) {
  [data-layout=three-seven-form] > *:last-child {
    grid-column: span 8;
  }
}
@media (min-width: 1280px) {
  [data-layout=three-seven-form] > *:last-child {
    grid-column: span 7;
  }
}

@media (min-width: 768px) {
  [data-layout=three-nine] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
  [data-layout=three-nine] > * {
    grid-column: span 12;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  [data-layout=three-nine] > *:first-child {
    grid-column: span 4;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  [data-layout=three-nine] > *:first-child {
    grid-column: span 3;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  [data-layout=three-nine] > *:last-child {
    grid-column: span 8;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  [data-layout=three-nine] > *:last-child {
    grid-column: span 9;
  }
}

[data-layout=three-up-form] {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
}
[data-layout=three-up-form] > * {
  grid-column: span 12;
}
@media (min-width: 768px) {
  [data-layout=three-up-form] > * {
    grid-column: span 6;
  }
}
@media (min-width: 1024px) {
  [data-layout=three-up-form] > * {
    grid-column: span 4;
  }
}

@media (min-width: 768px) {
  [data-layout=three-up] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  [data-layout=three-up] > * {
    margin-bottom: 2rem;
  }
  [data-layout=three-up] > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  [data-layout=three-up] > * {
    grid-column: span 4;
  }
}

@media (min-width: 768px) {
  [data-layout=two-up] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  [data-layout=two-up] > * {
    margin-bottom: 2rem;
  }
  [data-layout=two-up] > *:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  [data-layout=two-up] > * {
    grid-column: span 6;
  }
}

[data-layout=member-bubbles] {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 499px) {
  [data-layout=member-bubbles] {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  [data-layout=member-bubbles] .member-bubble {
    max-width: 31%;
    margin-right: 2%;
    margin-bottom: 1em;
  }
}
@media (min-width: 768px) {
  [data-layout=member-bubbles] .member-bubble {
    max-width: 18%;
    margin-right: 2%;
  }
}

@media (min-width: 1024px) {
  [data-layout=three-offset-nine] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  [data-layout=three-offset-nine] > * {
    grid-column-start: 4;
    grid-column-end: 13;
  }
}

.homepage-thumbs {
  overflow: hidden;
}
.homepage-thumbs__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.homepage-thumbs .h2, .homepage-thumbs .heading h2, .heading .homepage-thumbs h2, .homepage-thumbs .subscription-block__title, .homepage-thumbs .intro-text__title, .homepage-thumbs .rich-text h2, .rich-text .homepage-thumbs h2, .homepage-thumbs .filter-group-timeline__title, .homepage-thumbs .member-showcase__title, .homepage-thumbs .form-title, .homepage-thumbs .cta-content__title, .homepage-thumbs .sponsors__title {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .homepage-thumbs [data-layout=one-up] > .col {
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #C8C2BD;
  }
}

.home-hero {
  display: flex;
  min-height: calc(100vh - 81px);
  background-color: #F9F6F0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-hero {
    min-height: calc(100vh - 124px);
  }
}
.home-hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
@media (max-width: 767px) {
  .home-hero canvas {
    display: none !important;
  }
}
.home-hero__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 100%;
}
.home-hero__title {
  text-align: center;
  font-family: "domaine display", serif;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  z-index: 1;
  max-width: 1135px;
  margin: 0 auto;
  text-shadow: 0 0 3px #FFFEFB;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .home-hero__title {
    font-size: 60px;
    line-height: 68px;
    margin-top: 55px;
    margin-bottom: 45px;
  }
}
@media (min-width: 1024px) {
  .home-hero__title {
    font-size: 80px;
    line-height: 88px;
  }
}
.home-hero__ctas {
  pointer-events: all;
}
.home-hero .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  z-index: 2;
  pointer-events: none;
}
.home-hero .members {
  z-index: 0;
  pointer-events: none;
}
.home-hero .members .member {
  pointer-events: all;
}
.home-hero .members--intro {
  padding-top: 0;
  height: 100%;
}
@media (max-width: 767px) {
  .home-hero .members--intro {
    display: none !important;
  }
}
.home-hero .members--intro-mobile {
  height: 100%;
  display: none;
}
@media (max-width: 767px) {
  .home-hero .members--intro-mobile {
    display: block;
  }
  .home-hero .members--intro-mobile .member {
    width: 140px;
    padding-top: 140px;
    position: absolute;
  }
  .home-hero .members--intro-mobile .member:nth-child(1) {
    top: 20px;
    right: -20px;
  }
  .home-hero .members--intro-mobile .member:nth-child(2) {
    bottom: 20px;
    left: -20px;
  }
}

.home-ctas {
  overflow: hidden;
}
.home-ctas__ctas {
  width: 100%;
}
@media (min-width: 768px) {
  .home-ctas__ctas {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .home-ctas__cta {
    margin-bottom: 20px;
  }
  .home-ctas__cta:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .home-ctas__cta {
    border-left: 1px solid #121418;
    padding-left: 24px;
    grid-column: span 6;
  }
}
@media (min-width: 1280px) {
  .home-ctas__cta {
    grid-column: span 4;
  }
}
.home-ctas__cta-title {
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .home-ctas__cta-title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 6px;
  }
}
.home-ctas__cta-link {
  font-size: 18px;
  line-height: 26px;
  color: #797979;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: 0.3s ease color;
}
@media (min-width: 768px) {
  .home-ctas__cta-link {
    font-size: 22.5px;
    line-height: 28px;
  }
}
.home-ctas__cta-link:hover {
  color: #515050;
}
.home-ctas__cta-link:hover .icon {
  transform: translateX(5px);
}
.home-ctas__cta-link .icon {
  margin-left: 17px;
  transition: 0.3s ease transform;
}
.home-ctas .inner {
  padding-bottom: 0;
}

.newsletter {
  background-color: #222325;
  color: #FFFFFF;
}
.newsletter__title {
  margin-bottom: 8px;
}
.newsletter__text {
  color: #797979;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .newsletter__text {
    margin-bottom: 42px;
  }
}
.newsletter__form {
  display: flex;
  border: 1px solid #C8C2BD;
  border-radius: 50px;
  max-width: 700px;
}
.newsletter__input {
  font-size: 18px;
  font-family: "poppins";
  padding: 5px 16px;
  background-color: transparent;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .newsletter__input {
    padding: 5px 20px;
  }
}
.newsletter__input::placeholder {
  color: #797979;
}
.newsletter__submit {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 25px;
  background-color: #C8C2BD;
  border-radius: 50px;
  color: #121418;
  transition: 0.3s ease background-color;
}
@media (min-width: 768px) {
  .newsletter__submit {
    font-size: 18px;
    padding: 14px 40px;
  }
}
.newsletter__submit:hover {
  background-color: #FFFFFF;
}
.newsletter .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .newsletter .col:first-child {
    grid-column: span 8;
  }
}
@media (min-width: 1024px) {
  .newsletter .col:last-child {
    grid-column: span 4;
  }
}
.newsletter .inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .newsletter .inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.newsletter .icon--email {
  color: #C8C2BD;
  min-width: 24px;
  margin-top: 9px;
  margin-left: 20px;
}
@media (min-width: 768px) {
  .newsletter .icon--email {
    min-width: 27px;
    margin-top: 15px;
    margin-left: 28px;
  }
}
.newsletter .logo--newsletter {
  margin-left: auto;
}
@media (min-width: 768px) {
  .newsletter .logo--newsletter {
    display: block;
  }
}
@media (min-width: 768px) {
  .newsletter [data-layout=two-up] .col:first-child {
    grid-column: span 8;
  }
}
.newsletter [data-layout=two-up] .col:last-child {
  grid-column: span 4;
}
@media (max-width: 767px) {
  .newsletter [data-layout=two-up] .col:last-child {
    display: none;
  }
}

.page-title {
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  background-color: #F9F6F0;
}
@media (min-width: 768px) {
  .page-title {
    min-height: 340px;
  }
}
.page-title__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}
.page-title__text {
  color: #797979;
  margin-bottom: 24px;
  display: block;
}
.page-title__title {
  margin-bottom: 9px;
}
@media (min-width: 768px) {
  .page-title__title {
    margin-bottom: 24px;
  }
}
.page-title__date {
  color: #E0B9A2;
  margin-bottom: 0;
  font-weight: 500;
}
@media (min-width: 768px) {
  .page-title__date {
    font-size: 20px;
  }
}
.page-title__subheading {
  font-size: 16px;
  display: block;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .page-title__subheading {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.page-title__sponsor {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .page-title__sponsor {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-title__sponsor {
    grid-column: 9/span 4;
    row-gap: 7px;
  }
}
@media (min-width: 1024px) {
  .page-title__sponsor {
    grid-column: 10/span 3;
    row-gap: 13px;
  }
}
.page-title__sponsor-by {
  margin: 0;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-title__sponsor-by {
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    color: #515050;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .page-title__sponsor-by {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .page-title__sponsor-by {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .page-title__sponsor-by {
    line-height: 24px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .page-title__sponsor-by {
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .page-title [data-layout=two-up] .col {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .page-title [data-layout=two-up] .col:first-child {
    grid-column: span 7;
  }
}
@media (min-width: 1024px) {
  .page-title [data-layout=two-up] .col:first-child {
    grid-column: span 8;
  }
}
@media (min-width: 768px) {
  .page-title [data-layout=two-up] .col:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    grid-column: span 5;
  }
}
@media (min-width: 1024px) {
  .page-title [data-layout=two-up] .col:last-child {
    grid-column: span 4;
  }
}
@media (min-width: 768px) {
  .page-title .button--chevron {
    margin-bottom: 20px;
  }
}
.page-title .link--arrow-left {
  margin-bottom: 50px;
}
.page-title .inner {
  padding-top: 35px;
  padding-bottom: 35px;
}
@media (min-width: 768px) {
  .page-title .inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.page-title .icon--header-deco {
  height: 100%;
  position: absolute;
  bottom: 0;
  right: -20%;
  object-fit: contain;
  object-position: bottom;
}

.pie-chart {
  z-index: 1;
}
.pie-chart__quantity {
  position: relative;
  font-size: 100px;
  line-height: 100px;
  font-family: "domaine display", serif;
  min-width: 2em;
}
@media (min-width: 768px) {
  .pie-chart__quantity {
    font-size: 16vw;
    line-height: 16vw;
    margin-right: 25px;
  }
}
@media (min-width: 1536px) {
  .pie-chart__quantity {
    font-size: 240px;
    margin-right: 40px;
  }
}
.pie-chart__wrap {
  display: flex;
  width: 100%;
}
@media (max-width: 767px) {
  .pie-chart__wrap {
    justify-content: center;
  }
}
.pie-chart__content {
  z-index: 1;
  pointer-events: none;
  text-align: center;
}
@media (min-width: 768px) {
  .pie-chart__content {
    align-items: center;
    display: flex;
  }
}
.pie-chart__action {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .pie-chart__action {
    align-items: flex-start;
  }
}
.pie-chart__title {
  font-family: "domaine display", serif;
  font-size: 34px;
  line-height: 45px;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .pie-chart__title {
    font-size: 3.6vw;
    line-height: 4vw;
    margin-bottom: 6px;
  }
}
@media (min-width: 1536px) {
  .pie-chart__title {
    font-size: 44px;
    line-height: 54px;
  }
}
.pie-chart__chart {
  position: absolute;
}
@media (max-width: 767px) {
  .pie-chart__chart {
    width: 80%;
    max-width: 550px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 768px) {
  .pie-chart__chart {
    width: 43%;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
  }
}
.pie-chart__chart-label {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #797979;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .pie-chart__chart-label {
    min-height: 3em;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .pie-chart__chart-label {
    font-size: 2vw;
    line-height: 2.5vw;
    margin-bottom: 10px;
  }
}
@media (min-width: 1536px) {
  .pie-chart__chart-label {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 15px;
  }
}
.pie-chart .button--primary {
  pointer-events: all;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pie-chart .button--chevron {
    font-size: 14px;
    padding: 8px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1535px) {
  .pie-chart .button--chevron {
    font-size: 16px;
    padding: 12px 20px;
  }
}
.pie-chart .inner {
  padding-top: 10%;
  padding-bottom: 10%;
}
@media (min-width: 500px) {
  .pie-chart .inner {
    padding-top: 20%;
    padding-bottom: 20%;
  }
}
@media (min-width: 768px) {
  .pie-chart .inner {
    display: flex;
    align-items: center;
    padding-top: 12%;
    padding-bottom: 15%;
  }
}
@media (min-width: 1280px) {
  .pie-chart .inner {
    padding-top: 200px;
    padding-bottom: 250px;
  }
}

.form__heading .inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .form__heading .inner {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
@media (min-width: 768px) {
  .form__items {
    display: flex;
  }
}
.form__pane {
  display: none;
}
.form__pane.is-active {
  display: block;
}
.form__panes {
  padding-top: 70px;
  margin-top: 20px;
}
.form__form-heading {
  margin-bottom: 40px;
}
.form__form-heading > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .form__form-heading {
    margin-bottom: 70px;
  }
}
.form [data-layout] {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .form [data-layout] {
    margin-bottom: 50px;
  }
}
@media (max-width: 1023px) {
  .form [data-layout=three-seven-form] > .col {
    margin-top: 50px;
  }
  .form [data-layout=three-seven-form] > .col:first-child {
    margin-top: 0;
  }
}
.form .h2, .form .heading h2, .heading .form h2, .form .subscription-block__title, .form .intro-text__title, .form .rich-text h2, .rich-text .form h2, .form .filter-group-timeline__title, .form .member-showcase__title, .form .form-title, .form .cta-content__title, .form .sponsors__title {
  margin-bottom: 28px;
}
.form .h4, .form .heading h4, .heading .form h4, .form .color-block__title, .form .search-result--info--title, .form .rich-text h4, .rich-text .form h4, .form .nav-sidebar__key span, .nav-sidebar__key .form span, .form .project-details__title, .form .filter-group__title, .form .member-info__mentorship-title, .form .no-results__message, .form .contact__title, .form .pagination__total, .form .sponsors__subtitle, .form .filter-groups__title, .form .newsletter__text {
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .form .step {
    margin-bottom: 28px;
  }
}
@media (min-width: 768px) {
  .form .step {
    margin-right: 14px;
  }
}
.form .step:last-child .h5:after, .form .step:last-child .section-heading__title:after, .form .step:last-child .heading h5:after, .heading .form .step:last-child h5:after, .form .step:last-child .color-block__counter:after, .form .step:last-child .rich-text h5:after, .rich-text .form .step:last-child h5:after, .form .step:last-child .project-details__label:after, .form .step:last-child .color-blocks__title:after, .form .step:last-child .contact-social__title:after, .form .step:last-child .contact-info__title:after, .form .step:last-child .form-subtitle:after, .form .step:last-child .form-label:after, .form .step:last-child .entry-thumb__category:after, .form .step:last-child .button--pagination:after, .form .step:last-child .title-text__title:after, .form .step:last-child .member-info__available:after, .form .step:last-child .member-info__details .link--secondary:after, .member-info__details .form .step:last-child .link--secondary:after, .form .step:last-child .member-info__company:after, .form .step:last-child .scroll-to__title:after, .form .step:last-child .pagination__link:after, .form .step:last-child .page-title__date:after {
  display: none;
}
@media (min-width: 768px) {
  .form .step:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .form .step:last-child {
    margin-bottom: 0;
  }
}
.form--unsub [data-layout=two-up] {
  margin-bottom: 0;
}
.form--unsub .form-error {
  margin-bottom: 30px;
}
.form--unsub .form-group {
  max-width: 450px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.form--unsub .form-group:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .form--unsub .form-group {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.form--sub-success .button--primary {
  margin-top: 50px;
}
.form--product .button--chevron {
  margin-bottom: 0;
}

.filter-groups__actions {
  display: flex;
  justify-content: space-between;
}
.filter-groups__title {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.filter-groups__title .icon--chevron {
  transition: 0.3s ease transform;
  margin-left: 30px;
  margin-bottom: 0px;
  transform: rotate(0deg);
}
@media (min-width: 768px) {
  .filter-groups__title .icon--chevron {
    margin-bottom: 4px;
  }
}
.filter-groups__title.is-active .icon--chevron {
  transform: rotate(90deg);
}
.filter-groups__groups {
  overflow: hidden;
  height: 0;
}
.filter-groups__wrap {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .filter-groups__wrap {
    margin-top: 60px;
  }
}
.filter-groups .filter-group {
  margin-bottom: 12px;
}
.filter-groups .filter-group:last-child {
  margin-bottom: 0;
}
.filter-groups .inner {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .filter-groups .inner {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

.entry-nav {
  border-top: 1px solid #C8C2BD;
  border-bottom: 1px solid #C8C2BD;
}
.entry-nav .inner {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .entry-nav .inner {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .entry-nav [data-layout=two-up] {
    display: flex;
    justify-content: space-between;
  }
  .entry-nav [data-layout=two-up] > * {
    margin-bottom: 0;
  }
}

.footer {
  background: #121418;
  color: #FFFFFF;
}

.sponsors__title {
  margin-bottom: 25px;
}
.sponsors--smaller .sponsors__subtitle {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .sponsors--smaller .sponsors__subtitle {
    margin-bottom: 40px;
  }
}

.pagination {
  border-top: 1px solid #C8C2BD;
  border-bottom: 1px solid #C8C2BD;
}
.pagination__total {
  margin-bottom: 0;
}
.pagination__container {
  display: flex;
}
.pagination__link {
  display: inline-block;
  padding: 4px 8px;
  background-color: transparent;
  border-radius: 100%;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  transition: 0.3s ease background-color;
  margin-left: 8px;
  margin-right: 8px;
}
.pagination__link:not(.pagination__link--ignore).is-active, .pagination__link:not(.pagination__link--ignore):hover {
  background-color: #F3E28B;
}
@media (max-width: 767px) {
  .pagination--desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .pagination--mobile {
    display: none;
  }
}
.pagination .button--pagination-prev {
  margin-right: 25px;
}
.pagination .button--pagination-next {
  margin-left: 25px;
}
.pagination .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .pagination .inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.contact__title {
  margin-bottom: 50px;
}
.contact .contact-info {
  margin-bottom: 35px;
}
.contact .contact-social {
  margin-top: 50px;
}

.scroll-to__item {
  margin-bottom: 40px;
}
.scroll-to__item:last-child {
  margin-bottom: 0;
}
.scroll-to .side-nav {
  position: sticky;
  top: 30px;
}
@media (max-width: 767px) {
  .scroll-to .side-nav {
    display: none;
  }
}

@media (min-width: 1024px) {
  .content-blocks--with-sidebar .free-text .rich-text {
    grid-column-start: 1;
    grid-column-end: 11;
  }
}
@media (min-width: 1024px) {
  .content-blocks--with-sidebar .full-image .full-image__wrap,
  .content-blocks--with-sidebar .full-video .full-video__wrap,
  .content-blocks--with-sidebar .heading .heading__content,
  .content-blocks--with-sidebar .section-heading .section-heading__container,
  .content-blocks--with-sidebar .media-gallery .carousel {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}
@media (min-width: 1024px) {
  .content-blocks--with-sidebar .feedback__wrap {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content-blocks--with-sidebar .feedback__wrap {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content-blocks--with-sidebar .feedback__member {
    padding-top: 80%;
  }
}
.content-blocks--with-sidebar .color-blocks [data-layout=four-up-flex] {
  row-gap: 2rem;
}
.content-blocks--with-sidebar .color-blocks [data-layout=four-up-flex] > *:nth-child(-n+4) {
  margin-top: 2rem;
}
.content-blocks--with-sidebar .color-blocks [data-layout=four-up-flex] > *:nth-child(-n+3) {
  margin-top: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content-blocks--with-sidebar .color-blocks [data-layout=four-up-flex] > .col {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .content-blocks--with-sidebar .color-blocks [data-layout=four-up-flex] > .col {
    width: 33.333%;
  }
}
.content-blocks > *:not(.heading), .content-blocks > *:not(.link) {
  margin-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content-blocks > *:not(.heading), .content-blocks > *:not(.link) {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .content-blocks > *:not(.heading), .content-blocks > *:not(.link) {
    margin-bottom: 4rem;
  }
}
.content-blocks > *:not(.heading):last-child, .content-blocks > *:not(.link):last-child {
  margin-bottom: 0;
}
.content-blocks > .heading, .content-blocks > .link {
  margin-bottom: calc(2rem / 2);
}
@media (min-width: 768px) {
  .content-blocks > .heading, .content-blocks > .link {
    margin-bottom: 2rem;
  }
}
.content-blocks > .heading:last-child, .content-blocks > .link:last-child {
  margin-bottom: 0;
}
.content-blocks .link--arrow-left {
  margin-bottom: 30px;
}

.header-desktop {
  position: relative;
  background-color: #F9F6F0;
  z-index: 4;
}
.header-desktop:before, .header-desktop:after {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  transition-property: opacity, visibility;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.header-desktop:before {
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.header-desktop:after {
  width: 100%;
  height: 60vh;
  min-height: 500px;
  background-color: #F9F6F0;
  z-index: 2;
}
.header-desktop.is-active:before, .header-desktop.is-active:after {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1279px) {
  .header-desktop {
    border-bottom: 1px solid #C8C2BD;
  }
}
.header-desktop__col {
  display: flex;
  align-items: center;
}
@media (max-width: 1279px) {
  .header-desktop__col:nth-child(1) {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .header-desktop__col:nth-child(1) {
    flex-basis: 150px;
  }
}
.header-desktop__col:nth-child(2) {
  flex-grow: 1;
  justify-content: center;
}
@media (max-width: 1279px) {
  .header-desktop__col:nth-child(2) {
    display: none;
  }
}
@media (max-width: 1279px) {
  .header-desktop__col:nth-child(3) {
    display: none;
  }
}
.header-desktop__search {
  position: absolute;
  left: 0;
  top: 125px;
  width: 100%;
  padding: 0px 35px;
  background-color: #F9F6F0;
  transition: 0.3s ease;
  transition-property: opacity, visibility;
  visibility: hidden;
  opacity: 0;
}
.header-desktop__search.is-active {
  visibility: visible;
  opacity: 1;
}
.header-desktop__search__bar {
  display: flex;
  gap: 20px;
  padding-top: 60px;
  border-bottom: 1px solid #C8C2BD;
  padding-bottom: 16px;
  margin-bottom: 45px;
}
.header-desktop__search__bar .icon {
  color: #E0B9A2;
  margin: auto;
}
.header-desktop__search__bar .form-input {
  font-size: 18px;
  line-height: 30px;
  color: #797979;
  border: none;
  padding: 0;
  outline: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header-desktop__search__bar .form-input {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .header-desktop__search__bar .form-input {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header-desktop__search__bar .form-input {
    line-height: 32px;
  }
}
@media (min-width: 1024px) {
  .header-desktop__search__bar .form-input {
    line-height: 36px;
  }
}
.header-desktop__search__bar .form-input:focus {
  border: none;
}
.header-desktop__search__results {
  padding-bottom: 120px;
}
.header-desktop__search__results__heading {
  font-size: 14px;
  line-height: 21px;
  color: #797979;
  margin-bottom: 20px;
}
.header-desktop__search__results [data-search-result-layout] {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  height: 400px;
  overflow: scroll;
}
.header-desktop__search__results [data-search-result-layout] > * {
  grid-column: span 4;
}
.header-desktop .inner {
  display: flex;
  padding-top: 16px;
  padding-bottom: 16px;
  z-index: 5;
}
@media (min-width: 1280px) {
  .header-desktop .inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .header-desktop .button--hamburger {
    display: none;
  }
}

.header-mobile {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  transition-property: opacity, visibility;
  position: fixed;
  display: flex;
  align-items: flex-end;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 60px;
  z-index: 10;
  background-color: #F9F6F0;
}
.header-mobile.is-active {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1280px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile__wrap {
  width: 100%;
  position: relative;
  padding: 60px 35px;
  z-index: 10;
}
.header-mobile__wrap.is-hidden {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
.header-mobile__nav-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.header-mobile__nav-item:last-child {
  margin-bottom: 0;
}
.header-mobile__subnav {
  margin-top: 30px;
}
.header-mobile__subnav-item {
  margin-bottom: 22px;
}
.header-mobile .header-nav {
  margin-top: 25px;
}
.header-mobile .button--close {
  position: absolute;
  top: 14px;
  right: 8px;
}
.header-mobile .button--back {
  position: absolute;
  left: 0;
  top: 0;
}

.footer {
  background: #121418;
  color: #FFFFFF;
}

.cta-content__buttons {
  display: flex;
}
@media (max-width: 767px) {
  .cta-content__buttons {
    flex-direction: column;
  }
}
.cta-content__title {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .cta-content [data-layout=two-up] {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .cta-content [data-layout=two-up] > *:first-child {
    grid-column: span 4;
  }
}
@media (min-width: 1024px) {
  .cta-content [data-layout=two-up] > *:last-child {
    grid-column: span 8;
  }
}
@media (max-width: 767px) {
  .cta-content .button--primary {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .cta-content .button--primary {
    margin-right: 15px;
  }
}
.cta-content .rich-text {
  margin-bottom: 0;
}

.no-results {
  text-align: center;
}
.no-results.is-hidden {
  display: none;
}
.no-results__message {
  margin-bottom: 0;
}

.member-info__photo {
  padding-top: 100%;
}
@media (min-width: 768px) {
  .member-info__photo {
    margin-top: calc(-50% - 70px);
  }
}
.member-info__photo-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.member-info__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.member-info__details > * {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .member-info__details > * {
    margin-bottom: 18px;
  }
}
.member-info__details > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .member-info__details .button--chevron {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .member-info__details .button--chevron {
    margin-top: 20px;
  }
}
.member-info__available {
  padding: 10px 20px;
  background-color: #F3E28B;
}
@media (max-width: 767px) {
  .member-info__available {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .member-info__available {
    font-size: 12px;
    font-weight: bold;
    padding: 5px 20px;
  }
}
.member-info__mentorship {
  margin-bottom: 40px;
}
.member-info__mentorship:last-child {
  margin-bottom: 0;
}
.member-info__mentorship-header {
  position: relative;
  padding-left: 70px;
}
.member-info__mentorship-header .icon--member {
  position: absolute;
  left: 0;
  top: 0;
}
.member-info__mentorship-title {
  margin-bottom: 0;
}
.member-info__mentorship-content {
  margin-top: 40px;
}
.member-info__mentorship-content p:last-child {
  margin-bottom: 0;
}
.member-info__mentorship-trigger {
  text-decoration: underline;
  margin-top: 10px;
  font-size: 18px;
}
.member-info__mentorship-trigger:hover {
  text-decoration: none;
}
.member-info__mentorship-target {
  height: 0;
  overflow: hidden;
}
.member-info__container--border {
  border-top: 1px solid #C8C2BD;
}
@media (min-width: 768px) {
  .member-info [data-layout=member-two-up] {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
.member-info [data-layout=member-two-up]:first-child {
  padding-top: 0;
}
@media (max-width: 767px) {
  .member-info [data-layout=member-two-up]:first-child {
    flex-direction: column-reverse;
    padding-bottom: 0;
  }
  .member-info [data-layout=member-two-up]:first-child .col:first-child {
    margin-bottom: 0;
    margin-top: 25px;
  }
}
@media (min-width: 768px) {
  .member-info [data-layout=member-two-up]:last-child {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .member-info [data-layout=member-two-up]:last-child {
    padding-top: 40px;
  }
}
.member-info .inner {
  padding-top: 40px;
}

.compact-form .inner {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.compact-form .form-group:last-child {
  display: flex;
  flex-direction: column;
}
.compact-form .form-group:last-child > * {
  margin-bottom: 15px;
}
.compact-form .form-group:last-child > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .breadcrumbs__items {
    display: flex;
  }
}
.breadcrumbs__link, .breadcrumbs__item {
  font-size: 12px;
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .breadcrumbs__link, .breadcrumbs__item {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .breadcrumbs__link, .breadcrumbs__item {
    font-size: 16px;
  }
}
.breadcrumbs__link {
  font-weight: 700;
  transition: 0.3s ease color;
  color: #121418;
}
.breadcrumbs__link:hover {
  color: #515050;
}
.breadcrumbs__item {
  color: #515050;
}
@media (max-width: 1279px) {
  .breadcrumbs__item {
    display: inline;
  }
}
.breadcrumbs__item:after {
  content: ">";
  display: inline-block;
  margin-left: 12px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .breadcrumbs__item:after {
    margin-left: 20px;
    margin-right: 16px;
    font-size: 16px;
  }
}
.breadcrumbs__item:last-child:after {
  display: none;
}
.breadcrumbs .inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .breadcrumbs .inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1280px) {
  .breadcrumbs .inner {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .no-padding {
    border-top: 1px solid #C8C2BD;
  }
}
.no-padding .inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .no-padding .inner {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.intro-text .h3, .intro-text .heading h3, .heading .intro-text h3, .intro-text .rich-text h3, .rich-text .intro-text h3, .intro-text .big-heading__title {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .intro-text .inner {
    padding-bottom: 0;
  }
}
.intro-text .title-text {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .intro-text .title-text {
    border-top: none;
    padding-top: 0;
  }
}

.title-text-group .title-text:last-child {
  padding-bottom: 0;
}

.subscriptions-group {
  padding-top: 35px;
  padding-bottom: 35px;
}
@media (min-width: 768px) {
  .subscriptions-group {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}
.subscriptions-group__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 45px;
  margin-bottom: 15px;
}
.subscriptions-group__intro {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
}
@media (min-width: 768px) {
  .subscriptions-group__intro {
    font-size: 28px;
    line-height: 42px;
  }
}
.subscriptions-group__text {
  font-size: 22.5px;
  line-height: 28px;
}
.subscriptions-group--no-padding {
  padding-top: 0;
}
.subscriptions-group--border {
  border-top: 1px solid #C8C2BD;
}
.subscriptions-group [data-layout=three-up] {
  margin-top: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .subscriptions-group [data-layout=three-up] > * {
    grid-column: span 6;
  }
}
@media (min-width: 1024px) and (max-width: 1535px) {
  .subscriptions-group [data-layout=three-up] > * {
    grid-column: span 4;
  }
}
@media (max-width: 767px) {
  .subscriptions-group [data-layout=three-up] > * {
    margin-bottom: 1rem;
  }
}

@media (min-width: 1536px) {
  .subscriptions-groups .inner {
    padding-left: calc(8.333% * 2 + 2rem * 2);
  }
}
.subscriptions-groups .subscriptions-group:last-child {
  padding-bottom: 0;
}

.awards-sidebar-content .nav-sidebar {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .awards-sidebar-content .nav-sidebar {
    margin-bottom: 0;
  }
}

.subscription-form .subscription-block {
  max-width: 380px;
}
@media (min-width: 768px) {
  .subscription-form .subscription-block {
    max-width: 450px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .subscription-form [data-layout=two-up] {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .subscription-form [data-layout=two-up] > *:first-child {
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .subscription-form [data-layout=two-up] > *:first-child {
    grid-column: span 5;
  }
  .subscription-form [data-layout=two-up] > *:last-child {
    grid-column: span 7;
  }
}

.core-member:hover .core-member__image-bg {
  transform: scale(1.1);
}
.core-member__image {
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}
.core-member__image-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  transition: 0.2s ease transform;
}
.core-member__name {
  display: block;
  font-weight: 600;
  color: #121418;
  margin-top: 4px;
}
.core-member__role {
  display: block;
  font-size: 14px;
  color: #797979;
}

.title-text {
  padding: 20px 0 30px 0;
  border-top: 1px solid #C8C2BD;
}
@media (min-width: 768px) {
  .title-text {
    padding: 30px 0 80px 0;
  }
}
@media (min-width: 768px) {
  .title-text__content {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
.title-text__title {
  max-width: 400px;
  width: 100%;
  min-width: 300px;
}
@media (min-width: 768px) {
  .title-text__title {
    grid-column-start: 1;
    grid-column-end: 5;
  }
}
@media (max-width: 767px) {
  .title-text__title {
    margin-bottom: 20px;
  }
}
.title-text__text ul,
.title-text__text ol {
  margin: 0 0 25px 0;
  padding: revert;
}
.title-text__text ul {
  list-style: unset;
}
.title-text__text ol {
  list-style: decimal;
}
@media (min-width: 768px) {
  .title-text__text {
    grid-column-start: 5;
    grid-column-end: 13;
  }
}
.title-text__text > *:last-child {
  margin-bottom: 0;
}
.title-text__image {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .title-text__image {
    margin-top: 40px;
  }
}

.alert-wrap .inner {
  padding-top: 40px;
  padding-bottom: 0;
}
.alert-wrap .alert {
  margin-bottom: 0;
}

.alert {
  display: block;
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  margin-bottom: 40px;
}
.alert--success {
  background-color: #e5f6ec;
}
.alert--error {
  background-color: #f2baba;
}

.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 14px 30px;
  font-family: "poppins";
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease background-color;
}
@media (min-width: 768px) {
  .button {
    font-size: 18px;
  }
}
.button--primary {
  background-color: #121418;
  color: #FFFFFF;
  min-width: 200px;
}
.button--primary:hover {
  background-color: rgb(28.9285714286, 32.1428571429, 38.5714285714);
}
.button--chevron {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: auto;
  padding: 14px 20px;
}
.button--chevron .icon--chevron {
  transition: 0.3s ease transform;
  color: #FFFFFF;
  margin-left: 14px;
}
.button--chevron:hover .icon--chevron {
  transform: translateX(4px);
}
.button--chevron-rotate .icon--chevron {
  transform: rotate(180deg);
}
.button--chevron-rotate:hover .icon--chevron {
  transform: translateX(-4px) rotate(180deg);
}
@media (max-width: 767px) {
  .button--grow-mobile {
    width: 100%;
  }
}
.button--small {
  font-size: 14.4px;
  padding: 12px 25px;
  min-width: 125px;
}
.button--close {
  color: #121418;
  padding: 20px;
  transition: 0.3s ease color;
}
.button--close:hover {
  color: #E0B9A2;
}
.button--back {
  color: #121418;
  padding: 20px;
  transition: 0.3s ease color;
}
.button--back:hover {
  color: #E0B9A2;
}
.button--back.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  transition-property: opacity, visibility;
}
.button--back .icon--right-arrow {
  transform: rotate(180deg);
}
.button--search {
  padding: 0;
  transition: 0.3s ease color;
}
.button--search:hover {
  color: #E0B9A2;
}
.button--social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.button--social .icon {
  transition: 0.3s ease color;
}
.button--social-grey:hover .icon {
  color: #FFFFFF;
}
.button--social-grey .icon {
  color: #C8C2BD;
}
.button--social-black:hover .icon {
  color: #515050;
}
.button--social-black .icon {
  color: #121418;
}
.button--pagination {
  display: flex;
  align-items: center;
  padding: 0;
  text-transform: uppercase;
  margin-bottom: 0;
}
.button--pagination .icon--chevron {
  transition: 0.3s ease transform;
}
.button--pagination-prev:hover .icon--chevron {
  transform: translateX(-4px) rotate(180deg);
}
.button--pagination-prev .icon--chevron {
  transform: rotate(180deg);
  margin-right: 16px;
}
.button--pagination-next:hover .icon--chevron {
  transform: translateX(4px);
}
.button--pagination-next .icon--chevron {
  margin-left: 16px;
}
.button--hamburger {
  padding-left: 10px;
  padding-right: 10px;
  transform: translateX(10px);
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.flickity-button {
  background-color: #121418;
  color: #FFFFFF;
  margin-top: -25px;
}
.flickity-button:focus {
  box-shadow: none;
}
.flickity-button:hover, .flickity-button:active {
  background-color: #515050;
  opacity: 1;
}

.flickity-prev-next-button {
  border-radius: 0;
}
.flickity-prev-next-button .flickity-button-icon {
  width: 35%;
  left: 29%;
  top: 20%;
}
@media (min-width: 1536px) {
  .flickity-prev-next-button.next {
    right: -65px;
  }
}
@media (min-width: 1536px) {
  .flickity-prev-next-button.previous {
    left: -65px;
  }
}

.big-heading {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .big-heading {
    margin-bottom: 60px;
  }
}
.big-heading__title {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .big-heading .col:first-child {
    display: none;
  }
}

.entry-thumb {
  display: block;
  transition: 0.3s ease background-color, border;
  height: 100%;
}
@media (max-width: 767px) {
  .entry-thumb {
    border: 1px solid #C8C2BD;
  }
}
.entry-thumb:hover {
  background-color: #FFFEFB;
}
.entry-thumb:hover .entry-thumb__thumb-image {
  transform: scale(1.1);
}
.entry-thumb__content {
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.entry-thumb__thumb {
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}
.entry-thumb__thumb-image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  transition: 0.2s ease transform;
}
.entry-thumb__status {
  margin-bottom: 8px;
  color: #797979;
}
.entry-thumb__category {
  margin-bottom: 10px;
  color: #797979;
}
@media (min-width: 1024px) {
  .entry-thumb__category-spacer {
    visibility: hidden;
  }
  .entry-thumb__category-spacer:after {
    content: "";
    display: block;
  }
}
.entry-thumb__project {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  transition-property: opacity, visibility;
  width: 100%;
  min-height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFFEFB;
}
.entry-thumb__title {
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.entry-thumb__date {
  font-size: 14px;
  margin-bottom: 22px;
  color: #797979;
  font-weight: 600;
}
.entry-thumb__paragraph {
  margin-bottom: 0;
}
.entry-thumb__paragraph p:last-child {
  margin-bottom: 0;
}
.entry-thumb__location {
  font-size: 14px;
  line-height: 22px;
}
.entry-thumb__text {
  margin-top: 30px;
}
.entry-thumb__highlight {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F3E28B;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 2px 12px;
}
.entry-thumb--member {
  border: 1px solid #C8C2BD;
}
@media (min-width: 768px) {
  .entry-thumb--member.entry-thumb--hide-border {
    border: none;
  }
}
.entry-thumb--member:hover {
  border: 1px solid transparent;
}
.entry-thumb--member:hover .entry-thumb__project {
  visibility: visible;
  opacity: 1;
}
.entry-thumb--member:hover .entry-thumb__project .entry-thumb__thumb-image {
  transform: scale(1);
}
.entry-thumb--member .entry-thumb__project .entry-thumb__thumb-image {
  transform: scale(1.1);
}
.entry-thumb--greyscale .entry-thumb__thumb-image {
  filter: grayscale(1);
  transition: 0.3s ease;
  transition-property: transform, filter;
}
.entry-thumb--greyscale:hover .entry-thumb__thumb-image {
  filter: grayscale(0);
}
.entry-thumb--event {
  border: 1px solid #C8C2BD;
  transition: 0.3s ease border;
}
.entry-thumb--event .entry-thumb__category {
  color: #121418;
}
.entry-thumb--event:hover {
  border: 1px solid transparent;
}
.entry-thumb--long {
  border: none;
}
.entry-thumb--long:before, .entry-thumb--long:after {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  transition-property: opacity, visibility;
  width: 7%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  background-color: #FFFFFF;
  z-index: 1;
}
.entry-thumb--long:before {
  transform: translateX(-99%);
  left: 0;
}
.entry-thumb--long:after {
  transform: translateX(99%);
  right: 0;
}
.entry-thumb--long:hover {
  border: none;
  background-color: transparent;
}
@media (min-width: 768px) {
  .entry-thumb--long:hover {
    background-color: #FFFFFF;
  }
}
@media (min-width: 768px) {
  .entry-thumb--long:hover:after, .entry-thumb--long:hover:before {
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .entry-thumb--long {
    display: flex;
    padding-top: 16px;
    padding-bottom: 16px;
    position: relative;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .entry-thumb--long {
    flex-wrap: wrap;
  }
}
.entry-thumb--long .entry-thumb__category {
  min-width: 240px;
}
@media (max-width: 1023px) {
  .entry-thumb--long .entry-thumb__category {
    color: #797979;
  }
}
@media (min-width: 1024px) {
  .entry-thumb--long .entry-thumb__category {
    margin-bottom: 0;
    padding-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .entry-thumb--long .entry-thumb__category {
    width: 100%;
  }
}
@media (min-width: 1536px) {
  .entry-thumb--long .entry-thumb__category {
    min-width: 280px;
  }
}
@media (max-width: 767px) {
  .entry-thumb--long .entry-thumb__content {
    padding: 20px 0 0 0;
  }
}
@media (min-width: 768px) {
  .entry-thumb--long .entry-thumb__content {
    width: calc(100% - 200px);
    padding: 0 0 0 22px;
  }
}
.entry-thumb--long .entry-thumb__badge {
  position: absolute;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .entry-thumb--long .entry-thumb__badge {
    top: 26px;
  }
}
@media (min-width: 1024px) {
  .entry-thumb--long .entry-thumb__badge {
    position: relative;
  }
}
@media (min-width: 768px) {
  .entry-thumb--long .entry-thumb__thumb {
    width: 200px;
    height: 200px;
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  .entry-thumb--long .entry-thumb__thumb {
    width: 250px;
    height: 250px;
    min-width: 250px;
    min-height: 250px;
  }
}

.image-upload__photo {
  background-color: #FFFFFF;
  border: 1px solid #E0B9A2;
  padding-top: 100%;
  transition: 0.3s ease background-color;
}
.image-upload__photo:hover {
  background-color: #FFFEFB;
}
@media (min-width: 768px) {
  .image-upload__photo {
    grid-column: span 4;
  }
}
@media (min-width: 1024px) {
  .image-upload__photo {
    grid-column: span 3;
  }
}
.image-upload__details {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .image-upload__details {
    margin-top: 45px;
  }
}
.image-upload__photo-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.image-upload__add {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
  color: #515050;
}
.image-upload__add:hover .icon--add-file {
  transform: scale(1.1);
}
.image-upload--profile [data-layout=two-up] {
  max-width: 800px;
}
.image-upload .form-list {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .image-upload .form-list {
    margin-bottom: 50px;
  }
}
.image-upload input[type=file] {
  opacity: 0;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.image-upload input[type=file]:invalid.is-filled-in + .image-upload__photo {
  border: 1px solid #FF0000;
}
.image-upload .icon--add-file {
  color: #E0B9A2;
  margin-bottom: 25px;
  transition: 0.3s ease transform;
}

.caption {
  padding-top: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(81, 80, 80, 0.2);
  font-size: 14px;
  color: #515050;
}

.form-label {
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
}
.form-label--filter {
  font-size: 15px;
  margin-bottom: 0px;
}
.form-label--sm {
  font-size: 14px;
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 0;
}

.form-error {
  font-size: 16px;
  color: #FF0000;
  margin-top: 4px;
  margin-bottom: 0;
}

.form-success {
  display: none;
}

.form-input:read-only {
  opacity: 0.5;
  pointer-events: none;
  cursor: pointer;
}

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  color: #121418;
  background-color: transparent;
}
.form-input:invalid.is-filled-in,
.form-select:invalid.is-filled-in,
.form-textarea:invalid.is-filled-in {
  border-bottom: 1px solid #FF0000;
}
.form-input:invalid.is-filled-in + .form-label,
.form-select:invalid.is-filled-in + .form-label,
.form-textarea:invalid.is-filled-in + .form-label {
  color: #FF0000;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #797979;
}

.form-multifile-input {
  display: block;
  cursor: pointer;
  color: transparent;
  padding-bottom: 1px;
}
.form-multifile-input__label {
  color: #797979;
  padding-bottom: 9px;
  display: inline-block;
  z-index: 1;
  width: 100%;
  border-bottom: 1px solid #515050;
  cursor: pointer;
  transition: 0.3s ease border-bottom;
}
@media (max-width: 767px) {
  .form-multifile-input__label {
    font-size: 14px;
    line-height: 21px;
  }
}
.form-multifile-input__label:focus, .form-multifile-input__label:hover {
  border-bottom: 1px solid #FF6C19;
}
.form-multifile-input__input {
  opacity: 0;
  z-index: -1;
  position: absolute;
}
.form-multifile-input__input:invalid.is-filled-in + .form-multifile-input__label {
  border-bottom: 1px solid #FF0000;
}
.form-multifile-input__input:disabled + .form-multifile-input__label {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-input,
.form-select {
  padding-bottom: 8px;
  border-bottom: 1px solid #515050;
  transition: 0.3s ease border-bottom;
}
.form-input:focus,
.form-select:focus {
  border-bottom: 1px solid #FF6C19;
}

.form-textarea {
  padding: 18px;
  border: 1px solid #E0B9A2;
  transition: 0.3s ease;
  transition-property: border, background-color;
  resize: none;
  background-color: #FFFFFF;
}
.form-textarea::placeholder {
  transition: 0.3s ease color;
}
.form-textarea:focus {
  border: 1px solid #FF6C19;
}
.form-textarea:read-only, .form-textarea.is-disabled {
  border: 1px solid rgba(81, 80, 80, 0.2);
  background-color: transparent;
}
.form-textarea:read-only::placeholder, .form-textarea.is-disabled::placeholder {
  color: rgba(121, 121, 121, 0.4);
}
.form-textarea--alt {
  border: 0;
  border-bottom: 1px solid #515050;
  background-color: transparent;
  padding: 8px 0;
}
.form-textarea--alt:focus {
  border: 0;
  border-bottom: 1px solid #FF6C19;
}

.form-required {
  color: #797979;
}

.form-checkbox {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  opacity: 0;
}
.form-checkbox + .form-label {
  cursor: pointer;
  padding-left: 32px;
  text-transform: capitalize;
}
.form-checkbox + .form-label:before, .form-checkbox + .form-label:after {
  content: "";
  position: absolute;
  transition: 0.2s ease all;
}
.form-checkbox + .form-label:before {
  width: 20px;
  height: 20px;
  top: 2px;
  left: 0;
  background-color: transparent;
  border: 1px solid #121418;
}
.form-checkbox + .form-label:after {
  width: 14px;
  height: 10px;
  visibility: hidden;
  opacity: 0;
  top: 7px;
  left: 3px;
  background-image: url("/assets/images/icon/checkbox.svg");
}
.form-checkbox + .form-label:hover:before {
  border: 1px solid #E0B9A2;
}
.form-checkbox:checked + .form-label:after {
  visibility: visible;
  opacity: 1;
  filter: invert(1);
}
.form-checkbox:checked + .form-label:before {
  background-color: #E0B9A2;
  border: 1px solid #E0B9A2;
}

.form-radio {
  display: none;
}
.form-radio + .form-label {
  cursor: pointer;
  padding-top: 36px;
}
.form-radio + .form-label:before, .form-radio + .form-label:after {
  content: "";
  position: absolute;
  transition: 0.2s ease all;
}
.form-radio + .form-label:before {
  width: 19px;
  height: 19px;
  top: 0px;
  left: 50%;
  background-color: #121418;
  border-radius: 100%;
  transform: translateX(-50%);
  transition: 0.3s ease;
  transition-property: background-color, transform;
}
.form-radio + .form-label:hover:before, .form-radio + .form-label.is-active:before {
  transform: translateX(-50%) scale(1.3);
  background-color: #F3E28B;
}
.form-radio:checked + .form-label:before {
  transform: translateX(-50%) scale(1.3);
  background-color: #F3E28B;
}

.form-group {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .form-group {
    margin-bottom: 40px;
  }
}
.form-group--invert {
  display: flex;
  flex-direction: column-reverse;
}

.form-multifiles-group {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .form-multifiles-group {
    margin-bottom: 40px;
  }
}
.form-multifiles-group .form-list {
  margin-top: 24px;
}
.form-multifiles-group .form-multifile-input,
.form-multifiles-group .file-item {
  margin-top: 10px;
  margin-bottom: 6px;
}
.form-multifiles-group .form-multifile-input:first-child,
.form-multifiles-group .file-item:first-child {
  margin-top: 0;
}
@media (min-width: 768px) {
  .form-multifiles-group .form-multifile-input,
  .form-multifiles-group .file-item {
    margin-top: 16px;
  }
}
.form-multifiles-group .form-error {
  display: none;
}

.form-list {
  color: #515050;
}
.form-list li {
  list-style-type: disc;
  margin-left: 18px;
  margin-bottom: 6px;
}
.form-list li:last-child {
  margin-bottom: 0;
}
.form-list strong {
  color: #121418;
}

.form-actions {
  margin-top: 30px;
}
.form-actions--split {
  display: flex;
  justify-content: space-between;
}
.form-actions .button {
  margin-right: 15px;
}
.form-actions .button:last-child {
  margin-right: 0;
}

.form-image {
  padding-top: 70%;
}
.form-image--placeholder {
  border: 1px solid #C8C2BD;
}
.form-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}

.form-collection {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .form-collection {
    margin-bottom: 60px;
  }
}
.form-collection:last-child {
  margin-bottom: 0;
}
.form-collection [data-layout] {
  margin-bottom: 0px;
}
.form-collection .form-title {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .form-collection .form-title {
    margin-bottom: 60px;
  }
}

.form-elements-group {
  border-bottom: 1px solid #C8C2BD;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .form-elements-group {
    padding-bottom: 50px;
  }
}
.form-elements-group:last-child {
  margin-bottom: 0;
}

.form-project {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .form-project {
    margin-bottom: 50px;
  }
}

.form-footer {
  margin-top: 150px;
}

.form-add-project {
  padding-top: 25px;
}
@media (min-width: 768px) {
  .form-add-project {
    padding-top: 50px;
  }
}

.form-loading {
  display: none;
  border-bottom: 1px solid #515050;
  margin-top: 20px;
}
.form-loading__label {
  color: #797979;
}
.form-loading__bar {
  width: 100%;
  height: 6px;
  overflow: hidden;
  position: relative;
  margin-top: 4px;
  margin-bottom: -1px;
}
.form-loading__progress {
  width: 100%;
  height: 6px;
  position: absolute;
  top: 0;
  left: -100%;
  background-color: #E0B9A2;
  z-index: 1;
}

@media (max-width: 767px) {
  .footer-nav__wrap {
    height: 0;
    overflow: hidden;
  }
}
.footer-nav__items {
  grid-column: span 12;
}
@media (max-width: 767px) {
  .footer-nav__items {
    border-bottom: 1px solid #515050;
    margin-bottom: 10px;
  }
  .footer-nav__items:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .footer-nav__items {
    grid-column: span 4;
    margin-top: 40px;
  }
  .footer-nav__items:nth-child(-1n+3) {
    margin-top: 0px;
  }
}
@media (min-width: 1280px) {
  .footer-nav__items {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .footer-nav__subnav-items {
    padding-top: 15px;
    padding-bottom: 25px;
  }
}
.footer-nav__subnav-item {
  margin-bottom: 7px;
}
.footer-nav__subnav-item:last-child {
  margin-bottom: 0;
}
.footer-nav__title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: left;
  transition: 0.3s ease color;
}
.footer-nav__title:hover {
  color: #C8C2BD;
}
.footer-nav__title:not(.footer-nav__title--expander) .icon--chevron {
  display: none;
}
@media (max-width: 767px) {
  .footer-nav__title {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .footer-nav__title {
    font-size: 23px;
    margin-bottom: 35px;
  }
}
.footer-nav__link {
  font-size: 14px;
  color: #C8C2BD;
  transition: 0.3s ease color;
}
.footer-nav__link:hover {
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .footer-nav__link {
    font-size: 16px;
  }
}
.footer-nav__item.is-active .icon--chevron {
  transform: rotate(270deg);
}
.footer-nav .inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 0;
  padding-top: 120px;
}
@media (max-width: 767px) {
  .footer-nav .inner {
    gap: 0px;
    padding-top: 50px;
  }
}
.footer-nav .icon--chevron {
  position: absolute;
  top: 12px;
  right: 8px;
  transform: rotate(90deg);
  transition: 0.3s ease transform;
}
@media (min-width: 768px) {
  .footer-nav .icon--chevron {
    display: none;
  }
}

.footer-copyright__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #515050;
}
.footer-copyright__wrap--desktop {
  padding-top: 40px;
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .footer-copyright__wrap--desktop {
    display: none;
  }
}
.footer-copyright__wrap--mobile {
  padding-top: 25px;
  padding-bottom: 32px;
}
@media (max-width: 499px) {
  .footer-copyright__wrap--mobile {
    display: block;
  }
}
@media (min-width: 768px) {
  .footer-copyright__wrap--mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer-copyright__col:nth-child(2) {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-copyright__col:nth-child(2) {
    display: none;
  }
}
.footer-copyright__text, .footer-copyright__link {
  font-size: 14px;
  line-height: 20px;
  color: #C8C2BD;
}
.footer-copyright__link {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-transform: uppercase;
  transition: 0.3s ease opacity;
  margin-left: 16px;
}
.footer-copyright__link:before {
  width: 1px;
  height: 12px;
  content: "";
  position: absolute;
  top: 4px;
  left: -16px;
  display: inline-block;
  background-color: #C8C2BD;
  margin-left: 6px;
  margin-right: 10px;
}
.footer-copyright__link:hover {
  opacity: 0.6;
}
.footer-copyright__link:first-child:before {
  opacity: 0;
  margin-left: 0;
}
.footer-copyright__logo {
  display: block;
  max-width: 100px;
}
@media (max-width: 767px) {
  .footer-copyright__logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
  }
}
.footer-copyright .inner {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-social__list {
  display: flex;
  justify-content: center;
}
.footer-social__item {
  margin-right: 30px;
}
@media (max-width: 499px) {
  .footer-social__item {
    margin-right: 20px;
  }
}
.footer-social__item:last-child {
  margin-right: 0;
}
.footer-social .inner {
  padding-top: 32px;
  padding-bottom: 35px;
}
@media (min-width: 768px) {
  .footer-social .inner {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}

.header-nav__items {
  display: flex;
  align-items: flex-start;
}
.header-nav__items--sub {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  transition-property: opacity, visibility;
  display: block;
  position: absolute;
  left: 0;
  top: 32px;
  text-align: left;
  padding-top: 25px;
}
.header-nav__items--sub.is-active {
  visibility: visible;
  opacity: 1;
}
.header-nav__items--sub .header-nav__item {
  transform: translateY(100%);
}
.header-nav__items--sub .link--menu-link {
  position: relative;
}
.header-nav__items--sub .link--menu-link:hover:before {
  visibility: visible;
  opacity: 1;
}
.header-nav__item {
  position: relative;
}
@media (max-width: 1279px) {
  .header-nav--column .header-nav__items {
    flex-direction: column;
  }
}
.header-nav--column .header-nav__item {
  margin-bottom: 10px;
}
.header-nav--column .header-nav__item:last-child {
  margin-bottom: 0;
}
.header-nav--column .link--menu-link {
  padding-left: 0;
}
.header-nav--no-padding .header-nav__item:first-child .link--menu-link {
  padding-left: 0;
}
.header-nav--separation .header-nav__item:last-child:before {
  content: none;
}
.header-nav--separation .header-nav__item:before {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #C8C2BD;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header-nav .link--menu-link {
  white-space: nowrap;
  z-index: 2;
}
.header-nav .button--search {
  padding-left: 0;
  padding-right: 20px;
}
.header-nav__items--sub-search {
  width: 100vw;
}

.highlight {
  display: block;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease background-color;
}
@media (min-width: 768px) {
  .highlight {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .highlight:hover .highlight__background-image {
    opacity: 0.9;
    transform: scale(1.05);
  }
}
.highlight__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
}
@media (max-width: 767px) {
  .highlight__content {
    padding-bottom: 100px;
  }
}
@media (min-width: 1024px) {
  .highlight__content {
    padding: 50px;
  }
}
.highlight__title {
  position: relative;
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .highlight__title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 1024px) {
  .highlight__title {
    font-size: 35px;
    line-height: 42px;
  }
}
.highlight__subtitle {
  position: relative;
  font-size: 16px;
  line-height: 22px;
  color: #515050;
  margin-bottom: 8px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .highlight__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1024px) {
  .highlight__subtitle {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 12px;
  }
}
.highlight__decoration {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .highlight__decoration {
    width: 100%;
    height: 200px;
    margin-top: -60px;
  }
}
.highlight__decoration-image {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  object-fit: contain;
}
.highlight__background {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #121418;
}
.highlight__background-image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease;
  transition-property: transform, opacity;
}
.highlight--bg-blue {
  background-color: #CDDEE1;
}
@media (min-width: 768px) {
  .highlight--bg-blue:hover {
    background-color: rgb(179.5, 205.17, 209.7);
  }
}
.highlight--bg-yellow {
  background-color: #F3E28B;
}
@media (min-width: 768px) {
  .highlight--bg-yellow:hover {
    background-color: rgb(239.175, 216.75625, 102.025);
  }
}
.highlight--black {
  color: #121418;
}
.highlight--black .icon--chevron {
  color: #121418;
}
.highlight--white {
  color: #FFFFFF;
}
.highlight--white .icon--chevron {
  color: #FFFFFF;
}
.highlight--white .highlight__subtitle {
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .highlight--white:hover .icon--chevron, .highlight--black:hover .icon--chevron {
    transform: translateX(4px);
  }
}
.highlight .button--chevron {
  font-size: 16px;
  line-height: 22px;
  margin-top: 20px;
  font-weight: 600;
  padding: 0;
}
@media (min-width: 768px) {
  .highlight .button--chevron {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1024px) {
  .highlight .button--chevron {
    font-size: 22px;
    line-height: 28px;
    margin-top: 25px;
  }
}

.icon--chevron {
  width: 11px;
  height: 17px;
}
.icon--close {
  width: 14px;
  height: 14px;
}
.icon--search {
  width: 24px;
  height: 25px;
}
.icon--mail {
  width: 36px;
  height: 36px;
}
.icon--add-file {
  width: 78px;
  height: 78px;
}
.icon--facebook, .icon--instagram, .icon--linkedin, .icon--twitter {
  width: 36px;
  height: 36px;
}
.icon--email {
  width: 34px;
  height: 23px;
}
.icon--contact-email {
  width: 26px;
  height: 21px;
}
.icon--contact-address {
  width: 24px;
  height: 30px;
}
.icon--contact-bank {
  width: 26px;
  height: 21px;
}
.icon--hashtag {
  width: 24px;
  height: 24px;
}
.icon--hamburger {
  width: 29px;
  height: 19px;
}
.icon--right-arrow {
  width: 18px;
  height: 18px;
}
.icon--member {
  width: 40px;
  height: 30px;
}
.icon--quotes {
  width: 28px;
  height: 20px;
}

.link {
  display: inline-block;
  transition: 0.3s ease color;
}
.link--menu-header {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 36px;
  line-height: 54px;
}
.link--menu-header.is-active, .link--menu-header:hover {
  color: #E0B9A2;
}
.link--menu-link {
  padding: 5px 25px;
  font-weight: 600;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  transition: 0.3s ease color;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .link--menu-link {
    font-size: 18px;
    line-height: 27px;
  }
}
.link--menu-link:before {
  width: 14px;
  height: 14px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  transition-property: opacity, visibility;
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  background-color: #121418;
  border-radius: 100%;
}
.link--menu-link.is-active:hover {
  color: rgb(213.8, 161.9677419355, 131.4);
}
.link--menu-link:hover, .link--menu-link.is-active {
  color: #E0B9A2;
}
.link--arrow-left {
  display: flex;
  align-items: center;
  color: #E0B9A2;
}
.link--arrow-left .icon--chevron {
  width: 8px;
  margin-right: 10px;
  transform: rotate(-180deg);
  transition: 0.3s ease transform;
}
.link--arrow-left:hover {
  color: rgb(213.8, 161.9677419355, 131.4);
}
.link--arrow-left:hover .icon--chevron {
  transform: translateX(-6px) rotate(-180deg);
}
.link--email-update {
  color: #FF6C19;
  font-size: 16px;
}
.link--email-update:hover {
  color: rgb(239.2, 86.32, 0);
}
.link--secondary {
  color: #FF6C19;
}
.link--secondary:hover {
  color: rgb(239.2, 86.32, 0);
}
.link--underline {
  text-decoration: underline;
  font-weight: 600;
}
.link--underline:hover {
  text-decoration: none;
}

.file-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #515050;
  padding-bottom: 7px;
  color: #797979;
}
@media (max-width: 767px) {
  .file-item {
    font-size: 14px;
    line-height: 21px;
  }
}
.file-item__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s ease opacity;
}
.file-item__remove {
  margin-left: 15px;
  transition: 0.3s ease opacity;
}
.file-item__remove:hover {
  opacity: 0.7;
}
.file-item__icon {
  width: 14px;
  height: 14px;
  pointer-events: none;
  margin-bottom: 2px;
}
.file-item.is-disabled {
  border-bottom: 1px solid #797979;
}
.file-item.is-disabled .file-item__name {
  opacity: 0.5;
}
.file-item.is-disabled .file-item__remove {
  opacity: 0.5;
  cursor: not-allowed;
}

.member {
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.sponsor {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 235px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.1s ease transform;
}
.sponsor:hover {
  transform: scale(1.04);
}

.step {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  padding-left: 52px;
}
.step:before {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 50%;
  border: 2px solid #121418;
  border-radius: 100%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .step:before {
    width: 42px;
    height: 42px;
  }
}
.step:last-child .step__title:after {
  display: none;
}
.step__text {
  font-size: 14.4px;
  line-height: 12px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .step__text {
    font-size: 12px;
  }
}
.step--inactive {
  opacity: 0.3;
}
.step--active {
  color: #E0B9A2;
}
.step--active:before {
  border-color: #E0B9A2;
}
.step__title {
  line-height: 17px;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .step__title {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .step__title {
    display: flex;
    align-items: center;
    margin-top: 18px;
  }
}
.step__title:after {
  content: "";
  background-color: #121418;
}
@media (max-width: 767px) {
  .step__title:after {
    width: 2px;
    height: 19px;
    display: block;
    position: absolute;
    left: 17px;
    top: 40px;
  }
}
@media (min-width: 768px) {
  .step__title:after {
    display: inline-block;
    width: 130px;
    height: 2px;
    flex-grow: 1;
    margin-left: 25px;
  }
}

.members {
  width: 100%;
  padding-top: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: none;
}
@media (min-width: 768px) {
  .members {
    display: block;
  }
}
.members .member {
  position: absolute;
}
.members img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.members--intro {
  height: 100%;
}
.members--intro .member {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}
.members--intro .member:hover {
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1.12);
  filter: grayscale(0);
}
.members--intro .member:hover--name {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.members--pie .member:nth-child(1) {
  width: 7%;
  padding-top: 7%;
  top: 3%;
  right: 2.5%;
}
.members--pie .member:nth-child(2) {
  width: 9.2%;
  padding-top: 9.2%;
  right: 3.3%;
  top: 77.4%;
}
.members--pie .member:nth-child(3) {
  width: 6%;
  padding-top: 6%;
  left: 16%;
  top: 9.7%;
}
.members--pie .member:nth-child(4) {
  width: 5%;
  padding-top: 5%;
  left: 9.3%;
  top: 73%;
}
.members--pie .member:nth-child(5) {
  width: 3%;
  padding-top: 3%;
  top: 78.5%;
  left: 37.3%;
}
.members--pie .member:nth-child(6) {
  width: 6.5%;
  padding-top: 6.5%;
  left: 48.3%;
  top: 91%;
}

.entry-nav-item {
  display: flex;
}
.entry-nav-item__title {
  text-transform: uppercase;
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .entry-nav-item__title {
    display: none;
  }
}
.entry-nav-item__label {
  color: #797979;
  margin-bottom: 0px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .entry-nav-item__label {
    width: 50px;
    text-transform: uppercase;
    color: #121418;
  }
}
.entry-nav-item__col {
  display: flex;
  flex-direction: column;
}
.entry-nav-item--next {
  text-align: right;
  flex-direction: row-reverse;
}
.entry-nav-item--next:hover .icon--chevron {
  transform: translateX(4px);
}
.entry-nav-item--next .entry-nav-item__col:first-child {
  margin-left: 12px;
}
@media (min-width: 768px) {
  .entry-nav-item--next .entry-nav-item__col:first-child {
    margin-left: 20px;
  }
}
.entry-nav-item--previous:hover .icon--chevron {
  transform: translateX(-4px) rotate(180deg);
}
.entry-nav-item--previous .entry-nav-item__col:first-child {
  margin-right: 12px;
}
@media (min-width: 768px) {
  .entry-nav-item--previous .entry-nav-item__col:first-child {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .entry-nav-item .button--chevron {
    padding: 11px 14px;
  }
}
.entry-nav-item .icon--chevron {
  margin: 0;
}

.filter-group__items {
  overflow: hidden;
  height: 0;
}
.filter-group__items [data-layout] {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .filter-group__items [data-layout] {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .filter-group__items [data-layout] .col {
    margin-bottom: 15px;
  }
}
.filter-group__title {
  cursor: pointer;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  border-bottom: 1px solid #C8C2BD;
  margin-bottom: 0px;
  padding-bottom: 8px;
}
.filter-group__title .icon--chevron {
  transition: 0.3s ease transform;
  margin-left: 30px;
  transform: rotate(0deg);
}
.filter-group__title.is-active .icon--chevron {
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .filter-group__title {
    justify-content: space-between;
  }
}
.filter-group .form-group {
  margin-bottom: 0;
}
.filter-group [data-layout=three-up] {
  gap: 24px;
}
.filter-group [data-layout=six-up] {
  gap: 24px;
}

.contact-info__title {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-bottom: 11px;
}
.contact-info__text {
  display: block;
  padding-left: 45px;
}
.contact-info__link {
  display: block;
  padding-left: 45px;
}
.contact-info__link:hover {
  text-decoration: underline;
}
.contact-info .icon {
  margin-right: 15px;
  min-width: 30px;
}

.contact-social__title {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.contact-social__items {
  display: flex;
}
.contact-social__item {
  margin-right: 30px;
}
.contact-social__item:last-child {
  margin-right: 0;
}
.contact-social .icon--hashtag {
  margin-right: 15px;
}

.logo {
  display: block;
  transition: 0.3s ease opacity;
}
.logo:hover {
  opacity: 0.8;
}
.logo--header {
  width: 120px;
}
@media (min-width: 1280px) {
  .logo--header {
    width: 160px;
  }
}
.logo--newsletter {
  max-width: 360px;
}

.side-nav__item {
  margin-bottom: 10px;
}
.side-nav__link {
  display: block;
  position: relative;
  padding-left: 37px;
}
.side-nav__link:hover:before {
  transform: scale(1.1);
}
.side-nav__link:before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  top: 4px;
  background-color: #121418;
  transition: 0.2s ease transform;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .side-nav--desktop-only {
    display: none;
  }
}

.carousel__item {
  padding-top: 56.25%;
}
.carousel__item.is-portrait img {
  object-fit: contain !important;
}
.carousel .flickity-cell {
  width: 100%;
  margin-right: 2rem;
}
.carousel .flickity-cell img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}

.color-blocks {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .color-blocks {
    margin-bottom: 50px;
  }
}
.color-blocks__title {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .color-blocks__title {
    margin-bottom: 32px;
  }
}
.color-blocks [data-layout=four-up-flex] {
  justify-content: flex-end;
}

.scroll-to__item {
  margin-bottom: 30px;
}
.scroll-to__item:last-child {
  margin-bottom: 0;
}
.scroll-to .rich-text {
  margin-bottom: 0;
}

.quote {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  padding-left: 65px;
  padding-right: 55px;
}
.quote:after, .quote:before {
  font-family: "domaine display", serif;
  position: absolute;
  font-size: 60px;
}
@media (min-width: 768px) {
  .quote:after, .quote:before {
    font-size: 100px;
  }
}
.quote:before {
  content: "“";
  top: 0;
  left: 0px;
}
.quote:after {
  content: "”";
  bottom: -20px;
  right: 0px;
}
@media (min-width: 768px) {
  .quote {
    font-size: 36px;
    line-height: 44px;
  }
}
.quote__cite {
  font-style: normal;
  font-size: 18px;
  margin-top: 15px;
}
.quote p {
  font-size: 26px;
  font-family: "domaine display", serif;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 0;
}

.member-showcase__title {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .member-showcase__title {
    border-bottom: 1px solid #C8C2BD;
    padding-bottom: 25px;
    margin-bottom: 70px;
  }
}
.member-showcase .project-details {
  margin-bottom: 50px;
}
.member-showcase .project-details:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .member-showcase .project-details {
    margin-bottom: 70px;
  }
}

.project-details__title {
  margin-bottom: 0;
}
.project-details__label {
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .project-details__label {
    margin-bottom: 25px;
  }
}
.project-details__description {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .project-details__description {
    margin-top: 35px;
  }
}
@media (max-width: 767px) {
  .project-details__description {
    margin-bottom: 40px;
  }
}
.project-details__image-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.project-details--portrait .project-details__image {
  padding-top: 145%;
}
@media (min-width: 768px) {
  .project-details--portrait .project-details__content {
    max-width: 550px;
  }
  .project-details--portrait .project-details__description {
    margin-bottom: 80px;
  }
}
.project-details--landscape .project-details__image {
  padding-top: 56.52%;
}
@media (min-width: 768px) {
  .project-details--landscape .project-details__content {
    width: 50%;
    padding-right: 40px;
  }
  .project-details--landscape > [data-layout=two-up] {
    display: block;
  }
  .project-details--landscape > [data-layout=two-up] > .col:first-child {
    display: flex;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .project-details > [data-layout=two-up] {
    display: flex;
    flex-direction: column;
  }
  .project-details > [data-layout=two-up] .col:first-child {
    order: 1;
    margin-bottom: 0;
    margin-top: 25px;
  }
  .project-details > [data-layout=two-up] .col:last-child {
    margin-top: 0;
  }
}

.filter-group-timeline__items {
  display: flex;
  align-items: flex-start;
  cursor: grab;
}
.filter-group-timeline__items.is-moving {
  cursor: grabbing;
}
.filter-group-timeline__reel {
  display: flex;
  overflow-x: scroll;
  padding-top: 5px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.filter-group-timeline__reel::-webkit-scrollbar {
  display: none;
}
.filter-group-timeline__item {
  margin-right: 50px;
}
@media (min-width: 768px) {
  .filter-group-timeline__item {
    margin-right: 90px;
  }
}
@media (min-width: 1024px) {
  .filter-group-timeline__item {
    margin-right: 130px;
  }
}
.filter-group-timeline__item:before {
  width: 80px;
  height: 1px;
  content: "";
  position: absolute;
  top: 9px;
  left: 15px;
  background-color: #121418;
}
@media (min-width: 768px) {
  .filter-group-timeline__item:before {
    width: 120px;
  }
}
@media (min-width: 1024px) {
  .filter-group-timeline__item:before {
    width: 160px;
  }
}
.filter-group-timeline__item:last-child {
  margin-right: 0;
}
.filter-group-timeline__item:last-child:before {
  display: none;
}
.filter-group-timeline .form-group {
  margin-bottom: 0;
}
.filter-group-timeline .form-label--filter {
  max-width: 30px;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .top-nav__items {
    display: flex;
  }
}
.top-nav__item {
  margin-right: 5px;
}
.top-nav__item--align-right {
  margin-left: auto;
}
.top-nav__item:last-child {
  margin-right: 0;
}
.top-nav__link {
  display: block;
  position: relative;
  text-transform: uppercase;
  padding: 4px 20px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s ease background-color;
}
@media (min-width: 768px) {
  .top-nav__link {
    font-size: 20px;
    padding: 18px 30px;
  }
}
@media (min-width: 1024px) {
  .top-nav__link {
    font-size: 22px;
    padding: 18px 40px;
  }
}
.top-nav__link:before {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  transition-property: opacity, visibility;
  width: 12px;
  height: 12px;
  content: "";
  position: absolute;
  background-color: #121418;
  top: 8px;
  left: 0px;
  border-radius: 100%;
}
@media (min-width: 768px) {
  .top-nav__link:before {
    width: 16px;
    height: 16px;
    top: 23px;
    left: 25px;
  }
}
.top-nav__link--highlight {
  color: #FF6C19;
}
.top-nav__link--highlight:before {
  background-color: #FF6C19;
}
.top-nav__link.is-active:before {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 768px) {
  .top-nav__link.is-active {
    padding-left: 55px;
  }
}
@media (max-width: 767px) {
  .top-nav__link:hover:before, .top-nav__link.is-active:before {
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .top-nav__link:hover, .top-nav__link.is-active {
    background-color: #FFFEFB;
  }
}

.nav-sidebar__target {
  height: 0;
  transition: opacity 0.3s ease-in-out;
  overflow: hidden;
}
.nav-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 25px;
  margin-bottom: 20px;
}
.nav-sidebar__link {
  display: flex;
  gap: 20px;
  transition: 0.3s ease color;
  font-size: 18px;
  line-height: 24px;
}
.nav-sidebar__link:last-child {
  margin-bottom: 0;
}
.nav-sidebar__link.is-active, .nav-sidebar__link:hover, .nav-sidebar__link:active {
  color: #FF6C19;
}
.nav-sidebar__key {
  display: flex;
  padding-bottom: 17px;
  border-bottom: 1px solid #C8C2BD;
  cursor: pointer;
}
.nav-sidebar__key span {
  margin: 0 !important;
}
.nav-sidebar__key .icon--chevron {
  margin: auto;
  margin-right: 4px;
  transform: rotateZ(90deg);
  transition: transform 0.3s ease-in-out;
}
.nav-sidebar__key.is-active .icon--chevron {
  transform: rotateZ(-90deg);
}
.nav-sidebar__category--headingless .nav-sidebar__links {
  margin-bottom: 32px;
  margin-top: 0;
}
.nav-sidebar .link--arrow-left {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .nav-sidebar .link--arrow-left {
    margin-bottom: 60px;
  }
}
.nav-sidebar .button--chevron {
  margin-top: 35px;
  width: 100%;
}
.nav-sidebar [data-widget=expander] {
  margin-bottom: 20px;
}
.nav-sidebar .icon--list-sphere {
  margin-top: 3px;
}

.textarea-word-limit {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  color: #E0B9A2;
}
.textarea-word-limit.is-invalid {
  color: #FF0000;
}

.label, .entry-thumb__badge {
  display: inline-block;
  font-family: "poppins";
  font-size: 14.4px;
  font-weight: bold;
  text-transform: uppercase;
  width: auto;
  min-width: 90px;
  padding: 2px 25px;
  height: 27px;
  color: #121418;
  background: #F3E28B;
}
.label--large {
  height: 34px;
  font-size: 18px;
}

.rich-text img {
  display: block;
  width: 100%;
  margin-bottom: 25px;
}
.rich-text a {
  font-weight: bold;
  color: #E0B9A2;
  transition: 0.3s ease color;
}
.rich-text a:hover {
  color: rgb(216.35, 167.7258064516, 139.05);
}
.rich-text ul {
  display: block;
  padding: 0;
  margin: 0 0 25px 0;
}
.rich-text ul > li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.rich-text ul > li:last-child {
  margin-bottom: 0;
}
.rich-text ul > li:before {
  content: "";
  min-width: 8px;
  height: 8px;
  background-color: #121418;
  display: inline-block;
  position: relative;
  border-radius: 100%;
  margin-right: 12px;
}
.rich-text ol {
  display: block;
  margin: 0 0 25px 0;
  padding-left: 60px;
  list-style: decimal;
}
.rich-text ol > li {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
}
.rich-text ol > li:last-child {
  margin-bottom: 0;
}
.rich-text > *:last-child {
  margin-bottom: 0;
}

.icon-heading {
  display: flex;
  align-items: center;
  height: 60px;
  margin: 0;
  border-top: 1px solid #C8C2BD;
  font-weight: 500;
}
.icon-heading span {
  width: 42px;
}
.icon-heading a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.member-bubble {
  cursor: pointer;
}
.member-bubble__name {
  text-align: center;
  margin-top: 1em;
  font-weight: 600;
  max-width: 150px;
}
.member-bubble__photo {
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  will-change: transform;
}
.member-bubble .image {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: filter 0.2s ease-out, transform 0.2s ease-out;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.member-bubble:hover .image {
  transform: scale(1.1);
}

.drawing-thumb {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-bottom: 1px solid #C8C2BD;
}
.drawing-thumb:hover .drawing-thumb__image-bg {
  transform: scale(1.1);
}
.drawing-thumb:hover .drawing-thumb__caption {
  color: #515050;
}
.drawing-thumb__image {
  height: auto;
  margin: auto 0;
  overflow: hidden;
}
.drawing-thumb__image-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease transform;
  position: relative;
  height: auto;
}
.drawing-thumb__caption {
  display: block;
  font-size: 12px;
  line-height: 14px;
  color: #797979;
  padding-bottom: 10px;
  padding-top: 12px;
  transition: 0.3s ease color;
}
@media (min-width: 768px) {
  .drawing-thumb__caption {
    font-size: 15px;
    line-height: 18px;
  }
}

.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(18, 20, 24, 0.9);
  overflow-y: auto;
}
.modal__wrap {
  margin: 25;
  min-height: calc(100% - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
@media (min-width: 768px) {
  .modal__wrap {
    margin: 40px auto;
  }
}
.modal__wrap > * {
  pointer-events: all;
  margin-left: 20px;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .modal__wrap > * {
    margin-left: 35px;
    margin-right: 35px;
  }
}
.modal__close {
  width: 35px;
  height: 35px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #E0B9A2;
  z-index: 1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(50%, -50%);
  transition: 0.3s ease background-color;
}
@media (min-width: 768px) {
  .modal__close {
    width: 45px;
    height: 45px;
  }
}
.modal__close:hover {
  background-color: rgb(217.625, 170.6048387097, 142.875);
}
.modal__close .icon--close {
  pointer-events: none;
}
.modal--drawings .modal__wrap {
  max-width: 1200px;
}

.modal-drawing {
  width: 100%;
  background-color: #FFFFFF;
}
.modal-drawing__image {
  padding-top: 50%;
  overflow: hidden;
}
.modal-drawing__image-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  object-fit: contain;
}
.modal-drawing__content {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  padding: 20px;
}
@media (min-width: 768px) {
  .modal-drawing__content {
    padding: 40px;
  }
}
.modal-drawing__row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .modal-drawing__row {
    margin-bottom: 25px;
  }
}
.modal-drawing__row:last-child {
  margin-bottom: 0;
}
.modal-drawing__title {
  display: block;
  font-weight: 600;
  grid-column: span 4;
  text-transform: uppercase;
}
.modal-drawing__text {
  display: block;
  grid-column: span 8;
}
.modal-drawing__navigation {
  border-top: 1px solid #C8C2BD;
  padding: 25px;
}
@media (min-width: 768px) {
  .modal-drawing__navigation {
    padding: 35px;
  }
}
.modal-drawing .entry-nav-item__title {
  text-transform: unset;
}

.modal-user-contact {
  width: 100%;
  background-color: #FFFFFF;
  max-width: 600px;
}
.modal-user-contact__content {
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
}
@media (min-width: 768px) {
  .modal-user-contact__content {
    padding: 40px 60px;
  }
}
.modal-user-contact .h1, .modal-user-contact .subscription-block__price, .modal-user-contact .newsletter__title, .modal-user-contact .page-title__title {
  font-size: 26px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .modal-user-contact .h1, .modal-user-contact .subscription-block__price, .modal-user-contact .newsletter__title, .modal-user-contact .page-title__title {
    font-size: 34px;
    margin-bottom: 60px;
  }
}
.modal-user-contact .form-group:last-child {
  margin-bottom: 0;
}

.intro-text .rich-text {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .intro-text .rich-text {
    margin-bottom: 40px;
  }
}

.subscription-block {
  background-color: #E0B9A2;
  padding: 34px;
}
.subscription-block > *:last-child {
  margin-bottom: 0px;
}
.subscription-block__title {
  font-family: "domaine display", serif;
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid #121418;
  margin-bottom: 18px;
}
.subscription-block__small-title {
  display: block;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 25px;
}
.subscription-block__price {
  font-family: "domaine display", serif;
  display: flex;
  font-weight: 700;
  font-size: 52px;
  line-height: 68px;
  margin-bottom: 10px;
}
.subscription-block__input {
  display: inline-block;
  background-color: transparent;
}
.subscription-block__recurrence {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
}
.subscription-block__name {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 16px;
}
.subscription-block__frequency {
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #515050;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
}
.subscription-block__list {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
}
.subscription-block__list-item {
  margin-bottom: 15px;
}
.subscription-block__list-item:last-child {
  margin-bottom: 0;
}
.subscription-block--yellow {
  background-color: #F3E28B;
}
.subscription-block--blue {
  background-color: #CDDEE1;
}
.subscription-block--large-price .subscription-block__price {
  font-size: 80px;
  line-height: 100px;
}
@media (min-width: 768px) {
  .subscription-block--large-price .subscription-block__price {
    font-size: 120px;
    line-height: 144.06px;
  }
}
@media (min-width: 1280px) {
  .subscription-block--large-price .subscription-block__price {
    font-size: 140px;
    line-height: 164.06px;
  }
}
.subscription-block .button--primary {
  width: 100%;
}

.search-result {
  display: block;
  padding: 20px;
  background-color: #FFFFFF;
  height: 100%;
  transition: 0.3s ease background-color;
  border: 1px solid transparent;
}
.search-result--wrapper {
  display: flex;
  gap: 20px;
}
.search-result--wrapper > .search-result--photo {
  width: 30%;
}
.search-result--wrapper > .search-result--info {
  width: 70%;
}
.search-result--photo {
  width: 30%;
  flex-grow: 1;
  overflow: hidden;
}
.search-result--photo > img {
  transition: 0.2s ease transform;
}
.search-result--info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.search-result:hover {
  background-color: #F9F6F0;
  border: 1px solid #121418;
}
.search-result:hover .search-result--photo > img {
  transform: scale(1.1);
}

.search-result.empty .search-result--photo {
  animation-name: opacity-pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  opacity: 1;
}
.search-result.empty .search-result--info--title {
  width: 100%;
  height: 30px;
  background-color: #797979;
  animation-name: opacity-pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  opacity: 1;
}
.search-result.empty .search-result--info--paragraph {
  width: 100%;
  height: 100%;
  background-color: #C8C2BD;
  animation-name: opacity-pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  opacity: 1;
}

@keyframes opacity-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.search-bar {
  display: flex;
  gap: 20px;
  padding-top: 60px;
  border-bottom: 1px solid #C8C2BD;
  padding-bottom: 16px;
  margin-bottom: 45px;
}
.search-bar .icon {
  color: #E0B9A2;
  margin: auto;
}
.search-bar .form-input {
  font-size: 18px;
  line-height: 30px;
  color: #797979;
  border: none;
  padding: 0;
  outline: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .search-bar .form-input {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .search-bar .form-input {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .search-bar .form-input {
    line-height: 32px;
  }
}
@media (min-width: 1024px) {
  .search-bar .form-input {
    line-height: 36px;
  }
}
.search-bar .form-input:focus {
  border: none;
}

.sponsors-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 0;
}
@media (min-width: 768px) {
  .sponsors-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sponsors-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sponsors-list__link {
  display: block;
  max-width: 300px;
  transition: 0.3s ease transform;
}
.sponsors-list__link:hover {
  transform: scale(1.05);
}

.request-error {
  font-size: 15px;
  color: #FF0000;
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .button-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.button-group .button {
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .button-group .button {
    margin-right: 15px;
  }
}
@media (max-width: 1023px) {
  .button-group .button:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .feedback {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
.feedback__wrap {
  background-color: #E0B9A2;
}
@media (min-width: 1024px) {
  .feedback__wrap {
    grid-column-start: 4;
    grid-column-end: 13;
  }
}
@media (min-width: 768px) {
  .feedback__wrap {
    display: flex;
  }
}
@media (max-width: 767px) {
  .feedback__member {
    width: 100%;
    padding-top: 80%;
  }
}
@media (min-width: 768px) {
  .feedback__member {
    min-width: 300px;
  }
}
.feedback__member-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.feedback__name {
  display: block;
  font-weight: bold;
  margin-top: 15px;
}
.feedback__content {
  position: relative;
  padding: 20px;
}
@media (min-width: 768px) {
  .feedback__content {
    padding: 40px;
  }
}
.feedback .icon--quotes {
  margin-bottom: 15px;
}

.color-block {
  padding: 40px 35px;
  background-color: #E0B9A2;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .color-block {
    padding: 35px 30px;
  }
}
.color-block__counter {
  margin-bottom: 18px;
}
.color-block__text {
  margin-top: 20px;
}
.color-block__text.mb-20 {
  margin-bottom: 20px;
}
.color-block__cta {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .color-block__cta {
    margin-top: auto;
  }
}
.color-block p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .free-text {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .free-text .rich-text {
    grid-column-start: 4;
    grid-column-end: 11;
  }
}

@media (min-width: 1024px) {
  .full-video {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
.full-video__wrap {
  padding-top: 56.25%;
}
@media (min-width: 1024px) {
  .full-video__wrap {
    grid-column-start: 2;
    grid-column-end: 13;
  }
}
.full-video__iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.full-video__video {
  width: 100%;
}
@media (min-width: 1024px) {
  .full-video__video {
    grid-column-start: 2;
    grid-column-end: 13;
  }
}

.full-image {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .full-image {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
.full-image__wrap {
  display: flex;
}
@media (min-width: 1024px) {
  .full-image__wrap {
    grid-column-start: 2;
    grid-column-end: 13;
  }
}
.full-image__container {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.full-image img {
  margin-left: auto;
  margin-right: auto;
}
.full-image img.is-portrait {
  max-width: 80vh;
}

@media (min-width: 1024px) {
  .heading {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .heading__content {
    grid-column-start: 4;
    grid-column-end: 11;
  }
}
.heading h2, .heading h3, .heading h4, .heading h5, .heading h6 {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .heading .col:first-child {
    display: none;
  }
}

@media (min-width: 1024px) {
  .section-heading {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
.section-heading__container {
  border-top: 1px solid #C8C2BD;
  padding-top: 20px;
}
@media (min-width: 1024px) {
  .section-heading__container {
    grid-column-start: 2;
    grid-column-end: 13;
  }
}
@media (min-width: 768px) {
  .section-heading__container {
    display: flex;
    padding-top: 40px;
  }
}
.section-heading__title {
  max-width: 400px;
  width: 100%;
  min-width: 300px;
}
@media (min-width: 768px) {
  .section-heading__title {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .section-heading__text {
    margin-left: 40px;
  }
}

@media (min-width: 1024px) {
  .simple-quote {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .simple-quote .quote {
    grid-column-start: 4;
    grid-column-end: 11;
  }
}

@media (min-width: 1024px) {
  .media-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .media-gallery .carousel {
    grid-column-start: 2;
    grid-column-end: 13;
  }
}

.event-meta__content {
  width: 100%;
}
.event-meta__content .event-meta__rows,
.event-meta__content .event-meta__actions {
  margin-top: 1em;
}
@media (min-width: 768px) {
  .event-meta__content .event-meta__rows,
  .event-meta__content .event-meta__actions {
    margin-top: 2em;
  }
}
.event-meta__rows {
  width: 100%;
  font-weight: 600;
}
@media (max-width: 767px) {
  .event-meta__actions .button {
    width: 100%;
  }
  .event-meta__actions .button + .button {
    margin-top: 1em;
  }
}
@media (min-width: 768px) {
  .event-meta__actions .button + .button {
    margin-left: 1em;
  }
}

[data-view=newsletters] .filter-groups > .inner {
  padding: 0;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  [data-view=newsletters] .filter-groups > .inner {
    padding-bottom: 70px;
  }
}
@media (min-width: 768px) {
  [data-view=newsletters] .newsletter-sidebar-content .col {
    border-top: 1px solid rgba(81, 80, 80, 0.2);
    padding-top: 40px;
  }
}

[data-view=search] [data-section=search-result] [data-search-result-layout] {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
}
[data-view=search] [data-section=search-result] [data-search-result-layout] > * {
  grid-column: span 12;
}
@media (min-width: 768px) {
  [data-view=search] [data-section=search-result] [data-search-result-layout] > * {
    grid-column: span 6;
  }
}
[data-view=search] [data-section=search-result] .search--loader--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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