/*!**********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/swiper/swiper.css ***!
  \**********************************************************************************/
/**
 * Swiper 12.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 29, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

/*!***********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/swiper/modules/effect-fade.css ***!
  \***********************************************************************************************/
.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

/*!***************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \***************************************************************************************************************************************************************************************************************/
/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

progress {
  vertical-align: baseline;
}

template,
[hidden] {
  display: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  margin: 0;
}

optgroup {
  font-weight: bold;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.container::after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 576px) {
  .container {
    width: 540px;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .container {
    width: 980px;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
    max-width: 100%;
  }
}

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.container-fluid::after {
  content: "";
  display: table;
  clear: both;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}
.row {
  margin-right: -10px;
  margin-left: -10px;
}
@media (min-width: 576px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
}
@media (min-width: 768px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
}
@media (min-width: 1024px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
}
@media (min-width: 1200px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
}

.col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-xl, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-lg, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-md, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-sm, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col-xs {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
@media (min-width: 576px) {
  .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-xl, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-lg, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-md, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-sm, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col-xs {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-xl, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-lg, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-md, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-sm, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col-xs {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 1024px) {
  .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-xl, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-lg, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-md, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-sm, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col-xs {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 1200px) {
  .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-xl, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-lg, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-md, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-sm, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col-xs {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.col-xs-1 {
  float: left;
  width: 8.3333333333%;
}

.col-xs-2 {
  float: left;
  width: 16.6666666667%;
}

.col-xs-3 {
  float: left;
  width: 25%;
}

.col-xs-4 {
  float: left;
  width: 33.3333333333%;
}

.col-xs-5 {
  float: left;
  width: 41.6666666667%;
}

.col-xs-6 {
  float: left;
  width: 50%;
}

.col-xs-7 {
  float: left;
  width: 58.3333333333%;
}

.col-xs-8 {
  float: left;
  width: 66.6666666667%;
}

.col-xs-9 {
  float: left;
  width: 75%;
}

.col-xs-10 {
  float: left;
  width: 83.3333333333%;
}

.col-xs-11 {
  float: left;
  width: 91.6666666667%;
}

.col-xs-12 {
  float: left;
  width: 100%;
}

.pull-xs-0 {
  right: auto;
}

.pull-xs-1 {
  right: 8.3333333333%;
}

.pull-xs-2 {
  right: 16.6666666667%;
}

.pull-xs-3 {
  right: 25%;
}

.pull-xs-4 {
  right: 33.3333333333%;
}

.pull-xs-5 {
  right: 41.6666666667%;
}

.pull-xs-6 {
  right: 50%;
}

.pull-xs-7 {
  right: 58.3333333333%;
}

.pull-xs-8 {
  right: 66.6666666667%;
}

.pull-xs-9 {
  right: 75%;
}

.pull-xs-10 {
  right: 83.3333333333%;
}

.pull-xs-11 {
  right: 91.6666666667%;
}

.pull-xs-12 {
  right: 100%;
}

.push-xs-0 {
  left: auto;
}

.push-xs-1 {
  left: 8.3333333333%;
}

.push-xs-2 {
  left: 16.6666666667%;
}

.push-xs-3 {
  left: 25%;
}

.push-xs-4 {
  left: 33.3333333333%;
}

.push-xs-5 {
  left: 41.6666666667%;
}

.push-xs-6 {
  left: 50%;
}

.push-xs-7 {
  left: 58.3333333333%;
}

.push-xs-8 {
  left: 66.6666666667%;
}

.push-xs-9 {
  left: 75%;
}

.push-xs-10 {
  left: 83.3333333333%;
}

.push-xs-11 {
  left: 91.6666666667%;
}

.push-xs-12 {
  left: 100%;
}

.offset-xs-1 {
  margin-left: 8.3333333333%;
}

.offset-xs-2 {
  margin-left: 16.6666666667%;
}

.offset-xs-3 {
  margin-left: 25%;
}

.offset-xs-4 {
  margin-left: 33.3333333333%;
}

.offset-xs-5 {
  margin-left: 41.6666666667%;
}

.offset-xs-6 {
  margin-left: 50%;
}

.offset-xs-7 {
  margin-left: 58.3333333333%;
}

.offset-xs-8 {
  margin-left: 66.6666666667%;
}

.offset-xs-9 {
  margin-left: 75%;
}

.offset-xs-10 {
  margin-left: 83.3333333333%;
}

.offset-xs-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    float: left;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    float: left;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    float: left;
    width: 25%;
  }
  .col-sm-4 {
    float: left;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    float: left;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    float: left;
    width: 50%;
  }
  .col-sm-7 {
    float: left;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    float: left;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    float: left;
    width: 75%;
  }
  .col-sm-10 {
    float: left;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    float: left;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    float: left;
    width: 100%;
  }
  .pull-sm-0 {
    right: auto;
  }
  .pull-sm-1 {
    right: 8.3333333333%;
  }
  .pull-sm-2 {
    right: 16.6666666667%;
  }
  .pull-sm-3 {
    right: 25%;
  }
  .pull-sm-4 {
    right: 33.3333333333%;
  }
  .pull-sm-5 {
    right: 41.6666666667%;
  }
  .pull-sm-6 {
    right: 50%;
  }
  .pull-sm-7 {
    right: 58.3333333333%;
  }
  .pull-sm-8 {
    right: 66.6666666667%;
  }
  .pull-sm-9 {
    right: 75%;
  }
  .pull-sm-10 {
    right: 83.3333333333%;
  }
  .pull-sm-11 {
    right: 91.6666666667%;
  }
  .pull-sm-12 {
    right: 100%;
  }
  .push-sm-0 {
    left: auto;
  }
  .push-sm-1 {
    left: 8.3333333333%;
  }
  .push-sm-2 {
    left: 16.6666666667%;
  }
  .push-sm-3 {
    left: 25%;
  }
  .push-sm-4 {
    left: 33.3333333333%;
  }
  .push-sm-5 {
    left: 41.6666666667%;
  }
  .push-sm-6 {
    left: 50%;
  }
  .push-sm-7 {
    left: 58.3333333333%;
  }
  .push-sm-8 {
    left: 66.6666666667%;
  }
  .push-sm-9 {
    left: 75%;
  }
  .push-sm-10 {
    left: 83.3333333333%;
  }
  .push-sm-11 {
    left: 91.6666666667%;
  }
  .push-sm-12 {
    left: 100%;
  }
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    float: left;
    width: 8.3333333333%;
  }
  .col-md-2 {
    float: left;
    width: 16.6666666667%;
  }
  .col-md-3 {
    float: left;
    width: 25%;
  }
  .col-md-4 {
    float: left;
    width: 33.3333333333%;
  }
  .col-md-5 {
    float: left;
    width: 41.6666666667%;
  }
  .col-md-6 {
    float: left;
    width: 50%;
  }
  .col-md-7 {
    float: left;
    width: 58.3333333333%;
  }
  .col-md-8 {
    float: left;
    width: 66.6666666667%;
  }
  .col-md-9 {
    float: left;
    width: 75%;
  }
  .col-md-10 {
    float: left;
    width: 83.3333333333%;
  }
  .col-md-11 {
    float: left;
    width: 91.6666666667%;
  }
  .col-md-12 {
    float: left;
    width: 100%;
  }
  .pull-md-0 {
    right: auto;
  }
  .pull-md-1 {
    right: 8.3333333333%;
  }
  .pull-md-2 {
    right: 16.6666666667%;
  }
  .pull-md-3 {
    right: 25%;
  }
  .pull-md-4 {
    right: 33.3333333333%;
  }
  .pull-md-5 {
    right: 41.6666666667%;
  }
  .pull-md-6 {
    right: 50%;
  }
  .pull-md-7 {
    right: 58.3333333333%;
  }
  .pull-md-8 {
    right: 66.6666666667%;
  }
  .pull-md-9 {
    right: 75%;
  }
  .pull-md-10 {
    right: 83.3333333333%;
  }
  .pull-md-11 {
    right: 91.6666666667%;
  }
  .pull-md-12 {
    right: 100%;
  }
  .push-md-0 {
    left: auto;
  }
  .push-md-1 {
    left: 8.3333333333%;
  }
  .push-md-2 {
    left: 16.6666666667%;
  }
  .push-md-3 {
    left: 25%;
  }
  .push-md-4 {
    left: 33.3333333333%;
  }
  .push-md-5 {
    left: 41.6666666667%;
  }
  .push-md-6 {
    left: 50%;
  }
  .push-md-7 {
    left: 58.3333333333%;
  }
  .push-md-8 {
    left: 66.6666666667%;
  }
  .push-md-9 {
    left: 75%;
  }
  .push-md-10 {
    left: 83.3333333333%;
  }
  .push-md-11 {
    left: 91.6666666667%;
  }
  .push-md-12 {
    left: 100%;
  }
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1024px) {
  .col-lg-1 {
    float: left;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    float: left;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    float: left;
    width: 25%;
  }
  .col-lg-4 {
    float: left;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    float: left;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    float: left;
    width: 50%;
  }
  .col-lg-7 {
    float: left;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    float: left;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    float: left;
    width: 75%;
  }
  .col-lg-10 {
    float: left;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    float: left;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    float: left;
    width: 100%;
  }
  .pull-lg-0 {
    right: auto;
  }
  .pull-lg-1 {
    right: 8.3333333333%;
  }
  .pull-lg-2 {
    right: 16.6666666667%;
  }
  .pull-lg-3 {
    right: 25%;
  }
  .pull-lg-4 {
    right: 33.3333333333%;
  }
  .pull-lg-5 {
    right: 41.6666666667%;
  }
  .pull-lg-6 {
    right: 50%;
  }
  .pull-lg-7 {
    right: 58.3333333333%;
  }
  .pull-lg-8 {
    right: 66.6666666667%;
  }
  .pull-lg-9 {
    right: 75%;
  }
  .pull-lg-10 {
    right: 83.3333333333%;
  }
  .pull-lg-11 {
    right: 91.6666666667%;
  }
  .pull-lg-12 {
    right: 100%;
  }
  .push-lg-0 {
    left: auto;
  }
  .push-lg-1 {
    left: 8.3333333333%;
  }
  .push-lg-2 {
    left: 16.6666666667%;
  }
  .push-lg-3 {
    left: 25%;
  }
  .push-lg-4 {
    left: 33.3333333333%;
  }
  .push-lg-5 {
    left: 41.6666666667%;
  }
  .push-lg-6 {
    left: 50%;
  }
  .push-lg-7 {
    left: 58.3333333333%;
  }
  .push-lg-8 {
    left: 66.6666666667%;
  }
  .push-lg-9 {
    left: 75%;
  }
  .push-lg-10 {
    left: 83.3333333333%;
  }
  .push-lg-11 {
    left: 91.6666666667%;
  }
  .push-lg-12 {
    left: 100%;
  }
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    float: left;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    float: left;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    float: left;
    width: 25%;
  }
  .col-xl-4 {
    float: left;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    float: left;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    float: left;
    width: 50%;
  }
  .col-xl-7 {
    float: left;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    float: left;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    float: left;
    width: 75%;
  }
  .col-xl-10 {
    float: left;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    float: left;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    float: left;
    width: 100%;
  }
  .pull-xl-0 {
    right: auto;
  }
  .pull-xl-1 {
    right: 8.3333333333%;
  }
  .pull-xl-2 {
    right: 16.6666666667%;
  }
  .pull-xl-3 {
    right: 25%;
  }
  .pull-xl-4 {
    right: 33.3333333333%;
  }
  .pull-xl-5 {
    right: 41.6666666667%;
  }
  .pull-xl-6 {
    right: 50%;
  }
  .pull-xl-7 {
    right: 58.3333333333%;
  }
  .pull-xl-8 {
    right: 66.6666666667%;
  }
  .pull-xl-9 {
    right: 75%;
  }
  .pull-xl-10 {
    right: 83.3333333333%;
  }
  .pull-xl-11 {
    right: 91.6666666667%;
  }
  .pull-xl-12 {
    right: 100%;
  }
  .push-xl-0 {
    left: auto;
  }
  .push-xl-1 {
    left: 8.3333333333%;
  }
  .push-xl-2 {
    left: 16.6666666667%;
  }
  .push-xl-3 {
    left: 25%;
  }
  .push-xl-4 {
    left: 33.3333333333%;
  }
  .push-xl-5 {
    left: 41.6666666667%;
  }
  .push-xl-6 {
    left: 50%;
  }
  .push-xl-7 {
    left: 58.3333333333%;
  }
  .push-xl-8 {
    left: 66.6666666667%;
  }
  .push-xl-9 {
    left: 75%;
  }
  .push-xl-10 {
    left: 83.3333333333%;
  }
  .push-xl-11 {
    left: 91.6666666667%;
  }
  .push-xl-12 {
    left: 100%;
  }
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
:root {
  --header-height: 60px;
  --font-size-copy: 15px;
  --line-height-copy: 20px;
  --color-white: #fff;
  --color-black: #000;
  --color-yellow: #ffff00;
  --color-grey-1: #f2f2f2;
  --color-grey-2: #666666;
}

@media (min-width: 768px) {
  :root {
    --header-height: 90px;
  }
}
@media (min-width: 1024px) {
  :root {
    --header-height: 110px;
  }
}
* {
  padding: 0;
  margin: 0;
  border: 0;
  background-repeat: no-repeat;
}

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

html,
body {
  height: 100%;
}

html {
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-size: var(--font-size-copy);
  line-height: 20px;
  line-height: var(--line-height-copy);
  color: #000;
  color: var(--color-black);
  background-color: #fff;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin-bottom: 20px;
  margin-bottom: var(--line-height-copy);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 15px;
  font-size: var(--font-size-copy);
  font-weight: 700;
  margin: 0;
}

h2 {
  margin-bottom: 20px;
  margin-bottom: var(--line-height-copy);
}

:focus,
a:focus {
  outline: 0;
}

a {
  color: #000;
  color: var(--color-black);
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

ul,
ol {
  list-style-type: none;
}

ul {
  margin-bottom: 20px;
  margin-bottom: var(--line-height-copy);
  margin-left: 20px;
  list-style-type: disc;
}
ul:after {
  content: " ";
  display: table;
  clear: both;
}

strong,
b {
  font-weight: 700;
}

hr {
  margin-bottom: calc(20px * 1.5);
  margin-bottom: calc(var(--line-height-copy) * 1.5);
  border-bottom: 1px solid #fff;
  border-bottom: 1px solid var(--color-white);
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  margin-bottom: var(--line-height-copy);
}

figure {
  margin: 0;
}

p,
h1,
h2,
h3,
h4,
ul,
ol {
  max-width: 700px;
}

p:has(img) {
  max-width: none;
}

.back-btn {
  display: inline-block;
  -webkit-text-decoration: none;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  padding-left: 28px;
}
.back-btn:before {
  content: "";
  width: 18px;
  height: 12px;
  position: absolute;
  top: 4px;
  left: 0;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='100%25' height='100%25' viewBox='0 0 18 12' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(-0.984515,7.50064e-16,-7.69506e-16,-1,49.2628,1353.78)'%3E%3Cg id='Welcome'%3E%3Cpath id='Fill-1' d='M44.027,1341.78L43.192,1342.64L47.846,1347.17L31.755,1347.17L31.755,1348.38L47.846,1348.38L43.171,1352.93L44.027,1353.78L50.038,1347.77L44.027,1341.78Z' style='fill:rgb(17,17,15);'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (min-width: 1200px) {
  p,
  h1,
  h2,
  h3,
  h4,
  ul,
  ol {
    max-width: 850px;
  }
}
.black-dot, .project-thumbnails figure:after, .ce-project-teaser .project-teaser-img:after {
  content: "";
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  margin-top: -28px;
  margin-left: -28px;
  border-radius: 100%;
  opacity: 0;
  background-color: #000;
  background-color: var(--color-black);
  transition: opacity 250ms linear;
}

@media (min-width: 375px) {
  .black-dot, .project-thumbnails figure:after, .ce-project-teaser .project-teaser-img:after {
    width: 66px;
    height: 66px;
    margin-top: -33px;
    margin-left: -33px;
  }
}
@media (min-width: 576px) {
  .black-dot, .project-thumbnails figure:after, .ce-project-teaser .project-teaser-img:after {
    width: 90px;
    height: 90px;
    margin-top: -45px;
    margin-left: -45px;
  }
}
@media (min-width: 1024px) {
  .black-dot, .project-thumbnails figure:after, .ce-project-teaser .project-teaser-img:after {
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
  }
}
@media (min-width: 1200px) {
  .black-dot, .project-thumbnails figure:after, .ce-project-teaser .project-teaser-img:after {
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
  }
}
header {
  height: 60px;
  height: var(--header-height);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}
header ul {
  max-width: none;
  margin: 20px 40px 0 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
header ul:after {
  display: none;
}
header a {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}
header a:after {
  content: "";
  height: 4px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  background-color: #000;
  background-color: var(--color-black);
  transition: opacity 100ms linear;
}
header a:hover:after,
header .current-menu-item a:after,
header .current-page-ancestor a:after {
  opacity: 1;
}
header li:first-child a {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  display: block;
  text-indent: -9999px;
  border-radius: 100%;
  background-color: #000;
  background-color: var(--color-black);
}
header li:first-child a:after {
  display: none;
}

@media (min-width: 375px) {
  header a {
    font-size: 23px;
    line-height: 23px;
  }
}
@media (min-width: 768px) {
  header ul {
    margin-top: 23px;
  }
  header a {
    font-size: 45px;
    line-height: 45px;
  }
  header a:after {
    height: 6px;
    right: 2px;
    left: 2px;
  }
  header li:first-child a {
    width: 24px;
    height: 24px;
    margin-top: 11px;
  }
}
@media (min-width: 1024px) {
  header ul {
    margin-top: 20px;
  }
  header a {
    font-size: 66px;
    line-height: 66px;
  }
  header a:after {
    height: 7px;
    right: 3px;
    left: 3px;
  }
  header li:first-child a {
    width: 30px;
    height: 30px;
    margin-top: 18px;
  }
}
.sub-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
  list-style-type: none;
}
.sub-nav a {
  display: inline-block;
  font-size: 19px;
  line-height: 19px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-text-decoration: none;
  text-decoration: none;
  position: relative;
}
.sub-nav a:after {
  content: "";
  width: 15px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -6px;
  opacity: 0;
  background-color: #000;
  background-color: var(--color-black);
  transition: opacity 100ms linear;
}
.sub-nav li.active a:after,
.sub-nav a:hover:after {
  opacity: 1;
}

@media (min-width: 768px) {
  .sub-nav {
    flex-direction: row;
    gap: 45px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .sub-nav a {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 1px;
  }
  .sub-nav a:after {
    width: 20px;
    height: 6px;
  }
}
footer {
  flex-shrink: 0;
  border-top: 1px solid #000;
  border-top: 1px solid var(--color-black);
}

.footer-nav {
  display: block;
  margin: 0;
  padding: 20px 0;
  list-style-type: none;
}
.footer-nav li {
  margin: 5px 0;
}
.footer-nav a {
  font-weight: 700;
  text-transform: uppercase;
  -webkit-text-decoration: none;
  text-decoration: none;
  position: relative;
}
.footer-nav a:after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: -3px;
  right: 0;
  left: 0;
  opacity: 0;
  background-color: #000;
  background-color: var(--color-black);
  transition: opacity 100ms linear;
}
.footer-nav a:hover:after {
  opacity: 1;
}

@media (min-width: 768px) {
  .footer-nav {
    display: flex;
    -moz-column-gap: 40px;
         column-gap: 40px;
    padding: 30px 0;
  }
}
#center {
  flex: 1 0 auto;
  padding-top: 60px;
  padding-top: var(--header-height);
  padding-bottom: 30px;
}

#center:has(.ce-hero-slider) {
  padding: 0;
}

.swiper-container video {
  width: 100%;
  margin: 0;
}

.ce-text-image {
  margin-top: 25px;
}
.ce-text-image.ce-top-content {
  margin-top: 35px;
}
.ce-text-image a {
  transition: color 250ms linear;
}
.ce-text-image a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

@media (min-width: 768px) {
  .ce-text-image.ce-top-content {
    margin-top: 55px;
  }
}
.ce-hero-slider {
  position: relative;
}
.ce-hero-slider .swiper-slide {
  width: 100vw;
  height: 100vh;
  position: relative;
}
.ce-hero-slider .swiper-slide img,
.ce-hero-slider .swiper-slide video {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.ce-hero-slider .swiper img {
  width: 100%;
}

.ce-team-overview {
  margin-top: 25px;
}

.team-overview {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.team-teaser {
  width: 100%;
  max-width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 30px;
}
.team-teaser .img-wrapper {
  position: relative;
}
.team-teaser .img-wrapper:after {
  content: "";
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  background-color: #ffff00;
  background-color: var(--color-yellow);
  opacity: 0;
  transition: opacity 150ms linear;
}
.team-teaser figure {
  margin-left: -10px;
  margin-right: -10px;
}
.team-teaser figcaption {
  margin-right: 10px;
  margin-left: 10px;
}
.team-teaser a {
  display: block;
  -webkit-text-decoration: none;
  text-decoration: none;
  position: relative;
}
.team-teaser a:hover .img-wrapper:after {
  opacity: 0.7;
}
.team-teaser img {
  width: 100%;
  margin-bottom: 15px;
}
.team-teaser h3 {
  text-transform: uppercase;
}
.team-teaser p {
  margin: 0;
}

@media (min-width: 768px) {
  .team-teaser {
    flex-basis: 33.3333%;
    max-width: 33.3333333333%;
    margin-bottom: 40px;
  }
  .team-teaser figure {
    margin-left: 0;
    margin-right: 0;
  }
  .team-teaser figcaption {
    margin-right: 0;
    margin-left: 0;
  }
  .team-teaser .img-wrapper:after {
    width: 200px;
    height: 200px;
  }
}
@media (min-width: 1024px) {
  .team-teaser {
    flex-basis: 25%;
    max-width: 25%;
  }
}
.ce-team-detail {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
  margin-right: -10px;
  margin-left: -10px;
}
.ce-team-detail .col-custom {
  width: 100%;
  max-width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
}
.ce-team-detail .col-custom-1 img {
  width: 100%;
}
.ce-team-detail .col-custom-2,
.ce-team-detail .col-custom-3 {
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .ce-team-detail .col-custom-1 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1024px) {
  .ce-team-detail .col-custom-1,
  .ce-team-detail .col-custom-2 {
    max-width: 50%;
  }
}
.post-teaser {
  padding-bottom: 20px;
  margin-bottom: 40px;
  position: relative;
}
.post-teaser .post-img {
  padding: 0;
}
.post-teaser:before {
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  background-color: var(--color-black);
}
.post-teaser img,
.post-teaser video {
  margin-bottom: 20px;
}
.post-teaser h2 {
  margin: 0;
}
.post-teaser a {
  display: block;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.post-teaser a:hover h2 {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .post-teaser .post-img {
    padding: 0 10px;
  }
  .post-teaser:before {
    left: 10px;
    right: 10px;
  }
  .post-teaser:last-child:before {
    display: none;
  }
}
.ce-project-teaser {
  width: 100%;
  min-height: 50px;
  margin-bottom: 25px;
  padding-right: 10px;
  padding-left: 10px;
  position: relative;
  float: left;
}
.ce-project-teaser img,
.ce-project-teaser video {
  margin: 0;
}
.ce-project-teaser .project-teaser-img {
  margin-bottom: 10px;
}
.ce-project-teaser h2 {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
}
.ce-project-teaser a {
  display: block;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.ce-project-teaser a:hover h2 {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.ce-project-teaser a:hover {
  /*
  .project-teaser-img {
    &:after {
      opacity: 1;
    }
  }
  */
}
.ce-project-teaser figure {
  position: relative;
}
.ce-project-teaser figure:after {
  content: " ";
  display: table;
  clear: both;
}
.ce-project-teaser .project-teaser-img {
  position: relative;
}
html.is-touch .ce-project-teaser a:hover h2 {
  -webkit-text-decoration: none;
  text-decoration: none;
}
html.is-touch .ce-project-teaser a:hover .project-teaser-img:after {
  opacity: 0;
}

@media (min-width: 768px) {
  .ce-project-teaser {
    margin-bottom: 20px;
  }
  .ce-project-teaser .project-teaser-img {
    margin: 0;
    width: 70%;
    float: left;
  }
  .ce-project-teaser a {
    width: 48%;
  }
  .ce-project-teaser figcaption {
    width: 30%;
    padding-left: 20px;
    float: left;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .ce-project-teaser:nth-child(even) a {
    float: right;
  }
}
@media (min-width: 1200px) {
  .ce-project-teaser {
    margin-bottom: 50px;
  }
  .ce-project-teaser:nth-of-type(3n+1) {
    width: 45%;
    float: left;
  }
  .ce-project-teaser:nth-of-type(3n+1) a {
    width: 100%;
  }
  .ce-project-teaser:nth-of-type(3n+2) {
    width: 45%;
    float: right;
  }
  .ce-project-teaser:nth-of-type(3n+2) a {
    width: 100%;
  }
  .ce-project-teaser:nth-of-type(3n+3) {
    clear: both;
  }
  .ce-project-teaser:nth-of-type(3n+3) a {
    margin: 0 auto;
    float: none;
  }
}
.ce-project-gallery img {
  margin: 0;
}
.ce-project-gallery .swiper {
  margin-bottom: 10px;
}
.ce-project-gallery .swiper img {
  width: 100%;
}
.ce-project-gallery .swiper .floorplan {
  background-color: #f2f2f2;
  background-color: var(--color-grey-1);
}
.ce-project-gallery .swiper .floorplan img {
  mix-blend-mode: multiply;
}

.project-thumbnails {
  margin-bottom: 18px;
}
.project-thumbnails .row {
  margin-right: -5px;
  margin-left: -5px;
}
.project-thumbnails .col-xs-4 {
  padding-right: 5px;
  padding-left: 5px;
}
.project-thumbnails figure {
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.project-thumbnails figure.active:after {
  opacity: 1;
}
.project-thumbnails .floorplan img {
  mix-blend-mode: multiply;
  position: relative;
  z-index: 2;
}
.project-thumbnails .floorplan:before {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  left: 5px;
  z-index: 0;
  background-color: #ffff00;
  background-color: var(--color-yellow);
}

@media (min-width: 768px) {
  .ce-project-gallery .swiper {
    margin-bottom: 50px;
  }
  .project-thumbnails {
    margin-bottom: 10px;
  }
  .project-thumbnails .row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .project-thumbnails .col-xs-4 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .project-thumbnails figure {
    margin-bottom: 20px;
  }
  .project-thumbnails .floorplan:before {
    right: 10px;
    left: 10px;
  }
}
@media (min-width: 1024px) {
  .ce-project-gallery .swiper {
    margin-bottom: 70px;
  }
}
.ce-subnavigation-item {
  margin-top: 35px;
}
.ce-subnavigation-item h2 {
  font-size: 19px;
  line-height: 19px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ce-subnavigation-item a {
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.ce-subnavigation-item a:after {
  content: "";
  width: 15px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -6px;
  opacity: 0;
  background-color: #000;
  background-color: var(--color-black);
  transition: opacity 100ms linear;
}
.ce-subnavigation-item a:hover:after {
  opacity: 1;
}
.ce-subnavigation-item.current-menu-item a:after {
  opacity: 1;
}

html.is-touch .ce-subnavigation-item a:hover:after {
  opacity: 0;
}

@media (min-width: 375px) {
  .ce-subnavigation-item h2 {
    font-size: 21px;
    line-height: 21px;
  }
}
@media (min-width: 768px) {
  .ce-subnavigation-item {
    margin-top: 55px;
  }
  .ce-subnavigation-item h2 {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 1px;
  }
  .ce-subnavigation-item a:after {
    width: 20px;
    height: 6px;
  }
  .ce-subnavigation-item.current-menu-item a:after {
    width: 20px;
  }
}
@media (min-width: 1024px) {
  .ce-subnavigation-item a :after {
    height: 7px;
    bottom: -7px;
  }
}

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