@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --subik-accent: hsl(274, 100%, 50%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --gray: #d9dada;
  --font-ui: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --breakpoint-xs: 500;
  --breakpoint-sm: 768px;
  --breakpoint-md: 1024px;
  --breakpoint-lg: 1380px;
  --breakpoint-xl: 1600px;
  --breakpoint-xxl: 1920px;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--white);
  font-family: var(--font-body);
  line-height: 1.4;
  font-weight: 400;
  color: var(--text-dark);
}

body.mm-overflow-hidden {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.35;
  color: var(--text-headings);
  color: var(--subik-accent);
  -webkit-font-smoothing: antialiased;
  line-height: 1.3;
}

p {
  font-size: 1rem;
  margin: 0 0 0.75em;
}

a {
  color: var(--subik-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a.absLink {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}

@media (min-width: 992px) {
  p {
    font-size: 1.25rem;
  }
}
img {
  display: block;
  max-width: 100%;
}

header, footer, section, figure, article, picture {
  margin: 0;
}

::-moz-selection {
  color: var(--white);
  background-color: var(--black);
}

::selection {
  color: var(--white);
  background-color: var(--black);
}

/* Screen Reader CSS @author Gaël Poupard */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  width: auto !important;
  white-space: normal !important;
}

h1 {
  margin-bottom: 2rem;
}

h1, .h1,
h2, .h2 {
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5rem;
}

h3 {
  color: var(--black);
}

@media (min-width: 992px) {
  h1, .h1,
  h2, .h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1400px) {
  h1, .h1,
  h2, .h2 {
    font-size: 3rem;
  }
}
.ta-center {
  text-align: center;
}

.center-to-left {
  text-align: center;
}

.links {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.smaller p {
  font-size: 1rem;
}

.spacer {
  width: 100%;
  height: 1rem;
}

.no-padding {
  padding: 0;
}

.mini,
.micro {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mini {
  max-width: 800px;
}

.micro {
  max-width: 400px;
}

.uppercase {
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .spacer {
    height: 2rem;
  }
}
.header {
  position: sticky;
  top: 0px;
  width: 100%;
  z-index: 2;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid #eee;
}

.header__main {
  width: 100%;
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header__menu {
  display: none;
}

@media (min-width: 1024px) {
  .header__top {
    display: none;
  }
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__tools-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__tools a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 46px;
  width: 46px;
  margin-right: 0.75rem;
  padding: 0;
  background-color: var(--gray-background);
  border-radius: 3rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.header__hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  width: 46px;
  height: 46px;
}

.header__hamburger.is-sticky {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1010;
  background-color: red;
}

@media (min-width: 1024px) {
  .header__tools a {
    height: 36px;
    font-size: 0.9rem;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .header__tools a:hover,
  .header__tools a:focus,
  .header__tools a:active {
    background-color: var(--text-dark);
    color: var(--white);
  }
  .header__tools-menu a {
    width: 36px;
  }
  .header__hamburger {
    display: none;
  }
}
.container {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
}

@media (min-width: 768px) {
  .container {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 0.9375rem;
  }
}
section {
  padding: 3rem 0 2.5rem;
}

.full {
  min-height: calc(100vh - 43.5px - 51.81px);
}

.the-jury {
  max-width: 1600px;
}

@media (min-width: 992px) {
  section {
    padding: 4rem 0 3rem;
  }
  section.mini {
    padding: 0 0 3rem;
  }
}
@media (min-width: 1380px) {
  section {
    padding: 5rem 0 4rem;
  }
  section.mini {
    padding: 0 0 4rem;
  }
}
section.small {
  padding: 1rem 0;
}

.hero,
.zero {
  padding: 0;
}

.hero img {
  width: 100%;
}

.hero-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-weight: 400;
  text-transform: unset;
}

.hero-title span:nth-child(1) {
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-title span:nth-child(2) {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 2rem;
}

.hero-title span:nth-child(3) {
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .hero-title span:nth-child(1),
  .hero-title span:nth-child(2) {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1400px) {
  .hero-title span:nth-child(1),
  .hero-title span:nth-child(2) {
    margin-bottom: 3.5rem;
  }
}
.columns {
  display: grid;
  grid-gap: 1rem;
}

@media (min-width: 1024px) {
  .columns-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
  }
  .columns-3 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
  }
  .columns-3-1 {
    grid-template-columns: 2fr 1fr;
  }
  .columns-1-3 {
    grid-template-columns: 1fr 3fr;
  }
}
.article {
  padding: 0;
}

.article__heading {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  text-align: center;
}

.article__heading.--jury {
  font-size: 1.35rem;
  color: var(--black);
}

.article__thumbnail.--jury {
  margin: 0 auto;
  max-width: 200px;
  height: auto;
  margin-bottom: 1.3rem;
}

.article__content {
  padding: 0 0 1rem;
}

.text-content {
  width: 100%;
}
.text-content h1, .text-content h2, .text-content h3, .text-content h4, .text-content h5, .text-content h6,
.text-content .h1, .text-content .h2, .text-content .h3, .text-content .h4, .text-content .h5, .text-content .h6 {
  margin: 2rem 0 1rem;
}
.text-content h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.402rem;
}
.text-content h2 {
  font-size: 1.224rem;
}
.text-content h2:first-of-type {
  margin-top: 0.25rem;
}
.text-content h3 {
  font-size: 1.2rem;
}
.text-content h4 {
  font-size: 1.125rem;
}
.text-content h5, .text-content h6 {
  font-size: 1rem;
}
.text-content p {
  font-size: 1.1rem;
  line-height: 1.45;
  margin: 0 0 1rem;
}
.text-content small, .text-content .small, .text-content .text_small {
  font-size: 0.9375rem;
}
.text-content ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0 0.5rem;
}
.text-content ul li {
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 1rem;
  font-size: 1rem;
}
.text-content ol li {
  font-size: 1.1rem;
}
.text-content ul li:before {
  position: absolute;
  padding-top: 1.4px;
  content: url(../images/icons/list-item-green.svg);
  left: -0.5rem;
}
.text-content .ul--light li:before {
  content: url(../images/icons/list-item-gray.svg);
}
.text-content a {
  color: var(--subik-accent);
}
.text-content a.btn {
  color: var(--white);
}
.text-content a.btn:hover {
  color: var(--black);
}

@media (min-width: 1024px) {
  .article {
    padding: 0 1.875rem;
  }
  .article__content {
    padding: 0 0 2rem;
  }
  .text-content h1 {
    margin-top: 0;
    font-size: 1.802rem;
  }
  .text-content h2 {
    font-size: 1.602rem;
  }
  .text-content h2 {
    font-size: 1.424rem;
  }
  .text-content h3 {
    font-size: 1.266rem;
  }
  .text-content h4 {
    font-size: 1.125rem;
  }
  .text-content h5, .text-content h6 {
    font-size: 1rem;
  }
  .text-content p {
    line-height: 1.45;
  }
  .text-content small, .text-content .text_small {
    font-size: 0.889rem;
  }
}
@media (min-width: 1200px) {
  .article__image {
    height: 380px;
  }
  .article__heading {
    margin-bottom: 2rem;
    line-height: 1.3;
    font-size: 2.25rem;
  }
  .article__heading.--jury {
    font-size: 1.6rem;
  }
}
.footer {
  padding: 0.5rem 0;
  background-color: var(--black);
  color: var(--gray);
  text-align: center;
  font-size: 0.8rem;
}

.footer a {
  color: var(--gray);
}

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

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

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 26px;
  height: 3px;
  background-color: rgb(48, 48, 48);
  border-radius: 2px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}

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

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

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

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

.desktop-menu {
  text-transform: uppercase;
  color: var(--dark);
}

.desktop-menu__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.desktop-menu__links > li {
  position: relative;
}
.desktop-menu__links > li.current-menu-item a {
  color: var(--black);
}

.desktop-menu__links > li > a {
  position: relative;
  display: block;
  padding: 0.8rem 1rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--subik-accent);
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}
.desktop-menu__links > li > a:hover {
  color: var(--black);
}

.mobile-menu {
  position: fixed;
  top:46px;
  z-index: 1000;
  background: white;
  width: 100%;
  height: 100vh;
  height: calc(100vh - 46px);
  overflow-y: scroll;
  -webkit-transition: -webkit-transform ease 0.5s;
  transition: -webkit-transform ease 0.5s;
  transition: transform ease 0.5s;
  transition: transform ease 0.5s, -webkit-transform ease 0.5s;
}

.mobile-menu--oncanvas {
  -webkit-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.mobile-menu--offcanvas {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mobile-menu__list,
.mobile-menu__list .sub-menu,
.mobile-menu__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
}

.mobile-menu__list {
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.mobile-menu__list > li {
  width: 90%;
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid var(--gray-menu);
  text-align: center;
}

.mobile-menu__list a {
  display: block;
  position: relative;
  padding: 0.8rem 0;
  text-decoration: none;
  color: var(--color-dark);
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}

.mobile-menu__list .sub-menu a,
.mobile-menu__sublist a {
  padding-left: 1rem;
}

.mobile-menu.is-scrolled {
  height: 100vh;
  top: 0;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 1.75rem 0.65rem;
  max-width: 100%;
  border: none;
  background-color: var(--gray);
  background-color: var(--subik-accent);
  color: var(--black);
  color: var(--white);
  text-align: center;
  vertical-align: middle;
  font-family: var(--font-ui);
  line-height: 1.35;
  letter-spacing: 0.03rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.full {
  display: block;
}

.btn:hover {
  text-decoration: none;
  background-color: var(--subik-accent);
  background-color: var(--gray);
  color: var(--white);
  color: var(--black);
}

.btn--bi {
  background-color: var(--white);
  color: var(--black);
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.btn--bi span {
  font-size: 1.65rem;
  color: var(--subik-accent);
  display: block;
  margin-right: 0.65rem;
}

.btn--bi:hover {
  background-color: #ccc !important;
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.title {
  max-width: 47.5rem;
  margin: 0 auto;
}

.side-title {
  text-align: center;
}

@media (min-width: 992px) {
  .side-title {
    text-align: unset;
    display: grid;
    grid-template-columns: 4fr 1fr 7fr;
  }
  .side-title h2 {
    text-align: center;
  }
}
.practice {
  margin: 3rem auto 0;
}

.practice h3 {
  margin-bottom: 0.25rem;
  text-transform: unset;
  font-size: 1.5rem;
  font-weight: 400;
}

@media (min-width: 992px) {
  .practice {
    max-width: 64rem;
  }
  .practice h3 {
    margin-bottom: 0.25rem;
    font-size: 2rem;
  }
}
.story {
  font-family: var(--font-ui);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 0.5rem;
}

.story__figure {
  position: relative;
}

.story__picture {
  display: block;
  overflow: hidden;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  height: 175px;
}

.story__picture img {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.story__figure a:hover + .story__picture img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.story__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 1.5rem 0 0;
}

.story__hr {
  display: block;
  height: 2rem;
}

.story__title {
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.story__title a,
.story__title a:link,
.story__title a:visited {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.story__title a:hover,
.story__title a:focus,
.story__title a:active {
  text-decoration: underline;
}

.story__location,
.story__date,
.story__details {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
}

.story__status,
.story__category {
  font-size: 0.8rem;
}

.story__location {
  font-weight: 700;
  color: var(--jessica-orange);
  margin-bottom: 0.625rem;
}

.story__date {
  margin-bottom: 0.875rem;
  color: var(--csop-orange);
}

.story__details {
  margin-top: auto;
  line-height: 1.75;
}

.story__info {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.story__status {
  font-weight: 700;
}

.story__link {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: auto;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--csop-blue);
}

.story__link::after {
  position: absolute;
  content: "";
  right: -1.45rem;
  top: 56%;
  width: 16px;
  height: 9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("/images/icons/link-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.story__link:hover {
  text-decoration: underline;
}

.story__link:hover::after {
  right: -1.7rem;
}

@media (min-width: 500px) {
  .story__picture {
    height: 200px;
  }
}
@media (min-width: 768px) {
  .story--landscape {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .story--landscape .story__figure {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .story--landscape .story__picture {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-right-radius: unset;
    min-height: 100%;
  }
  .story--landscape .story__picture img {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-right-radius: unset;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1380px) {
  .story__picture {
    height: 220px;
  }
}
.single-nav {
  font-family: var(--font-ui);
  border-top: 1px solid var(--gray-borders);
  border-bottom: 1px solid var(--gray-borders);
}

.single-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  color: var(--jessica-blue-dark);
}

.single-nav a:hover,
.single-nav a:focus,
.single-nav a:active {
  text-decoration: underline;
}

.single-nav > div {
  padding: 1rem 0;
}

.single-nav__item p:first-child {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-light);
  color: var(--text-menu);
  color: #B8B8B8;
}

.single-nav__item.is-prev {
  border-bottom: 1px solid var(--gray-borders);
}

@media (min-width: 992px) {
  .single-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .single-nav__item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 1rem;
  }
  .single-nav__item.is-prev {
    text-align: right;
    border-bottom: none;
    padding-right: 1.75rem;
    border-right: 1px solid #ebebeb;
  }
  .single-nav__item.is-next {
    padding-left: 1.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 1380px) {
  .single-nav a {
    display: inline-block;
    max-width: 80%;
  }
}
.parallax {
  /* Set a specific height */
  min-height: 250px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax--one {
  background-image: url("/assets/images/parallax/VENEZIA-10.png");
}

.parallax--two {
  background-image: url("/assets/images/parallax/VENEZIA-11.png");
}

.parallax--three {
  background-image: url("/assets/images/parallax/VENEZIA-12.png");
}

.parallax--four {
  background-image: url("/assets/images/parallax/VENEZIA-13.png");
}

@media (min-width: 1024px) {
  .parallax {
    /* Set a specific height */
    min-height: 400px;
  }
}
.zones {
  margin: 2rem auto 0;
  text-align: center;
}

.zone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.5rem;
}

.zone img {
  max-width: 100%;
  height: auto;
}

.zone h3,
.zone-title {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  font-size: 1.625em;
  line-height: 1.15384615;
  text-transform: none;
}

.zone-content {
  padding-bottom: 1rem;
}

@media (min-width: 1024px) {
  .zones {
    margin: 6rem auto 0;
    text-align: left;
  }
  .zone {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 2.5rem;
  }
  .zone.--reversed {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .zone-content,
  .zone-visual {
    width: 48.5%;
  }
  .zone-title {
    margin-top: 1rem;
    font-size: 2em;
  }
}
.goals {
  margin-top: 2rem;
}

.goals p {
  text-transform: uppercase;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .goals {
    margin-top: 4rem;
  }
}
.prizes {
  grid-gap: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  margin: 2rem auto 3rem;
  max-width: 320px;
  text-align: left;
  width: 80%;
}

.prizes-title {
  font-size: 1.5rem;
  line-height: 2.75rem;
  color: var(--subik-accent);
  text-align: center;
}

.prizes-amount {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--subik-accent);
  color: var(--white);
  padding: 1.9rem 1.25rem 1.75rem;
  padding: 1rem 1.25rem 0.85rem;
}

@media (min-width: 1024px) {
  .prizes {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem;
    width: 90%;
    max-width: 720px;
  }
}
@media (min-width: 1200px) {
  .prizes {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
    width: 90%;
    max-width: 720px;
    max-width: 940px;
  }
  .prizes-title {
    line-height: 3.25rem;
  }
  .prizes-title,
  .prizes-amount {
    font-size: 2rem;
  }
  .prizes-amount {
    padding: 1.5rem 1.25rem 1.35rem;
    padding: 1rem 1.25rem 0.85rem;
  }
  .prizes h3 {
    font-size: 24px;
  }
  .prizes p {
    font-size: 34px;
  }
  .prizes__notes {
    max-width: 60%;
  }
}
table.schedule {
  width: 100%;
}

table.schedule tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

table.schedule > tbody > tr > td {
  border: none;
  border-bottom: 3px solid var(--subik-accent);
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

table.schedule > tbody > tr > td:first-child {
  border-bottom: none;
  font-size: 1.625rem;
  font-weight: 400;
  padding: 0.75rem 0 0;
}

table.schedule > tbody > tr > td:nth-child(2) {
  font-size: 1.05rem;
  line-height: 1.4737;
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  table.schedule tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  table.schedule > tbody > tr > td:first-child {
    border-bottom: 3px solid var(--subik-accent);
    padding: 1rem 2.25rem 1rem 0;
    width: 40%;
    font-size: 2rem;
  }
  table.schedule > tbody > tr > td:nth-child(2) {
    padding: 1rem 0;
    width: 60%;
    font-size: 1.25rem;
  }
}
.schedule table {
  width: 100%;
}

.schedule table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.schedule table > tbody > tr > td {
  border: none;
  border-bottom: 3px solid var(--subik-accent);
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.schedule table > tbody > tr > td:first-child {
  border-bottom: none;
  font-size: 1.625rem;
  font-weight: 400;
  padding: 0.75rem 0 0;
}

.schedule table > tbody > tr > td:nth-child(2) {
  font-size: 1.05rem;
  line-height: 1.4737;
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .schedule table tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .schedule table > tbody > tr > td:first-child {
    border-bottom: 3px solid var(--subik-accent);
    padding: 1rem 2.25rem 1rem 0;
    width: 40%;
    font-size: 2rem;
  }
  .schedule table > tbody > tr > td:nth-child(2) {
    padding: 1rem 0;
    width: 60%;
    font-size: 1.25rem;
  }
}
.jury {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 3rem;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
}

.chairman {
  max-width: 32rem;
  margin: 4rem auto 0;
}

.chairman--bio p {
  color: var(--subik-accent);
}

.bio {
  margin: 2rem auto 0;
  max-width: 900px;
}

.bio p {
  font-size: 1rem;
  line-height: 1.6;
}

.member {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  text-align: center;
}

.member img {
  border-radius: 50%;
  height: auto;
  margin: 0 auto;
  width: 160px;
  margin-bottom: 1.75rem;
}

.member--chairman img {
  width: 200px;
}

.member h3 {
  margin-bottom: 0.25rem;
  text-transform: unset;
  font-weight: 600;
  font-size: 1.15rem;
}

.member h3 span {
  text-transform: lowercase;
}

.member p {
  font-size: 1rem;
}

.member .member__info {
  text-align: left;
}

@media (min-width: 500px) {
  .jury {
    row-gap: 3rem;
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
  .member {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
}
@media (min-width: 1024px) {
  .jury {
    row-gap: 4rem;
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
  .member {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}
@media (min-width: 1024px) {
  .jury {
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
  .member {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
/* @media (min-width: 1700px) {
  .jury {
    -webkit-column-gap: 2.5%;
       -moz-column-gap: 2.5%;
            column-gap: 2.5%;
  }
  .member {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18%;
            flex: 0 0 18%;
  }
} */
.brief {
  margin: 0 auto;
  width: 310px;
}

.brief__top {
  background: #eee;
  font-size: 2rem;
  padding: 1em;
  text-align: center;
}

a.brief__download,
.brief__download {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: var(--subik-accent);
  color: var(--white);
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}

a.brief__download:hover,
.brief__download:hover {
  text-decoration: none;
  background-color: var(--black);
}

.entries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3rem;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  margin-top: 4rem;
}

.entry-visual {
  position: relative;
}

.entry img {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 1.75rem;
}

.entry .abs {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.entry h3 {
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  word-break: break-word;
}

.entry h3 a {
  color: var(--black);
}

.entry p {
  font-size: 0.9rem;
}

.entry p,
.entry p a {
  color: #777;
}

@media (min-width: 768px) {
  .entries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .entry h3 {
    word-break: normal;
  }
}
@media (min-width: 1024px) {
  .entries {
    grid-template-columns: repeat(5, 1fr);
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    row-gap: 3.5rem;
  }
}
.qa {
  padding: 5rem 0 3rem;
  min-height: 60vh;
}

.qa-info p {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .qa {
    padding: 6rem 0 3rem;
  }
}
.space__info {
  margin-bottom: 2rem;
}

.space__documents {
  max-width: 800px;
  margin: 0 auto;
}

.space h3 {
  font-size: 1.25rem;
}

.space__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}

.space__gallery img {
  width: 100%;
}

.project {
  margin-top: 2rem;
}

.project h3 {
  margin-bottom: 1rem;
}

.project__featured {
  margin-bottom: 2rem;
}

.project__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.project__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  margin-bottom: 2.5rem;
}

.project__gallery img {
  width: 100%;
}

.project p.video {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .project__gallery {
    grid-template-columns: repeat(5, 1fr);
  }
  .project__featured {
    margin-bottom: 4rem;
  }
}
.invitation__title {
  text-align: center;
}

@media (min-width: 1024px) {
  .invitation {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .invitation__title {
    text-align: right;
    padding-right: 2rem;
  }
}
.split__title {
  text-align: left;
}

.split__title h3 {
  line-height: 2;
}

@media (min-width: 1024px) {
  .split {
    display: grid;
    grid-template-columns: 0.7fr 1fr 0.4fr;
  }
  .split__title {
    text-align: right;
    padding-right: 3rem;
  }
  .split__content {
    padding-left: 3rem;
  }
}
.request {
  margin: 1rem auto 1rem;
  border-radius: 0.625rem;
  padding: 2rem 2rem 2.5rem;
  max-width: 900px;
}

.text-content .request__title,
.request__title {
  margin: 0;
  text-transform: uppercase;
}

.plazeform {
  margin: 2rem auto;
}
.plazeform__group {
  width: 100%;
  position: relative;
}
.plazeform input[type=text], .plazeform input[type=email], .plazeform input[type=tel], .plazeform input[type=password], .plazeform textarea {
  display: block;
  width: 100%;
  padding: 0.4rem 1.25rem;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #585857;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--gray);
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.plazeform input[type=text]:focus, .plazeform input[type=email]:focus, .plazeform input[type=tel]:focus, .plazeform input[type=password]:focus, .plazeform textarea:focus {
  outline: 2px dotted var(--csop-blue);
  outline-offset: 3px;
}
.plazeform .custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.875em + 1rem + 2px);
  padding: 0.5rem 2.5rem 0.5rem 1.5rem;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #585857;
  border: none;
  border-radius: 0.625rem;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12.3px' height='8.4px' viewBox='0 0 12.3 8.4'%3e%3cpath fill='none' stroke='%23999999' stroke-miterlimit='10' d='M11.9,0.3L6.1,7.6L0.4,0.3'/%3e%3c/svg%3e") no-repeat right 1.5rem center/auto;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
       appearance: none !important;
}
.plazeform .custom-select:focus {
  outline: 2px dotted var(--csop-blue);
  outline-offset: 3px;
}
.plazeform .custom-select:invalid {
  color: rgba(0, 0, 0, 0.65);
}
.plazeform .custom-select option {
  color: #585858;
}
.plazeform textarea {
  height: unset;
  resize: none;
}
.plazeform label a {
  margin-left: 0.25rem;
  text-decoration: underline;
}
.plazeform ::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-size: 1rem;
}
.plazeform ::-moz-placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-size: 1rem;
}
.plazeform :-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-size: 1rem;
}
.plazeform ::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-size: 1rem;
}
.plazeform ::placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-size: 1rem;
}
.plazeform__error {
  padding: 0.5rem 1rem;
  background-color: var(--subik-accent);
  color: white;
  text-align: center;
  opacity: 0.8;
}
.plazeform__success {
  padding: 0.5rem 1rem;
  background-color: #e4e4e4;
  color: var(--subik-accent);
  text-align: center;
  opacity: 1;
}

.plazeform__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.25rem 0;
}

@media (min-width: 1024px) {
  .plazeform__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.25rem 2rem;
    margin-bottom: 2rem;
  }
  .plazeform--3 {
    grid-column: 1/3;
  }
}
.plazeform input[type=checkbox] {
  position: absolute;
}
.plazeform input[type=checkbox] + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.5rem;
  padding-left: 2.5rem;
}
.plazeform input[type=checkbox] + label::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  margin-right: 10px;
  border-radius: 0.2rem;
  border: 1px solid #dadada;
  width: 1.875rem;
  height: 1.875rem;
  background: #fff;
  cursor: pointer;
  /* box-shadow: 0 0 8px #aaa; */
}
.plazeform input[type=checkbox]:focus + label::before {
  outline: 2px dotted var(--csop-blue);
  outline-offset: 3px;
  /* box-shadow: 0 0 0px #dadada; */
}
.plazeform input[type=checkbox]:checked + label::before {
  background: var(--csop-blue);
}
.plazeform input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  /* top: 5px; */
  left: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  height: 10px;
  width: 19px;
  -webkit-transform: rotate(-45deg) translate(2px, -2px);
          transform: rotate(-45deg) translate(2px, -2px);
}
.plazeform .mt-form {
  margin-top: 1rem;
}
.plazeform .plazeform__submit {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.placeholder img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.scroll-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background-color: var(--subik-accent);
  color: var(--white);
  cursor: pointer;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  visibility: hidden;
  opacity: 0;
  display: none;
}

.scroll-top.is-sticky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  opacity: 1;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}

@media (min-width: 1024px) {
  .scroll-top.is-sticky {
    right: 1.75rem;
  }
}
.missing__title {
  font-weight: 700;
  font-size: 3rem;
}

.missing__subtitle {
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .missing__title {
    font-size: 4rem;
  }
  .missing__subtitle {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1400px) {
  .missing__title {
    font-size: 5rem;
  }
}/*# sourceMappingURL=main.css.map */

.article__columns {
  margin: 0 auto;
  max-width: 90%;
}

@media (min-width: 768px) {
  .article__columns {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    grid-gap: 2rem;
    margin: 0 auto;
    max-width: 800px;
  }
}
