/*  Helpers
  =============================== */
.clearfix {
  display: inline-block;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.bg-primary {
  background-color: #044973;
}
.bg-primary-light {
  background-color: #26b8d7;
}
.bg-accent {
  background-color: #ff4081;
}
.bg-grey-xlight {
  background-color: #ddd;
}
.z-depth-2 {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.z-depth-1 {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.z-depth-0 {
  box-shadow: 0 1px 1px rgba(0,0,0,0.06), 0 1px 1px rgba(0,0,0,0.12);
}
.link-block {
  display: block;
}
.title-case {
  text-transform: capitalize;
}
.lower-case {
  text-transform: lowercase;
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.center-align {
  text-align: center;
}
/*  Components
  =============================== */
.button {
  position: relative;
  height: 34px;
  padding: 0 12px;
  border: none;
  line-height: 34px;
  outline: none;
  cursor: pointer;
}
.button[disabled],
.button[disabled]:hover,
.button[disabled]:before {
  background: $disabled-color;
  box-shadow: none;
  opacity: 0.5;
  color: $grey-light;
  cursor: default;
}
.button.is-loading[disabled]:before {
  opacity: 1;
}
.button--primary:not(:disabled) {
  background-color: #044973;
  color: #fff;
}
.button--primary:not(:disabled).hover-effect:after {
  background-color: #044973;
  filter: brightness(1.15);
}
.button--primary-light:not(:disabled) {
  background-color: #26b8d7;
  color: #fff;
}
.button--primary-light:not(:disabled).hover-effect:after {
  background-color: #209cb7;
}
.button--accent:not(:disabled) {
  background-color: #ff4081;
  color: #fff;
}
.button--accent:not(:disabled).hover-effect:after {
  background-color: #ff4081;
  filter: brightness(0.85);
}
.button--flat:not(:disabled) {
  border: 1px solid #ddd;
}
.button--flat:not(:disabled).hover-effect:after {
  background-color: #ddd;
}
.button--outlined:not(:disabled) {
  background: transparent;
  border: 1px solid currentColor;
  color: currentColor;
}
.button--outlined:not(:disabled).hover-effect:after {
  background-color: transparent;
}
.button--outlined:not(:disabled).hover-effect:not(.is-loading):not(:disabled):after {
  background-color: currentColor;
}
.button--outlined:not(:disabled).hover-effect:not(.is-loading):not(:disabled):hover:after,
.button--outlined:not(:disabled).hover-effect:not(.is-loading):not(:disabled).active:after {
  opacity: 0.15;
}
.cookie-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.25);
}
.cookie-bar__window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: auto;
  background-color: #fff;
  font-size: 14px;
}
@media screen and (min-width: 420px) {
  .cookie-bar__window {
    max-width: calc(100% - 24px);
    height: 340px;
  }
}
.cookie-bar__window__header {
  padding: 12px 18px;
  background-color: #044973;
  font-weight: 700;
  color: #fff;
}
.cookie-bar__window__body {
  padding: 12px 24px;
  color: #333;
}
.cookie-bar__window__body__info__title {
  margin: inherit;
  text-align: inherit;
  font-size: inherit;
  margin-bottom: 6px;
  font-weight: 700;
}
.cookie-bar__window__body__info__read-more {
  margin-top: 12px;
}
.cookie-bar__window__body__info__read-more__url {
  text-decoration: underline;
}
body:has(.cookie-bar:not(.cookie-bar--hidden)) {
  overflow: hidden;
}
.cookie-form {
  margin-top: 12px;
}
.cookie-form__input-group {
  margin-bottom: 12px;
}
.cookie-form__input-group__title {
  font-weight: 700;
  margin: inherit;
  text-align: inherit;
  font-size: inherit;
}
.cookie-form__input-group__cookie-toggle__label-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.cookie-form__buttons {
  float: right;
  margin: 18px 0;
}
.cookie-form__buttons__button {
  border-radius: 24px;
}
.cookie-form__buttons__button:first-child {
  margin-right: 12px;
  border: none;
  background: none;
  font-size: 13px;
  color: #777;
  text-decoration: underline;
}
.cookie-form__buttons__button:first-child:hover {
  color: #044973;
}
.toggle {
  display: flex;
  margin: 12px 0;
  cursor: pointer;
  user-select: none;
}
.toggle__input {
  position: relative;
  display: inline-block;
  width: 2.5em;
  min-width: 2.5em;
  height: 1.4em;
  background-color: #ddd;
  border-radius: 3em;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.toggle__input:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 3em;
  background-color: #26b8d7;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.toggle__input:after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  background-color: #044973;
  box-shadow: 0 0 0.25em rgba(0,0,0,0.3);
  transform: scale(0.8);
  transition: transform 0.2s ease-in-out;
}
.toggle__input:checked:before {
  opacity: 1;
}
.toggle__input:checked:after {
  transform: scale(0.8) translateX(1.4em);
}
.toggle__label {
  margin-left: 0.75em;
  text-align: left;
}

/*  Helpers
  =============================== */
.clearfix {
  display: inline-block;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.bg-primary {
  background-color: #044973;
}
.bg-primary-light {
  background-color: #26b8d7;
}
.bg-accent {
  background-color: #ff4081;
}
.bg-grey-xlight {
  background-color: #ddd;
}
.z-depth-2,
.nazka-nav-menu__sidebar,
.nazka-jobs-list__item:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.z-depth-1,
.nazka-btn,
.nazka-page-footer__content__contact,
.nazka-person-cards__card:hover .nazka-person-cards__card__more,
.article-images__frame__slides__slide__expand-cta:before,
.nazka-press-articles__slider__frame__slides__item__content__image-wrapper,
.nazka-press-articles__slider__frame__slides__item__content__image-wrapper__expand-cta:before,
.nazka-press-assets__visuals__item__image-wrapper__expand-cta:before,
.nazka-contact-block__content-row.nazka-contact-block__content-row--address {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.z-depth-0 {
  box-shadow: 0 1px 1px rgba(0,0,0,0.06), 0 1px 1px rgba(0,0,0,0.12);
}
.link-block {
  display: block;
}
.title-case {
  text-transform: capitalize;
}
.lower-case {
  text-transform: lowercase;
}
.ellipsis,
.nazka-article-body__input-details,
.nazka-blog-body__input-details {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.center-align {
  text-align: center;
}
@-moz-keyframes rotate-forever {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate-forever {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes rotate-forever {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-forever {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, -3px, 0);
  }
}
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, -3px, 0);
  }
}
@-o-keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, -3px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, -3px, 0);
  }
}
@-moz-keyframes bounce-with-delay {
  from, 4%, 10.6%, 16%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  8%, 8.6% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20px, 0);
  }
  14% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -10px, 0);
  }
  18% {
    transform: translate3d(0, -3px, 0);
  }
  18.1% {
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes bounce-with-delay {
  from, 4%, 10.6%, 16%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  8%, 8.6% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20px, 0);
  }
  14% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -10px, 0);
  }
  18% {
    transform: translate3d(0, -3px, 0);
  }
  18.1% {
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes bounce-with-delay {
  from, 4%, 10.6%, 16%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  8%, 8.6% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20px, 0);
  }
  14% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -10px, 0);
  }
  18% {
    transform: translate3d(0, -3px, 0);
  }
  18.1% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounce-with-delay {
  from, 4%, 10.6%, 16%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  8%, 8.6% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20px, 0);
  }
  14% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -10px, 0);
  }
  18% {
    transform: translate3d(0, -3px, 0);
  }
  18.1% {
    transform: translate3d(0, 0, 0);
  }
}
/*  General
  =============================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  color: #333;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 16px;
  line-height: 1.428571429;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #044973;
  text-decoration: none;
  transition: color 0.2s ease;
}
h2 {
  margin-top: 40px;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
.nazka-contrast-wrapper > h2:first-child {
  margin-top: 0;
  padding-top: 80px;
}
.container {
  max-width: 1140px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}
.container--small {
  max-width: 960px;
}
.container--wide {
  max-width: 1580px;
}
@media screen and (min-height: 640px) and (min-width: 992px) {
  .nazka-content-stretch {
    min-height: calc(100vh - 640px);
  }
}
@media screen and (min-height: 740px) and (min-width: 1366px) {
  .nazka-content-stretch {
    min-height: calc(100vh - 740px);
  }
}
.nazka-content-stretch-no-header {
  min-height: calc(100vh - 366px);
  margin-top: 56px;
}
.nazka-contrast-wrapper {
  background: #f8f8f8;
  overflow-x: clip;
}
/*  Vendor
  =============================== */
.vanilla-modal.modal-visible {
  overflow: hidden;
}
.vanilla-modal .modal-hider {
  display: none;
}
[data-modal-close] {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}
/*  Components
  =============================== */
.nazka-app-bar {
  position: fixed;
  top: 0;
  z-index: 1000;
  transform: translateZ(0);
  width: 100%;
  height: 56px;
  line-height: 56px;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nazka-app-bar:not(.transparent) {
  background: rgba(4,73,115,0.95);
}
.nazka-app-bar.transparent {
  background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transition: background 0.3s ease;
}
.nazka-app-bar.transparent.z-depth-1 {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #ddd;
}
.nazka-app-bar__container {
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 15px;
  line-height: 56px;
}
@media screen and (min-width: 1200px) {
  .nazka-app-bar__container {
    width: 1140px;
    margin: auto;
  }
}
.nazka-app-bar__container__logo {
  margin-top: 12px;
  width: 80px;
  outline: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .hide-logo .nazka-app-bar__container__logo {
    visibility: hidden;
  }
}
@media screen and (min-width: 768px) {
  .transparent-logo .nazka-app-bar__container__logo {
    opacity: 1;
  }
}
.nazka-app-bar__container__logo > .nazka-app-bar__container__logo__dark,
.nazka-app-bar__container__logo > .nazka-app-bar__container__logo__light {
  width: 80px;
  height: 29.11px;
}
.nazka-app-bar__container__logo > .nazka-app-bar__container__logo__light {
  display: none;
}
.font-light:not(.z-depth-1) .nazka-app-bar__container__logo > .nazka-app-bar__container__logo__dark {
  display: none;
}
.font-light:not(.z-depth-1) .nazka-app-bar__container__logo > .nazka-app-bar__container__logo__light {
  display: inline-block;
}
.nazka-app-bar__container__nav-menu-wrapper {
  min-width: 62px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .nazka-app-bar__container__nav-menu-wrapper {
    min-width: 0;
  }
}
.nazka-page-header {
  position: relative;
  background-color: #f8f8f8;
  overflow: hidden;
  isolation: isolate;
}
.nazka-page-header .container {
  height: 100%;
}
.nazka-page-header .container .nazka-page-header__content {
  height: 100%;
}
.nazka-page-header__particles {
  position: absolute;
  height: 100%;
  width: 100%;
}
.nazka-page-header__content {
  position: relative;
  z-index: 2;
  justify-content: space-between;
  flex-direction: column;
  display: flex;
  padding: 80px 0 60px 0;
}
@media screen and (min-width: 768px) {
  .nazka-page-header__content {
    flex-direction: row;
    align-items: stretch;
  }
}
.nazka-page-header__content__text {
  flex-direction: column;
  justify-content: center;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .nazka-page-header__content__text {
    width: 80%;
  }
}
.nazka-page-header__content__text h1 {
  font-size: 36px;
  font-weight: 900;
}
.nazka-page-header__content__text p {
  margin-top: 24px;
  font-size: 24px;
}
p .nazka-page-header__content__text p {
  margin-top: 12px;
}
.nazka-page-header__attribution,
.nazka-video-block__attribution {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: inline-block;
  padding: 0 6px;
  background-color: rgba(255,255,255,0.1);
  font-size: 10px;
  line-height: 20px;
}
.nazka-alert-box {
  position: relative;
  display: inline-block;
  width: 36px;
  margin-right: 12px;
  padding-left: 12px;
}
.nazka-alert-box:before {
  position: absolute;
  right: 2px;
  top: 14px;
  transform: scale(0);
  z-index: 1;
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #333;
  border-radius: 50%;
  background: #dc3545;
  content: "";
  transition: transform 0.3s ease;
}
.nazka-alert-box:after {
  position: absolute;
  right: 6px;
  top: 18px;
  transform: scale(0);
  z-index: 1;
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transition: transform 0.3s ease;
}
.nazka-alert-box.active:before,
.nazka-alert-box.active:after {
  transform: scale(1);
}
.nazka-alert-box__icon {
  position: relative;
  top: 7px;
  height: 28px;
}
.nazka-alert-box__icon--light {
  display: none;
}
.nazka-app-bar.font-light:not(.z-depth-1) .nazka-alert-box__icon {
  display: none;
}
.nazka-app-bar.font-light:not(.z-depth-1) .nazka-alert-box__icon--light {
  display: inline-block;
}
.nazka-alert-box__notification {
  position: absolute;
  top: 7px;
  right: calc(100% + 12px);
  z-index: 1;
  display: block;
  max-width: 300px;
  padding: 0 12px;
  background: #fff;
  color: #333;
  font-weight: 700;
  line-height: 42px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, right 0.3s ease;
}
.nazka-alert-box:hover .nazka-alert-box__notification {
  right: 100%;
  pointer-events: auto;
  opacity: 1;
}
.nazka-locale-picker {
  display: inline-block;
  margin-right: 24px;
  font-size: 0;
  white-space: nowrap;
}
.nazka-locale-picker > a,
.nazka-locale-picker > span {
  position: relative;
  padding: 0 6px;
  font-size: 16px;
  transition: color 0.3s ease;
}
.nazka-locale-picker > a:not(:first-child):before,
.nazka-locale-picker > span:not(:first-child):before {
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: 12px;
  width: 1px;
  background-color: rgba(255,255,255,0.6);
  content: "";
  transition: background-color 0.3s ease;
}
.nazka-locale-picker > a {
  color: #fff;
}
.nazka-locale-picker > span {
  color: #fff;
  font-weight: 700;
}
.nazka-app-bar:not(.font-light) .nazka-locale-picker > a,
.nazka-app-bar.font-light.z-depth-1 .nazka-locale-picker > a,
.nazka-app-bar:not(.font-light) .nazka-locale-picker > span,
.nazka-app-bar.font-light.z-depth-1 .nazka-locale-picker > span {
  color: #333;
}
.nazka-app-bar:not(.font-light) .nazka-locale-picker > a:before,
.nazka-app-bar.font-light.z-depth-1 .nazka-locale-picker > a:before,
.nazka-app-bar:not(.font-light) .nazka-locale-picker > span:before,
.nazka-app-bar.font-light.z-depth-1 .nazka-locale-picker > span:before {
  background-color: #333;
}
.nazka-nav-menu {
  position: relative;
  z-index: 1000;
  display: inline-block;
}
.nazka-nav-menu.open {
  position: fixed;
  top: 0;
  right: 15px;
}
@media screen and (min-width: 768px) {
  .nazka-nav-menu.open {
    position: relative;
    right: 0;
  }
}
.nazka-nav-menu__toggle {
  position: relative;
  z-index: 1001;
  height: 24px;
  cursor: pointer;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .nazka-nav-menu__toggle {
    display: none;
  }
}
.nazka-nav-menu__toggle__label {
  display: inline-block;
  margin-right: 6px;
  color: #fff;
  line-height: 24px;
  transition: color 0.3s ease;
}
.nazka-app-bar:not(.font-light) .nazka-nav-menu__toggle__label,
.nazka-app-bar.font-light.z-depth-1 .nazka-nav-menu__toggle__label {
  color: #333;
}
.open .nazka-nav-menu__toggle__label {
  display: none;
}
.nazka-nav-menu__toggle__icon {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 22px;
  height: 14px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
.nazka-nav-menu__toggle__icon > span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 6px;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.nazka-nav-menu__toggle__icon > span:nth-child(1) {
  top: 0;
}
.nazka-nav-menu__toggle__icon > span:nth-child(2) {
  top: 6px;
}
.nazka-nav-menu__toggle__icon > span:nth-child(3) {
  top: 12px;
}
.nazka-app-bar:not(.font-light) .nazka-nav-menu__toggle__icon > span,
.nazka-app-bar.font-light.z-depth-1 .nazka-nav-menu__toggle__icon > span {
  background: #222;
}
.open .nazka-nav-menu__toggle__icon > span {
  top: 0;
  background: #222;
}
.open .nazka-nav-menu__toggle__icon > span:nth-child(1) {
  transform: translateY(6px) rotate(135deg);
}
.open .nazka-nav-menu__toggle__icon > span:nth-child(2) {
  opacity: 0;
  transform: translateY(6px) rotate(-135deg);
}
.open .nazka-nav-menu__toggle__icon > span:nth-child(3) {
  transform: translateY(6px) rotate(-135deg);
}
.nazka-nav-menu__sidebar {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  padding: 80px 0 10px;
  background: #fff;
  transform: translateX(105%) translateZ(0);
  transition: transform 0.3s ease;
}
@media screen and (max-height: 640px) {
  .nazka-nav-menu__sidebar {
    padding-top: 40px;
  }
}
@media screen and (min-width: 480px) {
  .nazka-nav-menu__sidebar {
    width: 280px;
  }
}
@media screen and (min-width: 768px) {
  .nazka-nav-menu__sidebar {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: translateX(0) translateZ(0);
  }
}
.open .nazka-nav-menu__sidebar {
  transform: translateX(0) translateZ(0);
}
.nazka-nav-menu__sidebar > ul {
  flex: 0 0 auto;
  list-style: none;
}
.nazka-nav-menu__sidebar__nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 0 0 30px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .nazka-nav-menu__sidebar__nav-list {
    flex-direction: row;
    gap: 6px;
  }
}
.nazka-nav-menu__sidebar__nav-list__item__button {
  display: inline-block;
  padding: 6px 12px;
  color: #333;
  font-size: 22px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-bottom-color 0.25s ease;
}
.nazka-nav-menu__sidebar__nav-list__item__button:hover {
  border-bottom-color: #044973;
}
.nazka-nav-menu__sidebar__nav-list__item__button.active {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .nazka-nav-menu__sidebar__nav-list__item__button {
    font-size: 16px;
  }
}
.nazka-nav-menu__sidebar__nav-list__item__button {
  display: inline-block;
  padding: 6px 12px;
  color: #333;
  font-size: 22px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-bottom-color 0.25s ease;
}
.nazka-nav-menu__sidebar__nav-list__item__button:hover {
  border-bottom-color: #044973;
}
.nazka-nav-menu__sidebar__nav-list__item__button.active {
  font-weight: 700;
  border-bottom-color: #044973;
}
@media screen and (min-width: 768px) {
  .nazka-nav-menu__sidebar__nav-list__item__button {
    font-size: 16px;
  }
}
.nazka-nav-menu__sidebar__nav-list__item__button--contact {
  background: #26b8d7;
  color: #fff;
  border-radius: 6px;
  margin-top: 6px;
  border-bottom: none;
  transition: background 0.25s ease;
}
.nazka-nav-menu__sidebar__nav-list__item__button--contact:hover {
  background: #24829d;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .nazka-nav-menu__sidebar__nav-list__item__button--contact {
    height: 34px;
    margin: 0 0 0 12px;
    padding: 0 20px;
    line-height: 34px;
  }
}
.nazka-nav-menu__sidebar__nav-list__item__alert {
  position: absolute;
  top: 9px;
  right: -13px;
  display: block;
  width: 12px;
  height: 12px;
  background: #ff4081;
  border-radius: 50%;
}
.nazka-nav-menu__sidebar__nav-list__item__alert span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  transform: translate(-50%, -50%);
}
.nazka-nav-menu__sidebar__meta {
  margin-top: 48px;
  padding: 0 15px;
  line-height: 1.428571429;
}
@media screen and (max-height: 640px) {
  .nazka-nav-menu__sidebar__meta {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .nazka-nav-menu__sidebar__meta {
    display: none;
  }
}
.nazka-nav-menu__sidebar__meta__address {
  text-align: right;
}
.nazka-nav-menu__sidebar__meta__address a {
  display: block;
  color: inherit;
}
.nazka-nav-menu__sidebar__meta__address a:hover {
  color: #26b8d7;
}
.nazka-btn {
  display: inline-block;
  height: 41px;
  padding: 0 15px;
  border: none;
  background: transparent;
  font-size: 20px;
  color: #26b8d7;
  line-height: 41px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}
.nazka-btn:hover {
  background: #f7f7f7;
}
.nazka-btn.nazka-btn--small {
  height: 26px;
  font-size: 14px;
  line-height: 26px;
}
.nazka-btn.nazka-btn--accent {
  background: #ff4081;
  color: #fff;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.nazka-btn.nazka-btn--accent:hover {
  background: #ff206c;
}
.nazka-btn.nazka-btn--primary {
  background: #26b8d7;
  color: #fff;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.nazka-btn.nazka-btn--primary:hover {
  background: #044267;
}
.nazka-btn.nazka-btn--flat {
  color: #333;
  background: #f7f7f7;
  box-shadow: none;
}
.nazka-btn.nazka-btn--flat:hover {
  background: #f0f0f0;
}
.nazka-page-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding-top: 48px;
  z-index: 500;
  color: #fff;
  font-weight: 400;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  overflow: hidden;
  overflow: clip;
}
.nazka-page-footer:after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 133px;
  right: 0;
  height: 100%;
  width: 150%;
  transform-origin: center top;
  transform: rotate(-2deg);
  background: #044973;
}
.nazka-page-footer > * {
  z-index: 1;
}
.nazka-page-footer__content {
  display: grid;
  grid-template-columns: 200px repeat(5, 1fr);
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-auto-flow: column;
  justify-items: center;
  padding-bottom: 20px;
}
.nazka-page-footer__content :nth-child(1) {
  grid-area: 1/1/3/2;
}
.nazka-page-footer__content :nth-child(2) {
  grid-area: 1/2/3/4;
}
.nazka-page-footer__content :nth-child(3) {
  grid-area: 2/4/2/5;
}
.nazka-page-footer__content :nth-child(4) {
  grid-area: 2/5/2/6;
}
.nazka-page-footer__content :nth-child(5) {
  grid-area: 2/6/2/7;
}
@media screen and (max-width: 991px) {
  .nazka-page-footer__content {
    grid-template-columns: 200px repeat(2, 1fr);
  }
  .nazka-page-footer__content :nth-child(1) {
    grid-area: 1/1/3/2;
  }
  .nazka-page-footer__content :nth-child(2) {
    grid-area: 1/2/3/4;
  }
  .nazka-page-footer__content :nth-child(3) {
    grid-area: 3/1/3/2;
  }
  .nazka-page-footer__content :nth-child(4) {
    grid-area: 3/2/3/3;
  }
  .nazka-page-footer__content :nth-child(5) {
    grid-area: 3/3/3/4;
  }
  .nazka-page-footer__content .nazka-page-footer__content__generic {
    margin-top: 48px;
  }
  .nazka-page-footer__content .nazka-page-footer__content__newsletter {
    min-width: inherit;
  }
}
@media screen and (max-width: 625px) {
  .nazka-page-footer__content {
    grid-template-columns: repeat(3, 1fr);
  }
  .nazka-page-footer__content :nth-child(1) {
    grid-area: 1/1/3/4;
  }
  .nazka-page-footer__content :nth-child(2) {
    grid-area: 3/1/4/4;
  }
  .nazka-page-footer__content :nth-child(3) {
    grid-area: 4/1/5/2;
  }
  .nazka-page-footer__content :nth-child(4) {
    grid-area: 4/2/5/3;
  }
  .nazka-page-footer__content :nth-child(5) {
    grid-area: 4/3/5/4;
  }
  .nazka-page-footer__content .nazka-page-footer__content__contact {
    max-width: 250px;
  }
  .nazka-page-footer__content .nazka-page-footer__content__newsletter {
    margin: auto;
  }
  .nazka-page-footer__content .nazka-page-footer__content__newsletter__title {
    color: #fff;
    height: auto;
  }
}
.nazka-page-footer__content__contact__title,
.nazka-page-footer__content__generic__title,
.nazka-page-footer__content__newsletter__title {
  display: inline-block;
  margin-bottom: 6px;
  color: #fff;
  user-select: none;
  pointer-events: none;
  font-weight: 700;
  text-transform: uppercase;
}
.nazka-page-footer__content__contact {
  background: #fff;
  width: 100%;
  border-radius: 2px;
}
.nazka-page-footer__content__contact > a {
  display: block;
  margin-top: 20px;
}
.nazka-page-footer__content__contact .nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col {
  display: flex;
  flex-direction: column;
  font-size: 17px;
}
.nazka-page-footer__content__contact .nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col:first-child {
  margin-bottom: 6px;
  font-size: 18px;
}
.nazka-page-footer__content__contact .nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col > span,
.nazka-page-footer__content__contact .nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col > a,
.nazka-page-footer__content__contact .nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col > span > a {
  color: #044973;
  display: contents;
}
.nazka-page-footer__content__contact .nazka-page-footer__content__contact__logo {
  position: relative;
  height: 60px;
  width: 60px;
  margin: 12px auto;
  background-color: #26b8d7;
  border-radius: 50%;
}
.nazka-page-footer__content__contact .nazka-page-footer__content__contact__logo > img {
  position: absolute;
  top: 52.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  height: 65%;
  margin: auto;
}
.nazka-page-footer__content__contact__cols {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 18px;
}
.nazka-page-footer__content__contact__cols > a {
  display: contents;
}
.nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col > span,
.nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col > a {
  color: #fff;
}
.nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col > span > a {
  color: #fff;
}
.nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col small {
  font-size: 12px;
}
.nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col--social {
  display: flex;
  flex-direction: row !important;
  justify-content: space-between;
  width: 80px;
  margin: 6px 0 18px;
}
.nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col--social > a > img {
  float: left;
  position: relative;
  top: 5px;
  height: 18px;
}
.nazka-page-footer__content__contact__cols .nazka-page-footer__content__contact__cols__col .nazka-page-footer__content__contact__cols__col__span {
  white-space: nowrap;
  display: block !important;
}
.nazka-page-footer__content__generic__items > span,
.nazka-page-footer__content__generic__items > a {
  display: block;
}
.nazka-page-footer__content__generic__items > span {
  color: #fff;
}
.nazka-page-footer__content__generic__items > a {
  color: inherit;
}
.nazka-page-footer__content__generic__items--address > a {
  margin-top: 20px;
  color: #26b8d7;
}
.nazka-page-footer__content__newsletter {
  min-width: 350px;
  margin: 0 24px;
  color: #fff;
}
.nazka-page-footer__content__newsletter__content__intro {
  font-size: 18px;
}
.nazka-page-footer__content__newsletter__content__error {
  display: none;
  padding: 5px;
  width: fit-content;
  background-color: rgba(255,0,0,0.4);
}
.nazka-page-footer__content__newsletter__title {
  height: 100px;
  padding-top: 24px;
  color: #044973;
  font-size: 24px;
  font-weight: 700;
  text-transform: none;
}
.nazka-page-footer__content__newsletter__content__form-wrapper__form {
  margin: 12px 0 6px 0;
}
.nazka-page-footer__content__newsletter__content__form-wrapper__form > label {
  font-weight: 700;
}
.nazka-page-footer__content__newsletter__content__form-wrapper__form > input[type="email"] {
  display: block;
  width: 100%;
  margin: 24px 0;
  padding: 6px 12px;
  background: #fff;
  border-radius: 160px;
  border: none;
  font-family: 'Open Sans Condensed', sans-serif;
  color: #044973;
  font-size: 16px;
  outline: none;
}
.nazka-page-footer__content__newsletter__content__form-wrapper__form > input[type="email"]::placeholder {
  color: #044973;
  font-weight: 400;
}
.nazka-page-footer__content__newsletter__content__form-wrapper__form.subscribed {
  display: none;
}
.nazka-page-footer__content__newsletter__content__form-wrapper__form button[type="submit"] {
  position: relative;
  min-width: fit-content;
  padding: 6px 24px;
  background: #fff;
  border: 1px solid #333;
  border-radius: 6px;
  color: #333;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  overflow: hidden;
}
.nazka-page-footer__content__newsletter__content__form-wrapper__form button[type="submit"][disabled] {
  background: #ededed;
  box-shadow: none;
  pointer-events: none;
  opacity: 0.7;
}
.nazka-page-footer__content__newsletter__content__form-wrapper__form button[type="submit"]:hover {
  background: #26b8d7;
  color: #fff;
}
.nazka-page-footer__content__newsletter__content__form__wrap-wrapper__checkbox {
  font-size: 0;
  user-select: none;
}
.nazka-page-footer__content__newsletter__content__form__wrap-wrapper__checkbox > input {
  display: none;
}
.nazka-page-footer__content__newsletter__content__form__wrap-wrapper__checkbox > input:checked + label:after {
  transform: scale(1);
}
.nazka-page-footer__content__newsletter__content__form__wrap-wrapper__checkbox > label {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
}
.nazka-page-footer__content__newsletter__content__form__wrap-wrapper__checkbox > label > a {
  color: #26b8d7;
  text-decoration: underline;
}
.nazka-page-footer__content__newsletter__content__form__wrap-wrapper__checkbox > label:before,
.nazka-page-footer__content__newsletter__content__form__wrap-wrapper__checkbox > label:after {
  position: absolute;
  display: block;
  content: "";
}
.nazka-page-footer__content__newsletter__content__form__wrap-wrapper__checkbox > label:before {
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
}
.nazka-page-footer__content__newsletter__content__form__wrap-wrapper__checkbox > label:after {
  top: 4px;
  left: 4px;
  transform: scale(0);
  display: block;
  width: 8px;
  height: 8px;
  background: #fff;
  transition: transform 0.3s ease;
}
.nazka-page-footer__content__newsletter__content__form__wrap {
  margin-top: 18px;
  gap: 18px;
  display: flex;
}
.nazka-page-footer__content__newsletter__content__form-wrapper__feedback {
  display: none;
  margin-top: 36px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .nazka-page-footer__content__newsletter__content__form-wrapper__feedback {
    margin-top: 24px;
  }
}
.nazka-page-footer__content__newsletter__content__form-wrapper__form.subscribed ~ .nazka-page-footer__content__newsletter__content__form-wrapper__feedback {
  display: block;
}
.nazka-page-footer__content__newsletter__legal {
  display: flex;
  line-height: 34px;
  justify-content: center;
  align-items: center;
  padding-top: 18px;
  font-size: 16px;
}
.nazka-page-footer__content__newsletter__legal a {
  display: inline-block;
  margin-left: 12px;
  color: #26b8d7;
  line-height: 34px;
}
.nazka-page-footer__content__newsletter__legal a + a {
  position: relative;
  margin-left: 6px;
  padding-left: 7px;
}
.nazka-page-footer__content__newsletter__legal a + a:before {
  position: absolute;
  left: 0;
  top: 53%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 1px;
  height: 11px;
  background: #26b8d7;
  content: "";
}
@media screen and (max-width: 480px) {
  .nazka-page-footer__content__newsletter__legal {
    flex-direction: column;
  }
}
.nazka-cta-banner {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  color: #555;
  text-align: center;
  overflow-x: clip;
}
.nazka-cta-banner:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 150%;
  top: 0;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%) rotate(-2deg);
  background: #fff;
}
.nazka-cta-banner__wrapper {
  position: relative;
  z-index: 1;
}
.nazka-cta-banner__icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 130px;
  margin-right: 40px;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
.nazka-cta-banner__text {
  max-width: 700px;
  margin: auto;
  font-size: 35px;
  text-align: left;
}
.nazka-cta-banner__btn-wrapper {
  margin-top: 40px;
  text-align: left;
}
.nazka-cta-banner__btn-wrapper .nazka-btn {
  border-radius: 6px;
  font-size: 17px;
  background-color: #26b8d7;
}
.nazka-cta-banner__btn-wrapper .nazka-btn:hover {
  background-color: #1e93ac;
}
.nazka-spinner {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  display: none;
  width: 100%;
  height: 100%;
  background: #fff;
}
.nazka-spinner--primary {
  background: #044973;
}
.nazka-spinner--primary .nazka-spinner__circle {
  border-color: #fff;
  border-right-color: #044973;
}
.nazka-spinner--accent {
  background: #ff4081;
}
.nazka-spinner--accent .nazka-spinner__circle {
  border-color: #fff;
  border-right-color: #ff4081;
}
.loading .nazka-spinner {
  display: block;
}
.nazka-spinner__circle {
  position: absolute;
  top: 50%;
  left: calc(50% - 5.333333333333333px);
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: -8px 0 -8px;
  border: 2px solid #044973;
  border-right-color: transparent;
  border-radius: 50%;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: rotate-forever;
  animation-timing-function: linear;
}
.nazka-spinner__circle--lg {
  left: calc(50% - 10.666666666666666px);
  width: 32px;
  height: 32px;
  margin: -8px 0 -16px;
}
.attributes-list {
  display: flex;
  flex-wrap: wrap;
  margin: 40px auto 20px;
}
#jobs-attributes-list {
  padding-top: 49px;
  margin-top: -49px;
}
.attributes-list__item {
  min-height: 150px;
  width: 326px;
  flex-grow: 1;
  margin: 20px;
}
.attributes-list__item__icon {
  height: 100px;
  width: 100px;
  margin: auto;
  margin-bottom: 40px;
  background-repeat: no-repeat;
  background-position: bottom;
}
.attributes-list__item__title {
  margin: 10px 0;
  font-weight: bold;
  font-size: 24px;
}
.attributes-list__item__text {
  font-size: 22px;
}
.attributes-list__item__quote {
  font-size: 20px;
  font-family: sans-serif;
  font-style: italic;
  margin-bottom: 10px;
}
.qoute-block {
  position: relative;
  display: flex;
  min-height: 200px;
  margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("/img/about/nazca-lines.jpg") no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 480px) {
  .qoute-block {
    min-height: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .qoute-block {
    min-height: 350px;
  }
}
@media screen and (min-width: 1366px) {
  .qoute-block {
    min-height: 400px;
  }
}
.qoute-block__text {
  color: #fff;
  font-size: 28px;
  text-align: center;
  text-shadow: 1px 1px rgba(0,0,0,0.5);
  text-shadow: -1px -1px rgba(0,0,0,0.5);
}
.nazka-hero {
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 100vh;
  border-bottom: 1px solid #ddd;
  background: #f8f8f8 url("/img/hero/global-map.svg") no-repeat center center;
  background-size: cover;
  font-weight: 400;
}
.nazka-hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.nazka-hero__content {
  width: 960px;
  padding: 0 15px;
  pointer-events: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .nazka-hero__content {
    width: auto;
    transform: translateY(-20%);
  }
}
@media screen and (min-width: 992px) {
  .nazka-hero__content {
    width: 960px;
    transform: translateY(-20%);
  }
}
@media screen and (min-width: 1200px) {
  .nazka-hero__content {
    width: 1140px;
    transform: translateY(-20%);
  }
}
.nazka-hero__content__title {
  font-size: 44px;
  font-weight: 900;
}
.nazka-hero__content__title > span {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  white-space: nowrap;
}
.nazka-hero__content__teaser {
  max-width: 600px;
  margin-top: 40px;
  color: #222;
  font-size: 30px;
}
.nazka-hero__content__teaser > a {
  position: relative;
  display: inline-block;
  color: #333;
  pointer-events: auto;
}
.nazka-hero__content__teaser > a:after {
  position: absolute;
  left: 0;
  bottom: 2px;
  display: block;
  width: 100%;
  height: 1px;
  background: #333;
  content: "";
}
.nazka-hero__content__teaser > span {
  color: #777;
}
.nazka-hero__content__teaser__logo {
  float: left;
  display: none;
  width: 120px;
  height: 164.77px;
  margin-right: 30px;
}
@media screen and (min-width: 768px) {
  .nazka-hero__content__teaser__logo {
    display: inline-block;
  }
}
.nazka-hero__scroll-cta {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.nazka-hero__scroll-cta > img {
  width: 30px;
  height: 30px;
  animation-name: bounce-with-delay;
  animation-duration: 5s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
.nazka-hero__scroll-cta > span {
  display: block;
  font-size: 12px;
}
.nazka-hero__attribution {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: inline-block;
  width: 24px;
  padding: 0 6px;
  background-color: rgba(255,255,255,0.1);
  font-size: 10px;
}
.nazka-hero__attribution > img {
  width: 100%;
}
.nazka-hero__attribution__tooltip {
  position: absolute;
  right: 6px;
  bottom: 0;
  width: 120px;
  padding-bottom: 20px;
  text-align: right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 480px) {
  .nazka-hero__attribution__tooltip {
    width: 180px;
  }
}
.nazka-hero__attribution:hover .nazka-hero__attribution__tooltip {
  opacity: 1;
  pointer-events: auto;
}
.who-are-we__content {
  padding: 40px 0 40px;
  text-align: center;
}
.who-are-we__content__title {
  font-size: 28px;
}
.who-are-we__content__intro {
  margin-top: 24px;
  font-size: 26px;
}
.who-are-we__content__actions {
  margin-top: 24px;
}
.who-are-we__content__actions > a {
  position: relative;
  display: inline-block;
  height: 41px;
  padding: 0 36px 0 24px;
  background: transparent;
  border: 1px solid #26b8d7;
  border-radius: 6px;
  color: #26b8d7;
  text-transform: uppercase;
  line-height: 39px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.who-are-we__content__actions > a:hover {
  color: #fff;
  background: #26b8d7;
}
.who-are-we__content__actions > a:after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 1;
  width: 20px;
  height: 20px;
  background: url("/img/icons/angle-right-primary-light.svg") no-repeat center;
  background-size: contain;
  content: "";
}
.who-are-we__content__actions > a:hover:after {
  width: 20px;
  height: 20px;
  background: url("/img/icons/angle-right-white.svg") no-repeat center;
  background-size: contain;
}
.who-are-we__content__actions > a + a {
  margin-left: 6px;
}
.who-are-we__image {
  position: relative;
  z-index: 1;
  height: 360px;
  width: 100%;
  background: url("/img/office/nazka-at-work.jpg") no-repeat center;
  background-size: cover;
}
.who-are-we__image:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, #f8f8f8 0%, rgba(255,255,255,0) 100%);
  content: "";
}
.what-we-do__title {
  text-align: center;
}
.what-we-do__title > h2 {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: -30px;
  padding: 0 24px;
  background: #f8f8f8;
  border-radius: 4px;
  font-size: 54px;
  font-weight: 900;
  line-height: 90px;
}
.what-we-do__section {
  padding: 80px 0;
}
.what-we-do__section .container {
  display: flex;
}
.what-we-do__section:nth-child(odd) {
  background: #f8f8f8;
}
.what-we-do__section:nth-child(odd) .container {
  flex-direction: row-reverse;
}
.what-we-do__section__col {
  width: 50%;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}
.what-we-do__section__col > img {
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 60%;
}
.what-we-do__section__col__content {
  flex-direction: column;
  justify-content: center;
  display: flex;
  height: 100%;
}
.what-we-do__section:nth-child(even) .what-we-do__section__col__content {
  padding-left: 60px;
}
.what-we-do__section:nth-child(odd) .what-we-do__section__col__content {
  padding-right: 60px;
}
.what-we-do__section__col__content__title {
  font-size: 44px;
  font-weight: 900;
}
.what-we-do__section__col__content__text {
  margin-top: 12px;
  font-size: 24px;
}
.what-we-do__section__col__content__text a {
  text-decoration: underline;
}
.what-we-do__section__col__content__text ul {
  margin-top: 10px;
  list-style: initial;
  margin-left: 25px;
}
.what-we-do__section__col__content__actions__link {
  margin-top: 36px;
}
.what-we-do__section__col__content__actions__link a {
  position: relative;
  text-decoration: underline;
  color: #333;
  font-size: 22px;
  transition: color 0.3s ease;
}
.what-we-do__section__col__content__actions__link a:hover {
  color: #26b8d7;
}
.what-we-do__section__col__content__actions__link a:hover:after {
  background: #26b8d7;
}
.what-we-do__section__col__content__actions {
  margin-top: 36px;
}
.what-we-do__section__col__content__actions > a {
  display: inline-block;
  height: 41px;
  padding: 0 24px;
  background: transparent;
  color: #26b8d7;
  border: 1px solid #26b8d7;
  border-radius: 6px;
  text-transform: uppercase;
  line-height: 41px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.what-we-do__section__col__content__actions > a:hover {
  background: #26b8d7;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .what-we-do__section .container:nth-child(odd) {
    flex-direction: column-reverse;
  }
  .what-we-do__section .container:nth-child(even) {
    flex-direction: column-reverse;
  }
  .what-we-do__section .what-we-do__section__col {
    width: 100%;
    min-height: 350px;
    margin: 40px auto 0;
  }
  .what-we-do__section .what-we-do__section__col .what-we-do__section__col__content {
    align-items: center;
    padding: 0 30px;
  }
  .what-we-do__section .what-we-do__section__col .what-we-do__section__col__content__title {
    text-align: center;
  }
}
.nazka-video-block {
  position: relative;
  margin-top: 40px;
  padding-bottom: 56.25%;
  background: #f8f8f8 url("/video/nazka-teaser-video-placeholder.jpg") no-repeat center center;
  background-size: cover;
}
.nazka-video-block:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  content: "";
}
.nazka-video-block > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.nazka-video-block__themes {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateX(0) translateY(-50%);
  z-index: 1;
  width: 100%;
  margin: auto;
  padding: 40px 0;
  border-radius: 6px;
  color: #fff;
  text-align: center;
}
.nazka-video-block__themes__title {
  margin-top: 0;
  margin-bottom: 10px;
  padding: 0 12px;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (min-width: 480px) {
  .nazka-video-block__themes__title {
    margin-bottom: 20px;
    font-size: 54px;
  }
}
@media screen and (min-width: 768px) {
  .nazka-video-block__themes__title {
    margin-bottom: 40px;
    font-size: 64px;
  }
}
@media screen and (min-width: 992px) {
  .nazka-video-block__themes__title {
    margin-bottom: 80px;
    font-size: 80px;
  }
}
.nazka-video-block__themes__list {
  justify-content: space-around;
  flex-wrap: wrap;
  display: flex;
  max-width: 900px;
}
@media screen and (min-width: 768px) {
  .nazka-video-block__themes__list {
    width: 75%;
    margin: auto;
  }
}
.nazka-video-block__themes__list > li {
  width: 25%;
  padding: 0 12px;
}
.nazka-video-block__themes__list > li > a {
  display: block;
  text-align: center;
}
.nazka-video-block__themes__list > li > a > img {
  width: 34px;
  height: 46.67px;
  margin: auto;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 480px) {
  .nazka-video-block__themes__list > li > a > img {
    width: 50px;
    height: 68.64px;
  }
}
@media screen and (min-width: 768px) {
  .nazka-video-block__themes__list > li > a > img {
    width: 70px;
    height: 96.11px;
  }
}
@media screen and (min-width: 992px) {
  .nazka-video-block__themes__list > li > a > img {
    width: 80px;
    height: 109.83px;
  }
}
.nazka-video-block__themes__list > li > a > span {
  display: block;
  transition: color 0.3s ease;
}
.nazka-video-block__themes__list > li > a:hover > img {
  transform: scale(1.12);
}
.nazka-video-block__themes__list__theme-name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 480px) {
  .nazka-video-block__themes__list__theme-name {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .nazka-video-block__themes__list__theme-name {
    font-size: 30px;
  }
}
@media screen and (min-width: 992px) {
  .nazka-video-block__themes__list__theme-name {
    font-size: 36px;
  }
}
.nazka-intro-slider {
  position: relative;
  z-index: 1;
  width: 1140px;
  max-width: 100%;
  margin: 80px auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .nazka-intro-slider {
    padding: 0 60px;
  }
}
.nazka-intro-slider__frame {
  position: relative;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  white-space: nowrap;
}
.nazka-intro-slider__frame__slides {
  align-items: center;
  display: flex;
  width: 100%;
}
.nazka-intro-slider__frame__slides > li {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  white-space: normal;
}
.nazka-intro-slider__frame__slides > li > h3,
.nazka-intro-slider__frame__slides > li > p {
  flex-shrink: 0;
  width: 100%;
}
.nazka-intro-slider__frame__slides > li > h3 {
  margin-bottom: 40px;
  font-size: 36px;
  line-height: 1.428571429;
  font-weight: 700;
}
.nazka-intro-slider__frame__slides > li > p {
  font-size: 24px;
  line-height: 32px;
}
.nazka-intro-slider__prev,
.nazka-intro-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .nazka-intro-slider__prev,
  .nazka-intro-slider__next {
    display: block;
  }
}
.nazka-intro-slider__prev.disabled,
.nazka-intro-slider__next.disabled {
  opacity: 0.3;
}
.nazka-intro-slider__prev img,
.nazka-intro-slider__next img {
  width: 11.25px;
  height: 30px;
}
.nazka-intro-slider__prev {
  left: 0;
}
.nazka-intro-slider__next {
  right: 0;
}
.nazka-intro-slider__dots {
  margin-top: 6px;
}
.nazka-intro-slider__dots > li {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #222;
  transition: opacity 0.3s ease;
  opacity: 0.3;
  cursor: pointer;
}
.nazka-intro-slider__dots > li + li {
  margin-left: 6px;
}
.nazka-intro-slider__dots > li.active {
  opacity: 1;
}
.nazka-card-grid-slider {
  position: relative;
  width: 100%;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .nazka-card-grid-slider {
    padding: 30px 30px 30px;
  }
}
.nazka-card-grid-slider__frame {
  position: relative;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  white-space: nowrap;
}
.nazka-card-grid-slider__frame__slides {
  width: 100%;
}
.nazka-card-grid-slider__frame__slides__slide {
  display: inline-block;
  width: 100% !important;
  padding: 0 3px;
  line-height: 1.428571429;
  white-space: normal;
}
.nazka-card-grid-slider__prev,
.nazka-card-grid-slider__next {
  position: absolute;
  top: calc(50% - 15px);
  transform: translateY(-50%);
  display: none;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .nazka-card-grid-slider__prev,
  .nazka-card-grid-slider__next {
    display: block;
  }
}
.nazka-card-grid-slider__prev.disabled,
.nazka-card-grid-slider__next.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.nazka-card-grid-slider__prev img,
.nazka-card-grid-slider__next img {
  width: 11.25px;
  height: 30px;
}
.nazka-card-grid-slider__prev {
  left: 0;
}
.nazka-card-grid-slider__next {
  right: 0;
}
.nazka-card-grid-slider__dots {
  margin-top: 6px;
  text-align: center;
}
.nazka-card-grid-slider__dots > li {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #222;
  transition: opacity 0.3s ease;
  opacity: 0.3;
  cursor: pointer;
}
.nazka-card-grid-slider__dots > li + li {
  margin-left: 6px;
}
.nazka-card-grid-slider__dots > li.active {
  opacity: 1;
}
.nazka-primary-cta-block {
  padding: 80px 0;
  background: #26b8d7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .nazka-primary-cta-block {
    text-align: center;
  }
}
.nazka-primary-cta-block__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .nazka-primary-cta-block__content {
    flex-wrap: wrap;
  }
}
.nazka-primary-cta-block__content__rocket {
  width: 20%;
  min-width: 180px;
  max-height: 150px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  .nazka-primary-cta-block__content__rocket {
    margin: 0;
  }
}
.nazka-primary-cta-block__content__cta {
  flex-grow: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .nazka-primary-cta-block__content__cta {
    width: auto;
    padding-left: 96px;
  }
}
.nazka-primary-cta-block__content__cta__text {
  font-size: 32px;
}
.nazka-primary-cta-block__content__cta__btn {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .nazka-primary-cta-block__content__cta__btn {
    margin-top: 20px;
  }
}
.nazka-partners-block {
  margin: 0 auto;
  padding: 0 0 40px;
  overflow: hidden;
}
.nazka-partners-block__title {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
.nazka-partners-block__list {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
  font-size: 0;
}
.nazka-partners-block__list > li {
  width: 25%;
  height: 80px;
  margin-bottom: 15px;
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .nazka-partners-block__list > li {
    width: 20%;
  }
}
.nazka-partners-block__list > li > a {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  height: 100%;
}
.nazka-partners-block__list > li > a > img {
  max-width: 100%;
  max-height: calc(100% - 24px);
  transition: filter 0.3s ease;
}
.nazka-partners-block__list > li > a:not(:hover) > img {
  filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale") ;
  filter: #808080 /* IE6-9 */;
  -webkit-filter: grayscale(100%) /* Chrome 19+, Safari 6+, Safari 6+ iOS */;
}
.nazka-partners-block__cta {
  padding: 40px 0 20px;
  text-align: center;
}
.nazka-partners-block__cta {
  padding: 40px 0 20px;
  text-align: center;
}
.nazka-partners-block__cta__link {
  display: inline;
  color: #044973;
  text-decoration: underline;
  font-size: 22px;
  transition: color 0.25s ease;
}
.nazka-partners-block__cta__link:hover {
  color: #26b8d7;
}
.nazka-partners-block__cta__link:focus {
  outline: none;
}
.nazka-view-all-cta-wrapper {
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  .nazka-view-all-cta-wrapper {
    padding: 15px 30px 0;
  }
}
.nazka-view-all-cta {
  position: relative;
  justify-content: space-between;
  display: flex;
  margin: auto;
  padding: 24px 0;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 480px) {
  .nazka-view-all-cta {
    width: calc(50% - 15px);
  }
}
@media screen and (min-width: 992px) {
  .nazka-view-all-cta {
    width: calc(33.33% - 20px);
  }
}
.nazka-view-all-cta > .nazka-btn {
  width: calc(50% - 6px);
  text-align: center;
}
.nazka-view-all-cta__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-65%);
  padding: 0 12px;
  background: #fff;
  font-weight: 700;
}
.home-cardsapp .home-cardsapp-title {
  text-align: center;
  font-size: 36px;
  font-weight: 999;
}
.home-cardsapp .home-cardsapp-link {
  text-align: center;
  margin-top: 36px;
}
.home-cardsapp .home-cardsapp-link a {
  display: inline;
  color: #044973;
  text-decoration: underline;
  font-size: 22px;
  transition: color 0.25s ease;
}
.home-cardsapp .home-cardsapp-link a:hover {
  color: #26b8d7;
}
.home-cardsapp .home-cardsapp-link a:focus {
  outline: none;
}
.nazka-about-intro {
  margin-top: 40px;
  font-size: 24px;
}
.nazka-about-intro a {
  text-decoration: underline;
}
.nazka-about-intro > p:not(:first-child) {
  margin-top: 40px;
}
.nazka-about-nazkians {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  height: 600px;
  width: 100%;
  background: url("/img/about/NAZKA MAPS - niccola.be -31.jpg") no-repeat center;
  background-size: cover;
}
.nazka-about-nazkians:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0) 30%);
  content: "";
}
.nazka-person-cards-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
  text-align: center;
  font-size: 24px;
}
.nazka-person-cards-intro:not(:first-child) {
  margin-top: 40px;
}
.nazka-person-cards-intro h3 {
  font-size: 30px;
  font-weight: bold;
}
.nazka-person-cards {
  display: block;
  margin-top: 53.333333333333336px;
  margin-bottom: 40px;
  font-size: 0;
}
.nazka-person-cards__card {
  position: relative;
  vertical-align: top;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  font-size: 18px;
  cursor: pointer;
}
.nazka-person-cards__card--placeholder {
  cursor: default;
}
.nazka-person-cards__card:after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  content: "";
}
.nazka-person-cards__card.active:after {
  opacity: 0;
}
@media screen and (min-width: 480px) {
  .nazka-person-cards__card {
    display: inline-block;
    width: calc(50% - 15px);
  }
  .nazka-person-cards__card:nth-child(2n+2) {
    margin-left: 30px;
  }
}
@media screen and (min-width: 992px) {
  .nazka-person-cards__card {
    width: calc(33.33% - 20px);
  }
  .nazka-person-cards__card:nth-child(2n+2) {
    margin-left: 0;
  }
  .nazka-person-cards__card:nth-child(3n+2),
  .nazka-person-cards__card:nth-child(3n+3) {
    margin-left: 30px;
  }
}
.nazka-person-cards__card--placeholder:after {
  display: none !important;
}
 // IE
.nazka-person-cards__card:after {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0);
}
.nazka-person-cards__card__content {
  height: 400px;
  overflow: hidden;
}
.nazka-person-cards__card__content__avatar {
  display: block;
  width: 200px;
  height: 200px;
  margin: 24px auto;
  border: 1px solid #ddd;
  border-radius: 100%;
}
.nazka-person-cards__card--placeholder .nazka-person-cards__card__content__avatar {
  padding-top: 12px;
}
.nazka-person-cards__card__content__body {
  position: relative;
  z-index: 1;
  height: 400px;
  padding: 12px 24px 24px;
  background: #fff;
  overflow: hidden;
  transition: margin-top 0.3s ease;
}
.active .nazka-person-cards__card__content__body {
  margin-top: -248px;
  overflow: auto;
}
.nazka-person-cards__card__content__body__title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
.nazka-person-cards__card__content__body__role {
  display: block;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}
.nazka-person-cards__card__content__body__text {
  margin-top: 12px;
}
.nazka-person-cards__card__more {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: 2;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  transition: box-shadow 0.3s ease;
}
.nazka-person-cards__card--placeholder .nazka-person-cards__card__more {
  display: none;
}
.nazka-person-cards__card__more > img {
  transform: rotateX(0deg);
  width: 12px;
  height: 24px;
  transition: transform 0.3s ease;
}
.active .nazka-person-cards__card__more > img {
  transform: rotateX(180deg);
}
.nazka-about-outro {
  text-align: center;
  margin: 40px 0 80px;
  font-size: 24px;
}
.nazka-about-outro a {
  text-decoration: underline;
}
.nazka-realisations-header {
  position: relative;
  min-height: 400px;
  background-color: #f8f8f8;
  overflow: hidden;
  isolation: isolate;
}
.nazka-realisations-header__particles {
  position: absolute;
  height: 100%;
  width: 100%;
}
.nazka-realisations-header__content {
  position: relative;
  z-index: 2;
  justify-content: space-between;
  flex-direction: column;
  display: flex;
  padding: 104px 0 40px 0;
}
@media screen and (min-width: 768px) {
  .nazka-realisations-header__content {
    flex-direction: row;
    align-items: stretch;
  }
}
.nazka-realisations-header__content__text {
  flex-direction: column;
  justify-content: center;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .nazka-realisations-header__content__text {
    width: 50%;
  }
}
.nazka-realisations-header__content__text h1 {
  font-size: 34px;
  font-weight: 900;
}
.nazka-realisations-header__content__text p {
  margin-top: 24px;
  font-size: 26px;
}
.nazka-realisations-header__content__text a {
  text-decoration: underline;
}
p .nazka-realisations-header__content__text p {
  margin-top: 12px;
}
.nazka-realisations-header__content__text__actions {
  margin-top: 36px;
  font-weight: 700;
}
.nazka-realisations-header__content__text__actions > a:first-child {
  display: inline-block;
  height: 41px;
  padding: 0 24px;
  background: transparent;
  border: 1px solid #044973;
  border-radius: 6px;
  text-transform: uppercase;
  line-height: 41px;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.nazka-realisations-header__content__text__actions > a:first-child:hover {
  background: rgba(255,255,255,0.9);
}
.nazka-realisations-header__content__text__actions > a:not(:first-child) {
  display: inline-block;
  margin-left: 12px;
  text-decoration: underline;
}
.nazka-realisations-header__content__media {
  justify-content: center;
  align-items: flex-end;
  display: flex;
  width: 100%;
  padding: 48px 0 24px;
}
@media screen and (min-width: 768px) {
  .nazka-realisations-header__content__media {
    width: 50%;
    padding: 0 12px;
  }
}
@media screen and (min-width: 1200px) {
  .nazka-realisations-header__content__media {
    width: calc(50% - 24px);
  }
}
.nazka-realisations-header__content__media__card {
  width: 100%;
  height: 240px;
  display: grid;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .nazka-realisations-header__content__media__card {
    padding-left: 12px;
    height: 100%;
  }
}
.nazka-realisations-header__content__media__card__article {
  height: 100%;
  max-height: 75%;
  margin: auto 0;
  border-radius: 6px;
  overflow: hidden;
}
.nazka-realisations-header__content__media__card__article > .link-block {
  height: 100%;
  background: rgba(34,34,34,0.5);
}
.nazka-realisations-header__content__media__card__article__content {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  height: 100%;
  width: 75%;
  margin: auto;
  color: #fff;
}
.nazka-realisations-header__content__media__card__article__content__highlight {
  transform: translateY(0);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.nazka-realisations-header__content__media__card__article:hover .nazka-realisations-header__content__media__card__article__content__highlight {
  transform: translateY(-12px);
}
.nazka-realisations-header__content__media__card__article__content__title {
  transform: translateY(0);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}
.nazka-realisations-header__content__media__card__article:hover .nazka-realisations-header__content__media__card__article__content__title {
  transform: translateY(-12px);
}
.nazka-realisations-header__content__media__card__article__content__cta {
  transform: translateY(24px);
  height: 41px;
  padding: 0 12px;
  border: 1px solid #fff;
  border-radius: 6px;
  font-weight: 700;
  line-height: 41px;
  text-transform: uppercase;
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}
.nazka-realisations-header__content__media__card__article:hover .nazka-realisations-header__content__media__card__article__content__cta {
  transform: translateY(12px);
  opacity: 1;
}
.realisations-products > h2 {
  padding-top: 56px;
  text-align: left;
}
.realisations-products__intro {
  margin-top: 24px;
  font-weight: 400;
  font-size: 22px;
}
.realisations-products__list {
  justify-content: space-between;
  flex-wrap: wrap;
  display: flex;
  width: 100%;
  margin: 48px 0;
}
.realisations-products__list__item {
  position: relative;
  width: calc(50% - 30px);
  margin-bottom: 48px;
  padding: 12px 15px 0;
}
.realisations-products__list__item__image {
  float: left;
  width: 100px;
  height: 100px;
  margin-top: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
  border: 1px solid #ddd;
}
.realisations-products__list__item__content {
  margin-left: 124px;
}
.realisations-products__list__item__content__title,
.realisations-products__list__item__content__text {
  position: relative;
  z-index: 1;
}
.realisations-products__list__item__content__title {
  font-size: 28px;
  font-weight: 700;
}
.realisations-products__list__item__content__text {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 400;
}
.realisations-products__list__item__content__link {
  display: inline-block;
  height: 41px;
  margin-top: 24px;
  padding: 0 24px;
  background: transparent;
  border: 1px solid #044973;
  border-radius: 6px;
  text-transform: uppercase;
  line-height: 41px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.realisations-products__list__item__content__link:hover {
  background: rgba(255,255,255,0.9);
}
@media screen and (max-width: 768px) {
  .realisations-products__list {
    flex-direction: column;
    gap: 40px;
  }
  .realisations-products__list__item {
    margin: auto;
    width: calc(80% - 30px);
  }
  .realisations-products__list__item__image {
    float: none;
    margin: auto;
  }
  .realisations-products__list__item__content {
    margin-left: 0px;
    text-align: center;
  }
}
.nazka-article-body {
  padding: 80px 0 0;
}
.nazka-article-body__intro {
  display: flex;
  flex-direction: column;
  place-items: center;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .nazka-article-body__intro {
    flex-direction: row;
  }
  .nazka-article-body__intro .nazka-article-body__img {
    margin: 0 40px 0 0;
  }
}
.nazka-article-body__title {
  font-size: 34px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .nazka-article-body__title {
    font-size: 50px;
  }
}
.nazka-article-body__img {
  min-height: 120px;
  max-height: 120px;
  min-width: 120px;
  max-width: 120px;
  margin: 0 0 20px 0;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.nazka-article-body__input-details {
  display: block;
  padding: 12px 0 0;
}
.nazka-article-body__description {
  white-space: pre-line;
  margin: 40px 0 40px;
  font-size: 32px;
  font-weight: 400;
}
.article-images {
  position: relative;
}
.article-images__frame {
  position: relative;
  width: 100%;
  margin-bottom: 80px;
  font-size: 0;
  line-height: 0;
  overflow: visible;
  white-space: nowrap;
}
.article-images__frame__slides {
  height: fit-content;
  display: inline-block;
}
.article-images__frame__slides__slide {
  position: relative;
  display: inline-block;
}
.article-images__frame__slides__slide:not(:last-child) {
  margin-right: 30px;
}
.article-images__frame__slides__slide > a {
  display: inline-block;
  width: auto;
  height: fit-content;
  font-size: 0;
}
.article-images__frame__slides__slide > a > figure {
  margin: auto;
  height: 100%;
}
.article-images__frame__slides__slide > a > figure img {
  width: 100%;
}
.article-images__frame__slides__slide > a > figure figcaption {
  position: absolute;
  width: 100%;
  text-align: center;
}
.article-images__frame__slides__slide > a > figure figcaption p {
  position: relative;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: auto;
  padding: 10px;
  text-overflow: ellipsis;
  color: #777;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}
.prev,
.next {
  position: absolute;
  top: 50%;
  display: block !important;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  cursor: pointer;
}
.prev > svg,
.next > svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 25px;
  height: 25px;
}
.no-nav .prev,
.no-nav .next {
  display: none;
}
.next {
  right: 0;
  transform: translateX(-25%) translateY(-50%);
}
.prev {
  left: 0;
  transform: translateX(25%) translateY(-50%);
}
.article-images__frame__slides__slide__expand-cta {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.article-images__frame__slides__slide__expand-cta:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.8);
  border-radius: 50%;
  content: "";
}
.article-images__frame__slides__slide__expand-cta:hover {
  opacity: 1;
}
.article-images__frame__slides__slide__expand-cta > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: auto;
  border: 0;
}
.article-images__frame__slides__slide__expand-cta > img[src$="play-white.svg"] {
  margin-left: 2px;
}
.article-images-popup {
  display: none;
}
.vanilla-modal .article-images-popup {
  display: block;
}
.article-images-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0,0,0,0.6);
  text-align: center;
  opacity: 0;
  overflow: hidden;
  overflow-y: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  content: "";
  transition: opacity 0.3s, z-index 0s 0.3s;
}
.article-images-popup:before {
  vertical-align: middle;
  display: inline-block;
  width: 0;
  height: 100%;
  overflow: hidden;
  content: "";
}
.vanilla-modal.modal-visible .article-images-popup {
  z-index: 1001;
  opacity: 1;
  transition: opacity 0.3s;
}
.article-images-popup__inner {
  position: relative;
  vertical-align: middle;
  transform: scale(0);
  z-index: -1;
  display: inline-block;
  max-width: 95%;
  max-height: 95%;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  text-align: left;
  opacity: 0;
  overflow: hidden;
  white-space: normal;
  transition: opacity 0.3s, transform 0.3s, z-index 0s 0.3s;
}
.modal-visible .article-images-popup__inner {
  transform: scale(1);
  z-index: 100;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
}
.article-images-popup__inner__content {
  font-size: 0;
}
.article-images-popup__inner__content img,
.article-images-popup__inner__content video {
  max-height: calc(100vh - 112px);
  max-width: calc(100vw - 60px);
  min-width: 200px;
  width: 100%;
}
.article-images-popup__inner__content p {
  margin: 12px 12px;
  color: #777;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}
.article-images-popup__inner__content figure figcaption {
  max-width: calc(100vw - 60px);
}
.nazka-article-meta-block {
  display: flex;
  margin-bottom: 12px;
  flex-direction: row;
  gap: 15px;
  padding: 24px 24px;
}
.nazka-article-meta-block--single-button {
  display: block;
  padding-top: 0;
  text-align: center;
  background: transparent;
}
.nazka-article-meta-block .nazka-article-meta-block__grid-item {
  margin: 0 auto;
}
.nazka-article-meta-block__grid-item {
  margin: auto;
  width: fit-content;
}
.nazka-article-meta-block__grid-item > h3 {
  font-size: 24px;
  font-weight: 700;
}
.nazka-article-meta-block__grid-item ul {
  margin-top: 3px;
}
.nazka-article-meta-block__grid-item ul li {
  position: relative;
  line-height: 24px;
}
.nazka-article-meta-block__grid-item ul li + li {
  margin-top: 3px;
}
.nazka-article-meta-block__grid-item ul a[target="_blank"] {
  white-space: nowrap;
}
.nazka-article-meta-block__grid-item ul a[target="_blank"]:after {
  position: relative;
  top: 6px;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 2px;
  background: url("/img/icons/external-link-square-primary.svg") no-repeat center;
  background-size: contain;
  vertical-align: top;
  content: "";
}
.nazka-article-meta-block__grid-item__cta {
  position: relative;
  align-self: flex-end;
  margin-bottom: 55.999998px;
  display: inline-block;
  padding: 0 36px 0 24px;
  background: transparent;
  border: 1px solid #333;
  border-radius: 6px;
  color: #333;
  text-transform: uppercase;
  line-height: 41px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.nazka-article-meta-block--single-button .nazka-article-meta-block__grid-item__cta:hover {
  background: #fff;
}
.nazka-article-meta-block__grid-item__cta:after {
  position: absolute;
  right: 12px;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 9.5px 0;
  background: url("/img/icons/angle-right.svg") no-repeat center center;
  background-size: contain;
  transition: right 0.3s ease;
  content: "";
}
.nazka-article-meta-block__grid-item__cta:hover {
  background: #f8f8f8;
}
.nazka-article-meta-block__grid-item__cta:hover:after {
  right: 9px;
}
.nazka-article-share {
  position: relative;
  margin: 0 0 50px;
  text-align: center;
}
.nazka-article-share:after {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 180px;
  border-top: 1px solid #ddd;
  content: "";
}
.nazka-article-share__label {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 12px;
  background: #f8f8f8;
  color: #777;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
.nazka-article-share__platform-list {
  margin-top: 9px;
  white-space: nowrap;
}
.nazka-article-share__platform-list__item {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 18px;
  font-size: 0;
  opacity: 1;
  cursor: pointer;
}
.nazka-article-share__platform-list__item + .nazka-article-share__platform-list__item {
  margin-left: 6px;
}
.nazka-article-share__platform-list__item--twitter {
  background-color: #111;
}
.nazka-article-share__platform-list__item--facebook {
  background-color: #3b5998;
}
.nazka-article-share__platform-list__item--linkedin {
  background-color: #0077b5;
}
.nazka-article-share__platform-list__item > a {
  display: block;
  width: 46px;
  height: 46px;
}
.nazka-blog-body {
  padding: 80px 0 0;
}
.nazka-blog-body strong {
  font-weight: 700;
}
.nazka-blog-body__intro {
  position: relative;
  display: flex;
  flex-direction: column;
  place-items: center;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .nazka-blog-body__intro {
    flex-direction: row;
  }
  .nazka-blog-body__intro .nazka-blog-body__img {
    margin: 0 40px 0 0;
  }
}
.nazka-blog-body__title {
  font-size: 34px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .nazka-blog-body__title {
    font-size: 50px;
  }
}
.nazka-blog-body__img {
  position: relative;
  min-height: 120px;
  max-height: 120px;
  min-width: 120px;
  max-width: 120px;
  margin: 0 0 20px 0;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.nazka-blog-body__input-details {
  display: block;
  padding: 12px 0 0;
}
.nazka-blog-body__description {
  width: 100%;
  margin: 40px 0 40px;
  font-size: 32px;
  font-weight: 400;
}
.nazka-blog-body__story {
  margin: 40px 0 40px;
  font-size: 24px;
  font-weight: 400;
}
.nazka-blog-body__story blockquote {
  position: relative;
  margin: 20px;
  background-color: #ededed;
  padding: 10px;
  padding-left: 40px;
  border-left: 8px solid #ddd;
}
.nazka-blog-body__story blockquote:before {
  font-family: Arial;
  font-style: italic;
  content: "\201C";
  color: #777;
  font-size: 64px;
  position: absolute;
  left: 5px;
  top: -10px;
}
.nazka-blog-body__story blockquote:after {
  content: '';
}
.nazka-blog-body__story ul {
  list-style: disc;
  padding-left: 25px;
}
.nazka-blog-body__story a {
  text-decoration: underline;
}
.nazka-blog-body__story em {
  font-style: italic;
}
.nazka-blog-body__story img {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.nazka-blog-body__story h1,
.nazka-blog-body__story h2,
.nazka-blog-body__story h3,
.nazka-blog-body__story h4,
.nazka-blog-body__story h5 {
  margin: auto;
  font-weight: 700;
  text-align: left;
}
.nazka-blog-body__story h1 {
  font-size: 48px;
}
.nazka-blog-body__story h2 {
  font-size: 36px;
}
.nazka-blog-body__story h3 {
  font-size: 28px;
}
.nazka-blog-body__story h4 {
  font-size: 24px;
}
.nazka-blog-body__story h4 {
  font-size: 20px;
}
.nazka-blog-body__story iframe {
  width: 100%;
  height: calc((100vw - 30px) * (9 / 16));
  margin: 20px 0;
}
@media screen and (min-width: 992px) {
  .nazka-blog-body__story iframe {
    height: 523.125px;
  }
}
.news-intro {
  padding: 40px 0;
  font-size: 34px;
}
.news-category-filter {
  align-items: flex-start;
  display: flex;
  padding-bottom: 40px;
  font-size: 18px;
}
.news-category-filter__label {
  vertical-align: top;
  line-height: 41px;
  white-space: nowrap;
}
.news-category-filter__options {
  flex-wrap: wrap;
  display: flex;
  margin-left: 12px;
}
.news-category-filter__options__option {
  margin-bottom: 6px;
}
.news-category-filter__options__option:not(:last-child) {
  margin-right: 6px;
}
.news-category-filter__options__option > button {
  height: 41px;
  padding: 0 12px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #333;
  font-size: 18px;
  color: #333;
  line-height: 41px;
  cursor: pointer;
}
.news-category-filter__options__option > button:hover,
.news-category-filter__options__option > button.active {
  background: #044973;
  border-color: #044973;
  color: #fff;
}
.nazka-news-header {
  position: relative;
  background-color: #f8f8f8;
  overflow: hidden;
  isolation: isolate;
}
.nazka-news-header .container {
  height: 100%;
}
.nazka-news-header::before,
.nazka-news-header::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
}
.nazka-news-header::after {
  mix-blend-mode: screen;
}
.nazka-news-header__particles {
  position: absolute;
  height: 100%;
  width: 100%;
}
.nazka-news-header__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: none;
  justify-content: space-between;
  flex-direction: column;
  display: flex;
  padding: 104px 0 60px 0;
}
@media screen and (min-width: 768px) {
  .nazka-news-header__content {
    flex-direction: row;
    align-items: stretch;
  }
}
.nazka-news-header__content__text {
  flex-direction: column;
  justify-content: center;
  display: flex;
  width: 100%;
}
.nazka-news-header__content__text h1 {
  font-size: 34px;
  font-weight: 900;
}
.nazka-news-header__content__text p {
  margin-top: 24px;
  font-size: 26px;
}
p .nazka-news-header__content__text p {
  margin-top: 12px;
}
.nazka-news-header__content__text__actions {
  margin-top: 36px;
  font-weight: 700;
}
.nazka-news-header__content__text__actions > a:first-child {
  display: inline-block;
  height: 41px;
  padding: 0 24px;
  background: transparent;
  border: 1px solid #044973;
  border-radius: 6px;
  text-transform: uppercase;
  line-height: 41px;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.nazka-news-header__content__text__actions > a:first-child:hover {
  background: rgba(255,255,255,0.9);
}
.nazka-news-header__content__text__actions > a:not(:first-child) {
  display: inline-block;
  margin-left: 12px;
  text-decoration: underline;
}
.nazka-news-header__content__media {
  justify-content: center;
  align-items: flex-end;
  display: flex;
  width: 100%;
  padding: 48px 0 24px;
}
@media screen and (min-width: 768px) {
  .nazka-news-header__content__media {
    width: 50%;
    padding: 0 12px;
  }
}
@media screen and (min-width: 1200px) {
  .nazka-news-header__content__media {
    width: calc(50% - 24px);
  }
}
.nazka-news-header__content__media__card {
  width: 100%;
  height: 240px;
}
@media screen and (min-width: 768px) {
  .nazka-news-header__content__media__card {
    padding-left: 12px;
    height: 100%;
  }
}
.nazka-news-header__content__media__card__article {
  height: 100%;
  border-radius: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.nazka-news-header__content__media__card__article > .link-block {
  height: 100%;
  background: rgba(34,34,34,0.5);
}
.nazka-news-header__content__media__card__article__content {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  height: 100%;
  width: 75%;
  margin: auto;
  color: #fff;
}
.nazka-news-header__content__media__card__article__content__highlight {
  transform: translateY(0);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.nazka-news-header__content__media__card__article:hover .nazka-news-header__content__media__card__article__content__highlight {
  transform: translateY(-12px);
}
.nazka-news-header__content__media__card__article__content__title {
  transform: translateY(0);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}
.nazka-news-header__content__media__card__article:hover .nazka-news-header__content__media__card__article__content__title {
  transform: translateY(-12px);
}
.nazka-news-header__content__media__card__article__content__cta {
  transform: translateY(24px);
  height: 41px;
  padding: 0 12px;
  border: 1px solid #fff;
  border-radius: 6px;
  font-weight: 700;
  line-height: 41px;
  text-transform: uppercase;
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}
.nazka-news-header__content__media__card__article:hover .nazka-news-header__content__media__card__article__content__cta {
  transform: translateY(12px);
  opacity: 1;
}
.nazka-press-articles {
  display: flex;
  flex-wrap: wrap;
}
.nazka-press-articles__title,
.nazka-press-assets__title {
  width: 100%;
  margin-bottom: 40px;
}
.nazka-press-articles__slider {
  position: relative;
  z-index: 1;
  width: 1140px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .nazka-press-articles__slider {
    padding: 0 30px;
  }
}
.nazka-press-articles__slider__frame {
  position: relative;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  white-space: nowrap;
}
.nazka-press-articles__slider__frame__slides__item {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}
.nazka-press-articles__slider__frame__slides__item__content {
  position: relative;
  vertical-align: top;
  display: block;
  margin-bottom: 30px;
  padding: 0 12px;
  border: 1px solid #ddd;
  color: #333;
  line-height: 1.428571429;
  text-align: center;
  cursor: pointer;
  white-space: normal;
}
@media screen and (min-width: 768px) {
  .nazka-press-articles__slider__frame__slides__item__content:first-child {
    margin-right: 15px;
  }
}
@media screen and (min-width: 768px) {
  .nazka-press-articles__slider__frame__slides__item__content:last-child {
    margin-left: 15px;
  }
}
@media screen and (min-width: 768px) {
  .nazka-press-articles__slider__frame__slides__item__content {
    display: inline-block;
    width: calc(50% - 15px);
    padding: 0 15px;
  }
}
.nazka-press-articles__slider__frame__slides__item__content__title,
.nazka-press-assets__visuals__item__title {
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
}
.nazka-press-articles__slider__frame__slides__item__content__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 220px;
  margin: 12px auto 0;
  padding: 12px;
  font-size: 0;
}
.nazka-press-articles__slider__frame__slides__item__content__image-wrapper__image {
  width: 100%;
  height: calc(220px - 24px - 2px);
}
.nazka-press-articles__slider__frame__slides__item__content__image-wrapper__expand-cta {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nazka-press-articles__slider__frame__slides__item__content__image-wrapper__expand-cta:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.8);
  border-radius: 50%;
  content: "";
}
.nazka-press-articles__slider__frame__slides__item__content:hover .nazka-press-articles__slider__frame__slides__item__content__image-wrapper__expand-cta {
  opacity: 1;
}
.nazka-press-articles__slider__frame__slides__item__content__image-wrapper__expand-cta > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 24px;
  height: 27.42px;
  border: 0;
}
.nazka-press-articles__slider__frame__slides__item__content__text {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  padding: 12px 0;
  font-size: 18px;
}
@media screen and (min-width: 480px) {
  .nazka-press-articles__slider__frame__slides__item__content__text {
    height: 100px;
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  .nazka-press-articles__slider__frame__slides__item__content__text {
    font-size: 20px;
  }
}
.nazka-press-articles__slider__prev,
.nazka-press-articles__slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .nazka-press-articles__slider__prev,
  .nazka-press-articles__slider__next {
    display: block;
  }
}
.nazka-press-articles__slider__prev.disabled,
.nazka-press-articles__slider__next.disabled {
  opacity: 0.3;
}
.nazka-press-articles__slider__prev img,
.nazka-press-articles__slider__next img {
  width: 11.25px;
  height: 30px;
}
.nazka-press-articles__slider__prev {
  left: 0;
}
@media screen and (min-width: 1200px) {
  .nazka-press-articles__slider__prev {
    left: -30px;
  }
}
.nazka-press-articles__slider__next {
  right: 0;
}
@media screen and (min-width: 1200px) {
  .nazka-press-articles__slider__next {
    right: -30px;
  }
}
.nazka-press-articles__slider__dots {
  margin-top: -30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .nazka-press-articles__slider__dots {
    margin-top: -15px;
  }
}
.nazka-press-articles__slider__dots > li {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #222;
  transition: opacity 0.3s ease;
  opacity: 0.3;
  cursor: pointer;
}
.nazka-press-articles__slider__dots > li + li {
  margin-left: 6px;
}
.nazka-press-articles__slider__dots > li.active {
  opacity: 1;
}
.nazka-press-assets {
  background: transparent;
}
.nazka-press-assets__visuals {
  justify-content: space-between;
  flex-wrap: wrap;
  display: flex;
}
.nazka-press-assets__visuals__item {
  vertical-align: top;
  width: 100%;
  margin-bottom: 15px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 1px;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .nazka-press-assets__visuals__item {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  .nazka-press-assets__visuals__item {
    width: calc(25% - 20px);
  }
}
.nazka-press-assets__visuals__item__title {
  border: 0;
}
.nazka-press-assets__visuals__item__image-wrapper {
  position: relative;
  max-height: 200px;
  padding: 12px 0;
  border-top: 1px solid #ddd;
  font-size: 0;
}
.nazka-press-assets__visuals__item__image-wrapper img {
  max-width: 100%;
  height: 100px;
  padding: 5px;
}
.nazka-press-assets__visuals__item__image-wrapper__expand-cta {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nazka-press-assets__visuals__item__image-wrapper__expand-cta:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.8);
  border-radius: 50%;
  content: "";
}
.nazka-press-assets__visuals__item__image-wrapper__expand-cta:hover {
  opacity: 1;
}
.nazka-press-assets__visuals__item__image-wrapper__expand-cta > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 28px;
  height: 30.56px;
  border: 0;
}
.nazka-press-assets__visuals__item__image-wrapper__expand-cta > img[src$="play-white.svg"] {
  margin-left: 2px;
}
.nazka-press-assets__visuals__item__footer {
  justify-content: space-between;
  display: flex;
  padding: 6px 0;
}
.nazka-press-assets__visuals__item__footer > div {
  position: relative;
  top: 2px;
}
.nazka-press-assets__visuals__item__footer > div > img {
  height: 20px;
  vertical-align: middle;
}
.nazka-press-assets__visuals__item__footer > div > span {
  vertical-align: middle;
  display: inline-block;
  margin-left: 6px;
  font-weight: 700;
}
.nazka-press-assets__visuals__item__footer > div > span:before {
  content: "(";
}
.nazka-press-assets__visuals__item__footer > div > span:after {
  content: ")";
}
.nazka-press-visual-popup {
  display: none;
}
.vanilla-modal .nazka-press-visual-popup {
  display: block;
}
.nazka-press-visual-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0,0,0,0.6);
  text-align: center;
  opacity: 0;
  overflow: hidden;
  overflow-y: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  content: "";
  transition: opacity 0.3s, z-index 0s 0.3s;
}
.nazka-press-visual-popup:before {
  vertical-align: middle;
  display: inline-block;
  width: 0;
  height: 100%;
  overflow: hidden;
  content: "";
}
.vanilla-modal.modal-visible .nazka-press-visual-popup {
  z-index: 1001;
  opacity: 1;
  transition: opacity 0.3s;
}
.nazka-press-visual-popup__inner {
  position: relative;
  vertical-align: middle;
  transform: scale(0);
  z-index: -1;
  display: inline-block;
  max-width: 90%;
  max-height: 90%;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  text-align: left;
  opacity: 0;
  overflow: hidden;
  white-space: normal;
  transition: opacity 0.3s, transform 0.3s, z-index 0s 0.3s;
}
.modal-visible .nazka-press-visual-popup__inner {
  transform: scale(1);
  z-index: 100;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
}
.nazka-press-visual-popup__inner__content {
  font-size: 0;
}
.nazka-press-visual-popup__inner__content img,
.nazka-press-visual-popup__inner__content video {
  max-height: calc(100vh - 112px);
  max-width: calc(100vw - 60px);
  min-width: 200px;
  border: 5px solid #fff;
}
.nazka-jobs__content {
  padding: 20px 0 20px;
  font-size: 24px;
  text-align: center;
}
.nazka-jobs__content__title {
  font-size: 28px;
}
.nazka-jobs__content__intro {
  margin-top: 24px;
  font-size: 34px;
}
.nazka-jobs__content__introreadmore {
  text-align: center;
}
.nazka-jobs__content__introreadmore > a {
  position: relative;
  font-size: 16px;
  display: inline-block;
  height: 41px;
  padding: 0 36px 0 24px;
  background: transparent;
  border: 1px solid #044973;
  border-radius: 6px;
  color: #044973;
  text-transform: uppercase;
  line-height: 39px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.nazka-jobs__content__introreadmore > a:hover {
  color: #fff;
  background: rgba(4,73,115,0.9);
}
.nazka-jobs__content__introreadmore > a:after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 1;
  width: 20px;
  height: 20px;
  background: url("/img/icons/angle-right-primary-color.svg") no-repeat center;
  background-size: contain;
  content: "";
}
.nazka-jobs__content__introreadmore > a:hover:after {
  background-image: url("/img/icons/angle-right-white.svg");
}
.nazka-jobs__content__introreadmore > a + a {
  margin-left: 6px;
}
.nazka-jobs__image {
  position: relative;
  z-index: 1;
  height: 600px;
  width: 100%;
  background: url("/img/outside/NAZKA MAPS - niccola.be -7.jpg") no-repeat center;
  background-size: cover;
}
.nazka-jobs__image:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0) 30%);
  content: "";
}
.nazka-jobs-list {
  padding: 0 0 0;
  font-size: 0;
  perspective: 1000px;
}
@media screen and (min-width: 992px) {
  .nazka-jobs-list {
    display: flex;
  }
}
.nazka-jobs-list__content {
  padding: 40px 0 40px;
  font-size: 26px;
  text-align: left;
}
.nazka-jobs-list__content h3 {
  font-weight: bold;
}
.nazka-jobs-list__item {
  transform: rotateX(0) rotateY(0) scale(1);
  background: #ddd;
  transition: all 0.6s ease;
}
@media screen and (min-width: 768px) {
  .nazka-jobs-list__item {
    width: 50%;
  }
}
.nazka-jobs-list__item + .nazka-jobs-list__item {
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  .nazka-jobs-list__item + .nazka-jobs-list__item {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .nazka-jobs-list__item:nth-child(even) {
    margin-left: 15px;
  }
}
.nazka-jobs-list__item > a {
  display: block;
}
.nazka-jobs-list__item > a > img {
  width: 100%;
}
.qoute-block-jobs {
  position: relative;
  display: flex;
  min-height: 200px;
  margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0)), url("/img/jobs/NAZKA MAPS - niccola.be -150.jpg") no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 480px) {
  .qoute-block-jobs {
    min-height: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .qoute-block-jobs {
    min-height: 350px;
  }
}
@media screen and (min-width: 1366px) {
  .qoute-block-jobs {
    min-height: 400px;
  }
}
.qoute-block-jobs__text {
  color: #fff;
  background-color: rgba(0,0,0,0.4);
  border-radius: 20px;
  text-align: center;
  padding: 10px;
  font-size: 28px;
  text-align: center;
  text-shadow: 1px 1px rgba(0,0,0,0.5);
  text-shadow: -1px -1px rgba(0,0,0,0.5);
}
.nazka-contact-block {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .nazka-contact-block {
    flex-wrap: wrap;
  }
}
.nazka-contact-block__map-block {
  position: relative;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  min-height: 300px;
  padding: 12px 0;
}
@media screen and (max-width: 767px) {
  .nazka-contact-block__map-block {
    width: 100%;
    margin-bottom: 20px;
    background-position-x: 60%;
  }
}
[data-index="1"] .nazka-contact-block__map-block:before {
  opacity: 1;
}
.nazka-contact-block__map-block__map {
  position: absolute;
  min-height: 450px;
  width: 100%;
}
.form-row__img {
  max-height: 500px;
}
.nazka-contact-block__content-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin: 80px 0;
}
@media screen and (min-width: 768px) {
  .nazka-contact-block__content-row.nazka-contact-block__content-row--mobility,
  .nazka-contact-block__content-row.nazka-contact-block__content-row--address {
    height: 450px;
  }
}
.nazka-contact-block__content-row.nazka-contact-block__content-row--mobility .nazka-contact-block__content-row__img,
.nazka-contact-block__content-row.nazka-contact-block__content-row--address .nazka-contact-block__content-row__img {
  background-image: url("/img/contact/NAZKA MAPS - niccola.be -72.jpg");
  background-size: cover;
  background-position: center;
}
.nazka-contact-block__content-row.nazka-contact-block__content-row--mobility .nazka-contact-block__content-row__text,
.nazka-contact-block__content-row.nazka-contact-block__content-row--address .nazka-contact-block__content-row__text {
  margin: auto;
  padding: 24px;
  font-size: 24px;
}
.nazka-contact-block__content-row.nazka-contact-block__content-row--mobility .nazka-contact-block__content-row__text h2,
.nazka-contact-block__content-row.nazka-contact-block__content-row--address .nazka-contact-block__content-row__text h2,
.nazka-contact-block__content-row.nazka-contact-block__content-row--mobility .nazka-contact-block__content-row__text h3,
.nazka-contact-block__content-row.nazka-contact-block__content-row--address .nazka-contact-block__content-row__text h3 {
  margin-top: 0;
  font-size: 34px;
  text-align: left;
  font-weight: bolder;
}
.nazka-contact-block__content-row.nazka-contact-block__content-row--mobility .nazka-contact-block__content-row__text h3,
.nazka-contact-block__content-row.nazka-contact-block__content-row--address .nazka-contact-block__content-row__text h3 {
  margin-bottom: $vertical-spacin;
}
.nazka-contact-block__content-row.nazka-contact-block__content-row--mobility .nazka-contact-block__content-row__text a,
.nazka-contact-block__content-row.nazka-contact-block__content-row--address .nazka-contact-block__content-row__text a {
  text-decoration: underline;
}
.nazka-contact-block__content-row.nazka-contact-block__content-row--mobility .nazka-contact-block__content-row__img,
.nazka-contact-block__content-row.nazka-contact-block__content-row--contact .nazka-contact-block__content-row__img {
  border-radius: 3px;
  overflow: clip;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24), inset 0 0 1px #fff;
  height: 400px;
  order: -1;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .nazka-contact-block__content-row.nazka-contact-block__content-row--mobility .nazka-contact-block__content-row__img,
  .nazka-contact-block__content-row.nazka-contact-block__content-row--contact .nazka-contact-block__content-row__img {
    height: auto;
    order: 0;
    margin-left: 24px;
  }
}
.nazka-contact-block__content-row.nazka-contact-block__content-row--address {
  border-radius: 5px;
  overflow: clip;
}
.nazka-contact-block__content-row.nazka-contact-block__content-row--address .nazka-contact-block__content-row__img {
  background-image: url("/img/contact/NAZKA MAPS - niccola.be -94.jpg");
  box-shadow: inset 0 0 2px #fff;
  margin-left: 0;
  background-size: cover;
  width: 90%;
  transform: scale(1.6);
  background-position: -150px 15px;
  height: 400px;
  order: -1;
}
@media screen and (min-width: 768px) {
  .nazka-contact-block__content-row.nazka-contact-block__content-row--address .nazka-contact-block__content-row__img {
    height: auto;
    order: 0;
    margin-left: 24px;
  }
}
.nazka-contact-block__content-row.nazka-contact-block__content-row--address .nazka-contact-block__content-row__text {
  top: 50%;
  width: 320px;
  padding: 54px 24px;
  background: #fff;
  font-size: 22px;
  z-index: 100;
}
.nazka-contact-block__content-row.nazka-contact-block__content-row--address .nazka-contact-block__content-row__text .js-contact-block-route {
  text-decoration: underline;
}
.nazka-contact-block__content-row > * {
  width: calc(50% - 24px);
}
@media screen and (max-width: 767px) {
  .nazka-contact-block__content-row {
    flex-direction: column;
  }
  .nazka-contact-block__content-row > * {
    width: 100% !important;
  }
}
.nazka-contact-block__content-row__form-block {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .nazka-contact-block__content-row__form-block {
    width: 100%;
  }
}
.nazka-contact-block__content-row__img {
  position: relative;
  width: 50%;
  margin-left: 24px;
  background-image: url("/img/contact/NAZKA MAPS - niccola.be -230.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .nazka-contact-block__content-row__img {
    width: 100%;
  }
}
.nazka-contact-block__content-row__img__text {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  padding: 10px;
}
.nazka-contact-block__content-row__img__info-block {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 1;
  padding: 12px 12px;
  background: rgba(255,255,255,0.95);
}
.nazka-contact-block__content-row__img__info-block > h3 {
  color: #044973;
  font-weight: 700;
  text-transform: uppercase;
}
.nazka-contact-block__content-row__img__info-block > h3:not(:first-child) {
  margin-top: 20px;
}
.nazka-contact-block__content-row__img__info-block > h3:nth-child(2) {
  margin-top: 10px;
}
.nazka-contact-block__content-row__img__info-block > span {
  display: block;
}
.nazka-contact-block__content-row__img__info-block > span small {
  font-size: 12px;
}
.nazka-contact-block__content-row__img__info-block > span img {
  width: 14px;
  margin-right: 6px;
  opacity: 0.6;
}
.nazka-contact-block__content-row__img__info-block__route {
  padding-bottom: 10px;
  border-bottom: 1px dashed #ddd;
}
.nazka-contact-block__content-row__img__info-block__route + h3 {
  margin-top: 10px !important;
}
.nazka-contact-form {
  position: relative;
  min-height: 254px;
}
.nazka-contact-form.success > button[type="submit"],
.nazka-contact-form.error > button[type="submit"] {
  visibility: hidden;
}
.nazka-contact-form > button[type="submit"] {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  display: block;
  min-width: 120px;
  font-size: 14px;
  border-radius: 3px;
  background-color: #26b8d7;
}
.nazka-contact-form > button[type="submit"]:hover {
  background-color: #1e93ac;
}
.nazka-contact-form > input[name="honeypot"] {
  position: absolute;
  top: -99999px;
  left: -99999px;
  opacity: 0;
}
.nazka-contact-form__field {
  position: relative;
  margin-bottom: 20px;
  border: none;
}
.nazka-contact-form__field:last-of-type {
  margin-bottom: 0;
}
.nazka-contact-form__field.invalid {
  border-color: #dc3545;
}
.nazka-contact-form__field > input,
.nazka-contact-form__field > textarea {
  display: block;
  width: 100%;
  border: 1.5px solid rgba(221,221,221,0.75);
  border-radius: 1px;
  font-size: 18px;
  font-family: 'Open Sans Condensed', sans-serif;
  outline: none;
}
.nazka-contact-form__field > input {
  height: 50px;
  padding: 0 12px;
  line-height: 50px;
}
.nazka-contact-form__field > textarea {
  height: 108px;
  padding: 12px 12px;
  line-height: 22px;
}
.nazka-contact-form__field__error-message {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  display: none;
  color: #dc3545;
  font-size: 11px;
  font-weight: 700;
}
.invalid > .nazka-contact-form__field__error-message {
  display: block;
}
.nazka-contact-form__feedback {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  background: #fff;
  content: "";
}
.success .nazka-contact-form__feedback,
.error .nazka-contact-form__feedback {
  z-index: 1;
}
.nazka-contact-form__feedback__succes,
.nazka-contact-form__feedback__error {
  position: absolute;
  transform: translateY(-30%);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  opacity: 0;
  background-color: #fff;
}
.success .nazka-contact-form__feedback__succes {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.error .nazka-contact-form__feedback__error {
  opacity: 1;
  transform: translateY(0);
}
.FORM-controls-options {
  letter-spacing: normal;
  word-spacing: normal;
  color: #354c5f;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
  width: auto;
  height: auto;
  line-height: normal;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
  position: relative;
  display: block;
}
.FORM-controls-help-message {
  letter-spacing: normal;
  word-spacing: normal;
  color: #354c5f;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  width: auto;
  height: auto;
  line-height: 150%;
  margin: 12px 0 12px 0;
  padding: 0;
  text-transform: none;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.FORM0-controls-form > input {
  display: block;
  width: 100%;
  min-width: auto;
  line-height: normal;
  min-height: auto;
  padding: 10px;
  border: 1px solid #e9f1fd;
  font-family: "Poppins", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400;
  letter-spacing: normal;
  word-spacing: normal;
  text-align: left;
  box-shadow: none !important;
  outline: none;
  box-sizing: border-box;
  animation: none;
  user-select: auto;
  padding-top: 0;
  padding-bottom: 0;
  height: 50px;
  margin: 0 0 10px 0;
  background: #fafbfd;
  border-color: #e9f1fd;
  border-radius: 10px;
  color: #354c5f;
}
.FORM0-controls-form > textarea {
  display: block;
  width: 100%;
  min-width: auto;
  height: auto;
  line-height: normal;
  min-height: auto;
  padding: 10px;
  border: 1px solid #e9f1fd;
  border-radius: 2px;
  background: none;
  font-family: "Poppins", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400;
  letter-spacing: normal;
  word-spacing: normal;
  color: #354c5f;
  text-align: left;
  background: #fafbfd;
  box-shadow: none !important;
  outline: none;
  box-sizing: border-box;
  animation: none;
  user-select: auto;
  margin: 0 0 10px 0;
  height: 100px;
  background: #fafbfd;
  border: 1px solid #e9f1fd;
  border-radius: 10px;
  transition: all 0.1s linear;
  min-height: 108px;
  max-height: 327px;
  resize: vertical;
  overflow-y: auto;
}
.FORM0-controls-form > .g-recaptcha {
  margin: 0 0 10px 0;
}
.FORM-disclaimer {
  letter-spacing: normal;
  word-spacing: normal;
  color: #354c5f;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  font: inherit;
  box-sizing: border-box;
  all: unset;
  display: block;
  width: auto;
  height: auto;
  line-height: normal;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
  margin: 0 0 10px 0;
  padding: 4px 0 4px 0;
  font-size: 18px;
}
.FORM0-controls-send {
  overflow: hidden;
  position: relative;
  display: block;
  height: 46px;
  padding: 0 24px;
  margin: 20px 0 12px 0;
  border-radius: 24px;
  box-sizing: border-box;
  font-weight: 600;
  font-family: "Poppins", Helvetica, Arial, sans-serif !important;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s linear;
}
.FORM-button-input {
  position: relative;
  display: block;
  margin: 0;
  border: none;
  border-radius: 20px;
  line-height: normal;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: normal;
  word-spacing: normal;
  text-decoration: none;
  text-align: center;
  background-color: #6042ec !important;
  color: #fff !important;
  background-color: #044973 !important;
  color: #fff !important;
  cursor: pointer;
  box-shadow: 1px 1px 2px #000;
  box-sizing: border-box;
  outline: none;
}
ubdiv {
  all: unset;
  display: block;
}
.suspended-projects-intro {
  padding: 160px 0 80px;
  font-size: 34px;
}
.suspended-projects-intro > a {
  color: #26b8d7;
}
.suspended-projects-list {
  flex-wrap: wrap;
  display: flex;
  margin-top: 30px;
}
.suspended-projects-list__item {
  position: relative;
  float: left;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  background-size: cover !important;
  background-color: #ddd !important;
  border-radius: 1px;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .suspended-projects-list__item {
    display: inline-block;
    width: calc(50% - 15px);
    margin-bottom: 30px;
    padding-bottom: calc(50% - 30px);
  }
  .suspended-projects-list__item:nth-child(2n+2) {
    margin-left: 30px;
  }
}
.suspended-projects-list__item__content {
  position: absolute;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  font-size: 0;
}
.suspended-projects-list__item__content__main {
  position: relative;
  align-self: flex-end;
  z-index: 1;
  transform: translateZ(0);
  width: 100%;
  min-height: 103px;
  padding: 18px 12px 12px;
  border-top: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  .suspended-projects-list__item__content__main {
    min-height: 25%;
  }
}
.suspended-projects-list__item__content__main__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .suspended-projects-list__item__content__main__title {
    font-size: 26px;
    line-height: 30px;
  }
}
.suspended-projects-list__item__content__main__description,
.suspended-projects-list__item__content__main__website,
.suspended-projects-list__item__content__main__creator,
.suspended-projects-list__item__content__main__contact-email {
  margin-top: 6px;
}
.suspended-projects-list__item__content__main__website {
  text-decoration: line-through;
}
.nazka-page-not-found-block {
  position: relative;
  align-items: center;
  display: flex;
  min-height: 500px;
  height: calc(100vh - 382px);
  text-align: center;
}
.nazka-page-not-found-block__content {
  width: 100%;
  margin-top: 36px;
}
.nazka-page-not-found-block__content__wrapper {
  position: relative;
  height: 400px;
  width: 600px;
  margin: auto;
  background-image: url("/img/icons/map-duotone.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.nazka-page-not-found-block__content__wrapper__mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 125px;
  width: 125px;
  border-radius: 50%;
  overflow: clip;
}
.nazka-page-not-found-block__content__wrapper__mask__map {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: calc(100% + 150px);
  width: 100%;
  overflow: hidden;
  overflow: clip;
}
.nazka-page-not-found-block__content__wrapper__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(17px) translateY(17px);
  height: 180px;
  width: 180px;
  z-index: 1;
  margin: 0 auto;
  background-image: url("/img/icons/magnifying-glass-light.svg");
  background-size: contain;
}
.nazka-page-not-found-block__content__window__title {
  margin-top: 0;
}
.nazka-page-not-found-block__content__btn {
  margin-top: 20px;
}
.nazka-page-header__content__text__superscriptfilter {
  margin-bottom: 10px;
}
.nazka-page-header__content__text__superscriptfilter a {
  text-decoration: underline;
}
.nazka-page-header__content__text__superscriptfilter img {
  width: 5px;
  margin: 0 7px;
}
.info {
  margin: 40px;
  font-size: 26px;
}
.info h3 {
  font-weight: bold;
}
.timeline {
  box-sizing: border-box;
  position: relative;
  max-width: 1200px;
  height: 1900px;
  margin: 0 auto;
  padding-bottom: 40px;
  font-size: 22px;
}
.timeline h4 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #f8f8f8;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}
.timelinearea {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
.timelinearea::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: #fff;
  border: 4px solid #00abd2;
  top: 17px;
  border-radius: 50%;
  z-index: 1;
}
.left {
  left: 0;
}
.right {
  left: 50%;
}
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 20px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f8f8f8;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f8f8f8;
}
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 20px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f8f8f8;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f8f8f8 transparent transparent;
}
.right::after {
  left: -12px;
  top: 17px;
}
.content {
  padding: 20px 30px;
  background-color: #f8f8f8;
  position: relative;
  border-radius: 6px;
}
.content img {
  margin-top: 10px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .timeline::after {
    left: 31px;
  }
  .timeline {
    height: 100%;
  }
  .timeline .timelinearea {
    top: 0px;
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timelinearea::before {
    left: 60px;
    border: medium solid #f8f8f8;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f8f8f8 transparent transparent;
  }
  .left::after,
  .right::after {
    left: 19px;
  }
  .right {
    left: 0%;
  }
}
.nazka-approach-stack {
  margin: 40px 0 40px;
}
.nazka-approach-stack__intro {
  font-size: 24px;
}
.nazka-approach-stack__intro strong {
  font-weight: 700;
}
.nazka-approach-stack__logos {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .nazka-approach-stack__logos {
    margin-top: 20px;
  }
}
.nazka-approach-stack__logos__item {
  width: 33.333333333333336%;
  margin-bottom: 20px;
  padding: 0 12px;
}
@media screen and (min-width: 480px) {
  .nazka-approach-stack__logos__item {
    width: 20%;
  }
}
@media screen and (min-width: 992px) {
  .nazka-approach-stack__logos__item {
    width: 11.11111111111111%;
  }
}
.nazka-approach-stack__logos__item--xpadded {
  padding: 0 24px;
}
.nazka-approach-stack__logos__item img {
  width: 100%;
}
.nazka-problem-solution {
  padding: 40px 0;
  background: #fff;
}
.nazka-problem-solution__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .nazka-problem-solution__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}
.nazka-problem-solution__text {
  flex: 1;
}
.nazka-problem-solution__title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .nazka-problem-solution__title {
    font-size: 44px;
  }
}
.nazka-problem-solution__body {
  font-size: 24px;
  line-height: 1.6;
  color: #333;
  min-height: 200px;
}
@media screen and (min-width: 992px) {
  .nazka-problem-solution__body {
    min-height: 280px;
  }
}
.nazka-problem-solution__body p {
  margin: 0 0 16px;
}
.nazka-problem-solution__body p:last-child {
  margin-bottom: 0;
}
.nazka-problem-solution__image {
  flex: 1;
}
.nazka-problem-solution__image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
@media screen and (min-width: 992px) {
  .nazka-problem-solution__image img {
    max-height: 500px;
  }
}
.nazka-problem-solution__indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.nazka-problem-solution__indicator {
  position: relative;
  width: 40px;
  height: 4px;
  background: rgba(4,73,115,0.2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  overflow: visible;
}
.nazka-problem-solution__indicator::before {
  content: '';
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: 0;
  right: 0;
  cursor: pointer;
}
.nazka-problem-solution__indicator.active .nazka-problem-solution__indicator__progress {
  animation: fillProgress 5s linear forwards;
}
.nazka-problem-solution__indicator:hover {
  background: rgba(4,73,115,0.5);
}
.nazka-problem-solution__indicator__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #044973;
  border-radius: 2px;
  transition: width 0.3s ease;
}
@-moz-keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-o-keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.nazka-quote-section {
  padding: 40px 0;
  background: #f8f8f8;
}
.nazka-quote-section__title {
  margin: 0 0 40px;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .nazka-quote-section__title {
    font-size: 44px;
  }
}
.nazka-quote-section__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .nazka-quote-section__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .nazka-quote-section__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
.nazka-quote-section__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(4,73,115,0.1);
  border-radius: 16px;
}
.nazka-quote-section__item__logo {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nazka-quote-section__item__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.nazka-quote-section__item__text {
  margin: 0;
  font-size: 24px;
  line-height: 1.6;
  color: #333;
}
.nazka-quote-section__testimonials {
  margin-top: 80px;
}
.nazka-quote-section__testimonials__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .nazka-quote-section__testimonials__content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
.nazka-quote-section__testimonials__image {
  flex: 1;
}
.nazka-quote-section__testimonials__image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
@media screen and (min-width: 992px) {
  .nazka-quote-section__testimonials__image img {
    max-height: 500px;
  }
}
.nazka-quote-section__testimonials__quote-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
}
.nazka-quote-section__testimonials__quote {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 1.6;
  color: #333;
  font-style: normal;
  text-align: left;
}
.nazka-quote-section__testimonials__author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.nazka-quote-section__testimonials__author__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-align: right;
}
.nazka-quote-section__testimonials__author__logo {
  width: 80px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nazka-quote-section__testimonials__author__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.nazka-quote-section__testimonials__indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.nazka-quote-section__testimonials__indicator {
  position: relative;
  width: 40px;
  height: 4px;
  background: rgba(4,73,115,0.2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  overflow: visible;
}
.nazka-quote-section__testimonials__indicator::before {
  content: '';
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: 0;
  right: 0;
  cursor: pointer;
}
.nazka-quote-section__testimonials__indicator.active .nazka-quote-section__testimonials__indicator__progress {
  animation: fillProgress 5s linear forwards;
}
.nazka-quote-section__testimonials__indicator:hover {
  background: rgba(4,73,115,0.5);
}
.nazka-quote-section__testimonials__indicator__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #044973;
  border-radius: 2px;
  transition: width 0.3s ease;
}
@-moz-keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-o-keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.what-we-do-v2 {
  padding: 40px 0 80px 0;
  background: #f8f8f8;
}
.what-we-do-v2__title {
  margin: 0 0 40px;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .what-we-do-v2__title {
    font-size: 44px;
  }
}
.what-we-do-v2__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .what-we-do-v2__content {
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
  }
}
.what-we-do-v2__text {
  flex: 1;
  font-size: 24px;
  line-height: 1.6;
  color: #333;
}
.what-we-do-v2__text p {
  margin: 0 0 16px;
}
.what-we-do-v2__text p:last-child {
  margin-bottom: 0;
}
.what-we-do-v2__text a {
  color: #044973;
  text-decoration: underline;
}
.what-we-do-v2__text a:hover {
  color: #044267;
}
.what-we-do-v2__image {
  flex: 1;
}
.what-we-do-v2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.what-we-do-v2__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.what-we-do-v2__cta {
  display: inline-block;
  height: 41px;
  padding: 0 24px;
  background: transparent;
  color: #26b8d7;
  border: 1px solid #26b8d7;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 41px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.what-we-do-v2__cta:hover {
  background: #26b8d7;
  color: #fff;
}

