/**
 * @file
 * sass/layout.scss
 *
 * CSS rules that layout a page.
 */
.ykl-card--layout-centered {
  text-align: center;
}

.ykl-image-text--layout-centered-text {
  text-align: center;
}
.ykl-image-text--layout-centered-text h2 {
  font-size: 2rem;
}
.ykl-image-text--layout-centered-text .ykl-follow-services {
  justify-content: center;
}

.ykl-image-text--layout-image-first .ykl-image-text__layout h1, .ykl-image-text--layout-image-first .ykl-image-text__layout h2, .ykl-image-text--layout-image-first .ykl-image-text__layout h3, .ykl-image-text--layout-image-first .ykl-image-text__layout h4, .ykl-image-text--layout-image-first .ykl-image-text__layout h5, .ykl-image-text--layout-image-first .ykl-image-text__layout h6 {
  font-family: "Gesta", "Calibri", sans-serif;
  text-transform: uppercase;
}
@media (min-width: 525px) {
  .ykl-image-text--layout-image-first .ykl-image-text__layout {
    display: flex;
  }
  .ykl-image-text--layout-image-first .ykl-image-text__layout .ykl-image-text__image {
    flex: 0 0 33.3333333333%;
  }
  .ykl-image-text--layout-image-first .ykl-image-text__layout .ykl-image-text__image * {
    height: 100%;
  }
  .ykl-image-text--layout-image-first .ykl-image-text__layout .ykl-image-text__image img {
    object-fit: cover;
    object-position: center top;
  }
  .ykl-image-text--layout-image-first .ykl-image-text__layout .ykl-image-text__text {
    flex: 0 0 66.6666666667%;
  }
}

.ykl-image-text--layout-image-last .ykl-image-text__layout h1, .ykl-image-text--layout-image-last .ykl-image-text__layout h2, .ykl-image-text--layout-image-last .ykl-image-text__layout h3, .ykl-image-text--layout-image-last .ykl-image-text__layout h4, .ykl-image-text--layout-image-last .ykl-image-text__layout h5, .ykl-image-text--layout-image-last .ykl-image-text__layout h6 {
  font-family: "Gesta", "Calibri", sans-serif;
  text-transform: uppercase;
}
@media (min-width: 525px) {
  .ykl-image-text--layout-image-last .ykl-image-text__layout {
    display: flex;
  }
  .ykl-image-text--layout-image-last .ykl-image-text__layout .ykl-image-text__image {
    flex: 0 0 33.3333333333%;
  }
  .ykl-image-text--layout-image-last .ykl-image-text__layout .ykl-image-text__image * {
    height: 100%;
  }
  .ykl-image-text--layout-image-last .ykl-image-text__layout .ykl-image-text__image img {
    object-fit: cover;
    object-position: center top;
  }
  .ykl-image-text--layout-image-last .ykl-image-text__layout .ykl-image-text__text {
    flex: 0 0 66.6666666667%;
  }
}
@media (min-width: 525px) {
  .ykl-image-text--layout-image-last .ykl-image-text__layout {
    flex-direction: row-reverse;
  }
}

.ykl-image-text--layout-image-background .ykl-image-text__layout {
  position: relative;
}
.ykl-image-text--layout-image-background .ykl-image-text__layout .ykl-image-text__image + .ykl-image-text__text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  padding: 0;
  background-color: inherit;
}

.ykl-image-text--layout-image-background-height .ykl-image-text__layout {
  position: relative;
}
.ykl-image-text--layout-image-background-height .ykl-image-text__layout .ykl-image-text__image + .ykl-image-text__text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  padding: 0;
  background-color: inherit;
}

.ykl-image-text--layout-image-background-width .ykl-image-text__layout {
  position: relative;
}
.ykl-image-text--layout-image-background-width .ykl-image-text__layout .ykl-image-text__image + .ykl-image-text__text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  padding: 0;
  background-color: inherit;
}
.ykl-image-text--layout-image-background-width .ykl-image-text__layout img {
  width: 100%;
  height: auto;
}

.ykl-media--3x2-ratio .ykl-media__layout-media {
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  overflow: hidden;
}
.ykl-media--3x2-ratio .ykl-media__layout-media .ykl-media__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.ykl-media--3x2-ratio .ykl-media__layout-media *,
.ykl-media--3x2-ratio .ykl-media__layout-media .ykl-media__media {
  height: 100%;
}
.ykl-media--3x2-ratio .ykl-media__layout-media img {
  object-fit: cover;
  object-position: center top;
}

.ykl-media--scale-height .ykl-media__layout-media .ykl-media__media {
  height: 100%;
  text-align: center;
}
.ykl-media--scale-height .ykl-media__layout-media .ykl-media__media img {
  height: 100%;
  width: auto;
  max-width: none;
}

.ykl-media--with-margins .ykl-media__layout-media .ykl-media__media img {
  padding: 1.3125rem 0 0.65625rem;
}

/**
 * @file
 * organisms/layout/ykl-off-canvas-region/_ykl-off-canvas-region.layout.scss
 *
 * Pure CSS implementation (no JavaScript required).
 */
@media (max-width: 800px) {
  #off-canvas-checkbox {
    display: none;
  }

  #off-canvas-label,
#toggle-navigation-menu-button {
    display: block;
    position: fixed;
    top: 0.65625rem;
    right: 0.65625rem;
    z-index: 501;
    width: 50px;
    height: 50px;
    padding: 10px;
    margin: 0;
    opacity: 0.8;
    background-position: 3px 3px;
    background-size: 44px 44px;
    background-repeat: no-repeat;
    background-image: url("../images/icons/menu.png");
    background-image: url("../images/icons/menu.svg");
    cursor: pointer;
    transition: right 0.4s;
    background-color: white;
    border-radius: 50%;
    font-size: 0;
  }
}
@media (max-width: 800px) and (max-width: 800px) {
  #toggle-navigation-menu-button.active {
    right: 80%;
  }
}
@media (max-width: 800px) and (max-width: 800px) and (min-width: 525px) {
  #toggle-navigation-menu-button.active {
    right: 20rem;
  }
}
@media (max-width: 800px) {
  .layout-container {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
  }
}
@media (max-width: 800px) {
  .ykl-off-canvas {
    display: block;
    position: fixed;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    right: -80%;
    width: 80%;
    transition: right 0.4s;
  }
}
@media (max-width: 800px) and (min-width: 525px) {
  .ykl-off-canvas {
    right: -20rem;
    width: 20rem;
  }
}
@media (max-width: 800px) and (min-width: 801px) {
  .ykl-off-canvas {
    right: -20rem;
    width: 20rem;
  }
}
@media (max-width: 800px) and (min-width: 1025px) {
  .ykl-off-canvas {
    right: -20rem;
    width: 20rem;
  }
}
@media (max-width: 800px) {
  .ykl-off-canvas-hidden {
    display: none;
  }
}
@media (max-width: 800px) {
  .layout-container {
    position: absolute;
    right: 0;
    width: 100%;
    height: auto;
    overflow: visible;
    transition: right 0.4s;
  }
}
@media (max-width: 800px) and (max-width: 800px) {
  .region-off-canvas.active {
    right: 0;
    color: white;
    background-color: #95bfdf;
    z-index: 100;
  }
}
@media (max-width: 800px) {
  #off-canvas-checkbox:checked ~ .layout-container {
    position: fixed;
    /*
    height: 100%;
    overflow: hidden;
    .layout-container > header {
      position: static;
    }
    .layout-container > main {
      margin-top: 0;
    }
    */
  }
  #off-canvas-checkbox:checked ~ #off-canvas-label, #off-canvas-checkbox:checked ~ .layout-container {
    right: 80%;
  }
}
@media (max-width: 800px) and (min-width: 525px) {
  #off-canvas-checkbox:checked ~ #off-canvas-label, #off-canvas-checkbox:checked ~ .layout-container {
    right: 20rem;
  }
}
@media (max-width: 800px) and (min-width: 801px) {
  #off-canvas-checkbox:checked ~ #off-canvas-label, #off-canvas-checkbox:checked ~ .layout-container {
    right: 20rem;
  }
}
@media (max-width: 800px) and (min-width: 1025px) {
  #off-canvas-checkbox:checked ~ #off-canvas-label, #off-canvas-checkbox:checked ~ .layout-container {
    right: 20rem;
  }
}
@media (max-width: 800px) {
  #off-canvas-checkbox:checked ~ .ykl-off-canvas {
    right: 0;
  }
}
@media (min-width: 801px) {
  #off-canvas-checkbox,
#off-canvas-label,
.ykl-off-canvas {
    display: none;
  }

  .ykl-off-canvas-hidden {
    display: block;
  }

  #toggle-navigation-menu-button {
    display: none;
  }
}
@media (min-width: 525px) {
  .ykl-section.columns-1-2-2-2 {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section.columns-1-2-2-2 > * {
    width: calc((99.99% - 1.3125rem) / 2);
  }
  .ykl-section.columns-1-2-2-2 > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section.columns-1-2-2-2 > *:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media (min-width: 801px) {
  .ykl-section.columns-1-2-2-2 {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section.columns-1-2-2-2 > * {
    width: calc((99.99% - 1.3125rem) / 2);
  }
  .ykl-section.columns-1-2-2-2 > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section.columns-1-2-2-2 > *:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .ykl-section.columns-1-2-2-2 {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section.columns-1-2-2-2 > * {
    width: calc((99.99% - 1.3125rem) / 2);
  }
  .ykl-section.columns-1-2-2-2 > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section.columns-1-2-2-2 > *:nth-child(2n+1) {
    margin-left: 0;
  }
}

@media (min-width: 525px) {
  .ykl-section.columns-1-2-3-3 {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section.columns-1-2-3-3 > * {
    width: calc((99.99% - 1.3125rem) / 2);
  }
  .ykl-section.columns-1-2-3-3 > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section.columns-1-2-3-3 > *:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media (min-width: 801px) {
  .ykl-section.columns-1-2-3-3 {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section.columns-1-2-3-3 > * {
    width: calc((99.99% - 2.625rem) / 3);
  }
  .ykl-section.columns-1-2-3-3 > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section.columns-1-2-3-3 > *:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .ykl-section.columns-1-2-3-3 {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section.columns-1-2-3-3 > * {
    width: calc((99.99% - 2.625rem) / 3);
  }
  .ykl-section.columns-1-2-3-3 > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section.columns-1-2-3-3 > *:nth-child(3n+1) {
    margin-left: 0;
  }
}

@media (min-width: 525px) {
  .ykl-section.columns-1-3-3-3 {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section.columns-1-3-3-3 > * {
    width: calc((99.99% - 2.625rem) / 3);
  }
  .ykl-section.columns-1-3-3-3 > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section.columns-1-3-3-3 > *:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media (min-width: 801px) {
  .ykl-section.columns-1-3-3-3 {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section.columns-1-3-3-3 > * {
    width: calc((99.99% - 2.625rem) / 3);
  }
  .ykl-section.columns-1-3-3-3 > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section.columns-1-3-3-3 > *:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .ykl-section.columns-1-3-3-3 {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section.columns-1-3-3-3 > * {
    width: calc((99.99% - 2.625rem) / 3);
  }
  .ykl-section.columns-1-3-3-3 > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section.columns-1-3-3-3 > *:nth-child(3n+1) {
    margin-left: 0;
  }
}

@media (min-width: 525px) {
  .ykl-section--front-page {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section--front-page > * {
    width: calc((99.99% - 1.3125rem) / 2);
  }
  .ykl-section--front-page > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section--front-page > *:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media (min-width: 801px) {
  .ykl-section--front-page {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section--front-page > * {
    width: calc((99.99% - 2.625rem) / 3);
  }
  .ykl-section--front-page > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section--front-page > *:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .ykl-section--front-page {
    display: flex;
    flex-wrap: wrap;
  }
  .ykl-section--front-page > * {
    width: calc((99.99% - 2.625rem) / 3);
  }
  .ykl-section--front-page > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .ykl-section--front-page > *:nth-child(3n+1) {
    margin-left: 0;
  }
}
.ykl-section--front-page > :nth-child(6) h2 {
  font-size: 1.17rem;
  font-family: "Gesta", "Calibri", sans-serif;
  text-transform: uppercase;
}
.ykl-section--front-page > :nth-child(6) form::placeholder {
  color: white;
}
.ykl-section--front-page > :nth-child(6) input[type=email],
.ykl-section--front-page > :nth-child(6) input[type=text] {
  background-color: rgba(0, 0, 0, 0);
}
.ykl-section--front-page > :nth-child(6) div > input[type=checkbox] {
  display: inline-block;
  margin-right: 0.5em;
}
.ykl-section--front-page > :nth-child(6) div > label {
  display: inline-block;
}
.ykl-section--front-page > :nth-child(6) input[type=submit] {
  width: auto;
  height: 34px;
  padding: 5px 10px;
  margin-left: 0.328125rem;
  margin-top: 10px;
  background-color: #fff;
  color: #000;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}
.ykl-section--front-page > :nth-child(6) .ykl-image-text__text {
  padding: 1.3125rem !important;
}
.ykl-section--front-page > :nth-child(6) .ykl-follow-services {
  margin-bottom: 2.625rem;
}

.ykl-section--crossfade-cards {
  margin-top: 2.625rem;
}
.ykl-section--crossfade-cards .ykl-crossfade-card {
  margin-bottom: 2.625rem;
}
.ykl-section--crossfade-cards .ykl-crossfade-card__front,
.ykl-section--crossfade-cards .ykl-crossfade-card__back {
  text-align: center;
}
.ykl-section--crossfade-cards .ykl-crossfade-card__title {
  margin-top: 1.3125rem;
  font-weight: normal;
}
.ykl-section--crossfade-cards .ykl-image-text {
  width: 100%;
  height: 100%;
}
.ykl-section--crossfade-cards .ykl-image-text__secondary {
  color: #606060;
}

.ykl-section--sustainable-development-goals .ykl-crossfade-card {
  margin-bottom: 1.3125rem;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card__card {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card__card .ykl-crossfade-card__front, .ykl-section--sustainable-development-goals .ykl-crossfade-card__card .ykl-crossfade-card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ykl-section--sustainable-development-goals .ykl-image-text {
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
}
.ykl-section--sustainable-development-goals .ykl-image-text__text {
  height: 100%;
  padding: 1.3125rem;
  font-size: smaller;
  font-weight: 700;
  text-transform: uppercase;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(15) {
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (min-width: 525px) {
  .ykl-section--sustainable-development-goals .ykl-image-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 801px) {
  .ykl-section--sustainable-development-goals .ykl-image-text {
    font-size: 1rem;
  }
  .ykl-section--sustainable-development-goals .ykl-image-text__text {
    padding: 0.65625rem;
  }
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card__back {
  color: white;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card__back a {
  color: white;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(1) .ykl-crossfade-card__back {
  background-color: #e5233d;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(2) .ykl-crossfade-card__back {
  background-color: #dfa73a;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(3) .ykl-crossfade-card__back {
  background-color: #4ca146;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(4) .ykl-crossfade-card__back {
  background-color: #c7212f;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(5) .ykl-crossfade-card__back {
  background-color: #ee402d;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(6) .ykl-crossfade-card__back {
  background-color: #28bfe6;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(7) .ykl-crossfade-card__back {
  background-color: #fcc513;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(8) .ykl-crossfade-card__back {
  background-color: #a31d44;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(9) .ykl-crossfade-card__back {
  background-color: #f26a2e;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(10) .ykl-crossfade-card__back {
  background-color: #de1768;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(11) .ykl-crossfade-card__back {
  background-color: #f99e2b;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(12) .ykl-crossfade-card__back {
  background-color: #bf8d2c;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(13) .ykl-crossfade-card__back {
  background-color: #407f48;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(14) .ykl-crossfade-card__back {
  background-color: #1e97d4;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(15) .ykl-crossfade-card__back {
  background-color: #5cba48;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(16) .ykl-crossfade-card__back {
  background-color: #136a9f;
}
.ykl-section--sustainable-development-goals .ykl-crossfade-card:nth-child(17) .ykl-crossfade-card__back {
  background-color: #144969;
}

@media (min-width: 525px) {
  .columns-list-two-column .ykl-list {
    display: flex;
    flex-wrap: wrap;
  }
  .columns-list-two-column .ykl-list > * {
    width: calc((99.99% - 1.3125rem) / 2);
  }
  .columns-list-two-column .ykl-list > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .columns-list-two-column .ykl-list > *:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media (min-width: 801px) {
  .columns-list-two-column .ykl-list {
    display: flex;
    flex-wrap: wrap;
  }
  .columns-list-two-column .ykl-list > * {
    width: calc((99.99% - 1.3125rem) / 2);
  }
  .columns-list-two-column .ykl-list > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .columns-list-two-column .ykl-list > *:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .columns-list-two-column .ykl-list {
    display: flex;
    flex-wrap: wrap;
  }
  .columns-list-two-column .ykl-list > * {
    width: calc((99.99% - 1.3125rem) / 2);
  }
  .columns-list-two-column .ykl-list > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .columns-list-two-column .ykl-list > *:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media (min-width: 525px) {
  .columns-list-three-column .ykl-list {
    display: flex;
    flex-wrap: wrap;
  }
  .columns-list-three-column .ykl-list > * {
    width: calc((99.99% - 1.3125rem) / 2);
  }
  .columns-list-three-column .ykl-list > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .columns-list-three-column .ykl-list > *:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media (min-width: 801px) {
  .columns-list-three-column .ykl-list {
    display: flex;
    flex-wrap: wrap;
  }
  .columns-list-three-column .ykl-list > * {
    width: calc((99.99% - 2.625rem) / 3);
  }
  .columns-list-three-column .ykl-list > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .columns-list-three-column .ykl-list > *:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .columns-list-three-column .ykl-list {
    display: flex;
    flex-wrap: wrap;
  }
  .columns-list-three-column .ykl-list > * {
    width: calc((99.99% - 2.625rem) / 3);
  }
  .columns-list-three-column .ykl-list > *:nth-child(n) {
    margin-left: 1.3125rem;
  }
  .columns-list-three-column .ykl-list > *:nth-child(3n+1) {
    margin-left: 0;
  }
}

.margin-none {
  margin-bottom: 0;
}

.margin-small {
  margin-bottom: 0.65625rem;
}

.margin-base {
  margin-bottom: 1.3125rem;
}

.margin-large {
  margin-bottom: 2.625rem;
}

.margin-huge {
  margin-bottom: 5.25rem;
}
/*# sourceMappingURL=layout.css.map */
