@import url("https://use.typekit.net/vhs8lny.css");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, img {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main, img {
  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; }

a {
  text-decoration: none;
  color: inherit; }

* {
  box-sizing: border-box; }

body {
  font-size: 16px;
  font-family: "objektiv-mk1", sans-serif;
  background-color: #e7e7e7; }

.navigation {
  width: 100%;
  background-color: #ffffff; }
  .navigation__login-dialog {
    background-color: white;
    padding: 3rem; }
    .navigation__login-dialog__wrapper {
      display: flex;
      max-width: 800px;
      line-height: 1.5; }
      .navigation__login-dialog__wrapper .button:last-child {
        margin-right: 0; }
    @media screen and (max-width: 960px) {
      .navigation__login-dialog {
        padding: 1rem; }
        .navigation__login-dialog__wrapper {
          display: block; } }
  .navigation__shortcuts {
    width: 100%;
    background-color: #323232; }
    .navigation__shortcuts .container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      height: 50px; }
      @media screen and (max-width: 960px) {
        .navigation__shortcuts .container {
          height: 75px; } }
    .navigation__shortcuts__contact {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center; }
      .navigation__shortcuts__contact a {
        color: rgba(255, 255, 255, 0.61);
        font-size: 0.8125rem;
        display: block;
        padding: 2px 0;
        -webkit-font-smoothing: antialiased; }
        .navigation__shortcuts__contact a + a {
          margin-left: 1rem;
          padding-left: 1rem;
          border-left: 1px solid rgba(255, 255, 255, 0.61); }
      @media screen and (max-width: 960px) {
        .navigation__shortcuts__contact {
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-start; }
          .navigation__shortcuts__contact a {
            padding: 0;
            max-width: 210px;
            font-size: 0.75rem; }
            .navigation__shortcuts__contact a + a {
              margin-left: 0;
              padding-left: 0;
              border: none;
              margin-top: 5px; } }
    .navigation__shortcuts__language a {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center; }
      .navigation__shortcuts__language a span {
        color: rgba(255, 255, 255, 0.61);
        font-size: 0.8125rem;
        -webkit-font-smoothing: antialiased; }
      .navigation__shortcuts__language a img {
        width: 32px;
        height: 17px;
        display: block;
        margin: 0 8px 0 0;
        overflow: hidden;
        border-radius: 2px; }
        @media screen and (max-width: 960px) {
          .navigation__shortcuts__language a img {
            display: none; } }
  .navigation__menu {
    /*
        
        &__items {
            
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: flex-start;
            
            @media screen and (max-width: $mobileWidth) {
            
                display: none;   
                
            }  
            
            &__item {
                
                display: block;
                margin-left: 2rem;
                position: relative;
                
                &--1 {
                    
                    a {
                        
                        color: #151515;
                        display: block;
                        position: relative;
                        transition: 0.2s ease;
                        
                        &::before {
                            
                            content: " ";
                            top: calc(100% + 3px);
                            left: 0;
                            height: 3px;
                            width: 100%;
                            border-radius: 2px;
                            background-color: $blue;
                            position: absolute;
                            display: block;
                            opacity: 0;
                            transform: translateY(6px);
                            transition: 0.2s ease;
                            
                        }
                        
                        &:hover {
                            
                            color: $blue;
                            
                        }
                        
                        &:hover::before {
                            
                            opacity: 1;
                            transform: none;
                            
                        }
                        
                    }
                    
                }
                
                
            }
            
            > li {
                
                display: block;
                margin-left: 2rem;
                position: relative;
                              
                > ul {
                    
                    display: none;
                    position: absolute;
                    top: calc(100% - 1px);
                    z-index: 450;
                    background-color: #ffffff;
                    padding: 0.75rem;
                
                }
                
                &:hover {
                    
                    > ul {
                        
                        display: block;
                        width: 190px;
                        
                    }
                    
                }
                
            }
            
        }
        
        */ }
    .navigation__menu__toggle {
      position: absolute;
      display: none;
      width: 48px;
      height: 40px;
      background: #ffffff;
      top: 2.8rem;
      right: 1.5rem;
      appearance: none;
      border: none;
      border-radius: 0; }
      @media screen and (max-width: 960px) {
        .navigation__menu__toggle {
          display: block;
          top: 1.7rem; } }
      .navigation__menu__toggle span {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        border-radius: 3px;
        background-color: #AA2535; }
        .navigation__menu__toggle span:nth-child(2) {
          top: 13px; }
        .navigation__menu__toggle span:nth-child(3) {
          top: 26px; }
    .navigation__menu .container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      height: 124px; }
      @media screen and (max-width: 960px) {
        .navigation__menu .container {
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-start;
          height: auto;
          min-height: 80px; } }
    @media screen and (max-width: 1100px) {
      .navigation__menu__logo img {
        width: 250px; } }
    @media screen and (max-width: 960px) {
      .navigation__menu__logo {
        margin: 1rem 0 1.1rem 0rem; }
        .navigation__menu__logo img {
          width: calc(100% - 5rem);
          max-width: calc(100% - 5rem); } }
    .navigation__menu__items {
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      position: relative;
      height: 100%; }
      @media screen and (max-width: 960px) {
        .navigation__menu__items {
          flex-direction: column;
          justify-content: flex-start;
          width: 100%;
          height: auto;
          padding-top: 1.5rem;
          border-top: 1px solid #F2F2F2;
          display: none; }
          .navigation__menu__items.active {
            display: flex; } }
      .navigation__menu__items__item {
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start; }
        @media screen and (max-width: 960px) {
          .navigation__menu__items__item {
            width: 100%;
            align-items: center;
            padding: 1rem 0; } }
        .navigation__menu__items__item__link {
          color: #151515;
          position: relative;
          transition: 0.2s ease;
          height: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: flex-start; }
          .navigation__menu__items__item__link::before {
            content: " ";
            top: calc(50% + 13px);
            left: 0;
            height: 3px;
            width: 100%;
            border-radius: 2px;
            background-color: #216CA2;
            position: absolute;
            display: block;
            opacity: 0;
            transform: translateY(6px);
            transition: 0.2s ease; }
        @media screen and (min-width: 960px) {
          .navigation__menu__items__item:hover .navigation__menu__items__item__link {
            color: #216CA2; }
          .navigation__menu__items__item:hover .navigation__menu__items__item__link::before {
            opacity: 1;
            transform: none; } }
        .navigation__menu__items__item.active .navigation__menu__items__item__link {
          color: #216CA2; }
        .navigation__menu__items__item.active .navigation__menu__items__item__link::before {
          opacity: 1;
          transform: none; }
        .navigation__menu__items__item__submenu {
          position: absolute;
          display: flex;
          opacity: 0;
          pointer-events: none;
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-start;
          top: 100%;
          left: 0;
          width: 220px;
          z-index: 450;
          border-top: 3px solid #216CA2;
          padding: 1.5rem;
          background-color: #ffffff;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          transition: 0.2s ease;
          transform: translateY(6px); }
          @media screen and (max-width: 960px) {
            .navigation__menu__items__item__submenu {
              position: relative;
              opacity: 1;
              transform: none;
              margin: 1.5rem 0 0 0;
              width: calc(100% - 3rem);
              border-radius: 0px; } }
          .navigation__menu__items__item__submenu__item {
            width: 100%; }
            @media screen and (max-width: 960px) {
              .navigation__menu__items__item__submenu__item {
                text-align: center; } }
            .navigation__menu__items__item__submenu__item:hover .navigation__menu__items__item__submenu__item__link {
              text-decoration: underline;
              color: #216CA2; }
            .navigation__menu__items__item__submenu__item + .navigation__menu__items__item__submenu__item {
              margin-top: 1rem; }
        .navigation__menu__items__item:hover .navigation__menu__items__item__submenu {
          opacity: 1;
          transform: none;
          pointer-events: all; }
        .navigation__menu__items__item--external > a > span {
          display: inline-block;
          border: 1px solid #f2f2f2;
          padding: 0.8rem 1rem;
          border-radius: 6px;
          transition: 0.2s ease; }
          .navigation__menu__items__item--external > a > span:hover {
            background-color: #216CA2;
            color: #ffffff;
            border-collapse: #216CA2; }
        @media screen and (max-width: 960px) {
          .navigation__menu__items__item--external {
            margin-bottom: 1rem; } }
        @media screen and (min-width: 960px) {
          .navigation__menu__items__item + .navigation__menu__items__item {
            margin-left: 1.25rem; } }
        @media screen and (min-width: 1100px) {
          .navigation__menu__items__item + .navigation__menu__items__item {
            margin-left: 2rem; } }

.section {
  display: block;
  width: 100%;
  position: relative; }
  .section hr {
    border: 0;
    border-top: 2px solid #216CA2;
    margin: 2rem 0; }

.section--text .content {
  max-width: 860px;
  margin: 0 auto; }

.section--textDouble .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start; }
  @media screen and (max-width: 960px) {
    .section--textDouble .container {
      flex-direction: column;
      justify-content: flex-start; } }

.section--textDouble .content {
  width: calc(50% - 3.75rem / 2); }
  @media screen and (max-width: 960px) {
    .section--textDouble .content {
      width: 100%; }
      .section--textDouble .content:first-child {
        margin-bottom: 1.5rem; } }

.section--subsidyProviders {
  border-bottom: 1px solid #F2F2F2; }
  @media screen and (max-width: 960px) {
    .section--subsidyProviders .container {
      width: 100%;
      overflow-x: scroll;
      -webkit-overflow-scrolling: smooth; } }
  .section--subsidyProviders__overview {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%; }
    @media screen and (max-width: 960px) {
      .section--subsidyProviders__overview {
        width: 1200px;
        padding: 0 1.5rem; } }
    .section--subsidyProviders__overview__item {
      flex-shrink: 1;
      margin: 2rem 2rem; }
      @media screen and (max-width: 960px) {
        .section--subsidyProviders__overview__item {
          margin: 1.5rem 1.5rem; } }
      .section--subsidyProviders__overview__item:first-child {
        margin-left: 0; }
      .section--subsidyProviders__overview__item:last-child {
        margin-right: 0; }
      .section--subsidyProviders__overview__item img {
        width: 100%; }

.section--introduction {
  margin: 3.75rem 0 0 0; }
  @media screen and (max-width: 960px) {
    .section--introduction {
      margin: 1.5rem 0 0 0; } }
  .section--introduction .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start; }
    @media screen and (max-width: 960px) {
      .section--introduction .container {
        flex-direction: column;
        justify-content: flex-start; } }
  .section--introduction__text {
    width: 50%;
    padding-right: 3.75rem; }
    @media screen and (max-width: 960px) {
      .section--introduction__text {
        width: 100%;
        padding-right: 0; } }
  .section--introduction__video {
    padding-left: 3.75rem;
    width: 50%; }
    @media screen and (max-width: 960px) {
      .section--introduction__video {
        width: 100%;
        padding-left: 0;
        margin-top: 1.5rem; } }
    .section--introduction__video__thumb {
      position: relative; }
      .section--introduction__video__thumb img {
        width: 100%;
        height: auto; }
      .section--introduction__video__thumb::after {
        content: " ";
        top: 50%;
        left: 50%;
        margin: -60px 0 0 -74px;
        width: 146px;
        height: 120px;
        background-image: url("../images/play-button.png");
        background-size: 146px 120px;
        background-repeat: no-repeat;
        background-position: center center;
        position: absolute;
        pointer-events: none; }
      .section--introduction__video__thumb figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 1rem 1.25rem;
        color: #ffffff;
        font-size: 0.8125rem;
        line-height: 1.3;
        background-color: rgba(0, 0, 0, 0.6);
        pointer-events: none; }

.section--highlightedProjects {
  width: 100%;
  border-top: 1px solid #F2F2F2;
  margin-top: 3.75rem; }
  @media screen and (max-width: 960px) {
    .section--highlightedProjects {
      margin-top: 1.5rem; } }
  .section--highlightedProjects .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 3.75rem;
    flex-wrap: wrap; }
    @media screen and (max-width: 960px) {
      .section--highlightedProjects .container {
        margin-top: 1.5rem; } }
  .section--highlightedProjects__introduction {
    width: 100%;
    margin-bottom: 3.75rem; }
    @media screen and (max-width: 960px) {
      .section--highlightedProjects__introduction {
        margin-bottom: 1.5rem; } }
  .section--highlightedProjects__details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 50%;
    border-right: 1px solid #F2F2F2;
    padding-right: 3.75rem; }
    @media screen and (max-width: 960px) {
      .section--highlightedProjects__details {
        padding-right: 1.5rem;
        border: none;
        width: calc(100% - 120px); } }
    .section--highlightedProjects__details__item {
      display: none; }
      .section--highlightedProjects__details__item__image {
        margin-bottom: 1.875rem; }
        .section--highlightedProjects__details__item__image img {
          width: 100%;
          height: auto; }
      .section--highlightedProjects__details__item.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        flex-grow: 1; }
  .section--highlightedProjects__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    padding-left: 3.75rem; }
    @media screen and (max-width: 960px) {
      .section--highlightedProjects__list {
        padding-left: 0;
        width: 120px; } }
    .section--highlightedProjects__list__item {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      transition: 0.2s ease;
      position: relative; }
      .section--highlightedProjects__list__item__title {
        font-weight: 700;
        font-size: 1.1rem;
        color: #151515;
        display: block; }
        @media screen and (max-width: 960px) {
          .section--highlightedProjects__list__item__title {
            font-size: 0.825rem; } }
      .section--highlightedProjects__list__item__subtitle {
        font-weight: 300;
        font-size: 1.1rem;
        color: #151515;
        display: block;
        margin-top: 0.25rem; }
        @media screen and (max-width: 960px) {
          .section--highlightedProjects__list__item__subtitle {
            font-size: 0.825rem; } }
      .section--highlightedProjects__list__item::before {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        border-radius: 2px;
        height: 100%;
        display: block;
        background-color: #216CA2;
        opacity: 0;
        transform: translateX(-5px);
        transition: 0.2s ease; }
        @media screen and (max-width: 960px) {
          .section--highlightedProjects__list__item::before {
            display: none; } }
      .section--highlightedProjects__list__item.active, .section--highlightedProjects__list__item:hover {
        cursor: pointer;
        padding-left: 12px; }
        @media screen and (max-width: 960px) {
          .section--highlightedProjects__list__item.active, .section--highlightedProjects__list__item:hover {
            padding-left: 0; } }
        .section--highlightedProjects__list__item.active::before, .section--highlightedProjects__list__item:hover::before {
          transform: none;
          opacity: 1; }
          @media screen and (max-width: 960px) {
            .section--highlightedProjects__list__item.active::before, .section--highlightedProjects__list__item:hover::before {
              transform: translateX(-5px); } }
        .section--highlightedProjects__list__item.active .section--highlightedProjects__list__item__title,
        .section--highlightedProjects__list__item.active .section--highlightedProjects__list__item__subtitle, .section--highlightedProjects__list__item:hover .section--highlightedProjects__list__item__title,
        .section--highlightedProjects__list__item:hover .section--highlightedProjects__list__item__subtitle {
          color: #216CA2; }
      .section--highlightedProjects__list__item + .section--highlightedProjects__list__item {
        margin-top: 2.5rem; }
        @media screen and (max-width: 960px) {
          .section--highlightedProjects__list__item + .section--highlightedProjects__list__item {
            margin-top: 1rem; } }

.section--projects__filters,
.section--news__filters {
  width: 100%;
  border-bottom: 1px solid #F2F2F2; }
  @media screen and (max-width: 960px) {
    .section--projects__filters,
    .section--news__filters {
      display: none; } }
  .section--projects__filters .container,
  .section--news__filters .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 92px; }
  .section--projects__filters__title,
  .section--news__filters__title {
    font-weight: 200;
    font-size: 1rem; }
  .section--projects__filters__link,
  .section--news__filters__link {
    font-weight: 700;
    font-size: 1rem;
    margin-left: 2rem; }
    .section--projects__filters__link.active,
    .section--news__filters__link.active {
      text-decoration: underline;
      color: #216CA2; }

.section--projects__grid,
.section--news__grid {
  width: 100%; }
  .section--projects__grid .container,
  .section--news__grid .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap; }

.hero + .section {
  margin-top: 3.75rem; }
  @media screen and (max-width: 960px) {
    .hero + .section {
      margin-top: 1.5rem; } }

.hero + .section--subsidyProviders,
.hero + .section--projects,
.hero + .section--news {
  margin-top: 0; }

.section--text + .section--text,
.section--text + .section--textDouble,
.section--textDouble + .section--textDouble,
.section--textDouble + .section--text {
  margin-top: 3.75rem; }

.content p {
  color: #151515;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.4; }
  .content p + p,
  .content p + h1,
  .content p + h2,
  .content p + h3,
  .content p + h4,
  .content p + h5,
  .content p + h6 {
    margin-top: 1.5rem; }
  .content p + ul,
  .content p + ol {
    margin-top: 0.5rem; }
  .content p a {
    color: #216CA2;
    text-decoration: underline; }
  .content p strong {
    font-weight: 700; }

.content figure {
  position: relative;
  margin: 2rem 0 0 0;
  display: block; }
  @media screen and (max-width: 960px) {
    .content figure {
      margin-top: 1.5rem; } }
  .content figure:first-child {
    margin-top: 0; }
  .content figure img {
    display: block;
    margin: 0;
    max-width: 100%; }
  .content figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem 1.25rem;
    color: #ffffff;
    font-size: 0.8125rem;
    line-height: 1.3;
    background-color: rgba(0, 0, 0, 0.6);
    pointer-events: none; }
  .content figure + p,
  .content figure + h1,
  .content figure + h2,
  .content figure + h3 {
    margin-top: 2rem; }

.content figure.video {
  position: relative;
  width: 100%;
  padding-bottom: 56%; }

.content figure.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  margin: 0;
  padding: 0; }

.content ul {
  list-style: disc; }

.content ol {
  list-style: decimal; }

.content ul, .content ol {
  padding-left: 26px; }
  .content ul li, .content ol li {
    color: #151515;
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.4; }
    .content ul li a, .content ol li a {
      color: #216CA2;
      text-decoration: underline; }
  .content ul + p,
  .content ul + h1,
  .content ul + h2,
  .content ul + h3,
  .content ul + h4,
  .content ul + h5,
  .content ul + h6, .content ol + p,
  .content ol + h1,
  .content ol + h2,
  .content ol + h3,
  .content ol + h4,
  .content ol + h5,
  .content ol + h6 {
    margin-top: 2rem; }

.content h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #AA2535; }
  @media screen and (max-width: 960px) {
    .content h1 {
      font-size: 2rem; } }

.content h2 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.1;
  color: #216CA2; }
  @media screen and (max-width: 960px) {
    .content h2 {
      font-size: 1.25rem; } }

.content h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #216CA2; }
  @media screen and (max-width: 960px) {
    .content h3 {
      font-size: 1rem; } }

.content h4 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #AA2535; }
  @media screen and (max-width: 960px) {
    .content h4 {
      font-size: 1rem; } }

.content h5 {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  color: #216CA2; }
  @media screen and (max-width: 960px) {
    .content h5 {
      font-size: 1rem; } }

.content h6 {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.1;
  color: #216CA2;
  margin-bottom: 0.25rem; }
  @media screen and (max-width: 960px) {
    .content h6 {
      font-size: 1rem; } }

.content h1 + p,
.content h2 + p {
  margin-top: 2rem; }

.content h3 + p,
.content h4 + p,
.content h5 + p,
.content h6 + p {
  margin-top: 0.5rem; }

.buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2rem; }
  @media screen and (max-width: 960px) {
    .buttons {
      margin-top: 1.5rem;
      flex-wrap: wrap; } }

.button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 1.5rem;
  min-height: 60px;
  margin-right: 2rem;
  color: white; }
  @media screen and (max-width: 960px) {
    .button {
      width: 100%;
      margin-right: 0; }
      .button + .button {
        margin-top: 0.75rem; } }
  .button span {
    font-size: 1rem;
    font-weight: 700; }
  .button--red {
    background-color: #AA2535; }
    .button--red span {
      color: #ffffff; }
  .button--blue {
    background-color: #216CA2; }
    .button--blue span {
      color: #ffffff; }
  .button svg {
    margin-right: 1rem; }

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.lity.lity-opened {
  opacity: 1; }

.lity.lity-closed {
  opacity: 0; }

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important; }

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; }

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.lity-loading .lity-loader {
  opacity: 1; }

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important; }

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease; }

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8); }

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0; }

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

.lity-close:active {
  top: 1px; }

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0; }

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px; }

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch; }

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

.lity-hide {
  display: none; }

.hero {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 300px; }
  .hero--homepage {
    height: 50vh; }
    @media screen and (max-width: 960px) {
      .hero--homepage {
        height: auto;
        padding-top: 8rem; } }
  .hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px; }
  .hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center; }
    .hero__background__overlay {
      display: block;
      position: absolute;
      background-image: url("../images/hero-overlay.svg");
      background-size: 2948px 317px;
      background-position: bottom center;
      background-repeat: no-repeat;
      z-index: 100;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .hero .container {
    padding-bottom: 3rem;
    position: relative;
    z-index: 150; }
    @media screen and (max-width: 960px) {
      .hero .container {
        padding-bottom: 1.5rem; } }
    .hero .container h1 {
      color: #ffffff;
      font-weight: 800;
      font-size: 2.75rem;
      line-height: 1.15;
      text-transform: uppercase; }
      @media screen and (max-width: 960px) {
        .hero .container h1 {
          font-size: 1.75rem; } }
    .hero .container h2 {
      color: #ffffff;
      font-weight: 400;
      font-size: 2.75rem;
      line-height: 1.15;
      text-transform: uppercase; }
      @media screen and (max-width: 960px) {
        .hero .container h2 {
          font-size: 1.5rem; } }

.section {
  display: block;
  width: 100%;
  position: relative; }
  .section hr {
    border: 0;
    border-top: 2px solid #216CA2;
    margin: 2rem 0; }

.section--text .content {
  max-width: 860px;
  margin: 0 auto; }

.section--textDouble .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start; }
  @media screen and (max-width: 960px) {
    .section--textDouble .container {
      flex-direction: column;
      justify-content: flex-start; } }

.section--textDouble .content {
  width: calc(50% - 3.75rem / 2); }
  @media screen and (max-width: 960px) {
    .section--textDouble .content {
      width: 100%; }
      .section--textDouble .content:first-child {
        margin-bottom: 1.5rem; } }

.section--subsidyProviders {
  border-bottom: 1px solid #F2F2F2; }
  @media screen and (max-width: 960px) {
    .section--subsidyProviders .container {
      width: 100%;
      overflow-x: scroll;
      -webkit-overflow-scrolling: smooth; } }
  .section--subsidyProviders__overview {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%; }
    @media screen and (max-width: 960px) {
      .section--subsidyProviders__overview {
        width: 1200px;
        padding: 0 1.5rem; } }
    .section--subsidyProviders__overview__item {
      flex-shrink: 1;
      margin: 2rem 2rem; }
      @media screen and (max-width: 960px) {
        .section--subsidyProviders__overview__item {
          margin: 1.5rem 1.5rem; } }
      .section--subsidyProviders__overview__item:first-child {
        margin-left: 0; }
      .section--subsidyProviders__overview__item:last-child {
        margin-right: 0; }
      .section--subsidyProviders__overview__item img {
        width: 100%; }

.section--introduction {
  margin: 3.75rem 0 0 0; }
  @media screen and (max-width: 960px) {
    .section--introduction {
      margin: 1.5rem 0 0 0; } }
  .section--introduction .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start; }
    @media screen and (max-width: 960px) {
      .section--introduction .container {
        flex-direction: column;
        justify-content: flex-start; } }
  .section--introduction__text {
    width: 50%;
    padding-right: 3.75rem; }
    @media screen and (max-width: 960px) {
      .section--introduction__text {
        width: 100%;
        padding-right: 0; } }
  .section--introduction__video {
    padding-left: 3.75rem;
    width: 50%; }
    @media screen and (max-width: 960px) {
      .section--introduction__video {
        width: 100%;
        padding-left: 0;
        margin-top: 1.5rem; } }
    .section--introduction__video__thumb {
      position: relative; }
      .section--introduction__video__thumb img {
        width: 100%;
        height: auto; }
      .section--introduction__video__thumb::after {
        content: " ";
        top: 50%;
        left: 50%;
        margin: -60px 0 0 -74px;
        width: 146px;
        height: 120px;
        background-image: url("../images/play-button.png");
        background-size: 146px 120px;
        background-repeat: no-repeat;
        background-position: center center;
        position: absolute;
        pointer-events: none; }
      .section--introduction__video__thumb figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 1rem 1.25rem;
        color: #ffffff;
        font-size: 0.8125rem;
        line-height: 1.3;
        background-color: rgba(0, 0, 0, 0.6);
        pointer-events: none; }

.section--highlightedProjects {
  width: 100%;
  border-top: 1px solid #F2F2F2;
  margin-top: 3.75rem; }
  @media screen and (max-width: 960px) {
    .section--highlightedProjects {
      margin-top: 1.5rem; } }
  .section--highlightedProjects .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 3.75rem;
    flex-wrap: wrap; }
    @media screen and (max-width: 960px) {
      .section--highlightedProjects .container {
        margin-top: 1.5rem; } }
  .section--highlightedProjects__introduction {
    width: 100%;
    margin-bottom: 3.75rem; }
    @media screen and (max-width: 960px) {
      .section--highlightedProjects__introduction {
        margin-bottom: 1.5rem; } }
  .section--highlightedProjects__details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 50%;
    border-right: 1px solid #F2F2F2;
    padding-right: 3.75rem; }
    @media screen and (max-width: 960px) {
      .section--highlightedProjects__details {
        padding-right: 1.5rem;
        border: none;
        width: calc(100% - 120px); } }
    .section--highlightedProjects__details__item {
      display: none; }
      .section--highlightedProjects__details__item__image {
        margin-bottom: 1.875rem; }
        .section--highlightedProjects__details__item__image img {
          width: 100%;
          height: auto; }
      .section--highlightedProjects__details__item.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        flex-grow: 1; }
  .section--highlightedProjects__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    padding-left: 3.75rem; }
    @media screen and (max-width: 960px) {
      .section--highlightedProjects__list {
        padding-left: 0;
        width: 120px; } }
    .section--highlightedProjects__list__item {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      transition: 0.2s ease;
      position: relative; }
      .section--highlightedProjects__list__item__title {
        font-weight: 700;
        font-size: 1.1rem;
        color: #151515;
        display: block; }
        @media screen and (max-width: 960px) {
          .section--highlightedProjects__list__item__title {
            font-size: 0.825rem; } }
      .section--highlightedProjects__list__item__subtitle {
        font-weight: 300;
        font-size: 1.1rem;
        color: #151515;
        display: block;
        margin-top: 0.25rem; }
        @media screen and (max-width: 960px) {
          .section--highlightedProjects__list__item__subtitle {
            font-size: 0.825rem; } }
      .section--highlightedProjects__list__item::before {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        border-radius: 2px;
        height: 100%;
        display: block;
        background-color: #216CA2;
        opacity: 0;
        transform: translateX(-5px);
        transition: 0.2s ease; }
        @media screen and (max-width: 960px) {
          .section--highlightedProjects__list__item::before {
            display: none; } }
      .section--highlightedProjects__list__item.active, .section--highlightedProjects__list__item:hover {
        cursor: pointer;
        padding-left: 12px; }
        @media screen and (max-width: 960px) {
          .section--highlightedProjects__list__item.active, .section--highlightedProjects__list__item:hover {
            padding-left: 0; } }
        .section--highlightedProjects__list__item.active::before, .section--highlightedProjects__list__item:hover::before {
          transform: none;
          opacity: 1; }
          @media screen and (max-width: 960px) {
            .section--highlightedProjects__list__item.active::before, .section--highlightedProjects__list__item:hover::before {
              transform: translateX(-5px); } }
        .section--highlightedProjects__list__item.active .section--highlightedProjects__list__item__title,
        .section--highlightedProjects__list__item.active .section--highlightedProjects__list__item__subtitle, .section--highlightedProjects__list__item:hover .section--highlightedProjects__list__item__title,
        .section--highlightedProjects__list__item:hover .section--highlightedProjects__list__item__subtitle {
          color: #216CA2; }
      .section--highlightedProjects__list__item + .section--highlightedProjects__list__item {
        margin-top: 2.5rem; }
        @media screen and (max-width: 960px) {
          .section--highlightedProjects__list__item + .section--highlightedProjects__list__item {
            margin-top: 1rem; } }

.section--projects__filters,
.section--news__filters {
  width: 100%;
  border-bottom: 1px solid #F2F2F2; }
  @media screen and (max-width: 960px) {
    .section--projects__filters,
    .section--news__filters {
      display: none; } }
  .section--projects__filters .container,
  .section--news__filters .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 92px; }
  .section--projects__filters__title,
  .section--news__filters__title {
    font-weight: 200;
    font-size: 1rem; }
  .section--projects__filters__link,
  .section--news__filters__link {
    font-weight: 700;
    font-size: 1rem;
    margin-left: 2rem; }
    .section--projects__filters__link.active,
    .section--news__filters__link.active {
      text-decoration: underline;
      color: #216CA2; }

.section--projects__grid,
.section--news__grid {
  width: 100%; }
  .section--projects__grid .container,
  .section--news__grid .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap; }

.hero + .section {
  margin-top: 3.75rem; }
  @media screen and (max-width: 960px) {
    .hero + .section {
      margin-top: 1.5rem; } }

.hero + .section--subsidyProviders,
.hero + .section--projects,
.hero + .section--news {
  margin-top: 0; }

.section--text + .section--text,
.section--text + .section--textDouble,
.section--textDouble + .section--textDouble,
.section--textDouble + .section--text {
  margin-top: 3.75rem; }

.card--project,
.card--news {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(50% - 3.75rem);
  margin-top: 3.75rem;
  position: relative; }
  @media screen and (max-width: 960px) {
    .card--project,
    .card--news {
      width: 100%;
      margin-top: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #F2F2F2;
      height: 280px;
      padding-bottom: 1.5rem; }
      .card--project:last-child,
      .card--news:last-child {
        border-bottom: none;
        padding-bottom: 0; } }
  @media screen and (min-width: 960px) {
    .card--project:nth-child(even),
    .card--news:nth-child(even) {
      margin-left: 3.75rem; } }
  .card--project__image,
  .card--news__image {
    width: 40%; }
    @media screen and (max-width: 960px) {
      .card--project__image,
      .card--news__image {
        width: 20%; } }
    .card--project__image img,
    .card--news__image img {
      width: 100%; }
  .card--project__details,
  .card--news__details {
    width: 60%;
    height: 100%;
    left: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 1.875rem;
    position: absolute;
    overflow: hidden; }
    .card--project__details::after,
    .card--news__details::after {
      content: " ";
      bottom: 0;
      z-index: 300;
      left: 0;
      position: absolute;
      display: block;
      width: 100%;
      height: 70%;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 90%);
      pointer-events: none; }
      @media screen and (max-width: 960px) {
        .card--project__details::after,
        .card--news__details::after {
          height: 60%;
          background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 80%); } }
    @media screen and (max-width: 960px) {
      .card--project__details,
      .card--news__details {
        left: 20%;
        width: 80%;
        padding-left: 1.5rem; } }
    .card--project__details__link,
    .card--news__details__link {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100%;
      padding: 0 0 0 2rem;
      color: #216CA2;
      text-decoration: underline;
      z-index: 350;
      line-height: 1; }
      @media screen and (max-width: 960px) {
        .card--project__details__link,
        .card--news__details__link {
          padding: 0 0 1.5rem 1.5rem; } }
    .card--project__details__category,
    .card--news__details__category {
      display: block;
      padding: 0.7rem 0.9rem;
      border: 1px solid #216CA2;
      font-size: 0.8125rem;
      color: #216CA2; }
    .card--project__details__title,
    .card--news__details__title {
      font-weight: 700;
      color: #151515;
      font-size: 1.05rem;
      display: block;
      margin: 1rem 0 0 0; }
    .card--project__details__subtitle,
    .card--news__details__subtitle {
      font-weight: 400;
      color: #151515;
      font-size: 1.05rem;
      display: block;
      margin: 0.25rem 0 0 0; }
    .card--project__details__description,
    .card--news__details__description {
      font-size: 1rem;
      font-weight: 200;
      color: #151515;
      margin: 1rem 0 0 0;
      line-height: 1.4; }
      .card--project__details__description a,
      .card--news__details__description a {
        color: #216CA2;
        text-decoration: underline; }

.footer {
  background-color: #323232;
  padding: 2rem 0;
  margin-top: 3.75rem; }
  @media screen and (max-width: 960px) {
    .footer {
      margin-top: 1.5rem; } }
  .footer .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%; }
    @media screen and (max-width: 960px) {
      .footer .container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center; } }
  .footer__column {
    flex-grow: 0; }
    .footer__column--copy span {
      opacity: 0.61;
      font-size: 13px;
      color: #FFFFFF;
      letter-spacing: 0;
      text-align: center;
      -webkit-font-smoothing: antialiased; }
    .footer__column--links {
      margin: 0 auto 0 1rem;
      padding-left: 1rem;
      border-left: 1px solid rgba(255, 255, 255, 0.61); }
      @media screen and (max-width: 960px) {
        .footer__column--links {
          border: none;
          padding: none;
          display: flex;
          flex-direction: row;
          justify-content: space-around;
          margin: 0;
          align-items: center; } }
      .footer__column--links a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.61);
        letter-spacing: 0;
        text-align: center;
        -webkit-font-smoothing: antialiased; }
        .footer__column--links a:hover {
          text-decoration: underline;
          color: white; }
        @media screen and (max-width: 960px) {
          .footer__column--links a {
            margin-left: 0.75rem;
            margin-right: 0.75rem; } }
        .footer__column--links a + a {
          margin-left: 1rem;
          padding-left: 1rem;
          border-left: 1px solid rgba(255, 255, 255, 0.61); }
          @media screen and (max-width: 960px) {
            .footer__column--links a + a {
              margin-left: inherit;
              padding-left: 0;
              border: none; } }
    .footer__column--social {
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center; }
      .footer__column--social a {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center; }
        .footer__column--social a span {
          opacity: 0.61;
          font-size: 13px;
          color: #FFFFFF;
          letter-spacing: 0;
          text-align: center;
          -webkit-font-smoothing: antialiased; }
        .footer__column--social a:hover span {
          text-decoration: underline;
          opacity: 1; }
        .footer__column--social a svg {
          margin-right: 6px; }
        .footer__column--social a + a {
          margin-left: 1.5rem; }
    @media screen and (max-width: 960px) {
      .footer__column + .footer__column {
        margin-top: 1.5rem; } }

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  position: relative;
  padding: 0 3.75rem; }
  @media screen and (max-width: 960px) {
    .container {
      padding: 0 1.5rem; } }

#mijnwater {
  width: 100%;
  max-width: 2100px;
  margin: 0 auto;
  background-color: #ffffff; }
