@charset "UTF-8";
/* RWD */
.overlayer {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 9000;
}
.overlayer__content-container {
  display: none;
}

.std-overlayer {
  background: #fff;
}
.std-overlayer__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.std-overlayer__inner {
  background: #fff;
  /*padding: 32px 20px;
  margin: 40px 0;*/
}
.std-overlayer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.icon-plus {
  width: 16px;
  height: 16px;
  position: relative;
}
.icon-plus:before, .icon-plus:after {
  content: "";
  display: block;
  position: absolute;
  background: #000;
}
.icon-plus:before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  margin: -1px 0 0 0;
}
.icon-plus:after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  margin: 0 0 0 -1px;
}

.icon-plus--rotated {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.icon-plus--light:before, .icon-plus--light:after {
  background: #fff;
}

.icon-arrow {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  width: 12px;
  height: 12px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.icon-arrow--small {
  width: 8px;
  height: 8px;
}

.icon-arrow--large {
  width: 16px;
  height: 16px;
}

.icon-arrow--huge {
  width: 20px;
  height: 20px;
}

.icon-arrow--west {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
}

.icon-arrow--north {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.icon-arrow--east {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon-arrow--south {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}

.icon-plus-map {
  width: 18px;
  height: 18px;
  position: relative;
  background-color: #000;
}
.icon-plus-map:before, .icon-plus-map:after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
}
.icon-plus-map:before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  margin: -1px 0 0 0;
}
.icon-plus-map:after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  margin: 0 0 0 -1px;
}

.icon-minus-map {
  width: 18px;
  height: 18px;
  position: relative;
  background-color: #000;
}
.icon-minus-map:before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
}
.icon-minus-map:before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  margin: -1px 0 0 0;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
  font-family: "Neue Haas Grotesk Display Pro", serif;
}

a {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.site-header {
  position: relative;
  /*@media (min-width: $desktop-l) {
    margin-left: 100px;
    margin-right: 100px;
  }

  @media (min-width: $desktop-xl) {
    padding-left: 140px;
    padding-right: 140px;
  }*/
}
.site-header__bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

.site-title {
  font-size: 42px;
}
@media (min-width: 1700px) {
  .site-title {
    font-size: 52px;
  }
}

.site-content {
  padding: 0;
}

.icon-hamburger {
  display: block;
  width: 28px;
  position: relative;
}
@media (min-width: 992px) {
  .icon-hamburger {
    width: 24px;
  }
}
.icon-hamburger__inner {
  height: 17px;
  position: relative;
  overflow: hidden;
}
.icon-hamburger__inner > div {
  position: absolute;
  left: 0;
  height: 2px;
  background: #000;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.icon-hamburger__inner > div:nth-child(1),
.icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger__inner > div:nth-child(2),
.icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
}
.icon-hamburger__inner > div:nth-child(3),
.icon-hamburger__inner > div:nth-child(6) {
  top: 14px;
}
.icon-hamburger__inner > div:nth-child(4) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-hamburger__inner > div:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-hamburger__inner > div:nth-child(6) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item {
  background: #000;
  left: -100%;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(4) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(6) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-hamburger:hover .icon-hamburger__inner > .icon-hamburger__hover-item, .icon-hamburger:focus .icon-hamburger__inner > .icon-hamburger__hover-item {
  left: 0;
}

.icon-hamburger.open .icon-hamburger__inner {
  overflow: visible;
}
.icon-hamburger.open .icon-hamburger__inner > div {
  background: #000;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(4) {
  top: 7px;
  left: auto;
  right: 0;
  width: 24px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(6) {
  opacity: 0;
  left: -100%;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 24px;
}

.icon-hamburger--primary .icon-hamburger__inner > div {
  background: #FA6900;
}

.icon-hamburger--light .icon-hamburger__inner > div {
  background: #fff;
}

.icon-hamburger--large {
  width: 32px;
}
.icon-hamburger--large .icon-hamburger__inner {
  height: 20px;
}
.icon-hamburger--large .icon-hamburger__inner > div {
  height: 4px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(5) {
  top: 8px;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(6) {
  top: 16px;
}

.icon-hamburger--small {
  width: 20px;
  height: 12px;
}
.icon-hamburger--small .icon-hamburger__inner > div {
  height: 2px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(5) {
  top: 5px;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(6) {
  top: 10px;
}

/***** MENU *****/
.menu-toggler-container {
  cursor: pointer;
}

#menu-toggler {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 9000;
}
@media (min-width: 650px) {
  #menu-toggler {
    /*right: 40px;
    top: 40px;*/
  }
}
@media (min-width: 1300px) {
  #menu-toggler {
    right: 60px;
  }
}
@media (min-width: 1700px) {
  #menu-toggler {
    right: 100px;
  }
}

.slide-menu {
  position: fixed;
  z-index: 6800;
  display: block;
  text-align: center;
  width: 100%;
  background: #fff;
  overflow: auto;
  height: 100%;
}
@media (min-width: 992px) {
  .slide-menu {
    background: #fff;
  }
}
.slide-menu__decoration-container {
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate3d(-20%, 0, 0);
  -moz-transform: translate3d(-20%, 0, 0);
  transform: translate3d(-20%, 0, 0);
  display: none;
}
@media (min-width: 650px) and (min-height: 630px) {
  .slide-menu__decoration-container {
    display: block;
  }
}
@media (min-width: 992px) {
  .slide-menu__decoration-container {
    width: 36%;
    display: block;
  }
}
@media (min-width: 1300px) {
  .slide-menu__decoration-container {
    width: 34%;
  }
}
.slide-menu__decoration {
  padding: 0 0 130% 0;
  background: url("../img/decorations/decoration-south-west-heads.svg") no-repeat left bottom;
  background-size: contain;
}
@media (min-width: 1300px) {
  .slide-menu__decoration {
    padding-bottom: 120%;
  }
}
.slide-menu .slide-menu__wrapper {
  height: 100%;
  position: relative;
}
.slide-menu .slide-menu__inner {
  padding: 40px 20px;
  position: relative;
}
@media (min-width: 650px) {
  .slide-menu .slide-menu__inner {
    text-align: right;
    padding: 40px 60px;
  }
}
@media (min-width: 992px) {
  .slide-menu__container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
  }
}
.slide-menu__menu-container {
  background: #fff;
}
@media (min-width: 992px) {
  .slide-menu__menu-container {
    padding: 0 0 0 15%;
  }
}
@media (min-width: 1300px) {
  .slide-menu__menu-container {
    padding-left: 18%;
  }
}
@media (min-width: 1700px) {
  .slide-menu__menu-container {
    padding-left: 22%;
  }
}
.slide-menu__menu-wrapper {
  text-align: left;
  display: flex;
  justify-content: center;
}
.slide-menu__header {
  text-align: left;
  padding: 20px 40px 0 40px;
}
@media (min-width: 992px) {
  .slide-menu__header {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 1300px) {
  .slide-menu__header {
    padding: 28px 0 0 80px;
  }
}
.slide-menu__additional-menu-container {
  position: relative;
}
@media (min-width: 992px) {
  .slide-menu__additional-menu-container {
    background: #FA6900;
    padding: 0 8% 0 0;
  }
}
@media (min-width: 1300px) {
  .slide-menu__additional-menu-container {
    padding: 0 8% 0 32px;
  }
}
@media (min-width: 1700px) {
  .slide-menu__additional-menu-container {
    padding: 0 14% 0 60px;
  }
}
.slide-menu__social-media {
  position: absolute;
  right: 32px;
  top: 0;
  -webkit-transform: translate3d(0, -66%, 0);
  -moz-transform: translate3d(0, -66%, 0);
  transform: translate3d(0, -66%, 0);
}
@media (min-width: 992px) {
  .slide-menu__social-media {
    bottom: auto;
    top: 0;
    left: 0;
    right: auto;
    padding: 32px;
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@media (min-width: 1700px) {
  .slide-menu__social-media {
    padding: 40px 40px 0 0;
  }
}

/** fade **/
.slide-menu--fade {
  display: none;
}

.slide-menu--fade.slide-menu--top {
  top: -2px;
  left: 0;
  right: auto;
  bottom: auto;
}

.slide-menu--fade.slide-menu--right {
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
}

.slide-menu--fade.slide-menu--left {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
}

/** slide **/
.slide-menu--slide {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.slide-menu--slide.slide-menu--top {
  top: -110%;
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--slide.slide-menu--top.slide-menu--open {
  top: -2px;
}

.slide-menu--slide.slide-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto;
}

.slide-menu--slide.slide-menu--right.slide-menu--open {
  right: 0;
}

.slide-menu--slide.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%;
}

.slide-menu--slide.slide-menu--bottom.slide-menu--open {
  bottom: 0;
}

.slide-menu--slide.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto;
}

.slide-menu--slide.slide-menu--left.slide-menu--open {
  left: 0;
}

/** slide-fade **/
.slide-menu--slide-fade {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -moz-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -o-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
}
.slide-menu--slide-fade .slide-menu__inner {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.slide-menu--slide-fade.slide-menu--open {
  -webkit-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -moz-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -o-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -webkit-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
}
.slide-menu--slide-fade.slide-menu--open .slide-menu__inner {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in 0.4s;
  -moz-transition: opacity 0.3s ease-in 0.4s;
  -o-transition: opacity 0.3s ease-in 0.4s;
  transition: opacity 0.3s ease-in 0.4s;
}

.slide-menu--slide-fade.slide-menu--top {
  -webkit-transform: translate3d(0, -200%, 0);
  -moz-transform: translate3d(0, -200%, 0);
  transform: translate3d(0, -200%, 0);
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--top.slide-menu--open {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  top: -2px;
}

.slide-menu--slide-fade.slide-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--right.slide-menu--open {
  right: 0;
}

.slide-menu--slide-fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%;
}

.slide-menu--slide-fade.slide-menu--bottom.slide-menu--open {
  bottom: 0;
}

.slide-menu--slide-fade.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--left.slide-menu--open {
  left: 0;
}

/***** SECTIONS *****/
.site-section__layer {
  padding: 0 20px;
}
@media (min-width: 420px) {
  .site-section__layer {
    padding: 0 50px;
  }
}
@media (min-width: 1700px) {
  .site-section__layer {
    padding: 0 10%;
  }
}
.site-section__layer--only-left {
  padding: 0 0 0 20px;
}
@media (min-width: 420px) {
  .site-section__layer--only-left {
    padding: 0 0 0 90px;
  }
}
@media (min-width: 1700px) {
  .site-section__layer--only-left {
    padding: 0 0 0 10%;
  }
}
.site-section__layer--only-left-big {
  padding: 0;
}
@media (min-width: 550px) {
  .site-section__layer--only-left-big {
    padding: 0;
  }
}
@media (min-width: 1100px) {
  .site-section__layer--only-left-big {
    padding: 0 0 0 3%;
  }
}
@media (min-width: 1700px) {
  .site-section__layer--only-left-big {
    padding: 0 0 0 6%;
  }
}
.site-section__wrapper {
  padding: 40px 0;
}
@media (min-width: 992px) {
  .site-section__wrapper {
    padding: 64px 0;
  }
}
@media (min-width: 1700px) {
  .site-section__wrapper {
    padding: 80px 0;
  }
}
.site-section__wrapper--only-top {
  padding-bottom: 0;
}
.site-section__wrapper--only-bottom {
  padding-top: 0;
}
.site-section__row {
  padding: 64px 0;
}
.site-section__row:first-child {
  padding-top: 0;
}
.site-section__row:last-child {
  padding-bottom: 0;
}

/** END_SECTIONS **/
/***** THIS PROJECT *****/
.bounded-section {
  max-width: 500px;
}

.presentation-list {
  list-style-type: none;
}
.presentation-list > li {
  padding: 20px 0;
}
.presentation-list > li:first-child {
  padding-top: 0;
}
.presentation-list > li:last-child {
  padding-bottom: 0;
}

.presentation-list--more-space > li {
  padding: 32px 0;
}

.plain-list {
  list-style-type: none;
}
.plain-list > li {
  padding: 2px 0;
  display: block;
}

.plain-list--more-space > li {
  padding: 8px 0;
}
.plain-list--more-space > li:first-child {
  padding-top: 0;
}
.plain-list--more-space > li:last-child {
  padding-bottom: 0;
}

.section-for-light-examples {
  background: #222222;
  padding: 32px 0;
}

.examples-list {
  list-style-type: none;
  padding: 0 0 0 20px;
}
.examples-list > li {
  padding: 20px 0;
}
.examples-list > li:first-child {
  padding-top: 0;
}
.examples-list > li:last-child {
  padding-bottom: 0;
}

.subsections {
  list-style-type: none;
}
.subsections > li {
  padding: 32px 0;
}
.subsections > li:first-child {
  padding-top: 0;
}
.subsections > li:last-child {
  padding-bottom: 0;
}

.subsection {
  padding: 0 0 0 32px;
}

.listing {
  border: 1px solid #4b4b4b;
  background: #f5f5f5;
  padding: 20px 16px;
  white-space: normal;
  overflow-x: auto;
}

.simple-listing {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 0 20px 0;
}

.simple-listing--bounded {
  white-space: normal;
  overflow: visible;
}

.figure__header {
  padding: 0 0 10px 0;
}

.scrollable-section {
  max-height: 320px;
}
.scrollable-section .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #222222;
}

.scrollable-section--unbounded {
  max-height: 100%;
}

.caption-title {
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
}
.caption-title__number {
  font-weight: 700;
  font-style: normal;
}
.caption-title__number:after {
  content: " –";
  margin: 0 4px 0 4px;
  font-weight: 400;
}

.inline-code {
  font-style: italic;
  font-weight: 400;
}

.code {
  font-weight: 400;
  font-family: "Courier New", monospace;
}

.presentation-section__listing {
  padding: 20px 0 0 0;
}

.comparison-section {
  position: relative;
}
@media (min-width: 768px) {
  .comparison-section:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fafafa;
  }
}
.comparison-section__content {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .comparison-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .comparison-row__result {
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.comparison-row__source {
  background: #fafafa;
}
@media (min-width: 768px) {
  .comparison-row__source {
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.row {
  padding: 40px 0 0 0;
}
.row:first-child {
  padding-top: 0;
}
.row:last-child {
  padding-bottom: 0;
}

.row--more-space {
  padding-top: 80px;
}

.descripted-items-section {
  padding: 0 240px 0 0;
}
.descripted-items-section__item {
  position: relative;
}
.descripted-items-section__item-description {
  position: absolute;
  left: 100%;
  text-align: right;
  top: 0;
  width: 240px;
  border-top: 1px dashed #777;
  border-right: 1px dashed #777;
  padding: 8px 12px 0 0;
  font-size: 12px;
  color: #777;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.descripted-items-section__item-description--second {
  top: 40px;
  width: 200px;
}

.article__introduction {
  padding: 0 0 20px 0;
}
.article__row {
  padding: 32px 0 0 0;
}
.article__footer {
  margin: 40px 0 0 0;
}

.color-sample {
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.color-sample--bright {
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.color-sample--bright:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  background: #000;
}

.edge-section {
  position: relative;
  height: 100%;
  padding: 0 0 0 54px;
  background: #fafafa;
}
.edge-section__edge {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FA6900;
  cursor: pointer;
}
.edge-section__edge-inner {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(-90deg) translate3d(-50%, 0, 0);
  -moz-transform: rotate(-90deg) translate3d(-50%, 0, 0);
  transform: rotate(-90deg) translate3d(-50%, 0, 0);
  transform-origin: left top;
}
.edge-section__content {
  padding: 40px;
  max-height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.std-table {
  text-align: left;
  border-collapse: collapse;
}
.std-table__header {
  font-size: 16px;
  font-weight: 700;
}
.std-table__cell {
  padding: 16px 32px;
  vertical-align: top;
  border-bottom: 1px solid #E5E5E5;
  border-collapse: collapse;
  max-width: 400px;
}
.std-table__cell:first-child {
  padding-left: 0;
}
.std-table__cell:last-child {
  padding-right: 0;
}
.std-table__cell--header {
  border-color: #000;
  padding-top: 10px;
  padding-bottom: 10px;
}

.property__name {
  font-weight: 700;
}
.property__type {
  padding: 4px 0 0 0;
  font-style: italic;
}

.parameter__name {
  font-weight: 700;
}
.parameter__type {
  padding: 4px 0 0 0;
  font-style: italic;
}
.parameter__description {
  padding: 4px 0 0 0;
}

.horizontal-menu__core {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
}
.horizontal-menu__core > li {
  padding: 0 12px;
}

.menu-item {
  color: #000;
  text-decoration: none;
}

.std-link {
  color: #444444;
}
.std-link:hover, .std-link:focus {
  color: #000;
}

@media (min-width: 768px) {
  .tiles-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.tiles-list > li {
  padding: 20px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .tiles-list > li {
    width: 33.33%;
  }
}
.tiles-list > li:first-child {
  padding-top: 0;
}
@media (min-width: 768px) {
  .tiles-list > li:nth-child(2), .tiles-list > li:nth-child(3) {
    padding-top: 0;
  }
}
.tiles-list > li:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .tiles-list > li:nth-child(3n+1) {
    padding-right: 2%;
  }
}
@media (min-width: 768px) {
  .tiles-list > li:nth-child(3n+2) {
    padding-left: 1%;
    padding-right: 1%;
  }
}
@media (min-width: 768px) {
  .tiles-list > li:nth-child(3n+3) {
    padding-left: 2%;
  }
}

.simple-ajax-request-container__result {
  padding: 32px 0 0 0;
}

.site-footer__layer {
  background: #000;
  color: #fff;
  padding: 0 20px;
}
@media (min-width: 480px) {
  .site-footer__layer {
    padding: 0 40px;
  }
}
@media (min-width: 1500px) {
  .site-footer__layer {
    padding: 0 100px;
  }
}
@media (min-width: 1700px) {
  .site-footer__layer {
    padding: 0 140px;
  }
}
.site-footer__wrapper {
  padding: 32px 0;
}
@media (min-width: 1100px) {
  .site-footer__wrapper {
    padding: 65px 0 40px 0;
  }
}
/* The Form styles*/
@media (min-width: 992px) {
  .col-10-from-992 {
    width: 83.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-9 {
    width: 75%;
  }
}

@media (min-width: 992px) {
  .col-9-from-992 {
    width: 75%;
  }
}

@media (min-width: 768px) {
  .col-9-from-768 {
    width: 75%;
  }
}

@media (min-width: 768px) {
  .col-8 {
    width: 66.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-8-from-992 {
    width: 66.6666666667%;
  }
}

@media (min-width: 1100px) {
  .col-8-from-1100 {
    width: 66.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-7-from-992 {
    width: 58.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-7 {
    width: 58.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-6-from-992 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-5 {
    width: 40.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-5-from-992 {
    width: 40.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-4 {
    width: 33.3333333333%;
  }
}

@media (min-width: 992px) {
  .col-4-from-992 {
    width: 33.3333333333%;
  }
}

@media (min-width: 1100px) {
  .col-4-from-1100 {
    width: 33.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-3 {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .col-3-from-992 {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-3-from-768 {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-3-desktop {
    width: 33.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-2 {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .col-2-from-992 {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-1 {
    width: 16.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-1-from-992 {
    width: 16.6666666667%;
  }
}

@media (min-width: 768px) {
  .flex-container--from-768 {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1100px) {
  .flex-container {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1500px) {
  .flex-container--to-left {
    margin-left: -100px;
  }
}
@media (min-width: 1700px) {
  .flex-container--to-left {
    margin-left: -25%;
  }
}
.flex-container--space-above {
  margin-top: 126px;
}
.flex-container--small-space-above {
  margin-top: 60px;
}
.flex-container--space-below {
  margin-bottom: 56px;
}
@media (min-width: 1100px) {
  .flex-container--narrow {
    margin-right: 10%;
    margin-left: 10%;
  }
  .flex-container--narrow .col-4-from-992 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .flex-container--narrow .col-4-from-992:first-child {
    margin-left: 0;
  }
  .flex-container--narrow .col-4-from-992:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1100px) {
  .flex-container--stats {
    margin-right: 10%;
    margin-left: 0;
  }
  .flex-container--stats .col-4-from-992 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .flex-container--stats .col-4-from-992:first-child {
    margin-left: 0;
  }
  .flex-container--stats .col-4-from-992:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1500px) {
  .flex-container--stats {
    margin-right: 10%;
    margin-left: 10%;
  }
}
.flex-container--mobile-space-above {
  margin-top: 40px;
}
@media (min-width: 1100px) {
  .flex-container--mobile-space-above {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .flex-container-from-768 {
    display: flex;
    justify-content: space-between;
  }
}

.flex-column {
  box-sizing: border-box;
}
@media (min-width: 1100px) {
  .flex-column {
    padding: 0;
  }
}

.section-title {
  font-family: "Cardinal Photo", sans-serif;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
}
@media (min-width: 650px) {
  .section-title {
    font-size: 86px;
    line-height: 96px;
  }
}
@media (min-width: 1100px) {
  .section-title {
    /* font-size: 145px;
    line-height: 152px; */
    font-size: 123px;
    line-height: 129px;
  }
}
.section-title__letter {
  font-family: "Cardinal Photo", sans-serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 129px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  max-width: fit-content;
  position: relative;
}
@media (min-width: 550px) {
  .section-title__letter {
    font-size: 123px;
  }
}
.section-title__letter:after {
  content: "";
  display: block;
  width: 189px;
  height: 212px;
  background-image: url("/img/decorations/decoration-18.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: -50px;
  left: -55px;
  z-index: -1;
}
.section-title--with-letter {
  display: flex;
  align-items: baseline;
}
.section-title__rows {
  margin-left: 24px;
}
@media (min-width: 650px) {
  .section-title__rows {
    margin-left: 70px;
  }
}
.section-title--light {
  color: #fff;
}
.section-title--light .section-title__row:last-child:after {
  background-color: #fff !important;
}
.section-title--space-below {
  margin-bottom: 31px;
}
.section-title--more-space-below {
  margin-bottom: 62px;
}
.section-title__row {
  max-width: max-content;
  position: relative;
}
.section-title__row--space-left {
  margin-left: 20px;
}
@media (min-width: 1100px) {
  .section-title__row--space-left {
    margin-left: 30px;
  }
}
.section-title__row--more-space-left {
  margin-left: 14px;
}
@media (min-width: 550px) {
  .section-title__row--more-space-left {
    margin-left: 50px;
  }
}
@media (min-width: 1100px) {
  .section-title__row--more-space-left {
    margin-left: 65px;
  }
}
.section-title__row--more-space-left-2 {
  margin-left: 34px;
}
@media (min-width: 550px) {
  .section-title__row--more-space-left-2 {
    margin-left: 80px;
  }
}
@media (min-width: 1100px) {
  .section-title__row--more-space-left-2 {
    margin-left: 110px;
  }
}
.section-title__row--first {
  position: relative;
  margin-left: 30px;
}
@media (min-width: 650px) {
  .section-title__row--first {
    margin-left: 60px;
  }
}
.section-title__row--first:before {
  content: "";
  display: block;
  height: 1px;
  width: 40px;
  background-color: #000;
  position: absolute;
  top: 12px;
  left: -50px;
}
@media (min-width: 650px) {
  .section-title__row--first:before {
    top: 24px;
    width: 98px;
    left: -115px;
  }
}
.section-title__row--uppercase .section-title__row {
  text-transform: uppercase;
}
@media (min-width: 1100px) {
  .section-title .section-title__row {
    white-space: nowrap;
  }
  .section-title--decoration-top-right .mobile-row .section-title__row:first-child:after {
    content: "";
    height: 1px;
    width: 20vw;
    background-color: #000;
    position: absolute;
    top: 46%;
    right: calc(-20vw - 30px);
  }
  .section-title--decoration-top-right-wide .mobile-row .section-title__row:first-child:after {
    content: "";
    height: 1px;
    width: 50vw;
    background-color: #000;
    position: absolute;
    top: 46%;
    right: calc(-50vw - 30px);
  }
  .section-title--decoration-top-left-wide .mobile-row .section-title__row:first-child:after {
    content: "";
    height: 1px;
    width: 50vw;
    background-color: #000;
    position: absolute;
    top: 46%;
    left: calc(-50vw - 30px);
  }
  .section-title--decoration-top-left .mobile-row .section-title__row:first-child:after {
    content: "";
    height: 1px;
    width: 195px;
    background-color: #000;
    position: absolute;
    top: 46%;
    left: -225px;
  }
  .section-title--decoration-bottom-right .mobile-row .section-title__row:last-child:after {
    content: "";
    height: 1px;
    width: 20vw;
    background-color: #000;
    position: absolute;
    top: 46%;
    margin-left: 30px;
  }
  .section-title--decoration-bottom-right-2 .mobile-row .section-title__row:nth-child(2):after {
    content: "";
    height: 1px;
    width: 330px;
    background-color: #000;
    position: absolute;
    top: 46%;
    right: -370px;
  }
  .section-title--decoration-bottom-left .mobile-row .section-title__row:last-child:after {
    content: "";
    height: 1px;
    width: 195px;
    background-color: #000;
    position: absolute;
    top: 46%;
    left: -225px;
  }
  .section-title--decoration-bottom-left-wide .mobile-row .section-title__row:last-child:after {
    content: "";
    height: 1px;
    width: 100vw;
    background-color: #000;
    position: absolute;
    top: 46%;
    left: calc(-100vw - 30px);
  }
  .section-title--decoration-bottom-right-wide .mobile-row .section-title__row:last-child:after {
    content: "";
    height: 1px;
    width: 100vw;
    background-color: #000;
    position: absolute;
    top: 46%;
    right: calc(-100vw - 30px);
  }
}
.section-title--small {
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  max-width: max-content;
}
@media (min-width: 650px) {
  .section-title--small {
    font-size: 60px;
    line-height: 84px;
  }
}
@media (min-width: 1500px) {
  .section-title--small {
    /* font-size: 95px;
    line-height: 100px; */
    font-size: 80px;
    line-height: 90px;
  }
}
.section-title--very-small {
  font-family: "Cardinal Photo", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.05em;
  color: #000;
  text-transform: none;
}
@media (min-width: 650px) {
  .section-title--very-small {
    font-size: 48px;
    line-height: 50px;
  }
}
.section-title--to-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 1100px) {
  .section-title--big {
    font-size: 145px;
    line-height: 152px;
  }
}

.section-pretitle {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: #000;
  font-style: normal;
}
.section-pretitle--space-below {
  margin-bottom: 19px;
}
.section-pretitle--light {
  color: #ADADAD;
}

.text {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 50px;
}
@media (min-width: 1100px) {
  .text {
    margin-bottom: 0;
  }
}
.text--narrow {
  max-width: 220px;
}
.text--wide {
  max-width: 265px;
}
.text--wider {
  max-width: 290px;
}
.text--more-wide {
  max-width: 350px;
}
.text--very-wide {
  max-width: 410px;
}
.text--very-wide-2 {
  max-width: 540px;
}
.text--light {
  color: #fff;
}
.text--space-left {
  margin-left: 20px;
}
@media (min-width: 1100px) {
  .text--space-left {
    margin-left: 32px;
  }
}
.text--more-space-left {
  margin-left: 50px;
  margin-right: 20px;
}
@media (min-width: 1100px) {
  .text--more-space-left {
    margin-left: 65px;
    margin-right: 0;
  }
}
.text--small-space-above {
  padding-top: 8px;
}
.text ul {
  list-style-type: "- ";
}

.site-section {
  position: relative;
  background-color: #fff;
}
.site-section__layer {
  z-index: 2;
}
.site-section__layer--narrow {
  position: relative;
  padding: 0 20%;
}
.site-section__layer--left-space {
  padding: 0 20px;
}
@media (min-width: 420px) {
  .site-section__layer--left-space {
    padding: 0 50px 0 100px;
  }
}
@media (min-width: 1700px) {
  .site-section__layer--left-space {
    padding: 0 10% 0 14%;
  }
}
.site-section--full-height {
  height: 80vh;
}
@media (min-width: 550px) {
  .site-section--full-height {
    height: 100vh;
  }
}
.site-section--mobile-more-height {
  height: 120vh;
}
@media (min-width: 550px) {
  .site-section--mobile-more-height {
    height: 100vh;
  }
}
@media (min-width: 1100px) {
  .site-section--full-height-desktop {
    height: 100vh;
  }
}
@media (min-width: 550px) {
  .site-section--full-height-tablet {
    height: 100vh;
  }
}
.site-section--image-background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.site-section--image-bg-with-points {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* IPHONE SAFARI FIX - TEST */
}
.site-section--center-v {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.site-section--center-h {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-section--center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-section--header-animation {
  overflow: hidden;
}
@media (min-width: 1100px) {
  .site-section__inner--left-space {
    margin-left: 15%;
  }
}
@media (min-width: 1100px) {
  .site-section__inner--small-right-space {
    margin-right: 5%;
  }
}
.site-section--dark-bg {
  background-color: #000;
}

.logo {
  height: 56px;
  width: 120px;
}
.logo--light {
  background: url("/img/logo-light.svg");
}
.logo--dark {
  background: url("/img/logo-dark.svg");
}
.logo--mobile-space-above {
  margin-top: 0;
}
@media (min-width: 550px) {
  .logo--mobile-space-above {
    margin-top: 30px;
  }
}
.logo__top {
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 9;
}
@media (max-width: 550px) {
  .logo__top {
    top: 30px;
  }
}

.main-menu--dark .std-horizontal-menu > li a {
  color: #000;
}
.main-menu--dark .std-horizontal-menu > li a:after {
  background: #000;
}
.main-menu--dark .std-horizontal-menu > li a:hover:after {
  background-color: #000;
}
.main-menu .std-horizontal-menu {
  display: none;
}
@media (min-width: 1100px) {
  .main-menu .std-horizontal-menu {
    display: flex;
  }
}

.std-horizontal-menu {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.std-horizontal-menu > li {
  margin-right: 34px;
}
.std-horizontal-menu > li a {
  color: #fff;
  text-decoration: none;
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 22px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  /*&:after {
    content: '';
    height: 1px;
    width: 100%;
    background-color: transparent;
    display: block;
    @include transition(all .2s ease-in-out);
  }

  &:hover {
    &:after {
      content: '';
      height: 1px;
      width: 100%;
      background-color: $light-color;
      display: block;
    }
  }*/
  display: inline-block;
  position: relative;
}
.std-horizontal-menu > li a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.std-horizontal-menu > li a:hover:after {
  width: 100%;
  left: 0;
}

.site-bar {
  margin: 0 40px;
}
.site-bar__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-bar__wrapper--short {
  max-height: 120px;
}

.languages-switch {
  list-style: none;
  display: flex;
}
.languages-switch > li a {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.languages-switch > li a:before {
  content: "/";
  margin: 0 2px;
}
.languages-switch > li a:after {
  display: none !important;
}
.languages-switch > li:first-child a:before {
  content: "";
}
.languages-switch .active a {
  font-weight: 600;
  line-height: 22px;
}

.rounded-button {
  text-decoration: none;
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 11px !important;
  line-height: 23px;
  color: #000 !important;
  white-space: nowrap;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #F5F5F5;
  box-shadow: 15px 12px 60px rgba(0, 0, 0, 0.03), 12px 9px 30px rgba(0, 0, 0, 0.03), 0px 0px 1px rgba(0, 0, 0, 0.12);
  border-radius: 47px;
  max-width: max-content;
  cursor: pointer;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.rounded-button:hover {
  box-shadow: 15px 12px 60px rgba(0, 0, 0, 0.09), 12px 9px 30px rgba(0, 0, 0, 0.09), 0px 0px 1px rgba(0, 0, 0, 0.12);
  border: 1px solid #000;
}
.rounded-button:hover:after {
  display: none;
}
.rounded-button--dark {
  background: transparent;
  color: #fff !important;
  border: 1px solid #fff;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  box-shadow: none;
}
.rounded-button--dark:hover {
  background: #fff;
  color: #000 !important;
  box-shadow: none;
  border: 1px solid #fff;
}
.rounded-button--space-above {
  margin-top: 56px;
}
.rounded-button--small-space-above {
  margin-top: 45px;
}
.rounded-button--very-small-space-above {
  margin-top: 30px;
}
.rounded-button__icon {
  margin-left: 10px;
}
.rounded-button--mobile-space-above {
  margin-top: 40px;
}
@media (min-width: 1100px) {
  .rounded-button--mobile-space-above {
    margin-top: 0;
  }
}

@media (min-width: 1100px) {
  .menu-toggler {
    display: none;
  }
}

.social-media-container {
  /*position: fixed;
  bottom: 40px;
  left: 40px;*/
  z-index: 10;
}
.social-media {
  list-style: none;
  display: flex;
  flex-direction: row;
}
.social-media > li:first-child {
  margin-right: 15px;
}
.social-media > li:first-child a {
  background-image: url("/img/icons/linkedin.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.social-media > li:last-child a {
  background-image: url("/img/icons/yt.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.social-media--light > li:first-child a {
  background-image: url("/img/icons/linkedin-light.svg");
}
.social-media--light > li:last-child a {
  background-image: url("/img/icons/yt-light.svg");
}
.social-media a {
  display: block;
  height: 32px;
  width: 33px;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.social-media a:hover {
  transform: scale(1.2);
}
@media (min-width: 1700px) {
  .social-media a {
    transform: scale(1.2);
  }
  .social-media a:hover {
    transform: scale(1.4);
  }
}

.video-cover {
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 68%;
  z-index: -1;
  position: relative;
}
@media (min-width: 1100px) {
  .video-cover {
    background-size: cover;
    padding-bottom: 73%;
  }
}

.column-to-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1100px) {
  .column-to-right {
    align-items: center;
    margin-right: 8%;
  }
}
.column-to-right--big {
  margin-right: 2%;
}

.column-to-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 8%;
}

@media (min-width: 1100px) {
  .column-small-space-right {
    margin-right: 30px;
  }
}

.std-picture {
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 65%;
  z-index: 1;
  position: relative;
}
@media (min-width: 1100px) {
  .std-picture {
    z-index: 3;
  }
}
.std-picture--video-cover {
  display: flex;
}
.std-picture--tall {
  padding-bottom: 50%;
  background-position: right;
}
@media (min-width: 550px) {
  .std-picture--tall {
    background-position: left;
    background-size: contain;
    padding-bottom: 70%;
  }
}
@media (min-width: 1100px) {
  .std-picture--tall {
    padding-bottom: 100%;
  }
}
.std-picture--big {
  padding-bottom: 74%;
}

.column-center-v {
  display: block;
}
@media (min-width: 1100px) {
  .column-center-v {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.column-center-h {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .column-center-h {
    align-items: center;
  }
}

.decoration-1 {
  position: absolute;
  left: 0;
  top: 10%;
  background-image: url("/img/decorations/decoration-1.svg");
  background-repeat: no-repeat;
  height: 376px;
  width: 296px;
}

.decoration-2 {
  position: absolute;
  left: 0;
  top: 25%;
  background-image: url("/img/decorations/decoration-2.svg");
  background-repeat: no-repeat;
  height: 356px;
  width: 174px;
}

.decoration-3 {
  position: absolute;
  left: 0;
  top: 50%;
  background-image: url("/img/decorations/decoration-3.svg");
  background-repeat: no-repeat;
  height: 166px;
  width: 115px;
}

.decoration-4 {
  position: absolute;
  right: 5%;
  top: 50%;
  background-image: url("/img/decorations/decoration-4.svg");
  background-repeat: no-repeat;
  height: 328px;
  width: 292px;
}

.decoration-5 {
  position: absolute;
  left: 2%;
  top: 20%;
  background-image: url("/img/decorations/decoration-5.svg");
  background-repeat: no-repeat;
  height: 333px;
  width: 316px;
}

.decoration-6 {
  position: absolute;
  left: 10%;
  top: 35%;
  background-image: url("/img/decorations/decoration-6.svg");
  background-repeat: no-repeat;
  height: 209px;
  width: 187px;
}

.decoration-9 {
  position: absolute;
  right: 2%;
  top: 60%;
  background-image: url("/img/decorations/decoration-9.svg");
  background-repeat: no-repeat;
  height: 244px;
  width: 260px;
}

.decoration-10 {
  position: absolute;
  left: 0;
  top: 30%;
  background-image: url("/img/decorations/decoration-10.svg");
  background-repeat: no-repeat;
  height: 335px;
  width: 148px;
}

.decoration-11 {
  position: absolute;
  right: 0;
  top: 15%;
  background-image: url("/img/decorations/decoration-11.svg");
  background-repeat: no-repeat;
  height: 227px;
  width: 145px;
}

.decoration-12 {
  position: absolute;
  left: 0;
  bottom: 2%;
  background-image: url("/img/decorations/decoration-12.svg");
  background-repeat: no-repeat;
  height: 358px;
  width: 92px;
}

.decoration-13 {
  position: absolute;
  right: 0;
  top: 25%;
  background-image: url("/img/decorations/decoration-13.svg");
  background-repeat: no-repeat;
  height: 335px;
  width: 119px;
}

.decoration-14 {
  position: absolute;
  left: 2%;
  top: 18%;
  background-image: url("/img/decorations/decoration-14.svg");
  background-repeat: no-repeat;
  height: 226px;
  width: 236px;
}
@media (min-width: 1100px) {
  .decoration-14 {
    left: 2%;
    top: 30%;
  }
}

.decoration-15 {
  position: absolute;
  right: -111px;
  bottom: 10%;
  background-image: url("/img/decorations/decoration-15.svg");
  background-repeat: no-repeat;
  height: 329px;
  width: 293px;
}

.decoration-16 {
  position: absolute;
  right: -150px;
  top: 60%;
  background-image: url("/img/decorations/decoration-16.svg");
  background-repeat: no-repeat;
  height: 209px;
  width: 186px;
}

.decoration-17 {
  position: absolute;
  left: 0;
  top: 30%;
  background-image: url("/img/decorations/decoration-17.svg");
  background-repeat: no-repeat;
  height: 335px;
  width: 148px;
}

.decoration-19 {
  position: absolute;
  left: 0;
  top: 30%;
  background-image: url("/img/decorations/decoration-19.svg");
  background-repeat: no-repeat;
  height: 335px;
  width: 148px;
}

.play-button {
  background-image: url("/img/icons/play-light.svg");
  height: 115px;
  width: 115px;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  z-index: 2;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.play-button:hover {
  transform: scale(1.2);
}
.play-button--center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.play-button--center:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.section-header {
  z-index: 2;
  position: relative;
}
.section-header--light .section-title {
  color: #fff;
}
.section-header--light .section-title__row:first-child:after, .section-header--light .section-title__row:last-child:after {
  background-color: #fff;
}

.section-01 {
  overflow: hidden;
}
@media (min-width: 1100px) {
  .section-01 {
    display: block;
  }
}

.std-gallery-container {
  position: relative;
  margin: 0 30px;
}
@media (min-width: 1100px) {
  .std-gallery-container {
    margin: 0;
  }
}

.std-gallery {
  list-style: none;
}
.std-gallery__navigation {
  position: absolute;
  top: calc(50% - 10px);
  background-image: url("/img/icons/gallery-arrow.svg");
  background-repeat: no-repeat;
  height: 21px;
  width: 21px;
  cursor: pointer;
}
.std-gallery__navigation--right {
  right: -30px;
}
@media (min-width: 1100px) {
  .std-gallery__navigation--right {
    right: -20px;
  }
}
.std-gallery__navigation--left {
  left: -30px;
  transform: rotate(180deg);
}
@media (min-width: 1100px) {
  .std-gallery__navigation--left {
    left: -20px;
  }
}
@media (min-width: 768px) {
  .std-gallery .owl-item {
    transform: scale(0.8) !important;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .std-gallery .center {
    transform: scale(1) !important;
  }
}

.site-section--top-gradient {
  position: relative;
}
.site-section--top-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #445970 7.09%, rgba(68, 89, 112, 0) 21.01%);
  mix-blend-mode: multiply;
  opacity: 0.4;
}

@media (min-width: 1100px) {
  .column-border-right {
    border-right: 1px solid #fff;
  }
}

.site-footer {
  z-index: 101;
  position: relative;
}
.site-footer__menu {
  list-style: none;
  margin-bottom: 10px;
}
@media (min-width: 1100px) {
  .site-footer__menu {
    margin-bottom: 0;
  }
}
.site-footer__menu > li {
  margin-bottom: 10px;
}
@media (min-width: 1100px) {
  .site-footer__menu > li {
    margin-bottom: 30px;
  }
}
.site-footer__menu > li:last-child {
  margin-bottom: 0;
}
.site-footer__menu > li a {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /*&:hover {
    border-bottom: 1px solid $light-color;
  }*/
  display: inline-block;
  position: relative;
}
.site-footer__menu > li a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.site-footer__menu > li a:hover:after {
  width: 100%;
  left: 0;
}
.site-footer__informations {
  margin-top: 70px;
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #fff;
}
.site-footer__informations-section {
  list-style: none;
  margin-bottom: 26px;
}
.site-footer__informations-section a {
  text-decoration: none;
  color: #fff;
}
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}
@media (min-width: 1100px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.site-footer__bottom-menu {
  list-style: none;
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .site-footer__bottom-menu {
    flex-direction: row;
  }
}
.site-footer__bottom-menu a, .site-footer__bottom-menu .site-footer__link {
  list-style: none;
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.site-footer__bottom-menu a:hover, .site-footer__bottom-menu .site-footer__link:hover {
  color: #ADADAD;
}
.site-footer__bottom-menu > li {
  margin-bottom: 30px;
}
@media (min-width: 1100px) {
  .site-footer__bottom-menu > li {
    margin-right: 70px;
    margin-bottom: 0;
  }
  .site-footer__bottom-menu > li:last-child {
    margin-right: 0;
  }
}
.site-footer__copyrights {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #fff;
}
.site-footer__copyrights a {
  width: 160px;
  height: 39px;
  display: block;
}
.site-footer__copyrights img {
  margin-left: 12px;
}

.statistic-item {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  border-bottom: 1px solid #000;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-right: 20px;
  padding-bottom: 6px;
}
@media (min-width: 1100px) {
  .statistic-item {
    margin-right: 0;
  }
}
.statistic-item__number {
  font-family: "Cardinal Photo", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 53px;
  letter-spacing: 0.1em;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.statistic-item__number--info {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #000;
  margin-right: 10px;
}
.statistic-item__description {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: #000;
  /*max-width: 100px;
  text-align: right;*/
}
@media (min-width: 550px) {
  .statistic-item__description {
    font-size: 13px;
    line-height: 22px;
    /*min-width: fit-content;
    text-align: inherit;*/
  }
}
@media (min-width: 1500px) {
  .statistic-item__description {
    font-size: 14px;
  }
}

.bg-points__point {
  display: block;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
  animation: point_pulse 2s infinite;
  /*&--1 {
    top: 50%;
    left: 50%;

    @media (min-width: $desktop-s) {
      top: 50%;
      left: 50%;
    }
  }

  &--2 {
    top: 20%;
    left: 55%;

    @media (min-width: $desktop-s) {
      top: 20%;
      left: calc(50% + 100px);
    }
  }

  &--3 {
    top: 60%;
    left: 60%;

    @media (min-width: $desktop-s) {
      top: 60%;
      left: calc(50% + 280px);
    }
  }*/
}
.bg-points__point:hover {
  animation: none;
  transform: scale(4);
  background-image: url("/img/icons/eye.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 5px;
}

@keyframes point_pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
.section-03-3 .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.materials {
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 60%;
  margin-bottom: 40px;
  background-position: center;
}
@media (min-width: 1100px) {
  .materials {
    padding-bottom: 100%;
    margin-bottom: 0;
    background-position: left;
  }
}

.section-10 {
  overflow: hidden;
}
.section-10 .decoration-3, .section-10 .decoration-2, .section-10 .decoration-11 {
  display: none;
}
@media (min-width: 550px) {
  .section-10 .decoration-3, .section-10 .decoration-2, .section-10 .decoration-11 {
    display: block;
  }
}

.address-box {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  padding: 32px 48px;
  width: max-content;
  position: absolute;
  bottom: 94px;
  right: 0;
  left: 0;
  box-shadow: 15px 12px 60px rgba(0, 0, 0, 0.03), 12px 9px 30px rgba(0, 0, 0, 0.1), 0px 0px 1px rgba(0, 0, 0, 0.19);
  text-decoration: none;
  transform: scale(1);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  /*background-size: cover;
  background-position: center;
  background-image: url("/img/decorations/decoration-5.svg");
  background-repeat: no-repeat;
  height: 230px;
  width: 218px;
  align-items: center;
  justify-content: center;
  padding: 24px;*/
}
@media (min-width: 550px) {
  .address-box {
    right: 56px;
    left: auto;
  }
}
.address-box:hover {
  transform: scale(1.1);
}
.address-box__pin {
  margin-right: 34px;
}
.address-box__address {
  list-style: none;
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #000;
  text-decoration: none;
}

.map-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  align-items: center;
}
@media (min-width: 550px) {
  .map-menu {
    flex-direction: row;
  }
}
@media (min-width: 1100px) {
  .map-menu {
    flex-direction: column;
    margin-bottom: 0;
    align-items: flex-start;
    width: 100%;
  }
}
.map-menu__item {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #ADADAD;
  margin-bottom: 16px;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid transparent;
  max-width: 50%;
  padding-bottom: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 550px) {
  .map-menu__item {
    margin-right: 30px;
  }
  .map-menu__item:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1100px) {
  .map-menu__item {
    margin-bottom: 30px;
    margin-right: 0;
    min-width: 50%;
  }
}
@media (min-width: 1100px) {
  .map-menu__item:last-child {
    margin-bottom: 0;
  }
}
.map-menu__item .map-submenu {
  display: none;
  opacity: 0;
}
.map-menu__item .map-submenu > li {
  margin-bottom: 4px;
  cursor: default;
  /*&:hover {
    .map-submenu__title {
      color: #000000;
    }

    .map-submenu__description {
      color: #484848;
    }
  }

  &.active {
    .map-submenu__title {
      color: #000000;
    }

    .map-submenu__description {
      color: #484848;
    }
  }*/
}
.map-menu__item .map-submenu__title {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.05em;
  color: #ADADAD;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.map-menu__item .map-submenu__description {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #ADADAD;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.map-menu__item.active {
  color: #000;
}
.map-menu__item.active span {
  border-bottom: 1px solid #000;
  padding-bottom: 6px;
  margin-bottom: 15px;
  display: block;
}
.map-menu__item.active .map-submenu {
  display: block;
  opacity: 1;
}
.map-menu__item.active .map-menu__sumbenu {
  opacity: 1;
  display: flex;
}
.map-menu__item.active .map-menu__sumbenu > li {
  border-bottom: 1px solid #000;
}
.map-menu__sumbenu {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #ADADAD;
  list-style: none;
  flex-direction: column;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: max-content;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
  display: none;
}
@media (min-width: 1100px) {
  .map-menu__sumbenu {
    min-width: 285px;
  }
}
.map-menu__sumbenu > li {
  margin-bottom: 20px;
  border-bottom: 1px solid transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.map-menu__sumbenu > li:hover {
  color: #000;
}
.map-menu__sumbenu > li span:last-child {
  margin-left: 5px;
}

.map-submenu {
  list-style: none;
  margin-left: 16px;
}

.section-15 {
  overflow: hidden;
}
@media (min-width: 1100px) {
  .section-15 .site-section__layer {
    padding: 0 10%;
  }
}

.section-16 {
  background-color: #F5F5F5;
  padding: 40px 0;
}
@media (min-width: 1100px) {
  .section-16 {
    padding: 0;
  }
}

.std-title {
  font-family: "Cardinal Photo", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
}
.std-title--small {
  font-size: 28px;
  margin-bottom: 20px;
}
@media (min-width: 1100px) {
  .std-title--small {
    margin-bottom: 0;
  }
}

.tile-gallery {
  list-style: none;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.tile-gallery a {
  text-decoration: none;
  position: relative;
  display: block;
  height: 148px;
  width: 224px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  background-size: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
}
.tile-gallery__description {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
.tile-gallery__navigation {
  position: absolute;
  top: calc(50% - 10px);
  background-image: url("/img/icons/gallery-arrow.svg");
  background-repeat: no-repeat;
  height: 21px;
  width: 21px;
  cursor: pointer;
}
.tile-gallery__navigation--right {
  right: -36px;
}
.tile-gallery__navigation--left {
  left: -36px;
  transform: rotate(180deg);
}
.tile-gallery__navigation--right-mobile {
  right: 0;
  z-index: 99;
}
@media (min-width: 550px) {
  .tile-gallery__navigation--right-mobile {
    display: none;
  }
}
.tile-gallery__navigation--left-mobile {
  left: 0;
  transform: rotate(180deg);
  z-index: 99;
}
@media (min-width: 550px) {
  .tile-gallery__navigation--left-mobile {
    display: none;
  }
}
.tile-gallery__item {
  display: flex;
  justify-content: center;
}
.tile-gallery .owl-item:hover a {
  background-size: 110%;
}

.tile-gallery-container {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1100px) {
  .tile-gallery-container {
    overflow: unset;
    max-width: 100%;
  }
}
/* form inputs */
.form-field {
  display: block;
  width: 100%;
}
.form-field__wrapper {
  position: relative;
  display: block;
}
.form-field__inner {
  position: relative;
}
.form-field__decoration {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.form-field__header {
  padding: 0 0 5px 0;
  text-align: left;
  white-space: nowrap;
  font-size: 14px;
}
@media (min-width: 420px) {
  .form-field__header {
    padding: 0 0 8px 0;
  }
}
@media (min-width: 768px) {
  .form-field__header {
    text-align: left;
  }
}
@media (min-width: 1700px) {
  .form-field__header {
    font-size: 16px;
  }
}
.form-field__title {
  color: #000;
  position: relative;
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.form-field__core {
  display: block;
  padding: 8px 8px;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  border: 1px solid #000;
  background: none;
  color: #000;
  position: relative;
  font-size: 14px;
  text-align: left;
  z-index: 5;
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  outline: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
@media (min-width: 1700px) {
  .form-field__core {
    font-size: 16px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.form-field__core:focus {
  border-color: #000;
}
.form-field__core--code {
  font-family: "Courier New", monospace;
}
.form-field__core::-webkit-input-placeholder, .form-field__core:-moz-placeholder, .form-field__core::-moz-placeholder, .form-field__core:-ms-input-placeholder {
  color: #000;
  opacity: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .form-field__core::-webkit-input-placeholder, .form-field__core:-moz-placeholder, .form-field__core::-moz-placeholder, .form-field__core:-ms-input-placeholder {
    text-align: left;
  }
}
.form-field__field-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-field__suffix {
  padding: 0 0 0 12px;
}
.form-field.error .form-field__title {
  color: #DB2B39;
}
.form-field.error .form-field__core {
  border-color: #DB2B39;
}
.form-field--space-below {
  margin-bottom: 22px;
}

.form-field--underline .form-field__header {
  padding: 0 0 2px 0;
}
@media (min-width: 380px) {
  .form-field--underline .form-field__header {
    padding: 0 0 5px 0;
  }
}
.form-field--underline .form-field__core {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.form-field--horizontal .form-field__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-field--horizontal .form-field__header {
  padding: 0 12px 0 0;
}
.form-field--horizontal .form-field__field-container {
  width: 100%;
}

/* choise fields */
.choice-field {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}
@media (min-width: 1700px) {
  .choice-field {
    width: 18px;
    height: 18px;
  }
}
.choice-field__core {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  opacity: 0;
}
.choice-field__field {
  border: 1px solid #000;
  padding: 2px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.choice-field__field:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 1700px) {
  .choice-field__field:before {
    width: 12px;
    height: 12px;
  }
}
.choice-field__core:checked ~ .choice-field__field {
  border-color: #000;
}
.choice-field__core:checked ~ .choice-field__field:before {
  background: #000;
}
.choice-field.choice-field--radio .choice-field__field {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.choice-field.choice-field--radio .choice-field__field:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.choice-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.choice-item__field {
  padding: 2px 0 0 0;
}
.choice-item__description {
  padding: 0 0 0 12px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1700px) {
  .choice-item__description {
    font-size: 16px;
    line-height: 22px;
    padding-left: 16px;
  }
}

.choice-list {
  list-style-type: none;
}
.choice-list > li {
  padding: 4px 0;
}
.choice-list > li:first-child {
  padding-top: 0;
}
.choice-list > li:last-child {
  padding-bottom: 0;
}

#contact-form .flex-container:first-child .col-4-from-992 {
  margin: 0 27px;
}
#contact-form .flex-container:first-child .col-4-from-992 {
  margin-bottom: 20px;
}
@media (min-width: 1100px) {
  #contact-form .flex-container:first-child .col-4-from-992 {
    margin-bottom: 0;
  }
}

.column-space-left {
  margin-left: 40px;
}

.form-fields__inline {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .form-fields__inline {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.choice-item__description--narrow {
  max-width: 380px;
  text-align: justify;
}
.choice-item__description a {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 13px;
  letter-spacing: 0.1em;
  color: #ADADAD;
  text-transform: uppercase;
}

.std-horizontal-slider .owl-item {
  display: flex;
  justify-content: center;
}

.mobile-space-below {
  margin-bottom: 20px;
}
@media (min-width: 1100px) {
  .mobile-space-below {
    margin-bottom: 0;
  }
}

/* custom cursor */
#mouse-circle {
  opacity: 0;
}
@media (min-width: 992px) {
  #mouse-circle {
    position: absolute;
    width: 56px;
    height: 56px;
    margin: -28px 0px 0px -28px;
    pointer-events: none !important;
    z-index: 9999;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #mouse-circle:after {
    content: "";
    width: 56px;
    height: 56px;
    display: block;
    background-image: url("/img/icons/next.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.mouse-circle-slide:after {
  background-image: url("/img/icons/next.svg") !important;
}

.mouse-circle-play:after {
  background-image: url("/img/icons/play.svg") !important;
}

.mouse-circle-first {
  transform: rotate(0deg) !important;
}

.mouse-circle-last {
  transform: rotate(180deg) !important;
}

.cursor-hover-play {
  cursor: pointer;
  z-index: 1;
}

.mouse-circle-touch {
  transform: rotate(0deg) !important;
}
.mouse-circle-touch:after {
  background-image: url("/img/icons/touch.svg") !important;
}

.form-field--date {
  position: relative;
}
.form-field--date:after {
  content: "";
  display: block;
  height: 26px;
  width: 29px;
  background-image: url("/img/icons/calendar.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
.form-field--date .form-field__core {
  padding-left: 55px;
}
.form-field--hours {
  position: relative;
}
.form-field--hours:after {
  content: "";
  display: block;
  height: 27px;
  width: 27px;
  background-image: url("/img/icons/clock.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
.form-field--hours .form-field__core {
  padding-left: 55px;
}
.form-field__core--arrow {
  background: url("/img/icons/arrow.svg");
  background-repeat: no-repeat;
  background-position: right 14px;
}

.column-map {
  position: relative;
  height: 60vh;
  overflow: auto;
}
@media (min-width: 1100px) {
  .column-map {
    height: 100%;
  }
}
.column-map .map-bg {
  width: 1060px;
}
@media (min-width: 550px) {
  .column-map .map-bg {
    width: auto;
  }
}
@media (min-width: 1100px) {
  .column-map .map-bg {
    padding-bottom: 72%;
  }
}

.section-map {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 1100px) {
  .column-space-both {
    padding: 40px 0;
  }
}

.video iframe {
  width: 100vw;
  height: 100vh;
}

.icon-plus--big {
  width: 26px;
  height: 26px;
}
.icon-plus--narrow:after {
  width: 1px;
}
.icon-plus--narrow:before {
  height: 1px;
}

.overlayer-section-container {
  width: 100vw;
}
.overlayer-section-container .decoration-2, .overlayer-section-container .decoration-3 {
  z-index: 0;
}

.overlayer-section {
  margin: 0 6%;
  z-index: 2;
  position: relative;
}
@media (min-width: 1100px) {
  .overlayer-section {
    margin: 0 12%;
  }
}
.overlayer-section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 6px;
  min-width: max-content;
  margin-bottom: 1%;
}
@media (min-width: 1100px) {
  .overlayer-section__header {
    min-width: 495px;
  }
}
.overlayer-section__title {
  font-family: "Cardinal Photo", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 53px;
  letter-spacing: 0.1em;
  color: #000;
}
.overlayer-section__description {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #000;
}
.overlayer-section__description span:first-child {
  margin-right: 16px;
}
@media (min-width: 1100px) {
  .overlayer-section__description span:first-child {
    margin-right: 32px;
  }
}
.overlayer-section__content {
  margin-left: 10%;
}
.overlayer-section__content--to-left {
  margin-left: 0;
}
.overlayer-section__content--fullscreen {
  height: 100vh;
  margin: 0 !important;
}
.overlayer-section__content--fullscreen .overlayer-section__picture {
  background-repeat: no-repeat;
  padding-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100vh;
  width: 100vw;
}
@media (min-width: 1100px) {
  .overlayer-section__content--fullscreen .overlayer-section__picture {
    background-size: cover;
  }
}
.overlayer-section__picture {
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 40%;
  position: relative;
  background-position: center;
}
@media (min-width: 1700px) {
  .overlayer-section__picture {
    padding-bottom: 35%;
  }
}
.overlayer-section--full-screen {
  height: 100vh;
  margin: 0 !important;
}
.overlayer-section--full-screen .overlayer-section__header {
  margin: 0 !important;
  padding: 0 !important;
}

.overlayer .owl-carousel {
  z-index: 3;
}

.section-slider__bottom-menu-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 550px) {
  .section-slider__bottom-menu-container {
    padding-bottom: 10px;
    background-color: white;
  }
}
@media (min-width: 1100px) {
  .section-slider__bottom-menu-container {
    padding-bottom: 0;
    background-color: transparent;
    width: auto;
    display: block;
    position: absolute;
    bottom: 35px;
    left: 50px;
    z-index: 2;
  }
}

.section-slider__bottom-menu {
  display: flex;
  flex-direction: row;
  list-style: none;
  background-color: #ffffff;
  padding-bottom: 15px;
  padding-top: 15px;
  overflow: scroll;
  align-items: center;
}
@media (min-width: 550px) {
  .section-slider__bottom-menu {
    justify-content: center;
    padding-bottom: 0;
    padding-top: 0;
    justify-content: flex-start;
    overflow: unset;
  }
}
@media (min-width: 1100px) {
  .section-slider__bottom-menu {
    background-color: transparent;
  }
}
.section-slider__bottom-menu > li {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #ADADAD;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  margin-right: 7px;
  margin-left: 7px;
}
@media (min-width: 550px) {
  .section-slider__bottom-menu > li {
    margin-right: 46px;
  }
}
.section-slider__bottom-menu > li:hover {
  color: #4b4b4b;
  border-bottom: 1px solid #BFBFBF;
}
.section-slider__bottom-menu > li:first-child:before {
  display: none !important;
}
@media (min-width: 550px) {
  .section-slider__bottom-menu > li:last-child {
    margin-right: 0;
  }
}
.section-slider__bottom-menu > li.active {
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 550px) {
  .section-slider__bottom-menu > li.active {
    border-bottom: 1px solid #BFBFBF;
  }
}
@media (min-width: 1100px) {
  .section-slider__bottom-menu > li.active {
    padding-right: 400px;
  }
}
.section-slider__bottom-menu > li.active:after {
  content: "";
  background-image: url("/img/icons/arrow-right-small.svg");
  transform: rotate(180deg);
  background-repeat: no-repeat;
  background-position: center;
  height: 28px;
  width: 16px;
  display: inline-block;
  margin-left: 10px;
}
@media (min-width: 550px) {
  .section-slider__bottom-menu > li.active:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 198px;
    height: 4px;
    background: #000;
    margin-left: 0;
  }
}
.section-slider__bottom-menu > li.active:before {
  content: "";
  background-image: url("/img/icons/arrow-right-small.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 28px;
  width: 16px;
  display: inline-block;
  margin-right: 10px;
  display: none;
}
@media (min-width: 550px) {
  .section-slider__bottom-menu > li.active:before {
    display: none;
  }
}
.section-slider__bottom-menu > li.active:hover {
  color: #000;
}

.section-slider-container {
  position: relative;
}

.animation-overlayer {
  background: #f4f6f9;
  /*background-image: url('/img/animation-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;*/
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 0;
  -webkit-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
@media (min-width: 1100px) {
  .animation-overlayer {
    display: flex;
    overflow: hidden;
  }
}
.animation-overlayer .site-section {
  background-color: transparent;
}
.animation-overlayer--hide {
  top: -200vh;
}
.animation-overlayer__background-video {
  /* position: absolute;
  right: -50%;
  bottom: 0;
  min-width: 100%;
  min-height: 100%; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  display: block;
}
.slide-menu__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slide-menu__menu {
  list-style: none;
}
.slide-menu__menu > li {
  margin-bottom: 16px;
}
.slide-menu__menu > li:last-child {
  margin-bottom: 0;
}
.slide-menu__menu > li a {
  text-decoration: none;
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 50px;
  text-transform: uppercase;
  color: #000;
}

.mobile-center {
  align-items: center;
}
@media (min-width: 1100px) {
  .mobile-center {
    align-items: unset;
  }
}

.js-tilt {
  transform-style: preserve-3d;
  z-index: 2;
}
.js-tilt--deep {
  transform: translateZ(-20px);
}
.js-tilt--high {
  transform: translateZ(20px);
}

.section-02 {
  overflow: hidden;
}

.section-00 {
  overflow: hidden;
}

/*.sticky {
  @media (min-width: $desktop-s) {
    position: sticky;
    top: 0;
  }
}*/
.zoom-panel {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.zoom-panel__item:first-child {
  margin-bottom: 10px;
}

.icon-wrapper {
  padding: 4px;
  background-color: #000;
  cursor: pointer;
}

.animate__animated.animate__fadeIn {
  --animate-duration: 4s;
}

.contact-form-button {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .contact-form-button {
    flex-direction: row;
  }
}

#skip-intro {
  position: absolute;
  bottom: 15%;
  cursor: pointer;
  z-index: 2;
}

@media (min-width: 1100px) {
  .body-overflow-hidden {
    overflow: hidden;
  }
}

#loader {
  height: 160px;
  width: 160px;
  display: block;
  border-radius: 50%;
  background-color: #fff;
  cursor: progress;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  animation: pulse-white 2s infinite;
  z-index: 2;
}

@keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
#intro-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 1100px) {
  canvas {
    padding-left: 20vw;
  }
}

.liquid-button-container {
  text-decoration: none !important;
  font-family: "Neue Haas Grotesk Display Pro", serif !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  line-height: 23px;
  color: #000 !important;
  white-space: nowrap;
  line-height: 22px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
}
.liquid-button-container:after {
  display: none !important;
}
.liquid-button-container--to-left {
  margin-left: -50px;
}
.liquid-button-container--to-right {
  margin-right: -50px;
}
.liquid-button-container--right-side {
  display: flex;
  justify-content: flex-end;
}

.liquid-button {
  position: relative;
}

.liquid-button path {
  cursor: pointer;
}

.ajax-overlayer-button--center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 1100px) {
  .site-section--header-animation .site-section__layer, .section-00 .site-section__layer {
    margin-top: 7%;
  }
}

.odometer-formatting-mark {
  opacity: 0;
}

.odometer-value {
  font-family: "Cardinal Photo", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 60px;
  letter-spacing: 0.1em;
  color: #000;
}
@media (min-width: 550px) {
  .odometer-value {
    font-size: 40px;
    line-height: 53px;
  }
}

.odometer-inside {
  margin-bottom: -2px;
}

.section-06 .site-section__layer--only-left {
  padding: 0 0 0 20px;
}
@media (min-width: 420px) {
  .section-06 .site-section__layer--only-left {
    padding: 0 90px;
  }
}
@media (min-width: 1100px) {
  .section-06 .site-section__layer--only-left {
    padding: 0 0 0 90px;
  }
}
@media (min-width: 1700px) {
  .section-06 .site-section__layer--only-left {
    padding: 0 0 0 10%;
  }
}

.failure {
  color: #DB2B39;
}

.success {
  color: #090;
}

.overlayer-section-container__title {
  margin-bottom: 50px;
}
.overlayer-section-container__content p {
  margin-bottom: 30px;
}

.second-header {
  position: absolute;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
}
@media (min-width: 550px) {
  .second-header {
    left: 50px;
    right: 50px;
  }
}
@media (min-width: 1100px) {
  .second-header {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}

.mouse-circle-left {
  transform: rotate(180deg);
}

#site-header__bar {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.site-header__bar--active {
  background-color: #fff;
}

.std-overlayer__close {
  z-index: 9999;
}

.bg-points__tooltip {
  height: 264px;
  width: 253px;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 10%;
  top: calc(50% - 132px);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
@media (min-width: 550px) {
  .bg-points__tooltip {
    z-index: 1;
  }
}

.bg-points__tooltip-title {
  font-family: "Cardinal Photo", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 53px;
  letter-spacing: 0.1em;
  color: #000;
  padding-bottom: 24px;
  border-bottom: 1px solid #000;
  margin-bottom: 24px;
  max-width: min-content;
}

.bg-points__tooltip-description {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #000;
}

#desktop-menu-toggle {
  display: none;
}
@media (min-width: 1100px) {
  #desktop-menu-toggle {
    display: block;
    margin-right: -50px;
    margin-left: -90px;
  }
}

.desktop-menu-toggle {
  display: none;
}
@media (min-width: 1100px) {
  .desktop-menu-toggle {
    display: block;
  }
}

#site-header__bar .std-horizontal-menu {
  right: -300%;
  position: relative;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

#site-header__bar .std-horizontal-menu--active {
  right: 0;
}

#site-header__bar .logo {
  right: -200vw;
  position: relative;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

#site-header__bar .logo--active {
  right: 0;
  margin-top: 0;
}

.map-bg {
  padding-bottom: 73%;
  background-repeat: no-repeat;
  padding-bottom: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 550px) {
  .map-bg {
    padding-bottom: 50vh;
  }
}
@media (min-width: 1100px) {
  .map-bg {
    padding-bottom: 100vh;
    background-size: contain;
    background-position: center right;
  }
}

@media (min-width: 1100px) {
  .section-12 {
    overflow: hidden;
    height: auto;
  }
  .section-12 .column-center-v {
    position: relative;
  }
  .section-12 .site-section__wrapper {
    padding: 0;
  }
  .section-12 .site-section__layer {
    padding: 0 0 0 50px;
  }
}

.liquid-button {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.map-menu-info__button {
  display: none;
}
@media (min-width: 1100px) {
  .map-menu-info__button {
    font-family: "Cardinal Photo", sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 31px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    user-select: none;
    position: absolute;
    bottom: -35px;
    display: flex;
    flex-direction: row;
    align-items: center;
    left: 30px;
    right: 0;
  }
}
.map-menu-info__button--active .liquid-button {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transform: rotate(180deg);
}
.map-menu-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  align-items: center;
  left: -200vw;
}
@media (min-width: 1100px) {
  .map-menu-info__list {
    position: absolute;
    bottom: 0;
    flex-direction: row;
    padding: 30px 58px;
    align-items: left;
  }
}
.map-menu-info__list--active {
  left: 0;
}
.map-menu-info__list > li {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.05em;
  color: #000;
  display: flex;
  align-items: center;
  margin-right: 39px;
  margin-bottom: 20px;
}
@media (min-width: 1100px) {
  .map-menu-info__list > li {
    margin-bottom: 0;
  }
}
.map-menu-info__icon {
  margin-right: 12px;
}

@media (min-width: 550px) {
  .column-center-h-tablet {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1100px) {
  .column-center-h-tablet {
    align-items: flex-start;
  }
}

.desktop-menu-close {
  position: absolute;
  right: 40px;
}

.desktop-menu-hide {
  opacity: 0;
  z-index: -1;
}

.ajax-overlayer-button--slider {
  max-width: fit-content;
}

.site-footer__informations-logo {
  margin: 20px 0 40px 0;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 50%;
  max-width: 140px;
}
@media (min-width: 1100px) {
  .site-footer__informations-logo {
    padding-bottom: 20%;
    max-width: 110px;
  }
}

.text--list ul {
  list-style-type: none;
}
@media (min-width: 550px) {
  .text--list ul {
    padding-right: 20%;
  }
}
.text--list ul > li {
  position: relative;
  margin-bottom: 16px;
  margin-left: 20px;
}
.text--list ul > li:last-child {
  margin-bottom: 0;
}
.text--list ul > li:before {
  content: "";
  background-color: #D3E9F9;
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: -23px;
}

[data-letter=G]:after {
  left: -25px;
}

.disabled-pointer-events {
  pointer-events: none;
}

.animation-overlayer-navigation {
  position: absolute;
  top: 0;
  width: 8%;
  height: 90%;
  margin-bottom: 10%;
}
.animation-overlayer-navigation--prev {
  left: 0;
}
.animation-overlayer-navigation--next {
  right: 0;
}

.section-09 .text {
  margin-bottom: 16px;
}
@media (max-width: 550px) {
  .section-09 {
    justify-content: flex-start;
  }
}

.only-desktop {
  display: none;
}
@media (min-width: 1100px) {
  .only-desktop {
    display: block;
  }
}

@media (max-width: 1100px) {
  .site-footer .col-5, .site-footer .col-7, .site-footer .col-5-from-992, .site-footer .col-7-from-992 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .site-footer .site-footer__informations, .site-footer .site-footer__menu, .site-footer .site-footer__bottom-menu > li {
    text-align: center;
  }
  .site-footer .site-footer__informations-logo {
    background-position: center;
  }
  .site-footer .social-media, .site-footer .site-footer__copyrights {
    justify-content: center;
  }
}

.loader-overlayer {
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 99999999999;
  overflow-y: scroll;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: rgb(255, 255, 255);
}
.loader-overlayer__content {
  margin-bottom: 50vh;
  font-size: 18px;
}

.loader-active {
  overflow: hidden;
}

@media (min-width: 550px) {
  .section-slider .site-section--full-height {
    min-height: 100vh;
    height: auto;
  }
}

.certificates-container {
  position: relative;
}

.certificates-arrow {
  position: absolute;
  top: calc(50% - 10px);
  background-repeat: no-repeat;
  background-image: url("/img/icons/gallery-arrow.svg");
  height: 21px;
  width: 21px;
  cursor: pointer;
  z-index: 99;
}
@media (min-width: 550px) {
  .certificates-arrow {
    display: none;
  }
}
.certificates-arrow--right {
  right: 0;
}
.certificates-arrow--left {
  left: 0;
  transform: rotate(180deg);
}

.certificates {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 550px) {
  .certificates {
    flex-direction: row;
    align-items: flex-start;
    max-width: max-content;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16%;
  }
}
@media (min-width: 1100px) {
  .certificates {
    margin-right: 10%;
    margin-top: 0;
  }
}

.certificate {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 190px;
  min-width: 190px;
  text-align: center;
  margin: 0 30px 30px 0;
}
@media (min-width: 550px) {
  .certificate {
    margin: 0 30px 15px 0;
  }
}
@media (min-width: 1500px) {
  .certificate {
    /*margin: 0 100px 60px 0;
    max-width: 200px;
    min-width: 166px;*/
    max-width: 224px;
  }
}
.certificate__logo {
  height: 104px;
  width: max-content !important;
  margin-bottom: 32px;
}
.certificate__titel {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 8px;
}
.certificate__titel--space-below {
  padding-bottom: 26px;
}
.certificate__description {
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #000;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  opacity: 1;
}
@media (min-width: 550px) {
  .certificate__description {
    opacity: 0;
  }
}
.certificate:hover .certificate__description, .certificate:active .certificate__description {
  opacity: 1;
}

.section-09 .std-picture--tall {
  display: none;
}
@media (min-width: 550px) {
  .section-09 .std-picture--tall {
    display: block;
  }
}

@media (max-width: 550px) {
  .section-14 .site-section__layer--only-left {
    padding: 0 20px;
  }
}

@media (max-width: 550px) {
  .section-10 .site-section__wrapper {
    padding: 70px 0;
  }
}

@media (max-width: 550px) {
  .flex-container--mobile-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .flex-container--mobile-reverse .std-picture {
    margin-bottom: 50px;
  }
}

@media (max-width: 550px) {
  .mobile-row {
    display: flex;
  }
}

.mobile-languages-switch {
  text-decoration: none;
  font-family: "Neue Haas Grotesk Display Pro", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 50px;
  text-transform: uppercase;
  color: #000;
  list-style: none;
  display: flex;
  flex-direction: row;
  margin-top: 40px;
}
.mobile-languages-switch a {
  text-decoration: none;
  color: #000;
  padding: 10px;
}
.mobile-languages-switch .active {
  font-weight: 600;
}
.mobile-languages-switch--pl {
  margin-right: 20px;
}

/* LOADER */
.gooey {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 142px;
  height: 40px;
  margin: -20px 0 0 -71px;
  background: #fff;
  filter: contrast(20);
}

.gooey .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  filter: blur(4px);
  background: #000;
  border-radius: 50%;
  transform: translateX(0);
  animation: dot 2.8s infinite;
}

.gooey .dots {
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  animation: dots 2.8s infinite;
}

.gooey .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  filter: blur(4px);
  background: #000;
  border-radius: 50%;
}

@-moz-keyframes dot {
  50% {
    transform: translateX(96px);
  }
}
@-webkit-keyframes dot {
  50% {
    transform: translateX(96px);
  }
}
@-o-keyframes dot {
  50% {
    transform: translateX(96px);
  }
}
@keyframes dot {
  50% {
    transform: translateX(96px);
  }
}
@-moz-keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}
@-webkit-keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}
@-o-keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}
@keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}
/* LOADER END */
.overlayer__content .section-slider__bottom-menu-container {
  margin-top: 80px;
  z-index: 2;
  position: relative;
  background: transparent;
}
@media (min-width: 550px) {
  .overlayer__content .section-slider__bottom-menu-container {
    margin-top: 40px;
  }
}
@media (min-width: 1100px) {
  .overlayer__content .section-slider__bottom-menu-container {
    margin-top: 60px;
  }
}

.form__info-wrapper {
  margin-left: 26px;
}

.section-05 {
  justify-content: flex-start;
}
@media (min-width: 550px) {
  .section-05 {
    justify-content: center;
  }
}

.section-11 {
  background-position: bottom;
}

.logo-lincoln {
  display: block;
  height: 21px;
  width: 127px;
  background-image: url("/img/logo-lincoln-3.svg");
  background-repeat: no-repeat;
  position: absolute;
  bottom: 40px;
  right: 36px;
  z-index: 9;
}

@media (min-width: 550px) {
  .overlayer-section-slider .overlayer-section {
    margin: 0 0 0 6%;
  }
}

.overlayer-section__content {
  position: relative;
}
@media (min-width: 550px) {
  .overlayer-section__content--picture {
    max-height: 66vh;
  }
}

.overlayer-section__text-block {
  background-color: #fff;
  padding: 20px;
  width: 230px;
  box-shadow: 15px 12px 60px rgba(0, 0, 0, 0.03), 8px 9px 30px rgba(0, 0, 0, 0.08), 0px 0px 1px rgba(0, 0, 0, 0.19);
  margin-top: 40px;
  font-weight: 300;
  line-height: 30px;
}
@media (min-width: 550px) {
  .overlayer-section__text-block {
    position: relative;
    right: 0;
    margin-right: 4%;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 130px;
  }
}
@media (min-width: 1100px) {
  .overlayer-section__text-block {
    width: 280px;
    position: absolute;
    right: 0;
    margin-right: 4%;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }
}

.overlayer-section__picture--small {
  padding-bottom: 49%;
}
@media (min-width: 550px) {
  .overlayer-section__picture--small {
    padding-bottom: 40%;
    background-position: left;
  }
}

.overlayer-section__title--fullscreen {
  position: absolute;
  top: 20%;
  left: 6%;
  z-index: 2;
  color: #fff;
}

.form-button {
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 69%;
  position: absolute;
  bottom: 30px;
  left: 18%;
}
@media (min-width: 550px) {
  .form-button {
    height: 50vh;
    position: relative;
    padding-bottom: 0;
  }
}

#iframe-container {
  display: block;
  height: 200px;
}
@media (min-width: 550px) {
  #iframe-container {
    position: relative;
    width: auto;
    height: auto;
  }
}
#iframe-container iframe {
  overflow: hidden;
  height: 70vh;
  width: 100%;
  border: 0;
}

.hide {
  display: none;
}

.autoplay-video {
  height: 100%;
  width: 100%;
  display: block;
}

.autoplay-video--full {
  position: absolute;
  top: 0;
  height: auto;
  width: 100vw;
}

.column-vertical-center {
  display: flex;
  justify-content: center;
  height: 100%;
}

.site-section__layer--center {
  z-index: 2;
  position: relative;
  height: 100%;
}

.site-section--video-background {
  overflow: hidden;
}
