@charset "UTF-8";
@font-face {
  font-family: "ABCDiatype";
  src: url("../fonts/ABCDiatype-Bold.woff2") format("woff2"), url("../fonts/ABCDiatype-Bold.woff") format("woff");
}
@font-face {
  font-family: "ABCDiatypeMono";
  src: url("../fonts/ABCDiatypeMono-Bold.woff2") format("woff2"), url("../fonts/ABCDiatypeMono-Bold.woff") format("woff");
}
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;
}

img {
  width: 100%;
  height: auto;
}

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

figure {
  line-height: 0;
}

*, *::after, *::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: calc(var(--unit) * 2);
}

.grid > .column {
  grid-column: span var(--span);
}

.wrap--true {
  padding-left: var(--unit);
  padding-right: var(--unit);
}

@media screen and (min-width: 65rem) {
  .grid {
    --gutter: calc(var(--unit) * 1);
    grid-template-columns: repeat(12, 1fr);
    grid-gap: var(--gutter);
  }
}
.row {
  display: grid;
  grid-template-columns: 8;
}
@keyframes popIn {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popInSmall {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulseBig {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.home-cursor {
  z-index: 100;
  position: fixed;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  pointer-events: none;
  display: none;
  font-size: 102px;
  will-change: transform;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.home-cursor span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.expand {
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.1);
}
.expand .plus {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.expand .plus span {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1) 0.4s;
}
.expand .plus span + span {
  transform: rotate(-90deg);
}

.block-intro {
  position: relative;
  padding: 0 var(--unit);
}
.block-intro.state-2 .logo .img-container img.in {
  max-width: 16%;
}
.block-intro.state-2 .logo .img-container img.puls {
  max-width: calc(84% - 20px);
  left: calc(16% + 20px);
  margin-top: -0.7%;
}
.block-intro.start-animation .home-cursor {
  transform: rotate(90deg);
}
.block-intro.start-animation .logo {
  cursor: pointer;
}
.block-intro.start-animation .logo .img-container img.in {
  max-width: 35%;
}
.block-intro.start-animation .logo .img-container img.puls {
  max-width: calc(65% - 20px);
  left: calc(35% + 20px);
  margin-top: -0.48%;
}
.block-intro .logo {
  position: relative;
  padding-bottom: 44.15%;
  height: 0;
  top: 0;
  cursor: pointer;
  left: 0;
  width: 100%;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.block-intro .logo .img-container img.in {
  max-width: 49%;
}
.block-intro .logo .img-container img.puls {
  max-width: calc(51% - 15px);
  left: calc(49% + 15px);
  margin-top: -0.35%;
}
.block-intro .logo img {
  max-height: 100%;
  width: calc(100% - var(--unit));
  position: absolute;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.block-intro .video-container {
  width: calc(100% - var(--unit) * 2);
  padding-bottom: calc(44.15% - 18px);
  position: absolute;
  top: 0;
  left: var(--unit);
  pointer-events: none;
  transition: opacity 1s;
}
.block-intro .video-container .sound {
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 35px;
  height: 35px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  cursor: pointer;
}
.block-intro .video-container .sound.on:after, .block-intro .video-container .sound.off:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 24px;
  height: 24px;
}
.block-intro .video-container .sound.on:after {
  background: url(../img/sound-on.svg) no-repeat center center/100%;
}
.block-intro .video-container .sound.off {
  display: none;
}
.block-intro .video-container .sound.off:after {
  background: url(../img/sound-off.svg) no-repeat center center/100%;
}
.block-intro .video-container .video {
  width: 26%;
  pointer-events: all;
  height: 0;
  padding-top: 14.625%;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
  border-radius: var(--unit);
  overflow: hidden;
  transform: translateZ(0);
}
.block-intro .video-container .video .pause {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.block-intro .video-container .video .play {
  width: 186px;
  height: 186px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -93px;
  margin-top: -93px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  cursor: pointer;
}
.block-intro .video-container .video .play:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 49px 0 49px 86px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.2);
}
.block-intro .video-container iframe, .block-intro .video-container img {
  width: 110%;
  height: 110%;
  position: absolute;
  left: -5%;
  bottom: -5%;
}
.block-intro.collapsed .logo {
  width: 24%;
}
.block-intro.collapsed .logo .img-container img.puls {
  left: 51.2%;
}
.block-intro.collapsed .video-container .video {
  transition: all 0.65s cubic-bezier(0.32, 0.94, 0.6, 1);
  width: 75.165625%;
  padding-top: 44.15%;
}
.block-intro.collapsed .video-container .video .expand .plus span:last-child {
  transform: rotate(0deg);
}

@media all and (max-width: 1500px) {
  .block-intro .video-container .video .play {
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
  }
  .block-intro .video-container .video .play:after {
    margin-left: 5px;
    border-width: 23px 0 23px 33px;
  }
}
@media all and (max-width: 767px) {
  .block-intro {
    padding: 0 15px;
  }
  .block-intro .logo {
    padding-bottom: 115.6%;
    background: url(../img/logo-mobile.svg) no-repeat top center/100%;
  }
  .block-intro .logo img {
    display: none;
  }
  .block-intro .video-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 0;
  }
  .block-intro .video-container .video {
    width: 100%;
    position: relative;
    padding-bottom: 56.2%;
    padding-top: 0;
  }
  .block-intro .video-container .video .expand {
    display: none;
  }
}
.block-text {
  padding: var(--unit) var(--unit) calc(var(--unit) * 2);
}
.block-text h3 {
  padding-bottom: 1em;
}
.block-text p {
  padding-bottom: 1em;
}
.block-text p:last-child {
  padding-bottom: 0;
}
.block-text.text-xs {
  line-height: 1.15;
}
.block-text.text-normal {
  font-size: 2.667em;
  line-height: 1.15em;
}
.block-text.text-medium {
  font-size: 3.556em;
  color: var(--project-color-50);
}
.block-text.text-large {
  font-size: 5.333em;
  color: var(--project-color-35);
}

.seo-blocks .block-text {
  padding: 0 var(--unit);
}

@media all and (max-width: 1250px) {
  .block-text.text-normal {
    font-size: 1.778em;
  }
  .block-text.text-medium {
    font-size: 2.667em;
  }
  .block-text.text-large {
    font-size: 3.556em;
  }
}
@media all and (max-width: 1025px) {
  .block-text.text-normal {
    font-size: 1.2em;
  }
  .block-text.text-medium {
    font-size: 1.35em;
  }
  .block-text.text-large {
    font-size: 1.778em;
    line-height: 1.25em;
  }
}
@media all and (max-width: 1025px) {
  .block-text {
    padding: 15px;
  }
}
.block-image {
  padding: var(--unit) 0;
}
.block-image figure {
  line-height: 1.25em;
}
.block-image figure figcaption {
  padding: var(--unit) var(--unit) 0 var(--unit);
  font-family: var(--secondary-font);
}
.block-image.image-round {
  padding: var(--unit);
}
.block-image.image-round figure {
  padding: var(--unit);
  background: var(--project-color-50);
  border-radius: var(--unit);
}
.block-image.image-round figure figcaption {
  padding: var(--unit) 0;
}

@media all and (max-width: 767px) {
  .block-image figcaption {
    padding: 15px 15px 0 15px;
  }
  .block-image.image-round {
    padding: 15px;
  }
  .block-image.image-round figure {
    padding: 15px;
  }
  .block-image.image-round figure figcaption {
    padding: 15px 0;
  }
}
.block-project.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--unit);
  padding: var(--unit);
}
.block-project.two-column .project-item {
  font-size: 3.556em;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.block-project .project-item {
  padding-bottom: 56.2%;
  font-size: 7.111em;
  position: relative;
  overflow: hidden;
}
.block-project .project-item a {
  display: block;
}
.block-project .project-item a:hover figure img {
  transform: scale(1.05);
}
.block-project .project-item figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-project .project-item figure img {
  transition: all 1.5s;
}
.block-project .project-item figcaption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  width: 100%;
  padding: var(--unit);
}

@media all and (max-width: 1250px) {
  .block-project .project-item {
    font-size: 5.333em;
  }
  .block-project.two-column .project-item {
    font-size: 2.667em;
  }
}
@media all and (max-width: 767px) {
  .block-project figcaption {
    font-size: 32px;
  }
  .block-project.two-column {
    display: block;
    padding: 15px;
  }
  .block-project.two-column .project-item {
    font-size: 1.778em;
  }
  .block-project.two-column .project-item + .project-item {
    margin-top: var(--unit);
  }
  .block-project .project-item {
    font-size: 2.667em;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.block-slider {
  padding: var(--unit) 0 0 var(--unit);
}
.block-slider.framed-true .slider .slick-slide {
  background: var(--project-color-35);
  border-radius: var(--unit);
  padding: var(--unit);
}
.block-slider.framed-true .slider .slick-slide img {
  border-radius: 13px;
}
.block-slider.framed-true .slider figure {
  justify-content: space-between;
}
.block-slider.framed-true .slider .slider-arrow.next {
  right: calc(var(--unit) * 2);
}
.block-slider.framed-true .slider .slider-arrow.previous {
  left: calc(var(--unit) * 2);
}
.block-slider .slider {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
}
.block-slider .slider.slick-initialized {
  visibility: visible;
  opacity: 1;
}
.block-slider .slider .slick-track {
  display: flex !important;
  align-items: stretch;
}
.block-slider .slider .slick-slide {
  display: flex;
  flex-flow: column;
  float: none;
  height: auto;
  flex: 0 0 auto;
}
.block-slider .slider .slick-slide + .slick-slide {
  margin-left: 20px;
}
.block-slider .slider figure {
  display: table;
}
.block-slider .slider figure figcaption {
  display: table-caption;
  caption-side: bottom;
  padding: var(--unit) 2px;
  line-height: 1.2em;
  font-family: var(--secondary-font);
}
.block-slider .slider figure img {
  height: 100%;
  width: auto;
  max-height: 80vh;
}

.slider-arrow {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: absolute;
  cursor: pointer;
  z-index: 1;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: var(--project-color-35);
  top: 50%;
  transform: translateY(-50%);
  margin-top: -42px;
}
.slider-arrow span {
  width: 31px;
  height: 31px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.slider-arrow span:after {
  content: "";
  height: 100%;
  width: 1.5px;
  background: var(--project-color);
  position: absolute;
}
.slider-arrow span:before {
  content: "";
  height: 1.5px;
  width: 100%;
  background: var(--project-color);
  position: absolute;
}
.slider-arrow.previous {
  left: var(--unit);
}
.slider-arrow.previous span {
  transform: translate(-50%, -50%) rotate(-45deg);
  margin-left: 6px;
}
.slider-arrow.next {
  left: auto;
  right: var(--unit);
}
.slider-arrow.next span {
  transform: translate(-50%, -50%) rotate(-45deg) scale(-1);
  margin-left: -6px;
}

@media all and (max-width: 1650px) {
  .block-slider .slider figure img {
    max-height: 53vw;
  }
}
@media all and (max-width: 767px) {
  .block-slider {
    padding: 15px;
  }
  .block-slider .slider figure img {
    max-height: 83vw;
    max-width: 100%;
  }
  .block-slider .slider .slick-slide + .slick-slide {
    margin-left: 15px;
  }
  .block-slider.framed-true .slider .slider-arrow.previous {
    left: 20px;
  }
  .block-slider.framed-true .slider .slick-slide {
    padding: 15px;
  }
  .slider-arrow {
    width: 50px;
    height: 50px;
    margin-top: -70px;
  }
  .slider-arrow.previous span {
    margin-left: 3px;
  }
  .slider-arrow.next {
    margin-left: -90px;
  }
  .slider-arrow.next span {
    margin-left: -3px;
  }
  .slider-arrow span {
    width: 15px;
    height: 15px;
  }
  .slider-arrow span:before {
    transform: rotate(0deg);
    top: 0;
  }
  .slider-arrow span:after {
    transform: rotate(0deg);
    top: 0;
  }
}
.block-textinfo {
  padding: var(--unit);
  display: flex;
  flex-flow: row wrap;
}
.block-textinfo.box-left-true .text {
  order: 1;
}
.block-textinfo.box-left-true .info-box {
  order: 0;
  margin-left: 0;
  margin-right: calc(var(--unit) * 2);
}
.block-textinfo.unboxed-true .info-box {
  flex: 0 0 200px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.block-textinfo.unboxed-true .text {
  flex: 0 0 calc(100% - 240px);
}
.block-textinfo .text {
  font-size: 2.667em;
  line-height: 1.15em;
  color: var(--project-color-75);
  flex: 0 0 calc(100% - 400px);
}
.block-textinfo .info-box {
  flex: 0 0 360px;
  background: var(--project-color-35);
  border-radius: var(--unit);
  margin-left: calc(var(--unit) * 2);
  padding: 28px 37px 55px;
  line-height: 1.3em;
  align-self: baseline;
  font-family: var(--secondary-font);
}

@media all and (max-width: 1250px) {
  .block-textinfo .text {
    font-size: 1.778em;
    flex: 0 0 calc(100% - 340px);
  }
  .block-textinfo .info-box {
    flex: 0 0 300px;
    padding: var(--unit) var(--unit) 35px;
  }
}
@media all and (max-width: 1025px) {
  .block-textinfo .text {
    flex: 0 0 calc(100% - 290px);
  }
  .block-textinfo .info-box {
    flex: 0 0 250px;
  }
}
@media all and (max-width: 767px) {
  .block-textinfo {
    flex-flow: column;
  }
  .block-textinfo .text {
    flex: 0 0 auto;
  }
  .block-textinfo .info-box {
    flex: 0 0 auto;
    margin-left: 0;
    margin-top: var(--unit);
    font-size: 14px;
    line-height: 1.2em;
    padding: 15px;
  }
  .block-textinfo.box-left-true .info-box {
    margin-top: 0;
    margin-bottom: var(--unit);
  }
}
.block-spotlight {
  padding: var(--unit) 0;
}
.block-spotlight figure {
  line-height: 1em;
  position: relative;
  overflow: visible;
  padding-bottom: 56.2%;
}
.block-spotlight figure img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-spotlight figcaption {
  padding: var(--unit) var(--unit) 0 var(--unit);
  line-height: 1.3em;
  font-family: var(--secondary-font);
}
.block-spotlight .box {
  width: 595px;
  z-index: 1;
  background: var(--project-color-15);
  border-radius: var(--unit);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  position: absolute;
  opacity: 0;
  pointer-events: none;
  padding: var(--unit) var(--unit) 70px;
  transition: opacity 0.3s;
  transform: translateY(-100%);
  margin-top: -10px;
  font-family: var(--secondary-font);
}
.block-spotlight .box .text {
  padding-left: var(--unit);
  padding-right: var(--unit);
  line-height: 1.3em;
  width: 260px;
  float: left;
}
.block-spotlight .box .image {
  height: 262px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  width: 287px;
  float: left;
}
.block-spotlight .box .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-spotlight .box .expand {
  opacity: 0;
  transition: all 0.3s;
  background: var(--project-color-35);
}
.block-spotlight .box .expand:hover {
  background: #FFF;
}
.block-spotlight .box .expand .plus span {
  background: var(--project-color);
}
.block-spotlight .box.bottom {
  margin-top: 70px;
  transform: translateY(0);
}
.block-spotlight .box.right {
  transform: translateX(-100%) translateY(-100%);
  margin-left: 61px;
}
.block-spotlight .box.right.bottom {
  margin-top: 70px;
  transform: translateX(-100%) translateY(0);
}
.block-spotlight .spot {
  background: var(--project-color-50);
  border-radius: 50%;
  width: 61px;
  height: 61px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
  padding: 9px;
  animation: pulseBig 2s infinite;
  transition: all 0.4s;
  cursor: pointer;
}
.block-spotlight .spot:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  border-radius: 50%;
  background: var(--project-color);
  animation: pulse 2s infinite;
}
.block-spotlight .spot:hover {
  background: var(--project-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.block-spotlight .spot:hover:after {
  background: var(--project-color-50);
  backdrop-filter: brightness(1.2);
  -webkit-backdrop-filter: brightness(1.2);
}
.block-spotlight .spot.active {
  cursor: default;
  background: var(--project-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: pulseBig 2s 1 forwards;
}
.block-spotlight .spot.active:after {
  background: var(--project-color-50);
  backdrop-filter: brightness(1.2);
  -webkit-backdrop-filter: brightness(1.2);
  animation: pulse 2s 1 forwards;
}
.block-spotlight .spot.active + .box .expand {
  animation: fadeIn 0.5s 0.25s forwards;
}

@media all and (max-width: 1250px) {
  .block-spotlight .spot {
    width: 40px;
    height: 40px;
  }
  .block-spotlight .box {
    width: 515px;
    padding-bottom: 50px;
  }
  .block-spotlight .box .image {
    width: 210px;
    height: 190px;
  }
  .block-spotlight .box.bottom {
    margin-top: 43px;
  }
  .block-spotlight .box.right {
    margin-left: 40px;
  }
  .block-spotlight .box.right.bottom {
    margin-top: 43px;
  }
}
@media all and (max-width: 767px) {
  .block-spotlight {
    z-index: 1;
    position: relative;
  }
  .block-spotlight figcaption {
    padding: 15px 15px 0 15px;
  }
  .block-spotlight .box {
    left: 15px !important;
    top: 15px !important;
    padding: 15px;
    transform: none !important;
    width: calc(100% - 30px);
    height: auto;
    margin-left: 0 !important;
    margin-top: 0 !important;
    display: flex;
    overflow: auto;
    flex-flow: column wrap;
    padding-bottom: 28px;
  }
  .block-spotlight .box .text {
    float: none;
    margin-top: 15px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.2em;
  }
  .block-spotlight .box .image {
    float: none;
    width: calc(100% - 30px);
    height: 0;
    padding-bottom: 80%;
  }
  .block-spotlight .box .expand {
    position: absolute;
    top: 4px;
    bottom: auto;
    right: 4px;
    left: auto;
  }
}
.block-image-infobox {
  display: flex;
  padding: var(--unit);
  flex-flow: row wrap;
  transition: all 0.4s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.block-image-infobox .expand {
  background: var(--project-color-35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.block-image-infobox .expand .plus span {
  background: var(--project-color);
}
.block-image-infobox .expand:hover {
  background: #FFF;
}
.block-image-infobox > figure {
  flex: 0 0 calc(100% - 360px - 10px);
  margin-right: 10px;
  position: relative;
  height: 0;
  padding-bottom: calc(0.5625 * (100% - 360px));
  transition: all 0.4s cubic-bezier(0.32, 0.94, 0.6, 1);
  cursor: pointer;
}
.block-image-infobox > figure:hover .expand {
  background: #FFF;
}
.block-image-infobox > figure img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-image-infobox > figure .expand {
  display: none;
  left: auto;
  right: 5px;
}
.block-image-infobox .info-box {
  background: var(--project-color-35);
  border-radius: var(--unit);
  position: relative;
  align-self: baseline;
  flex: 0 0 360px;
  transition: all 0.4s cubic-bezier(0.32, 0.94, 0.6, 1);
  overflow: hidden;
  font-family: var(--secondary-font);
  cursor: pointer;
}
.block-image-infobox .info-box:hover .expand {
  background: #FFF;
}
.block-image-infobox .info-box figure {
  opacity: 0;
  transition: all 0.4s;
  display: none;
}
.block-image-infobox .info-box figure figcaption {
  opacity: 0;
}
.block-image-infobox .info-box figure img {
  padding: var(--unit);
}
.block-image-infobox .info-box .caption {
  padding: calc(var(--unit) * 2) calc(var(--unit) * 2) calc(56.2% - 80px) calc(var(--unit) * 2);
  transition: all 0.4s cubic-bezier(0.32, 0.94, 0.6, 1);
  line-height: 1.15em;
}
.block-image-infobox.state-1 > figure {
  flex: 0 0 360px;
  padding-bottom: 202.5px;
}
.block-image-infobox.state-1 > figure .expand {
  display: block;
}
.block-image-infobox.state-1 .info-box {
  flex: 0 0 calc(100% - 360px - 10px);
}
.block-image-infobox.state-1 .info-box figure {
  opacity: 1;
  transition: all 0.6s 0.2s;
  display: flex;
  flex-flow: column;
}
.block-image-infobox.state-1 .info-box figure img {
  animation: fadeIn 1s;
  image-orientation: none;
}
.block-image-infobox.state-1 .info-box figure figcaption {
  opacity: 1;
  line-height: 1.2em;
  padding: calc(var(--unit)) 30px;
}
.block-image-infobox.state-1 .info-box .caption {
  display: none;
}
.block-image-infobox.state-1 .info-box .expand {
  display: none;
}

@media all and (max-width: 1250px) {
  .block-image-infobox > figure {
    padding-bottom: calc(0.5625 * (100% - 300px));
    flex: 0 0 calc(100% - 300px - 10px);
  }
  .block-image-infobox .info-box {
    flex: 0 0 300px;
  }
  .block-image-infobox .info-box .caption {
    padding: var(--unit) var(--unit) calc(56.2% - 40px) var(--unit);
  }
  .block-image-infobox.state-1 .info-box {
    flex: 0 0 calc(100% - 300px - 10px);
  }
  .block-image-infobox.state-1 > figure {
    flex: 0 0 300px;
    padding-bottom: 168.75px;
  }
}
@media all and (max-width: 1025px) {
  .block-image-infobox > figure {
    padding-bottom: calc(0.5625 * (100% - 250px));
    flex: 0 0 calc(100% - 250px - 10px);
  }
  .block-image-infobox .info-box {
    flex: 0 0 250px;
  }
  .block-image-infobox.state-1 .info-box {
    flex: 0 0 calc(100% - 250px - 10px);
  }
  .block-image-infobox.state-1 > figure {
    flex: 0 0 250px;
    padding-bottom: 140.625px;
  }
}
@media all and (max-width: 767px) {
  .block-image-infobox {
    flex-flow: column;
  }
  .block-image-infobox .info-box {
    align-self: auto;
    margin-top: 10px;
    flex: 0 0 auto;
    font-size: 14px;
    line-height: 1.2em;
  }
  .block-image-infobox .info-box .expand {
    bottom: auto;
    top: 5px;
  }
  .block-image-infobox .info-box .caption {
    padding: 50px 15px 15px 15px;
  }
  .block-image-infobox > figure {
    padding-bottom: 100%;
    margin-right: 0;
  }
  .block-image-infobox > figure .expand {
    left: 5px;
    right: auto;
  }
  .block-image-infobox.state-1 > figure {
    padding-bottom: 56.2%;
    flex: 0 0 auto;
  }
  .block-image-infobox.state-1 .info-box figure figcaption {
    padding: 15px;
  }
}
.block-animation {
  overflow: hidden;
  padding: var(--unit);
  padding-bottom: 60px;
}
.block-animation.spacing-small {
  padding-bottom: 100px !important;
}
.block-animation.spacing-medium {
  padding-bottom: 120px !important;
}
.block-animation.spacing-large {
  padding-bottom: 140px !important;
}
.block-animation figcaption {
  padding-top: calc(var(--unit) * 2);
  line-height: 1.3em;
  hyphens: auto;
  font-family: var(--secondary-font);
}
.block-animation .slider {
  width: 100%;
  padding: var(--unit);
  background: var(--project-color-35);
  border-radius: var(--unit);
}
.block-animation .slick-slide img {
  width: 100%;
  margin: 0 auto;
}
.block-animation .slider-arrow {
  margin-top: 0;
}
.block-animation .slider-arrow.next {
  margin-left: -245px;
}
.block-animation .slider-arrow.previous {
  left: calc(var(--unit) * 2);
}
.block-animation .slick-dots {
  display: flex;
  flex-flow: row wrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  bottom: -50px;
  z-index: 1;
}
.block-animation .slick-dots li {
  width: 12px;
  height: 12px;
  background: var(--project-color-35);
  border-radius: 50%;
  cursor: pointer;
}
.block-animation .slick-dots li.slick-active {
  background: var(--project-color);
}
.block-animation .slick-dots li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: 0;
  text-indent: -999px;
  overflow: hidden;
  position: relative;
  padding: 0;
}
.block-animation .slick-dots li + li {
  margin-left: 6px;
}

@media all and (max-width: 1250px) {
  .block-animation.spacing-small {
    padding-bottom: 90px !important;
  }
  .block-animation.spacing-medium {
    padding-bottom: 105px !important;
  }
  .block-animation.spacing-large {
    padding-bottom: 120px !important;
  }
}
@media all and (max-width: 767px) {
  .block-animation.spacing-small {
    padding-bottom: 60px !important;
  }
  .block-animation.spacing-medium {
    padding-bottom: 75px !important;
  }
  .block-animation.spacing-large {
    padding-bottom: 90px !important;
  }
  .block-animation .slick-dots {
    bottom: -45px;
  }
  .block-animation .slick-dots li {
    width: 8px;
    height: 8px;
  }
  .block-animation .slider {
    width: calc(100vw - 40px);
    padding: 15px;
  }
  .block-animation .slider-arrow {
    margin-top: 0;
  }
  .block-animation .slider-arrow.next {
    margin-left: -115px;
  }
  .block-animation .slider-arrow.previous {
    left: 22px;
  }
}
.block-quote {
  display: flex;
  flex-flow: row wrap;
  padding: var(--unit);
  transition: all 0.4s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.block-quote .btn {
  background: var(--project-color-35);
  padding: 11px 20px;
  margin-top: calc(var(--unit) / 2);
}
.block-quote .btn:first-child {
  margin-right: 5px;
}
.block-quote .btn:hover {
  background: #FFF;
}
.block-quote .expand {
  z-index: 1;
  transition: all 0.2s;
  background: var(--project-color-35);
}
.block-quote .expand .plus span {
  background: var(--project-color);
}
.block-quote .expand:hover {
  background: #FFF;
}
.block-quote .quote {
  align-self: flex-start;
  background: var(--project-color-35);
  padding: 60px 60px 12%;
  border-radius: var(--unit);
  flex: 0 0 calc(100% - 360px - 10px);
  font-size: 5.333em;
  margin-right: calc(var(--unit) / 2);
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.block-quote .quote:hover .expand {
  background: #FFF;
}
.block-quote .quote .excerpt {
  opacity: 0;
  height: 0;
  font-family: var(--secondary-font);
}
.block-quote .quote .expand {
  display: none;
  left: auto;
  right: 5px;
}
.block-quote .author {
  background: var(--project-color-35);
  padding: var(--unit);
  border-radius: var(--unit);
  flex: 0 0 360px;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  padding-bottom: 4.5%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.block-quote .author:hover .expand {
  background: #FFF;
}
.block-quote .author > .name {
  line-height: 1.25em;
  font-family: var(--secondary-font);
}
.block-quote .author .author-bio {
  opacity: 0;
  height: 0;
  position: relative;
}
.block-quote .author .author-bio .image {
  flex: 0 0 40%;
}
.block-quote .author .author-bio .image img {
  border-radius: 13px;
  height: 100%;
  object-fit: cover;
}
.block-quote .author .author-bio .text {
  max-width: 60%;
  overflow: auto;
  position: absolute;
  left: 40%;
  height: calc(100% - 75px);
  font-size: 1.778em;
  padding-left: 45px;
  padding-right: 10px;
  scrollbar-color: var(--project-color) transparent;
  scrollbar-width: thin;
}
.block-quote .author .author-bio .text::-webkit-scrollbar {
  width: 6px;
}
.block-quote .author .author-bio .text::-webkit-scrollbar-track {
  background: var(--project-color-50);
  border-radius: 12px;
}
.block-quote .author .author-bio .text::-webkit-scrollbar-thumb {
  background: var(--project-color);
  border-radius: 12px;
}
.block-quote .author .author-bio .text::-webkit-scrollbar-thumb:hover {
  background: var(--project-color-15);
}
.block-quote .author .author-bio .text .info, .block-quote .author .author-bio .text .name, .block-quote .author .author-bio .text .position {
  line-height: 1.25em;
}
.block-quote .author .author-bio .text .position {
  margin-bottom: 35px;
}
.block-quote .author .author-bio .button-row {
  bottom: 0;
  left: 40%;
  width: 60%;
  padding-left: 45px;
  align-self: flex-end;
  position: absolute;
}
.block-quote.state-1 .quote {
  font-size: 16px;
  padding: var(--unit);
  line-height: 1.25em;
  flex: 0 0 350px;
}
.block-quote.state-1 .quote .excerpt {
  opacity: 1;
  height: auto;
}
.block-quote.state-1 .quote blockquote {
  opacity: 0;
  height: 0;
}
.block-quote.state-1 .quote .expand {
  display: block;
}
.block-quote.state-1 .author {
  flex: 0 0 calc(100% - 360px);
  padding-bottom: var(--unit);
}
.block-quote.state-1 .author > .name {
  display: none;
}
.block-quote.state-1 .author .author-bio {
  transition: opacity 0.4s 0.2s cubic-bezier(0.32, 0.94, 0.6, 1);
  display: flex;
  flex-flow: row wrap;
  opacity: 1;
  height: auto;
}
.block-quote.state-1 .author .expand {
  display: none;
}

@media all and (max-width: 1650px) {
  .block-quote .quote {
    font-size: 3.556em;
    padding: var(--unit) var(--unit) 8%;
  }
}
@media all and (max-width: 1250px) {
  .block-quote .author {
    flex: 0 0 300px;
    padding: var(--unit) var(--unit) 8%;
  }
  .block-quote .author .author-bio .text {
    font-size: 16px;
    padding-left: var(--unit);
  }
  .block-quote .author .author-bio .text .position {
    margin-bottom: 25px;
  }
  .block-quote .author .author-bio .button-row {
    padding-left: var(--unit);
  }
  .block-quote .quote {
    flex: 0 0 calc(100% - 300px - 10px);
    font-size: 2.667em;
    padding: var(--unit) var(--unit) 8%;
  }
  .block-quote.state-1 .quote {
    flex: 0 0 300px;
    padding: var(--unit);
  }
  .block-quote.state-1 .author {
    flex: 0 0 calc(100% - 300px - 10px);
  }
}
@media all and (max-width: 1025px) {
  .block-quote .author {
    flex: 0 0 250px;
  }
  .block-quote .btn {
    display: block;
  }
  .block-quote .btn:first-child {
    margin-right: 0;
  }
  .block-quote .author .author-bio .text {
    height: calc(100% - 123px);
  }
  .block-quote .author .author-bio .text .position {
    margin-bottom: 15px;
  }
  .block-quote .quote {
    flex: 0 0 calc(100% - 250px - 10px);
  }
  .block-quote.state-1 .quote {
    flex: 0 0 250px;
  }
  .block-quote.state-1 .author {
    flex: 0 0 calc(100% - 250px - 10px);
  }
}
@media all and (max-width: 767px) {
  .block-quote {
    flex-flow: column;
  }
  .block-quote .author {
    width: 100%;
    flex: 0 0 auto;
    font-size: 14px;
    line-height: 1.2em;
    padding: 50px 15px 15px;
  }
  .block-quote .author .expand {
    bottom: auto;
    top: 5px;
  }
  .block-quote .author .author-bio .text {
    padding-left: var(--unit);
  }
  .block-quote .author .author-bio .button-row {
    position: relative;
    width: 100%;
    left: 0;
    padding-left: 0;
  }
  .block-quote .quote {
    font-size: 1.778em;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .block-quote .quote .expand {
    right: auto;
    left: 5px;
  }
  .block-quote.state-1 .author {
    flex: 0 0 auto;
    padding: var(--unit);
  }
  .block-quote.state-1 .quote {
    flex: 0 0 auto;
    padding: var(--unit) var(--unit) 50px;
  }
}
.block-team {
  padding: var(--unit) var(--unit) 0 var(--unit);
}
.block-team .row {
  margin-right: -10px;
  margin-left: -10px;
  display: flex;
  flex-flow: row wrap;
}
.block-team .team-member {
  display: flex;
  flex-flow: column;
  flex: 0 0 calc(25% - 20px);
  margin: 0 calc(var(--unit) / 2) calc(var(--unit) * 2);
}
.block-team .team-member .picture {
  overflow: hidden;
}
.block-team .team-member .title {
  font-size: 1.778em;
  padding-top: calc(var(--unit));
}
.block-team .team-member .title strong {
  text-transform: uppercase;
}
.block-team .team-member .text {
  color: #000;
  line-height: 1.2em;
  font-size: 1.778em;
  padding-top: 30px;
  flex: 1 0 auto;
}
.block-team .team-member .contact {
  padding-top: var(--unit);
  line-height: 1.25em;
  display: flex;
  flex-flow: row wrap;
}
.block-team .team-member .contact li .btn {
  background: var(--project-color-15);
  backdrop-filter: brightness(110%);
  min-width: 140px;
}
.block-team .team-member .contact li a {
  color: #000;
}
.block-team .team-member .contact li + li {
  margin-left: 3px;
}

@media screen and (max-width: 1350px) {
  .block-team .team-member {
    flex: 0 0 calc(33.333% - 20px);
  }
}
@media screen and (max-width: 1025px) {
  .block-team .team-member {
    flex: 0 0 calc(50% - 20px);
    margin-bottom: 40px;
  }
  .block-team .team-member .title, .block-team .team-member .text {
    font-size: 1.35em;
  }
  .block-team .team-member .text {
    padding-top: 20px;
  }
  .block-team .team-member .contact {
    padding-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .block-team .row {
    margin-left: 0;
    margin-right: 0;
  }
  .block-team .team-member {
    flex: 0 0 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .block-team .team-member .contact li .btn {
    min-width: calc(50vw - 30px);
  }
  .block-team .team-member .title {
    padding-top: 12px;
  }
  .block-team .team-member .title, .block-team .team-member .text {
    font-size: 1.2em;
  }
}
.block-video {
  padding: var(--unit) 0;
}
.block-video .video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.2%;
}
.block-video .video-container iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.block-video figcaption {
  font-family: var(--secondary-font);
  line-height: 1.2em;
  padding: var(--unit) var(--unit) 0 var(--unit);
}

.block-cinematograph {
  padding: var(--unit) 0;
}
.block-cinematograph .video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.2%;
}
.block-cinematograph .video-container video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.block-cinematograph figcaption {
  font-family: var(--secondary-font);
  line-height: 1.2em;
  padding: var(--unit) var(--unit) 0 var(--unit);
}

.block-cta {
  padding: var(--unit);
}
.block-cta a {
  transition: all 0.2s;
  font-size: 16px;
  border-radius: 90px;
  display: inline-block;
  width: 100%;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background: var(--project-color-35);
}
.block-cta a:hover {
  background: #FFF;
}

body[data-aos-easing=new-easing] [data-aos], [data-aos][data-aos][data-aos-easing=new-easing] {
  transition-timing-function: cubic-bezier(0.32, 0.94, 0.6, 1);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  scroll-behavior: smooth;
}

:root {
  --unit: 20px;
  --primary-font: "ABCDiatype";
  --secondary-font: "ABCDiatypeMono";
  --project-color: var(--color);
  --project-color-75: var(--color-transparency-75);
  --project-color-50: var(--color-transparency-50);
  --project-color-35: var(--color-transparency-35);
  --project-color-25: var(--color-transparency-25);
  --project-color-15: var(--color-transparency-15);
  --project-color-5:	var(--color-transparency-5);
}

header {
  padding: var(--unit) var(--unit);
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  transition: padding 0.3s, height 0.3s, opacity 1s 0.1s;
  color: var(--project-color);
}
header ul {
  display: inline-flex;
  flex-flow: row wrap;
  background: var;
  padding: 3px;
  position: relative;
  background: var(--project-color-35);
  border-radius: 35px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
header ul li {
  position: relative;
  z-index: 1;
}
header ul li a {
  display: inline-block;
}
header nav ul li a {
  padding: 10px 26px;
}
header .menu-options {
  display: flex;
  flex-flow: row wrap;
}
header .menu-options .languages {
  position: relative;
  text-transform: lowercase;
}
header .menu-options .languages ul li a {
  padding: 10px 9px;
}
header .menu-options .languages .menu-item-slider {
  width: 36.67px;
}
header .menu-options .news {
  margin-left: 6px;
  position: relative;
  cursor: pointer;
}
header .menu-options .news.active ul li.count span {
  display: none;
}
header .menu-options .news.active ul li.count:before {
  content: "—";
}
header .menu-options .news ul li {
  padding: 10px 9px;
}
header .menu-options .news ul li.label {
  padding: 10px 20px;
}
header .menu-options .news ul li.count {
  background: #FFF;
  border-radius: 35px;
  width: 38px;
  text-align: center;
}
header .menu-options .news .news-container {
  width: 595px;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 55px;
  overflow: auto;
  scrollbar-color: var(--project-color) transparent;
  scrollbar-width: thin;
  max-height: calc(100vh - 55px);
  padding-bottom: 50px;
}
header .menu-options .news .news-container .block-text, header .menu-options .news .news-container .block-image, header .menu-options .news .news-container figcaption {
  padding: 0;
}
header .menu-options .news .news-container::-webkit-scrollbar {
  width: 6px;
  display: none;
  -webkit-mask-image: -webkit-gradient(linear, left 100%, left 70%, from(rgba(0, 0, 0, 0)), to(#000));
}
header .menu-options .news .news-container::-webkit-scrollbar-track {
  background: var(--project-color-75);
  border-radius: 12px;
}
header .menu-options .news .news-container::-webkit-scrollbar-thumb {
  background: var(--project-color);
  border-radius: 12px;
}
header .menu-options .news .news-container::-webkit-scrollbar-thumb:hover {
  background: var(--project-color-35);
}
header .menu-options .news .news-container.news-active {
  pointer-events: all;
}
header .menu-options .news .news-container.news-active::-webkit-scrollbar {
  display: block;
}
header .menu-options .news .news-container.news-active .msg {
  opacity: 0;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  animation: fadeInDown 0.6s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
header .menu-options .news .news-container.news-active .msg:nth-child(2) {
  animation-delay: 0.05s;
}
header .menu-options .news .news-container.news-active .msg:nth-child(3) {
  animation-delay: 0.1s;
}
header .menu-options .news .news-container .msg {
  border-radius: var(--unit);
  background: var(--project-color-35);
  padding: var(--unit);
  line-height: 1.25em;
  animation: fadeInUp 0.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
header .menu-options .news .news-container .msg img {
  max-width: 100%;
  margin-bottom: 10px;
  border-radius: calc(var(--unit) / 2);
}
header .menu-options .news .news-container .msg + .msg {
  margin-top: calc(var(--unit) / 2);
}
header .menu-item-slider {
  width: 110.67px;
  background: #FFF;
  border-radius: 35px;
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  opacity: 0;
  animation: fadeIn 1s 0.5s forwards;
}

body {
  font-family: var(--primary-font);
  font-size: 100%;
  color: var(--project-color);
  box-sizing: border-box;
  hyphens: auto;
  animation: fadeIn 1s;
  background: var(--project-color-25);
}

footer {
  padding: 0 var(--unit) var(--unit);
}
footer p {
  color: var(--project-color);
  font-size: 1.778em;
  line-height: 1.15em;
}
footer .footer-info {
  line-height: 1em;
  padding-top: 85px;
  padding-bottom: 190px;
  display: grid;
  line-height: 1.25em;
  grid-template-columns: 6fr 5fr 1.5fr 1.5fr;
  gap: var(--unit);
}
footer .footer-info .contact {
  margin-left: var(--unit);
}
footer .footer-info .footer-link {
  text-align: center;
}
footer .footer-info .address {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
footer .jobs-box {
  font-size: 1.778em;
  background: none;
  border-radius: var(--unit);
  padding: var(--unit);
  display: flex;
}
footer .jobs-box .btn {
  background: var(--project-color-15);
  margin-bottom: -17px;
  align-self: flex-start;
  padding: 10px 40px;
}
footer .jobs-box .btn:hover {
  background: #FFF;
}
footer .jobs-box .btn:first-child {
  margin-left: -17px;
  margin-right: 20px;
}
footer .jobs-box .title {
  margin-bottom: 18px;
}
footer .jobs-box .job {
  color: var(--project-color);
}
footer .jobs-box .job + .job {
  margin-top: 10px;
}
footer .jobs-box .job:last-of-type {
  margin-bottom: 35px;
}
footer .bottom-row {
  display: grid;
  grid-template-columns: 6fr 5fr 1.5fr 1.5fr;
  gap: var(--unit);
}
footer .bottom-row > .btn {
  background: var(--project-color-35);
  align-self: flex-end;
}
footer .bottom-row > .btn:hover {
  background: #FFF;
}

.big-plus {
  width: 127px;
  height: 127px;
  margin-right: 35px;
  background: #FFF;
  border-radius: 50%;
  position: relative;
}
.big-plus .icon {
  top: 50%;
  left: 50%;
  margin-top: -31px;
  margin-left: -31px;
  position: absolute;
  width: 62px;
  height: 62px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.big-plus .icon span {
  height: 1px;
  background: #000;
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 1px;
}
.big-plus .icon span + span {
  transform: rotate(-90deg);
  margin-top: -1px;
}

.btn {
  transition: all 0.2s;
  font-size: 16px;
  padding: 11px 10px;
  border-radius: 35px;
  display: inline-block;
  text-align: center;
}

.blocks {
  transition: opacity 1s;
}
.blocks [class^=block-].spacing-small {
  padding-bottom: 40px;
}
.blocks [class^=block-].spacing-medium {
  padding-bottom: 60px;
}
.blocks [class^=block-].spacing-large {
  padding-bottom: 80px;
}

@media all and (max-width: 1600px) {
  footer .jobs-box .btn:first-child {
    margin-right: 5px;
  }
  footer .footer-info {
    grid-template-columns: 3fr 2fr 1fr 1fr;
  }
  footer .footer-info .contact {
    margin-left: 0;
  }
  footer .bottom-row {
    grid-template-columns: 4fr 1fr 1fr 1fr;
  }
}
@media all and (max-width: 1250px) {
  header .menu-options .news .news-container {
    width: 445px;
  }
  footer .footer-info {
    padding-top: 50px;
    padding-bottom: 100px;
    grid-template-columns: 2fr 2fr 1fr 1fr;
  }
  footer .footer-info .contact {
    justify-self: end;
  }
  footer .bottom-row {
    grid-template-columns: 4fr 0fr 1fr 1fr;
  }
  .big-plus {
    width: 65px;
    height: 65px;
    margin-right: 23px;
    transition-duration: 0.3s;
  }
  .big-plus .icon {
    transition-duration: 0.3s;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    margin-top: -16px;
  }
  .blocks [class^=block-].spacing-small {
    padding-bottom: 30px;
  }
  .blocks [class^=block-].spacing-medium {
    padding-bottom: 45px;
  }
  .blocks [class^=block-].spacing-large {
    padding-bottom: 60px;
  }
}
@media all and (max-width: 1025px) {
  footer .jobs-box {
    font-size: 16px;
  }
  footer .jobs-box .job + .job {
    margin-top: 5px;
  }
  footer .jobs-box .job:last-of-type {
    margin-bottom: 25px;
  }
}
@media all and (max-width: 767px) {
  html.scrolled header {
    padding-top: 10px;
  }
  figcaption {
    font-size: 14px;
    line-height: 1.2em;
  }
  header {
    padding: 50px 15px 10px;
    height: auto;
  }
  header .menu-options {
    justify-content: space-between;
    width: 100%;
  }
  header .menu-options .languages {
    order: 1;
  }
  header .menu-options .news {
    margin-left: 0;
  }
  header .menu-options .news .news-container {
    top: 54px;
    left: 0;
    height: calc(100vh - 124px) !important;
    width: calc(100vw - 30px);
    max-height: initial;
  }
  header nav {
    position: fixed;
    bottom: 20px;
    width: calc(100% - 30px);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 35px;
    overflow: hidden;
  }
  header nav ul {
    width: 100%;
    background: var(--project-color-50);
  }
  header nav ul li {
    width: 33.333%;
  }
  header nav ul li a {
    padding: 10px;
    display: block;
    text-align: center;
  }
  header nav .menu-item-slider {
    opacity: 0.5;
  }
  footer {
    padding: 60px 15px 69px 15px;
  }
  footer p {
    font-size: 1.35em;
  }
  footer .jobs-box {
    margin-bottom: 4px;
  }
  footer .jobs-box .btn {
    margin-right: -17px;
    align-self: stretch;
  }
  footer .footer-info {
    display: block;
    padding-top: 30px;
    padding-bottom: 8px;
  }
  footer .footer-info button {
    background: transparent;
    border: none;
    font-family: var(--primary-font);
    font-size: 16px;
  }
  footer .footer-info .address {
    display: block;
  }
  footer .footer-info .contact {
    margin-bottom: calc(var(--unit) * 2);
  }
  footer .footer-info .footer-link {
    display: inline-block;
  }
  footer .footer-info .footer-link + .footer-link {
    margin-left: 5px;
  }
  footer .bottom-row {
    display: block;
  }
  footer .bottom-row > .btn {
    width: calc(50% - 3px);
  }
  .big-plus {
    width: 30px;
    height: 30px;
    margin-right: 13px;
  }
  .big-plus .icon {
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
  }
  .blocks [class^=block-].spacing-small {
    padding-bottom: 15px;
  }
  .blocks [class^=block-].spacing-medium {
    padding-bottom: 30px;
  }
  .blocks [class^=block-].spacing-large {
    padding-bottom: 45px;
  }
}

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