@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
}

html, body {
  font-family: "Tinos", serif;
  font-weight: 200;
  font-size: 110%;
}

.exo, .c-media-item__title, .c-search-result-item__link, .c-search-result-item__title, .c-rounded-input__input, .c-newsletter-section__sub-title, .c-newsletter-section__title, .c-home-news-item__sub-title, .c-home-news-item__title, .c-news-item__sub-title, .c-news-item__title, .c-project__sub-title, .c-project__title, .c-carousel__sub-title, .c-carousel__title, .c-block__sub-title, .c-block__title, .c-main-footer__menu a, .c-main-nav__item, .c-btn, .c-submit, .t-subtittle, .t-h3, .c-home-news-item__date, .c-wordpress-section .wp-block-heading, .c-media-item__content .wp-block-heading, .t-h2, .c-media-item-container__title, .t-h1, .c-page-header {
  font-family: "Exo 2", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tinos, .c-search-result-item__tag {
  font-family: "Tinos", serif;
}

strong {
  font-weight: 400;
}

i {
  font-style: italic;
}

.o-title, .t-h1, .c-page-header {
  overflow: hidden;
}

.t-link, .c-wordpress-section a, .c-media-item__content a {
  color: rgb(238, 37, 37) !important;
  font-weight: 900;
  text-decoration: underline;
}

.t-h1, .c-page-header {
  font-weight: 900;
  font-size: 2.6rem;
  margin-bottom: 35px;
  color: rgb(0, 0, 0);
  line-height: 1.1;
}
@media (max-width: 850px) {
  .t-h1, .c-page-header {
    font-size: 1.4rem;
  }
}

.t-h2, .c-media-item-container__title {
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 850px) {
  .t-h2, .c-media-item-container__title {
    font-size: 1.2rem;
  }
}

.t-h3, .c-home-news-item__date, .c-wordpress-section .wp-block-heading, .c-media-item__content .wp-block-heading {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  margin-top: 2rem;
}
@media (max-width: 850px) {
  .t-h3, .c-home-news-item__date, .c-wordpress-section .wp-block-heading, .c-media-item__content .wp-block-heading {
    font-size: 1.1rem;
  }
}

.t-subtittle {
  font-weight: 300;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
@media (max-width: 850px) {
  .t-subtittle {
    font-size: 1.1rem;
  }
}

.t-p1, .c-wordpress-section p, .c-media-item__content p {
  font-size: 1.2rem;
  margin-bottom: 1.3rem;
  line-height: 1.4;
  font-weight: 300;
}
@media (max-width: 850px) {
  .t-p1, .c-wordpress-section p, .c-media-item__content p {
    font-size: 1.1rem;
  }
}
.t-p1 em, .c-wordpress-section p em, .c-media-item__content p em {
  font-style: italic;
}

.t-strong {
  font-weight: bold;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 5px 5px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: rgb(0, 0, 0);
}

.hamburger-box {
  width: 45px;
  height: 27px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 45px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  border-radius: 3px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -11px;
}
.hamburger-inner::after {
  bottom: -11px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 90px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 90px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 90px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 90px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 90px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 90px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-9px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-9px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(9px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(9px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-9px, -11.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-9px, 11.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(9px, -11.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(9px, 11.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -22px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -22px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -11px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 11px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 22px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -22px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 11px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 22px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -22px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 11px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -90px;
  top: -90px;
  transform: translate3d(90px, 90px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -90px;
  top: -90px;
  transform: translate3d(-90px, 90px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 11px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -90px;
  top: 90px;
  transform: translate3d(90px, -90px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -90px;
  top: 90px;
  transform: translate3d(-90px, -90px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2.5px;
}
.hamburger--slider .hamburger-inner::before {
  top: 11px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 22px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-6.4285714286px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -22px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2.5px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 11px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 22px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(6.4285714286px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -22px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2.5px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 11px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 22px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 11px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 11px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -22px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.c-btn, .c-submit {
  font-size: 1rem;
  font-weight: bold;
  background-color: black;
  color: white;
  padding: 10px 25px;
  border: 0;
  outline: 0;
}

.c-main-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgb(190, 190, 190);
  display: flex;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  background-color: rgb(255, 255, 255);
}
.c-main-nav__search {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: -1px;
  z-index: -1;
  transform: translateY(-100%);
  opacity: 0;
  padding: 15px 15px 15px 15px;
  background-color: white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  transition: opacity 300ms ease-out, transform 300ms ease-out;
}
.c-main-nav__search--active {
  transform: translateY(100%);
  opacity: 1;
}
.c-main-nav__content {
  max-width: 1850px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgb(255, 255, 255);
  justify-content: space-between;
  width: 100%;
}
.c-main-nav__logo {
  height: 90px;
  margin: 15px 0 15px 50px;
}
@media (max-width: 850px) {
  .c-main-nav__logo {
    margin: 15px 0 15px 15px;
  }
}
.c-main-nav__menu {
  flex: 1;
  justify-content: flex-end;
  display: flex;
  flex-direction: row;
  height: 100%;
  margin-right: 50px;
}
@media (max-width: 850px) {
  .c-main-nav__menu {
    margin-right: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    background-color: rgb(255, 255, 255);
    z-index: 100;
    transform: translateY(-100%);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    transition: transform 450ms ease-out, box-shadow 450ms ease-out;
    padding: 0;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0);
    height: auto;
  }
  .c-main-nav__menu.is-active {
    transform: translateY(0);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 500ms ease-out, box-shadow 500ms ease-out;
    box-shadow: 2px 8px 32px rgba(0, 0, 0, 0.6);
  }
}
.c-main-nav__item {
  background-color: white;
}
.c-main-nav__item a {
  padding: 10px 15px;
  letter-spacing: 0.1px;
  color: rgb(0, 0, 0);
  font-weight: 900;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.c-main-nav__item a:visited {
  color: rgb(0, 0, 0);
}
.c-main-nav__item--black a {
  background-color: rgb(0, 0, 0);
  color: white;
}
.c-main-nav__item--black a:visited {
  color: white;
}
@media (max-width: 850px) {
  .c-main-nav__item {
    width: 100%;
  }
  .c-main-nav__item a {
    padding: 15px 15px;
    font-size: 1.2rem;
    justify-content: center;
  }
}

.hamburger {
  display: none !important;
  margin-right: 10px;
}
@media (max-width: 850px) {
  .hamburger {
    display: inline-block !important;
  }
}

.c-main-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 50px;
  background-color: rgb(0, 0, 0);
  background-repeat: no-repeat;
  background-position: 99% 33%;
  background-image: url(../img/logo_diag.svg);
  background-size: 10%;
}
@media (max-width: 850px) {
  .c-main-footer {
    padding: 15px;
    background-size: 15%;
  }
}
.c-main-footer__nav {
  max-width: 1050px;
  flex: 1;
}
.c-main-footer__menu {
  display: flex;
  justify-content: center;
}
@media (max-width: 850px) {
  .c-main-footer__menu {
    padding: 15px;
    flex-direction: column;
    align-items: center;
  }
}
.c-main-footer__menu a {
  color: white;
  text-decoration: 0;
  font-size: 0.7rem;
}
.c-main-footer__menu li {
  margin-right: 25px;
}

.c-page-section {
  padding: 35px 50px;
}
.c-page-section__content {
  max-width: 1050px;
  margin: auto;
}
@media (max-width: 850px) {
  .c-page-section__content {
    padding: 15px;
  }
}
@media (max-width: 850px) {
  .c-page-section {
    padding: 5px;
  }
}

.c-block {
  border-radius: 20px;
  margin-bottom: 35px;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
}
.c-block:last-of-type {
  margin-bottom: 0;
}
.c-block a {
  color: white;
  text-decoration: none;
}
.c-block--black {
  background-color: rgb(0, 0, 0);
}
.c-block--red {
  background-color: rgb(255, 76, 76);
}
.c-block--green {
  background-color: rgb(0, 191, 162);
}
.c-block--blue {
  background-color: rgb(0, 48, 74);
}
.c-block--yellow {
  background-color: rgb(255, 149, 2);
}
.c-block--no-pad .c-block__content {
  padding: 0;
}
.c-block__img {
  background-color: rgb(255, 255, 255);
  min-height: 100%;
  margin-right: 25px;
  width: 250px;
  flex-direction: column;
  background-size: cover;
  background-repeat: no-repeat;
}
.c-block__content {
  flex: 3;
  display: block;
  padding: 25px;
}
.c-block__title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
}
@media (max-width: 850px) {
  .c-block__title {
    font-size: 1.2rem;
  }
}
.c-block__sub-title {
  font-size: 1.2rem;
  line-height: 1.4;
}
.c-block__title-container {
  margin-bottom: 25px;
}
.c-block__p {
  margin-bottom: 15px;
  line-height: 1.4;
}
.c-block__wp-content p {
  margin-bottom: 15px;
  line-height: 1.4;
}
.c-block--rev {
  flex-direction: row-reverse;
}
.c-block--rev .c-block__img {
  margin-right: 0px;
  margin-left: 25px;
}
.c-block__a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.c-block__items {
  padding-top: 25px;
}
.c-block__items li {
  margin-bottom: 25px;
}
.c-block__items li:last-of-type {
  margin-bottom: 0;
}
.c-block__items a {
  font-weight: bold;
}

.c-carousel {
  width: 100%;
  max-width: 100%;
  position: relative;
}
.c-carousel__nav-item {
  appearance: none;
  border: 0;
  display: block;
  margin: 0;
  padding: 0;
  margin-right: 8px;
  cursor: pointer;
}
.c-carousel__nav-item:last-child {
  margin: 0 0 0 12px;
}
.c-carousel__prev {
  content: "<";
  background-color: transparent;
  color: rgb(255, 255, 255);
  transform: scale(0.9, 2.2);
  margin-right: 20px;
}
.c-carousel__next {
  content: ">";
  background-color: transparent;
  color: rgb(255, 255, 255);
  transform: scale(0.9, 2.2);
}
.c-carousel__btn {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.c-carousel__btn.js-active {
  background-color: rgb(255, 149, 2);
}
.c-carousel__btn-container {
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  z-index: 2;
}
.c-carousel__sections-container {
  overflow: hidden;
  position: relative;
  height: 400px;
}
.c-carousel__sections {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: transform 300ms ease-out;
}
.c-carousel__section {
  position: relative;
}
.c-carousel__info {
  position: absolute;
  bottom: 25px;
  left: 25px;
  border-radius: 15px;
  max-width: 60%;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 10px 20px;
  z-index: 2;
}
@media (max-width: 850px) {
  .c-carousel__info {
    width: calc(100% - 30px);
    max-width: initial;
    top: 15px;
    bottom: initial;
    left: 15px;
  }
}
.c-carousel__title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
}
@media (max-width: 850px) {
  .c-carousel__title {
    font-size: 1.1rem;
  }
}
.c-carousel__sub-title {
  font-size: 1.2rem;
  line-height: 1.4;
}
.c-carousel__p {
  margin: 15px 0;
  line-height: 1.4;
}
@media (max-width: 850px) {
  .c-carousel__p {
    display: none;
  }
}
.c-carousel__link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.c-wordpress-section, .c-media-item__content {
  max-width: 100%;
  overflow-x: hidden;
}
.c-wordpress-section .wp-block-separator, .c-media-item__content .wp-block-separator {
  margin: 35px 0;
  opacity: 0.3;
}
.c-wordpress-section strong, .c-media-item__content strong {
  font-weight: bold;
}
.c-wordpress-section img, .c-media-item__content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
}
.c-wordpress-section .wp-block-group.is-layout-grid, .c-media-item__content .wp-block-group.is-layout-grid {
  display: flex;
  gap: 50px;
  width: 100%;
}
@media (max-width: 850px) {
  .c-wordpress-section .wp-block-group.is-layout-grid, .c-media-item__content .wp-block-group.is-layout-grid {
    flex-direction: column;
    gap: 25px;
  }
}
.c-wordpress-section .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile, .c-media-item__content .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.c-wordpress-section .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile figure, .c-media-item__content .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile figure {
  width: 100%;
}
@media (max-width: 850px) {
  .c-wordpress-section .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile figure, .c-media-item__content .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile figure {
    justify-content: center;
    display: flex;
  }
}
.c-wordpress-section .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile img, .c-media-item__content .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}
@media (max-width: 850px) {
  .c-wordpress-section .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile img, .c-media-item__content .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile img {
    max-height: 100px;
    width: auto;
  }
}
.c-wordpress-section .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile a, .c-media-item__content .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}
@media (max-width: 850px) {
  .c-wordpress-section .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile a, .c-media-item__content .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile a {
    text-align: center;
    display: block;
  }
}
@media (max-width: 850px) {
  .c-wordpress-section .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile, .c-media-item__content .wp-block-group.is-layout-grid .wp-block-media-text.is-stacked-on-mobile {
    width: 100%;
  }
}
.c-wordpress-section .wp-block-list, .c-media-item__content .wp-block-list {
  list-style-type: disc;
  margin: 25px 0;
  padding-left: 20px;
  line-height: 1.4;
}
.c-wordpress-section .wp-block-list li, .c-media-item__content .wp-block-list li {
  margin: 15px 0;
}
.c-wordpress-section .wp-block-heading, .c-media-item__content .wp-block-heading {
  line-height: 1.4;
}
.c-wordpress-section figure.aligncenter, .c-media-item__content figure.aligncenter {
  display: flex;
  justify-content: center;
}
.c-wordpress-section .o-float, .c-media-item__content .o-float {
  float: left;
  margin: 0px 25px 0px 0;
}
.c-wordpress-section.c-news-item-wp-section p:first-of-type, .c-news-item-wp-section.c-media-item__content p:first-of-type {
  font-weight: bold;
}

.collapsible-section {
  background-color: rgb(235, 235, 235);
  padding: 25px;
  position: relative; /* establish a positioning context for the overlay */
  max-height: 200px; /* collapse point */
  overflow: hidden; /* hide content beyond the max-height */
  transition: max-height 0.4s ease; /* animate expansion */
  margin: 0 -25px 25px -25px;
}
.collapsible-section .content > :first-child {
  margin-top: 0;
}
.collapsible-section .content > :last-child {
  margin-bottom: 0;
}
.collapsible-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* adjust how tall the fade is */
  pointer-events: none; /* let clicks pass through */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 85%);
  transition: opacity 0.4s ease; /* animate fade‐out */
}
.collapsible-section.open::after {
  opacity: 0;
}
.collapsible-section a.collapsible-section__btn {
  position: absolute;
  bottom: 0;
  right: 25px;
  z-index: 10;
  cursor: pointer;
  display: block;
  padding: 5px 8px 5px 8px;
  border: 2px solid rgb(238, 37, 37);
  border-radius: 3px;
  background-color: white;
  text-decoration: none;
}
.collapsible-section.open a.collapsible-section__btn {
  bottom: initial;
  top: 5px;
  right: 5px;
  border: 0;
}

/* Gradient “fade out” overlay */
.c-breadcrumb {
  display: flex;
  overflow: hidden;
}
.c-breadcrumb__ul {
  display: flex;
}
@media (max-width: 850px) {
  .c-breadcrumb__ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.5rem;
    min-width: 0;
  }
}
.c-breadcrumb__li--active a {
  font-style: normal;
  color: rgb(140, 140, 140);
}
.c-breadcrumb__li:last-of-type {
  display: block;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.c-breadcrumb__a {
  text-transform: lowercase;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-style: italic;
}
.c-breadcrumb span {
  margin: 0 5px;
  position: relative;
  top: 1px;
  color: rgb(255, 76, 76);
}
@media (max-width: 850px) {
  .c-breadcrumb span {
    margin: 0 -3px;
  }
}

.c-project {
  border-radius: 20px;
  margin-bottom: 35px;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
  background-color: rgb(0, 0, 0);
}
.c-project:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 850px) {
  .c-project {
    display: block;
  }
}
.c-project__img {
  background-color: rgb(255, 255, 255);
  min-height: 100%;
  margin-right: 25px;
  width: 250px;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 850px) {
  .c-project__img {
    width: 100%;
    height: 80px;
  }
}
.c-project__img svg {
  position: absolute;
  right: -0.5px;
  top: 0;
  width: 50px;
  height: 100%;
}
@media (max-width: 850px) {
  .c-project__img svg {
    display: none;
  }
}
.c-project__content {
  flex: 3;
  display: block;
  padding: 25px;
}
.c-project__title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
}
@media (max-width: 850px) {
  .c-project__title {
    font-size: 1.2rem;
  }
}
.c-project__sub-title {
  font-size: 1.2rem;
  line-height: 1.2;
}
.c-project__title-container {
  margin-bottom: 25px;
}
.c-project__p {
  margin-bottom: 15px;
  line-height: 1.3;
}
.c-project--rev {
  flex-direction: row-reverse;
}
.c-project--rev .c-project__img {
  margin-right: 0px;
  margin-left: 25px;
}
.c-project__a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.c-project-header {
  height: 400px;
  margin-bottom: 50px;
  position: relative;
}
.c-project-header__img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-size: cover;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 850px) {
  .c-project-header {
    margin-bottom: 0px;
    height: auto;
    padding-top: 200px;
  }
}
.c-project-header__title {
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 1080px;
  width: 100%;
  padding: 15px;
}
.c-project-header__title .t-h1:last-child, .c-project-header__title .c-page-header:last-child, .c-project-header__title .t-h3:last-child, .c-project-header__title .c-home-news-item__date:last-child, .c-project-header__title .c-wordpress-section .wp-block-heading:last-child, .c-project-header__title .c-media-item__content .wp-block-heading:last-child, .c-wordpress-section .c-project-header__title .wp-block-heading:last-child, .c-media-item__content .c-project-header__title .wp-block-heading:last-child {
  margin: 0;
}
@media (max-width: 850px) {
  .c-project-header__title {
    display: block;
  }
}

.c-news-item {
  border-radius: 20px;
  margin-bottom: 35px;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
  background-color: rgb(0, 0, 0);
}
.c-news-item:last-of-type {
  margin-bottom: 0;
}
.c-news-item__img {
  position: relative;
  background-color: rgb(255, 255, 255);
  min-height: 100%;
  margin-right: 25px;
  width: 250px;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c-news-item__img svg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
}
.c-news-item__content {
  flex: 3;
  display: block;
  padding: 25px;
}
.c-news-item__title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.4;
}
.c-news-item__sub-title {
  font-size: 1.2rem;
  line-height: 1.4;
}
.c-news-item__title-container {
  margin-bottom: 25px;
}
.c-news-item__p {
  margin-bottom: 15px;
  line-height: 1.4;
}
.c-news-item--rev {
  flex-direction: row-reverse;
}
.c-news-item--rev .c-news-item__img {
  margin-right: 0px;
  margin-left: 25px;
}
.c-news-item__a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.c-news-item-header {
  background-size: cover;
  height: 400px;
  background-position: center;
  margin-bottom: 0px;
  position: relative;
}
.c-news-item-header.o-no-image {
  height: 125px;
}
.c-news-item-header__title {
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 1080px;
  width: 100%;
  padding: 15px 15px 0 15px;
}
.c-news-item-header__title .t-h1:last-child, .c-news-item-header__title .c-page-header:last-child, .c-news-item-header__title .t-h3:last-child, .c-news-item-header__title .c-home-news-item__date:last-child, .c-news-item-header__title .c-wordpress-section .wp-block-heading:last-child, .c-news-item-header__title .c-media-item__content .wp-block-heading:last-child, .c-wordpress-section .c-news-item-header__title .wp-block-heading:last-child, .c-media-item__content .c-news-item-header__title .wp-block-heading:last-child {
  margin: 0;
}
@media (max-width: 850px) {
  .c-news-item-header__title {
    max-width: calc(100% - 30px);
  }
}
.c-news-item-header .t-h1, .c-news-item-header .c-page-header {
  margin-bottom: 19px;
}
.c-news-item-header .t-h3, .c-news-item-header .c-home-news-item__date, .c-news-item-header .c-wordpress-section .wp-block-heading, .c-news-item-header .c-media-item__content .wp-block-heading, .c-wordpress-section .c-news-item-header .wp-block-heading, .c-media-item__content .c-news-item-header .wp-block-heading {
  font-size: 1rem;
  font-weight: 300;
}

.c-home-news-item {
  border-radius: 20px;
  margin-bottom: 35px;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
  background-color: rgb(0, 0, 0);
}
.c-home-news-item:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 850px) {
  .c-home-news-item {
    width: 100%;
    margin-bottom: 15px;
  }
}
.c-home-news-item__img {
  position: relative;
  background-color: rgb(255, 255, 255);
  min-height: 100%;
  margin-right: 25px;
  width: 250px;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c-home-news-item__img svg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
}
@media (max-width: 850px) {
  .c-home-news-item__img svg {
    display: none;
  }
}
@media (max-width: 850px) {
  .c-home-news-item__img {
    display: none;
  }
}
.c-home-news-item__content {
  flex: 3;
  display: block;
  padding: 25px;
}
.c-home-news-item__title {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 5px;
  line-height: 1.1;
}
@media (max-width: 850px) {
  .c-home-news-item__title {
    font-size: 1.2rem;
  }
}
.c-home-news-item__date {
  font-size: 1rem;
  font-weight: 300;
  margin-top: 0;
}
@media (max-width: 850px) {
  .c-home-news-item__date {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
}
.c-home-news-item__sub-title {
  font-size: 1.2rem;
  line-height: 1.4;
}
.c-home-news-item__title-container {
  margin-bottom: 25px;
}
@media (max-width: 850px) {
  .c-home-news-item__title-container {
    margin-bottom: 0;
  }
}
.c-home-news-item__p, .c-home-news-item p {
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 300;
}
@media (max-width: 850px) {
  .c-home-news-item__p, .c-home-news-item p {
    display: none;
  }
}
.c-home-news-item--rev {
  flex-direction: row-reverse;
}
.c-home-news-item--rev .c-home-news-item__img {
  margin-right: 0px;
  margin-left: 25px;
}
.c-home-news-item__a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* these classes can be used to style the form */
.form-f5iekfhacn label {
  display: block;
  padding: 0.4em 0 0.1em 0;
}

.form-f5iekfhacn fieldset {
  border: 0;
}

.form-f5iekfhacn fieldset label {
  display: inline;
  padding: 0 0 0 0.1em;
}

.form-f5iekfhacn input[type=submit] {
  margin-top: 1em;
}

/* client side validation */
.form-f5iekfhacn input:invalid {
  border: 2px dashed red;
}

.form-f5iekfhacn input:invalid:required {
  border: 2px solid #ccc;
}

.form-f5iekfhacn input:valid {
  border: 2px solid #ccc;
}

.c-newsletter-section {
  border-radius: 20px;
  margin-bottom: 35px;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  background-color: black;
  padding: 50px 25px;
}
.c-newsletter-section:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 850px) {
  .c-newsletter-section {
    padding: 35px 25px;
  }
}
.c-newsletter-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  max-width: 650px;
}
@media (max-width: 850px) {
  .c-newsletter-section__content {
    max-width: 100%;
  }
}
.c-newsletter-section__p {
  line-height: 1.4;
  margin-bottom: 35px;
}
.c-newsletter-section__title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  margin-bottom: 35px;
}
.c-newsletter-section__title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 5px;
}
.c-newsletter-section__sub-title {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: -10px;
}

.c-rounded-input {
  display: flex;
  background: white;
  border-radius: 20px;
  border: 2px black solid;
  width: 350px;
  max-width: 100%;
}
.c-rounded-input--large {
  width: 750px;
}
.c-rounded-input--full-width {
  width: 100%;
}
.c-rounded-input__input {
  appearance: none;
  border-radius: 20px 0 0 20px;
  padding: 5px 15px;
  margin: 0;
  border: 0;
  flex: 1;
  font-size: 0.8rem;
  font-weight: bold;
}
.c-rounded-input__input:focus {
  border: 0;
  outline: 0;
}
.c-rounded-input__btn {
  appearance: none;
  background-color: white;
  border: 2px solid black;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-size: 20px;
  position: relative;
  background-position: 6.5px 6.5px;
  background-image: url(../img/icons/send.svg);
  left: 5px;
  cursor: pointer;
}
.c-rounded-input__btn--search {
  background-color: black;
  background-image: url(../img/icons/search.svg);
}

.c-form-row {
  margin-bottom: 25px;
  width: 100%;
  display: block;
}

.c-label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1em;
  cursor: pointer;
}

.c-input {
  border: 0;
  border-bottom: 1px solid black;
  padding: 10px 10px;
  width: 100%;
  max-width: 650px;
  background-color: rgba(0, 191, 162, 0.01);
  font-family: "Tinos", serif;
  font-size: 1em;
}
.c-input--no-pad {
  padding: 10px 0;
}

.c-select {
  border: 0;
  display: block;
  border-bottom: 1px solid black;
  padding: 10px 10px;
  width: 100%;
  max-width: 650px;
  background-color: rgba(0, 191, 162, 0.01);
  font-family: "Tinos", serif;
  font-size: 1em;
}

.c-textarea {
  border: 0;
  border-bottom: 1px solid black;
  padding: 10px 10px;
  width: 100%;
  max-width: 650px;
  background-color: rgba(0, 191, 162, 0.01);
  font-family: "Tinos", serif;
  font-size: 1em;
  resize: none;
}

.c-submit {
  cursor: pointer;
}

.c-search-results__description {
  font-size: 1.2rem;
  margin-bottom: 50px;
}

.c-search-result-item {
  margin-bottom: 50px;
  position: relative;
}
.c-search-result-item__tag {
  display: inline-block;
  padding: 4px 10px 5px;
  background-color: black;
  color: white;
  border-radius: 40px;
  font-size: 14px;
  margin-left: 5px;
  font-weight: bold;
  text-transform: lowercase;
}
.c-search-result-item__title {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.c-search-result-item__title span {
  display: inline-block;
}
.c-search-result-item__excerpt {
  font-size: 1.1rem;
  margin: 15px 0;
  line-height: 1.4;
}
.c-search-result-item__link {
  display: inline-block;
  font-weight: bold;
  background-color: black;
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 0.75rem;
}
.c-search-result-item__whole-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-media-item-container {
  overflow: hidden;
}
.c-media-item-container__title {
  font-size: 2.2rem;
  margin-bottom: 35px;
  margin-top: 100px;
  line-height: 1.25;
}
@media (max-width: 850px) {
  .c-media-item-container__title {
    font-size: 1.4rem;
    margin-top: 50px;
  }
}

.c-media-item {
  margin-bottom: 45px;
  padding: 35px;
  background-color: black;
  border-radius: 20px;
}
.c-media-item__title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
  color: white;
}
@media (max-width: 850px) {
  .c-media-item__title {
    font-size: 1.2rem;
  }
}
.c-media-item__content p {
  color: white;
}
.c-media-item__link {
  display: inline-block;
  background-color: rgb(255, 76, 76);
  font-weight: bold;
  color: white !important;
  padding: 10px 25px;
  text-decoration: none;
}
@media (max-width: 850px) {
  .c-media-item__link {
    flex: 1;
    text-align: center;
  }
}
.c-media-item__btn-container {
  display: flex;
  justify-content: flex-end;
}

.c-home__img-container {
  background-color: white;
  border-radius: 5px;
  padding: 5px;
}
.c-home__img-container:first-of-type {
  margin-left: -15px;
}
.c-home__partners {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.c-home__partners img {
  max-height: 85px;
  background-image: white;
}
@media (max-width: 850px) {
  .c-home__partners img {
    max-height: 50px;
  }
}

.c-page-header {
  margin-bottom: 50px;
  text-transform: uppercase;
}

html, body {
  min-height: 100% !important;
  height: 100%;
  background-color: white;
}

body {
  color: rgb(0, 0, 0);
  padding-top: 124px;
  display: flex;
  flex-direction: column;
}

.js-top {
  scroll-margin-top: calc(100% - 10px);
}

.c-main {
  margin-top: 53px;
  padding-bottom: 100px;
  flex: 1;
}
@media (max-width: 850px) {
  .c-main {
    margin-top: 0px;
  }
}
.c-main.no-pad {
  padding-bottom: 0;
  margin-top: 0;
}
.c-main.no-margin {
  margin-top: 0px;
}