@charset "utf-8";

/* Variables */
:root {
  --text-color: white;
  --whitish: #f7f7f7;
  --light-gray: #909090;
  --lighter-gray: #aaa;
  --gray: #707070;
  --gray-bg: #1c1c1c;
  --dark-gray: #141414;
  --darker-gray: #0d0d0d;
  --black: black;
  --background-color: var(--black);

  --side-padding: 130px;

  --large-header-height: 133px;
  --small-header-height: 61px;

  --simple-header-top: 170px;

  --notch-width: 81px;
  --history-ruler-height: 85px;
}


/* General */
html {
  font-size: 22px;
  background: var(--background-color);
  color: var(--text-color);
  line-height: 1.4;
  letter-spacing: 0.024rem;
  font-weight: normal;
  font-family: 'Telegraf', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
}

html * {
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

body {
  position: relative;
}

.content, .footer, .page__top-bg {
  transition: 0.25s opacity;
  opacity: 1;  
}

.is-loaded .page__top-bg,
.is-loaded .content {
  opacity: 1; 
}

.hide {
  display: none;
}

.column-width {
  --base-width: 704px;
  max-width: calc(var(--base-width) + var(--side-padding) * 2);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.column-width--thumbs {
  --base-width: 1460px;
}

fieldset {
  padding: 0; border: none;
}

legend {
  text-align: center;
}

input,select,textarea {
  outline: none;
}

.wrapper { background: white; padding-bottom: 110px;}
.header .mobile, .mobile, .content .mobile, .tablet, .header .tablet, .content .tablet { display: none } 

*::-webkit-input-placeholder { color: var(--placeholder-color, #9b9b9b); }
*:-moz-placeholder { color: var(--placeholder-color, #9b9b9b); }
*::-moz-placeholder { color: var(--placeholder-color, #9b9b9b); }
*:-ms-input-placeholder { color: var(--placeholder-color, #9b9b9b); }

::selection { background: var(--text-color); color: white; opacity: 1; }

.full-width {
  max-width: 1836px;
  width: 100%;
  padding: 0 80px;
  margin-left: auto;
  margin-right: auto;
}

dt,dd,dl { margin: 0; padding: 0; }

input, select {
  padding: 5px;
  text-align: center;
  border: none;
  background: white;
}

ol, ul, li {
  margin: 0; padding: 0;
  display: block;
}

h1,h2,h3,h4,h5 {
  font-weight: normal;
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0;
}

img, picture {
  display: block;
}

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

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

  /* General typography */
  .body-text {
    font-size: 1rem;
  }

  .small-text {
    font-size: 0.78rem;
    letter-spacing: 0.0192em;
  }

  .title {
    font-size: 4.636rem;
    letter-spacing: -0.1rem;
    font-weight: 600;
    line-height: 1;
  }

  .text h2,
  .subtitle {
    font-size: 2.1818rem;
    font-weight: 500;
    letter-spacing: -0.0em;
  }

  .subtitle *:last-child {
    margin-bottom: 0;
  }

  .subtitle img {
    display: inline-block;

  }

  .text h2 {
    margin-bottom: 1.28rem
  }

  .small-title {
    font-size: 2.727rem;
  }

  .small-subtitle {
    font-size: 1.6363rem;
  }

  .dark-text {
    color: var(--lighter-gray);
  }

  /* "Italic" gradient */
  :root {
    --em-scale: 120%;
    --em-offset: 0%;
  }

  em {
    font-style: normal;

    background: linear-gradient(33deg, #2DB1FF 0,
                                       #0092FF calc(0.24 * var(--em-scale) + var(--em-offset)),
                                       #934DBF calc(0.51 * var(--em-scale) + var(--em-offset)),
                                       #E64D50 calc(0.79 * var(--em-scale) + var(--em-offset)),
                                       #BA2954 calc(1 * var(--em-scale)    + var(--em-offset))
                               );
    -webkit-background-clip: text;
    background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    color: transparent;
  }

  .subtitle {
    --em-scale: 150%;
    --em-offset: -100%;
    font-weight: 300;
  }

  /* Button */
  .button, button, input[type="button"], input[type="reset"], input[type="submit"] {
    font-size: 0.78rem; background: none; border: 1px solid; padding: 14px 34px 14px 34px;
    border-radius: 50px; line-height: 1; letter-spacing: 0.03em;
    min-width: 200px; color: white; border-color: white;
    font-weight: 500; text-align: center;
    transition: 0.25s all; position: relative;
  }

  .button__stroke {
    transition: 0.25s all;
    top: 0px; left: 0px;    
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px; left: -1px;
    right: -1px; bottom: -1px;
    transition: 0.25s all;
  }
  
  .button {
    border-color: transparent;
  }

  .button__stroke-rect--white {
    border: 1px solid; border-radius: 25px;
  }

  .button__stroke-rect--white,
  .button__stroke-rect--gradient {
    transition: 0.25s opacity;
  }

  .button--invert .button__stroke-rect--white {
    display: none;
  }

  .button.button--invert:hover .button__stroke-rect--gradient  {
    opacity: 0;

  }

  .button.button--invert:hover:active .button__stroke-rect--gradient {
    opacity: 1;
  }

  .button--invert:active {
    background: transparent;
  }

  .button:hover .button__stroke-rect--white,
  .button:not(:hover) .button__stroke-rect--gradient {
    opacity: 0;
  }

  .button:hover:active .button__stroke-rect--gradient {
    opacity: 0;
  }

  .button.link--arrow {
    padding-top: 16px; padding-bottom: 13px;
  }

  .button--blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }



  .button.button--invert,
  .button:active, 
  button:active, 
  input[type="button"]:active, 
  input[type="reset"]:active, 
  input[type="submit"]:active {
    background: white; color: black; 
  }

  .button.newsletter__submit {
    min-width: 0;
  }

  .button.button--invert:active {
    background: transparent; color: white;
  }


  /* Links */
  .link {
    transition: 0.25s all;
  }

  .link--arrow .link__inner {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
  }

  .link--arrow .link__inner {
    align-items: center;
  }

  .wordpress-gdpr-popup-privacy-settings-service-category .fa-external-link-alt,
  .wordpress-gdpr-privacy-center-item-action:after,
  .link--arrow .link__inner:after {
    content: ''; display: inline-flex; 
    width: 10px; height: 10px;
    background: url('../images/link-arrow-small.svg') 50% 50% no-repeat;
    background-size: 6px;
    position: relative; top: -3px; margin-left: 0;
  }


  .wordpress-gdpr-privacy-settings-popup-services-container .fa-external-link-alt {
    opacity: 0.5; left: -2px; 
  }

  .link--arrow.button--invert:not(:active) .link__inner:after,
  .button.link--arrow:not(.button--invert):active .link__inner:after {
    background-image: url('../images/link-arrow-small-black.svg');
  }

  
/* Forms */
textarea,
input[type="email"], 
input[type="text"], 
input[type="tel"], 
.chosen-single,
.select2-results__options,
.select2-selection,
input[type="number"] {
  background: rgba(0,0,0,0.35); border: 1px solid; border-radius: 4px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  padding: 13px 14px; text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.0145em;
  display: inline-block;
  width: 100%;
}

.ginput_container_textarea,
textarea {
  height: 100%;
}

.gfield.form-item--half {
  width: calc(50% - 10px);
  margin-right: 20px;
  float: left;
  clear: none;
}

.form-item--textarea {
  height: 150px; position: relative;
}

.gfield.form-item--subject {
  margin-bottom: -1px;
}

.gfield.form-item--subject input {
  border-bottom: none;  
}

.gfield.form-item--subject + .gfield textarea {
  border-radius: 0 0 5px 5px;
}

.form-item--subject input {
  border-radius: 5px 5px 0 0;
}

.form-item--half:nth-child(even) {
  margin-right: 0;
}

.gfield  {
  margin-bottom: 20px;
  position: relative;
  clear: both;
}

.select2-selection {
  outline: none; line-height: 1;
}

.select2-container {
  z-index: 99999;
}

.select2-search,
select {
  display: none;
}

.header input[type="email"],
.header input[type="text"],
.header .chosen-single,
.header .select2-container,
.header .select2-selection,
.header .select2-results__options,
.header .chosen-results,
.header input[type="tel"] {
  background-color: transparent; 
  backdrop-filter: none;
  -webkit-backdrop-filter: blur(5px);
}


.hidden_label .gfield_label { display: none; }

.select2-selection,
.chosen-container {
  position: relative;
  width: 100% !important;
}

.select2-results__options {
  border: 1px solid; border-radius: 4px;      
  background: rgba(0,0,0,0.75);
  width: 100%;
  margin-top: 19px;
  width: 129px;
  padding: 0;
}

.gform_wrapper {
  transition: 0.25s all;
}

.gform_wrapper.is-loading {
  opacity: 0.5; pointer-events: none;
}

.select2-results__options:hover .select2-results__option {
  opacity: 0.5;
}

.select2-results__options:hover .select2-results__option:hover {
  opacity: 1;
}

.select2-results__option {
  padding: 4px 15px;
  transition: 0.25s all;
}

.select2-results__option:first-child {
  padding-top: 15px;
}

.select2-results__option:last-child {
  padding-bottom: 15px;
}

.active-result {
  padding: 6px 14px;
  transition: 0.25s all;
  text-align: left;
}

.active-result.highlighted {
  background: rgba(255,255,255,0.5);
}

.active-result.result-selected {
  background: white; color: black;
}

#error {
  position: fixed; top: calc(var(--vh, 1vh) * -100);
}


.validation_message {
  margin-top: 9px;
  font-size: 0.7rem;   
  text-align: left;
}

.ginput_recaptcha ~ .validation_message,
.form-item--textarea .validation_message,
.form-item--subject .validation_message {
  position: absolute; right: 12px; z-index: 2; top: 3px;
}

.ginput_recaptcha ~ .validation_message {
  top: auto; left: 19px; right: 0; margin-top: 16px;
  width: 200px;
}

.gform_wrapper form {
  position: relative;
}

.gform_footer {
  position: absolute; bottom: 0;
  right: 20px; 
}

.ginput_recaptcha {
  transform-origin: 0 100%;
  transform: scale(0.68);
  margin-top: -16px;
  margin-left: 20px;
}

select,
.select2-selection,
.chosen-single {
  width: 100%;
  background: url('../images/dropdown.svg') right 8px top 50% no-repeat;
  padding-left: 15px;
  line-height: 1;
}

.select2-container--open .select2-selection,
.chosen-with-drop .chosen-single {
  background-image: url('../images/dropup.svg');
  background-position: right 15px top 47%;
}

.form-item--contact-dropdown {
  width: 129px;
  float: left;
  margin-left: 16px;
}

.gfield input {
  width: 100%;
}

.form-item--contact-detail {
  float: left;
  width: 367px;
}

.form-item--contact-subscribe {
  clear: both;
  padding-top: 15px;
  margin-bottom: 39px;
}

.gfield_checkbox li {
  display: flex;
  align-items: center;
}

input[type="checkbox"] {
  width: 16px; height: 16px;
  border: 1px solid;
  border-radius: 4px;
  background: transparent;
  margin-right: 15px;
  position: relative; top: -2px;
}

input[type="checkbox"]:checked {
  background: url('../images/checkbox.svg') 51% 46% no-repeat;
}

.gform_button.button {
  min-width: 0; padding: 13px 21px;
}

/* Custom cursor */
.is-custom-cursor, .is-custom-cursor * { 
  cursor: none !important;
}

#chromeperfectpixel-panel-container, #chromeperfectpixel-panel-container *,
#wpadminbar * {
  cursor: default !important;
}

#wpadminbar a {
  cursor: pointer !important;
}

.cursor {
  position: fixed;
  display: block; width: 115px; height: 115px;
  pointer-events: none;
  transform: translateZ(0); z-index: 999999999;
}

.cursor--pointer {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: white;
  mix-blend-mode: difference; 
  margin-top: -6px; margin-left: -6px;  
  transition: 0.25s ease-out width, 0.25s ease-out height;    
}

.cursor--glow,
.cursor--throb {
  width: 100px; height: 100px;
  mix-blend-mode: lighten;
  background-blend-mode: screen;
  background-size: 101px;
  margin-top: -50px; margin-left: -50px;
}

@keyframes rotate { 100% { transform:rotate(360deg); } }

.cursor--glow {
  background-image: url('../images/cursor.png');
  animation: rotate 5s linear infinite;    
  transform: none;
  transform-origin: 50% 50%;
  opacity: 0;
  background-size: 59px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: 0.25s opacity ease-out, 0.25s background ease-out;    
}


.cursor--throb {
  opacity: 0;
  transition: 0.75s opacity;
}

.cursor--throb.is-down {
  transition: 0.75s opacity;
}

.cursor--glow.is-hover {
  background-size: 101px;
}

.cursor--throb.is-down,
.cursor--glow.is-hover {
  opacity: 1;
}

.cursor--pointer.is-hover {
  width: 22px; height: 22px;
  margin-top: -11px; margin-left: -11px;
}

.cursor.is-over-iframe {
  display: none;
}

@media (pointer: coarse) {
  .cursor { display: none }
}

/* Header */
.header  {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(34px); 
  -webkit-backdrop-filter: blur(34px); 
  z-index: 99999;  
  height: var(--large-header-height);
  transition: 0.35s all cubic-bezier(0, 0.5, 1, 1);
}

.header.is-down {
  height: var(--small-header-height);
}

.is-menu-open .header {
  height: calc(240px + var(--menu-height));
  transition: 0.6s all cubic-bezier(0.63, 0.01, 0.17, 0.99);
  overflow: hidden;

}

.menu-toggle {
  display: block; position: absolute; 
  right: 28px; top: 40px;
  width: 50px; height: 50px;  
  background: url('../images/menu.svg') 50% 50% no-repeat;  
  transition: 0.25s all;
}

.is-menu-open .menu-toggle {
  background-image: url('../images/close.svg');
}

body:not(.is-menu-open) .is-down .menu-toggle {
  top: 5px;
}

.header__top {
  height: 130px;
  display: flex;
  align-items: center; justify-content: center;
  transition: 0.15s all;
  top: 3px;
}

.logo__link  {
  display: block; position: relative;
}

.logo, .logo * {
  display: block; width: 100%; 
}

  /* Top line */
  .top-line{
    display: block; height: 3px; 
    transition: 0.25s all;
  }

  @keyframes top-line-throb {
    0% { transform: translateX(0) }
    99.99999% { transform: translateX(-200vw) }
    100% { transform: translateX(0) }
  }

  .top-line__inner {
    height: 100%; width: 300vw;
    background: rgb(144,200,247);
    background: linear-gradient(90deg, rgba(144,200,247,1) 0%, rgba(222,37,108,1) 33.33333%, rgba(144,200,247,1) 66.66666%, rgba(222,37,108,1) 100%);
  }

  .is-page-loading .top-line__inner {
    animation: top-line-throb 1.5s linear infinite;    
  }

  /* Smaller header */  
  .is-menu-open .header__closed,
  body:not(.is-menu-open) .header:not(.is-down) .header__closed,
  body:not(.is-menu-open) .header.is-down .header__open { 
    opacity: 0; visibility: hidden; pointer-events: none 
  }

  .header__open, .header__closed {
    position: absolute; width: 100%;
    display: flex; transition: 0.25s all;
  }

  .header:not(.is-down) .header__open {
    transition-delay: 0.35s;
  }

  
  .header__closed {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: var(--side-padding);
  }

  .header__open {
    display: flex; justify-content: center;
  }

  .logo__link--open {
    width: 60px;
  }

  .logo__link--closed {
    width: 38px;
    margin-right: 15px;
  }

  body:not(.is-menu-open) .header.is-down .header__top {
    height: var(--small-header-height);
  }

  /* Back button */
  .back {
    position: absolute; 
    top: 151px; left: 23px; 
    width: 60px; height: 30px;
    background: url('../images/back.svg') 50% 50% no-repeat;
    background-size: 32px; 
    transition: 0.35s all cubic-bezier(0, 0.5, 1, 1);
  }

  .is-menu-open .back {
    opacity: 0; visibility: hidden;
  }

  .header.is-down .back {
    top: 82px;
  }

  /* Header menu: regular */
  .header__menu {
    height: calc(var(--vh, 1vh) * 100 - var(--large-header-height));
    display: flex;
    flex-direction: column;
    transition: 0.45s opacity;    
    transform: translateZ(0);
    opacity: 0;
    visibility: hidden;
    padding: 60px var(--side-padding);
    position: relative; z-index: 2;
  }

  .is-menu-open .header__menu {
    transition: 0.45s opacity 0.4s;    
  }


  .is-menu-open .header__menu {
    opacity: 1; visibility: visible;
  }
  
  .header__menu .footer__top {
    margin-top: auto; margin-bottom: auto;
  }

  .is-menu-open .footer {
    opacity: 0;
  }

  .header__menu .search__form {
    margin-bottom: 0;
    margin-top: 0;
  }

  .header__menu .footer__search {
    margin-top: auto;
    margin-bottom: 60px;
  }


/* Footer */
.footer {
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  background: var(--background-color);
}

.is-tall-footer .footer {
  justify-content: flex-start;
}


.footer__menu-wrapper:last-of-type .footer__menu-item {
  margin-right: 0;
}



.footer__inner {
  display: flex;
  flex-direction: column;
  padding: 50px var(--side-padding) 30px var(--side-padding);
  padding-top: 120px;
}
  

  /* Bottom footer */
  .footer__menu,
  .footer__bottom {
    display: flex;
    align-items: center;
    font-weight: normal;
  }

  .footer__menu {
    margin-left: auto;
  }

  .footer__bottom {
    height: 68px;
    margin-bottom: 20px;
  }

  .is-custom-footer .footer__bottom {
    border-top: 1px solid var(--gray);
    padding-top: 44px;
    margin-top: 41px;    
  }

  .logo__link--footer .logo {
    width: 47px;
    height: 50px;
  }

  .logo__link--footer .logo img {
    width: 100%; height: 100%;
  }

  .logo__link--footer,
  .footer__copyright,
  .footer__bottom .footer__menu-wrapper {
    opacity: 0.3;
  }

  .logo__link--footer {
    margin-right: 4.7vw;    
  }

  .footer__copyright {
    margin-right: 6.7vw;
  }

  .footer__bottom .footer__menu-wrapper {
    margin-right: 6.6vw;
    display: flex; align-items: center;
    transition: 0.25s all;
  }

  .footer__bottom .footer__menu-wrapper:last-child {
    margin-right: 0;
  }
  
  .footer__bottom .footer__menu-wrapper:hover {
    opacity: 1;
  }


  /* Footer general */
  .footer-block__social,
  .footer__columns {
    display: flex;
  }

  .footer-block__social {
    align-items: center;
  }

  .footer__column:not(:last-child) {
    margin-right: 72px;
  }
  
    
    /* Footer columns */
    .footer__columns { justify-content: flex-end; margin-bottom: 60px; }    
    .footer__column--contact { flex: 0 0 200px }
    .footer__column--offices { flex: 0 0 255px; }
    .footer__column--social { flex: 0 0 539px;  }
    .footer__column--contact-offices {
      display: flex; flex: 1 0 506px;
    }

    /* Footer menu */
    .footer__column.footer__column--menu {
      margin-right: auto;
      padding-right: 40px;
      margin-top: -6px;
    }

    .footer .submenu {
      display: none;
    }
  
    .simple-header--landing .menu-item,
    .menu--main .menu-item {
      display: block;
      line-height: 1.23;
      font-size: 2.818rem;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .menu__item-wrapper {
      transition: 0.25s;
      position: relative;
    }

    .menu:hover .menu__item-wrapper {
      opacity: 0.6
    }

    .menu:hover .menu__item-wrapper:hover {
      opacity: 1;
    }

    /* Footer block */
    .footer__block {
      margin-bottom: 56px;
    }

    .footer-block__title {
      margin-bottom: 22px;
      line-height: 1.3;
      letter-spacing: 0.014em;
      font-weight: 500;
    }

    .footer-block__content {
      line-height: 1.8; 
      transition: 0.25s all;
    }

    .footer-block__link-wrapper {
      transition: 0.25s all;
    }
    
    .footer-block__office,
    .footer-block__link-wrapper:not(:hover),
    .footer-block__text {
      opacity: 0.6;
    }

      /* Submenu */
      .submenu {
        display: flex;     
        justify-content: center;
        opacity: 0; 
        max-height: 0;
        transition: 0.3s all;        
      }

      .menu__item-wrapper:focus-within .submenu,
      .menu__item-wrapper:hover .submenu {
        margin-top: 6px;  
        margin-bottom: 6px;    
        opacity: 1; max-height: 2rem;
        transition: 0.2s all;
      }

      .submenu .submenu__item  {
        font-size: 1.15rem;
        letter-spacing: 0.05rem;
        margin-right: 0.3rem;
        margin-left: 0.3rem;
      }

      .submenu__item .link__inner:after {
        width: 8px; height: 8px; top: -7px; left: 2px;
        background-size: contain;
      }

    /* Offices */
    .footer-block__office {
      letter-spacing: -0.004em;
      margin-bottom: 1.355rem;
    }

    .footer-block__office a {
      font-weight: normal;
      text-decoration: underline;
    }

    /* Newsletter */
    .footer-block--newsletter {
      margin-bottom: 33px; 
    }

    .newsletter__texts {
      max-width: 380px;      
    }

    .footer-block--newsletter .footer-block__title {
      margin-bottom: 15px;
      background: url('../images/bell.svg') top 2px right 14px no-repeat;
    }

    .newsletter__form {
      display: flex;
    }

    @media (max-width: 1800px) {
      .newsletter__form .newsletter__submit  {
        display: none;
      }

      .footer__column--social {
        flex-basis: 450px;
      }
    }

    .form-input--email {
      flex: 1;
    }

    .footer-block--newsletter .footer-block__subtitle {
      margin-bottom: 18px;
    }

    .newsletter__submit {
      margin-left: 11px;
    }

    .newsletter.is-loading {
      opacity: 0.5; pointer-events: none;
    }
    
    @media (max-width: 1700px) {
      .button.newsletter__submit {
        display: none;
      }

      .footer__column--social {
        flex-basis: 285px;
      }
    }


    /* Social */
    .footer-block--social .footer-block__title {
      margin-bottom: 13px;
    }

    .footer-block__social {
      display: flex; align-items: center;
    }

    .social-link__icon {
      height: 23px;
      display: flex; align-items: center;
      opacity: 0.5;
      transition: 0.25s all;
    }

    .social-link__icon:hover {
      opacity: 1;
    }

    .social-link {
      margin-right: 39px;
    }

    .social-link:last-child {
      margin-right: 0;
    }

    .footer-block--social {
      margin-bottom: 28px;
    }

    /* Trademark */
    .footer-block--trademarks {
      max-width: 512px;
    }
    
  /* Search */ 
  .search__form {
    display: flex;
    margin-top: 43px;
    margin-bottom: 63px;
    position: relative;
  }

  .search__input {
    flex: 1;
    text-align: left;
    background: none;
    border-bottom: 1px solid;
    padding-left: 0;
  }

  .search__submit,
  .search__input {
    font-size: 2.78rem;
    letter-spacing: 0.01em;
    padding-bottom: 14px;

    font-weight: normal;
  }

  .search__input  {
    padding-right: 300px;
  }

  .search__form .search__submit {
    position: absolute;
    right: 0; bottom: 1px;
    border: none;
    color: white;
    
    font-size: 2.85rem;
    padding-right: 80px;
    letter-spacing: 0;
    background: url('../images/search.svg') right 6px top 18px no-repeat;
    outline: none;
  }
  
  .simplebar-content-wrapper,
  .simplebar-content {
    display: flex; flex-direction: column;
  }  
  
  .is-custom-footer .simplebar-content-wrapper,
  .is-custom-footer .simplebar-content {
    justify-content: flex-end;
  }

  .header .simplebar-content-wrapper,
  .header .simplebar-content {
    justify-content: flex-start;
  }


  .header__menu .simplebar-content {
    min-height: 100%;

  }

/* Landing pages header / footer */
  
  /* Footer */
  .is-custom-footer .footer__top  {
    justify-content: flex-start;
  }

  .footer__columns.tablet {
    display: none;
  }

  .is-custom-footer .logo__link--footer-logo {
    width: 68px;
    margin-top: 4px;
    margin-right: 3.6vw;
  }

  .is-custom-footer .footer__column--menu-landing {
    margin-right: 3.5vw;
  }

  .is-custom-footer .footer__column--clients-landing {
    margin-right: 5.2vw;
  }

  .is-custom-footer .footer-block__title {
    margin-bottom: 25px;
    background-position: right 0 top 0;
  }

  .is-custom-footer .footer__block--contact {
    margin-bottom: 22px;
  }

  .is-custom-footer .newsletter__submit  {
    display: none;
  }

  .is-custom-footer .footer-block__link-wrapper {
    line-height: 1.4;
  }
  
  .is-custom-footer .footer-block__subtitle {
    opacity: 1;
    margin-top: 25px;
    margin-bottom: 38px;
  }

  .is-custom-footer .footer__column--social {
    flex-basis: 450px;
  }

  .is-custom-footer .footer-block--newsletter {
    display: flex; flex-direction: column; height: 100%;
  }

  .is-custom-footer .footer .newsletter {
    margin-top: auto; position: relative; top: -;
  }

  .is-custom-footer .footer-block--newsletter {
    margin-bottom: 0;
  }


  .is-custom-footer .footer__column--contact-landing {
    display: flex; flex-direction: column;
  }

  .is-custom-footer .logo__link--footer {
    display: none;
  }

  .is-custom-footer .footer__bottom {
    margin-top: 37px;
  }

  .is-custom-footer .menu__item--landing {
    font-weight: 500;
  }
  
  @media (max-width: 1800px) {

    .is-custom-footer .footer__column--social {
      flex-basis: 280px;
    }

    .footer .footer__column.footer__column--logo-landing {
      margin-right: 20px;
    }
  }
 
  /* Header */
  .footer__column--landing-header-contact .footer-block__title,
  .landing-menu:not(.simple-header--landing) .menu__item-wrapper--landing-header {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }

  .clients-press--landing-menu {
    margin-bottom: 0;
    margin-top: 38px;
  }

  .clients-press--landing-menu .footer-block__title {
    margin-bottom: 40px;
  }

  .clients-press--landing-menu .footer-block__link-wrapper {
    opacity: 1;
    margin-left: 6px;
  }

  .clients-press--landing-menu .footer-block__link {
    padding: 16px 18px 12px 23px;
    font-weight: 100;
    line-height: 1;
  }

  .footer__column--landing-header-contact {
    flex: 0 0 520px;
    margin-left: auto;
  }

  .footer__column--landing-header-contact .footer-block__text {
    opacity: 1;
    margin-bottom: 41px;
    max-width: 450px;
  }

  .is-custom-footer .footer__column--landing-menu-contact .footer-block__title {
    display: block;
  }

  .is-custom-footer .footer__column--landing-menu-contact .footer-block--social {
    margin-bottom: 51px;
  }

  .large-link .link__inner {
    font-size: 0.886rem;
  }

  .footer__column--landing-menu-contact {
    margin-left: auto;
    padding-left: 60px;
  }

  .footer__column.footer__column--landing-header-contact {
    margin-right: auto;
  }

  .footer__column--header-main {
    flex: 1; display: flex;
  }

  /* Header */
  .simple-header {
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    margin-bottom: 0;
  }
  
  .simple-header .footer__column--menu {
    margin: 0; padding: 0 0 70px 0;
  }

  .simple-header .footer__column--landing-header-menu {
    margin: 0; padding: 0 0 25px 0;
  }  

  .header__menu {
    padding-top: 35px;
    padding-bottom: 30px;
  }


/* Carousel */
.carousel__wrapper--side {
  display: flex;
}

.carousel__sidebar {
  flex: 0 0 319px;
}

.carousel__wrapper--side .carousel {
  flex: 1;
}

.carousel__nav {
  display: flex;
  margin-top: 16px;
  margin-bottom: 150px;
  justify-content: center;
}

.carousel__sidebar .carousel__nav {
  justify-content: flex-start;
}

.carousel__nav-button {
  display: block; width: 46px; height: 22px;
  background: url('../images/left.png') 50% 50% no-repeat;  
  margin: 0 13px;
  background-size: 45px auto;
}

.carousel__nav-button--prev {
  margin-left: 0;
}

.carousel__nav-button--next {
  background-image: url('../images/right.png');
  background-size: 45px auto;  
}

/* Blog thumb */
.meta__author-wrapper {
  position: relative;
  width: 35px; height: 35px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

/* Privacy message */
.privacy-message {
  position: fixed; bottom: 0; left: 0; right: 0;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
   z-index: 999;
  font-size: 0.545rem; letter-spacing: 0.025em;
  line-height: 1.1;
  text-align: center;

  padding: 29px;
  opacity: 0; visibility: hidden;
  transition: 0.35s all;
}

.is-page-top-scrolled .privacy-message {
  color: black; 
}

.is-show-privacy-message .privacy-message {
  opacity: 1; visibility: visible;
}

.privacy-message__inner {
  margin: 0 auto;
  padding-right: 200px;
  padding-left: 200px;  
}

.privacy-message__inner p:last-child {
  margin-bottom: 0;
}

.privacy-message__inner a {
  text-decoration: underline;
}

.privacy-message .privacy-message__close {
  position: absolute; 
  right: 24px; top: 50%; margin-top: -24px;
  font-size: 0.55rem;
  min-width: 0;
  padding: 11px 45px 11px 15px;
  background: none;
  border: 1px solid;
  text-transform: none;
}


.privacy-message .privacy-message__close:before {
  content: ''; display: block;
  position: absolute; width: 36px; height: 36px; 
  top: -1px; right: -1px;
  border: none; background: url('../images/yes.svg') 50% 50% no-repeat;
  border: 1px solid;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 50%; outline: none;
  transition: 0.25s all;
  min-width: 0; padding: 0;
}

.is-page-top-scrolled button.privacy-message__close {
  background-image: url('../images/check-black.svg');
}

button.privacy-message__close:active {
  background-color: rgba(255,255,255,0.5);
}

/* Up/down */
.up-down {
  bottom: 22px; right: 22px;
}

.is-show-privacy-message .up-down {
  bottom: 120px;
}

.pill {
  width: 37px;  z-index: 9;
  box-shadow: 0 0 16px rgba(0,0,0,0.15);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  display: block;
  position: fixed; 
  border-radius: 50px;  
}

.up-down__arrow {
  width: 100%; height: 50px;
  background: url('../images/arrow-up.svg') 50% 50% no-repeat;
  display: block;
  transition: 0.25s;
}

.up-down__arrow--down {
  background-image: url('../images/arrow-down.svg');
}

.is-sticky-footer .up-down__arrow--down,
.up-down__arrow--up {
  opacity: 0.25;
  pointer-events: none;
}

.is-after-first-screen .up-down__arrow--up {
  pointer-events: all; opacity: 1;
}

  /* Next section link */
  .next-section {
    width: 50px; height: 100px;
    background: url('../images/arrow-down-white.png') 50% 50% no-repeat;
    display: block; position: absolute; z-index: 5;
    background-size: 20px auto;
    left: 50%; bottom: 4px; margin-left: -25px;
  }

  .is-show-privacy-message .next-section {
    bottom: 84px; 
  }

/* Landing Sections */
.section {
  position: relative;  
  min-height: 100vh;
  transition: 0.25s min-height;
  z-index: 1;
}
 
.is-loaded .section {
  min-height: calc(var(--vh, 1vh) * 100);
}




.section__inner {
  width: 100%; height: 100%;
}


  /* First fixed section */
  .footer,
  .section--first {
    position: fixed; top: 0; bottom: 0; left: 0; right: 0;
    z-index: 1;
  }    
  
  .sections--rest {
    margin-top: calc(var(--vh, 1vh) * 100);
    z-index: 2;
    background: var(--background-color);
  }
  

  .is-sticky-footer .section--first {
    opacity: 0; pointer-events: none;
  }

  .footer {
    z-index: -1; opacity: 0;
  }

  .is-sticky-footer .footer {
    z-index: 0; opacity: 1;
  }


  article.page {
    overflow: hidden; position: relative; z-index: 1;
  }

  .content {
    margin-bottom: var(--footer-height);
  }

  .is-reached-footer .footer {
    top: calc(var(--page-height));
    position: absolute;
  }

  
  /* Hero */
  .bg {
    z-index: 0;
  }

  .titles {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative; z-index: 1;
    height: calc(var(--vh, 1vh) * 100);
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    padding-left: 60px; padding-right: 60px;
  } 

  .titles .title {
    margin-bottom: 1.2rem;
  }

  .titles__before-title {
    margin-bottom: 17px;
  }

  .titles .section--hero__title {
    margin-bottom: 0.7rem;
  }

  .section--hero__buttons {
    margin-top: 2.2rem;
    display: flex;
    align-items: center;
  }


  .section--hero__buttons .link {
    min-width: 150px; display: block;
    margin: 0 25px;
  }

  .section--hero__buttons .button--not-video {
    min-width: 0;
  }

    /* Fixed first hero */

    .section--first {
      height: calc(var(--vh, 1vh) * 100); width: 100%;
      top: 0; z-index: 0; 
      transition: 0.25s height;
    }

    .sections--rest {
      position: relative; z-index: 2;
      transition: 0.25s margin-top;
      background: var(--background-color);
    }

  
    /* Overlay */
    .section--hero__overlay {
      z-index: 540; position: fixed;
      pointer-events: none;
      width: 100%; height: 100%;   
    }

    .section--hero__overlay .fill img {
      object-fit: contain;
      object-position: 50% 50%;
    }

    .is-hero-overlay-end .section--hero__overlay {
      position: absolute; bottom: 0;
    }

    .section-hero__overlay-bg, .section-hero__overlay-bg.fill-image * {
      object-fit: contain; width: 100%; height: 100%;
      object-position: 50% 50%;
    }

  /* Title */
  .section--title__inner--overlap {
    margin-bottom: calc(var(--vh, 1vh) * -25);
  }

  .title__link .link__inner {
    font-weight: 100; margin-left: -5rem;
    position: relative; top: 8px; left: 4px;
  }

  .title__link .link__inner:after {
    background-size: 5px;
  }

  .section--title--only-subtitle .section--title__subtitle {
    font-weight: normal; letter-spacing: 0.012em; line-height: 1.25;
    max-width: 1250px;
  }

  .link__wrapper {
    margin-top: 1.3rem;    
  }

  .link__wrapper .link {
    display: inline-block;
  }

 
  /* Video carousel */
  .section--video_carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .video-carousel__titles {
    text-align: center;
    margin-bottom: 68px;
  }

  .section--video-carousel--no-carousel .video-carousel__titles {
    margin-bottom: 31px;
  }

  .video-carousel__title {
    margin-bottom: 10px;
  }

  .video-carousel__image-wrapper {
    position: relative;
    padding-top: 63%;
    margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
  }
  
  .deckable__image-link {
    display: block; position: relative;
  }

  .thumbnail__image-wrapper--video:before,
  .deckable__image-link:before {
    content: ''; display: block;
  }

  .is-fixed-end .deckable:not(:last-child) .deckable__image-link:before {
    display: none;
  }


  .thumbnail__image-wrapper--video:before,
  a.deckable__image-link:before,
  .plyr .plyr__control.plyr__control--overlaid,
  .plyr .plyr__control.plyr__control--overlaid:hover,
  .video-carousel__link {
    width: 78px; height: 78px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9;
    position: absolute; top: 50%; left: 50%;
    margin-top: -39px; margin-left: -39px;
    border-radius: 50%; border: 1px solid;
    background: url('../images/play.svg') -2px 50% no-repeat;
  }  

  .video-carousel__protected {
    position: absolute;
    top: 50%; margin-top: 56px;

    padding: 18px 31px;      
    transition: rotate3d(0.1deg);
    text-align: center;  
    font-weight: 100;   
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .video-carousel__protected:after,
  .video-carousel__protected:before {
    content: ''; display: block;
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;    
    z-index: 0;    
  }

  .video-carousel__protected:after {
    border: 1px solid white;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 2;
  }

  .video-carousel__protected-text {
    position: relative;
    z-index: 3;
  }

  .video-carousel-thumb--protected .video-carousel__link:before {
    content: ''; display: block; position: absolute;
    width: 20px; height: 20px;
    top: 0; right: -2px; left: auto;
    background: url('../images/padlock.svg') 50% 50% no-repeat;
  }

  /* Protected smaller */
  @media(max-width: 1800px) {
    .video-carousel-thumb--protected .video-carousel__link {
      margin-top: -66px;
    }

    .video-carousel__protected {
      margin-top: 28px;
    }
  }

  .plyr .plyr__control.plyr__control--overlaid svg {
    display: none;
  }

  .video-carousel {
    width: 100%;
    position: relative;
    margin-bottom: 52px;
  }

  .low-carousel__items:before,
  .low-carousel__items:after,
  .video-carousel:before,
  .video-carousel:after {
    content: ''; display: block;
    left: 0; top: 0; bottom: 0; width: 240px; 
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    position: absolute; pointer-events: none; z-index: 90;
    mix-blend-mode: multiply;
  }

  .low-carousel__items:before,
  .video-carousel:before  {
    left: auto; right: 0;
    background: linear-gradient(-90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);    
  }

  .low-carousel__items:after,
  .low-carousel__items:before {
    width: 25%;
    background: linear-gradient(-90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);        
  }

  .low-carousel__items:after {
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
  }
  
  .video-carousel-thumb {
    display: block;
    margin: 0 8px;
  }

  .media-video--main {
    margin-bottom: 50px;
  }

  .video-carousel__item {
    width: calc(100% / 3 + 10%);
    transition: 0.25s opacity;    
  }

  .video-carousel:hover .video-carousel__item:not(:hover) {
    opacity: 0.35;
  }


  .video-carousel-thumb__titles * {
    display: inline;
  }

  .video-carousel-thumb__title {
    margin-right: 20px;
    margin-bottom: 2px;
  }

  .duration {
    background: url('../images/clock.svg') 0 1px no-repeat;
    padding-left: 22px;
    padding-top: 1px;
  }

  .meta__duration {
    margin-left: 40px;
  }

    /* Small video carousel */
    .video-carousel--small .video-carousel-thumb__wrapper {
      width: 28%;
    }

    .video-carousel--small:before,
    .video-carousel--small:after {
      opacity: 0.75;
    }

    /* Carousel without a carousel */
    .no-carousel {
      display: flex; justify-content: center;
      max-width: 1750px; margin-left: auto; margin-right: auto;
    }

    .no-carousel .video-carousel__image-wrapper {
      padding-top: 67%; margin-bottom: 10px;
    }


  /* Blog */
  .section--articles,
  .section--blog {
    padding: 50px var(--side-padding);
    display: flex; flex-direction: column;
    justify-content: center;
  }
 
  .section--articles .thumbnail__wrapper,
  .section--blog .thumbnail__wrapper {
    width: calc(100% / 3);
    padding: 0 5px;
    min-height: 100%;
    display: flex;
  }

  .thumbnail  {
    display: flex; flex-direction: column;
    justify-content: flex-start; align-items: flex-start;
    min-height: 100%; transition: 0.25s all;
    flex: 1;
  }

  .carousel:hover .thumbnail:not(:hover) {
    opacity: 0.35
  }

  .thumbnail__tag  {
    border: 1px solid; border-radius: 50px;
    display: inline-block; text-align: center;
    padding: 4px 14px 2px 15px;
    margin-bottom: 29px;
    white-space: nowrap;
  }
  
  .section--articles .carousel__sidebar,
  .section--blog .carousel__sidebar {
    margin-top: 51px;
  }

  .carousel__wrapper--short .carousel__nav  {
    display: none;
  }

  .thumbnail__image-wrapper {
    width: 100%;
    position: relative;
    padding-top: 66%;
    display: block;
    margin-bottom: 33px;
  }

  .thumbnail__title {
    margin-bottom: 15px;
  }

  .thumbnail__meta-link,
  .thumbnail__title,
  .thumbnail__excerpt {
    padding-right: 40px;
  }

  .thumbnail__excerpt  {
    margin-bottom: 27px;
  }

  .thumbnail__meta-link {
    margin-top: auto; width: 100%;
  }

  .thumbnail .meta {
    margin-bottom: 39px;
    margin-top: auto;
    width: 100%;
    justify-content: space-between;
  }

    /* Meta */
    .meta, .meta__author  {
      display: flex;
      align-items: center;
    }

    .meta__date-duration {
      display: flex;
      white-space: nowrap;
      margin-right: 20px;
    }

    .meta__author-wrapper {
      margin-right: 10px;
    }

    .meta__author  {
      margin-right: 34px;
    }

    .meta__date  {
      background: url('../images/calendar.svg') 0 1px no-repeat;
      padding-left: 22px; 
    }

  /* Texts carousel */
  .carousel--texts-carousel .thumbnail__wrapper,
  .carousel--texts-carousel .thumbnail {
    min-height: 0;
  }

  .section--texts_carousel {
    min-height: 75vh;
    z-index: 2;
  }

  .carousel--texts-carousel .flickity-viewport {
    transition: 0.25s height;
  }

  .thumbnail__text {
    max-height: 160px;
    overflow: hidden;
    transition: 0.25s ease-out max-height;
    position: relative;
  }

  .thumbnail:not(.is-expanded) .thumbnail__text:after {
    content: ''; display: block;
    position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    transition: 0.25s all;
  }

  .thumbnail.is-expanded .thumbnail__text {
    max-height: var(--text-height);
  }

  .thumbnail__expand-wrapper {
    margin-top: 20px;
  }

  .thumbnail:not(.is-expanded) .link .link__inner--less,
  .thumbnail.is-expanded .link .link__inner--more {
    display: none;
  }

  /* Contact */
  .section--contact {
    padding-top: var(--side-padding);
    padding-bottom: var(--side-padding);
  }

  .section--contact__contact {
    margin-top: 55px;
    width: 489px;
  }

  .gform_confirmation_wrapper  {
    font-size: 1rem;
  }

  .section--contact__subtitle {    
  }

  .section--contact__contact .form-item--contact-detail {
    width: 520px;
  }

  .section--contact__contact .form-item--contact-dropdown {
    margin-left: 10px;
  }

  .section--contact__contact .gform_footer  {
    padding-top: 10px;
  }

  .section--contact__contact .gform_button.button {
    background: white; color: black;
    width: 210px; font-weight: 800;
    padding-top: 16px; padding-bottom: 16px;
  }

  .section--contact__contact .gform_button.button:active {
    background: transparent; color: white;
  }

  /* Columns */
  .section--columns {
    display: flex; align-items: center;
    background: #0D0D0D;
  }

  .columns {
    display: flex;   
    margin: 0 120px; 
    justify-content: center;
  }

  .column__bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1; opacity: 0;
    transition: 0.25s all;
    pointer-events: none;
  }

  .column {
    padding: 0 40px; text-align: center;
    max-width: 550px;
  }

  .column__title {
    margin-bottom: 2.2rem;
  }

  c {
    transition: 0.25s all;
  }

  .columns:hover .column__title,
  .columns:hover .column__text {
    opacity: 0.35;
  }
 
  .columns:hover .column:hover .column__title,
  .columns:hover .column:hover .column__text {
    opacity: 1;
  }

  .columns:hover .column:hover .column__bg {
    opacity: 1;
  }

  /* Cards */
  .section--cards {
    padding-bottom: 102px;
  }
  .cards {
    padding-left: 140px; padding-right: 140px;
  }

  .cards__inner {
    display: flex;
    flex-wrap: wrap;
    
  }

  .card {
    position: relative;
    flex: 0 0 50%;
    padding: 8px;
    transition: 0.35s all;
  }

  .card:last-child:nth-child(odd) {
    flex: 0 0 100%;    
  }

  .card:last-child:nth-child(odd) .card__inner {
    padding-top: 50%;
  }

  .card:last-child:nth-child(odd) .card__bg * {
    object-position: 0 50%;
  }

  .cards__inner:hover .card:not(:hover) {
    opacity: 0.25;
  }

  .card__top, .card__bottom {
    position: relative; z-index: 2;
  }

  .card__inner {
    position: relative;
    padding-top: 100%; 
    width: 100%;    
  }

  .card__titles {
    display: flex; align-items: center; justify-content: flex-start;
    flex-direction: column; text-align: center;
    padding: 64px 80px;
  }

  .section--cards__title-wrapper {
    height: auto; margin-bottom: 107px;
    padding-top: 107px
  }

  .card__top, .card__bottom {
    max-width: 520px;
  }

  .card__top {
    margin-bottom: 12px;
  }

  .card__buttons {
    margin-top: 31px;
  }

  .card__buttons .button {
    min-width: 210px; display: inline-block; font-weight: 600;
  }

/* Video popup */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: black;
}

.popup__overlay  {  
  background: url('../images/close.svg') top 22px right 45px no-repeat;
}

.video-popup .plyr {
  font-family: 'Telegraf', sans-serif;
  font-weight: normal;
}

.plyr button {
  min-width: 0;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity .5s;
}
.fade-enter, .fade-leave-active {
  opacity: 0;
}

.popup__wrapper {
  display: flex; align-items: center; justify-content: center;
}

.popup__wrapper * {

}

.popup {
  width: 76%;
  outline: none;
}


.video-popup:not(.is-ready) .plyr--video .plyr__controls,
.video-popup:not(.is-ready) .plyr__control--overlaid {
  opacity: 0;
}

.plyr .plyr__control--overlaid svg {
  width: 30px; height: 30px;
}

.plyr.plyr--full-ui input[type=range]::-webkit-slider-runnable-track { 
  color: white;
}


iframe {
  cursor: default !important;
}

.is-video-open .top-line {
  opacity: 0;
}

iframe {
  border: none;
  width: 100%;
}

.video-popup__player--iframe {
  position: relative; 
  padding-top: calc(1080/1920 * 100%);
}

/* Single blog post */

  /* Top */

  .article__titles .meta {
    color: white;
    margin-bottom: 20px;
  }

  .article__titles .meta__date {
    background-image: url('../images/calendar-white.svg');
  }

  .article__titles .duration {
    background-image: url('../images/clock-white.svg');
  }

  .article__top-inner {
    position: relative; z-index: 2;
    padding-bottom: 200px;
  }

  .article__titles {
    height: calc(var(--vh, 1vh) * 100); display: flex; flex-direction: column;
    justify-content: center;
    margin-left: 14.4vw;
    max-width: 800px;
  }

  .page__top-bg {
    position: fixed; top: 0; right: 0; left: 0; 
    height: calc(var(--vh, 1vh) * 100);
  }

  .page--article .page__top-bg {
    transition: none;
  }

  .page__top-bg .fill-image,
  .page__top-bg .fill-image * {
    object-fit: cover;
    object-position: 50% 0;
    width: 100%; height: 100%;    
  }

  .article__title {
    margin-bottom: 6px;
  }
    
  .article__intro {
    font-size: 2.18rem; font-weight: 500;
    letter-spacing: 0; line-height: 1.26;
    max-width: 1350px;
  }

  /* Main */
  .sticker {
    width: 100%; height: 50px;
    background: red;
  }

  .page__top {
    position: relative;
  }

  .article__main {
    background: var(--whitish); color: #1A1A1A;
    font-weight: 600;
    letter-spacing: 0em;    
  }

  .article__video-embed {
    position: relative; 
    padding-top: calc(1080/1920 * 100%);
    margin-bottom: 2rem;
  }

  .article__body p {
    margin-bottom: 1.4rem;
  }

  .article__body .meta {
    font-weight: 500;
    padding-top: 83px;
    padding-bottom: 73px;
    margin-left: -55px;
  }

  .meta--light .meta__date {
    background-image: url('../images/calendar-black.svg')
  }

  .meta--light .duration {
    background-image: url('../images/clock-black.svg')
  }
  
  .article__body p > img,
  .wp-caption {
    width: 155% !important;
    margin: 170px -27% 86px -27%;
  }

  .wp-caption-text {
    color: var(--light-gray);
    font-size: 0.78rem;
    margin-top: 7px;
  }

  .article__body img {
    width: 100%; height: auto;
    box-shadow: 0 0 50px rgba(0,0,0,0.2);    
  }

  .article__body blockquote {
    margin: 0; text-align: center;
    font-size: 2.18rem; font-weight: 500;
    line-height: 1.265; margin: 4.3rem -27% 5.2rem -27%;
  }
  
  /* Share */
  .article__share {
    text-transform: uppercase;
    display: flex;
    margin-top: 119px;
    margin-bottom: 100px;
  }

  .article__share * {
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1;
    display: inline-block;    
  }

  .article-share__title {
    color: var(--light-gray);
    margin-right: 2px;
  }

  .article-share__link {
    margin-right: 4px;
  }

  .article__icon {
    display: none;
    width: 113px;
    margin: 145px auto 109px auto;
  }

  .article__icon.is-show {
    display: block;
  }



  /* Related */
  .related {
    border-top: 1px solid;
    text-align: center;
    margin-left: var(--side-padding); margin-right: var(--side-padding);
    padding-top: 76px;
    padding-bottom: 100px;
  }
  

  .related__articles {
    display: flex;
    text-align: left;
    max-width: 1472px;
    margin: 107px auto
  }

  .related__articles .thumbnail {
    margin: 0 6px;
  }

  .related .thumbnail .thumbnail__tag   {
    font-weight: 500; top: -53px; right: 0;
  }

  .related .thumbnail__image-wrapper {
    box-shadow: 0 0 50px rgba(0,0,0,0.2);
  }

  .related .thumbnail__title ,
  .related .thumbnail {
    font-weight: 600;
    position: relative;
  }

  .related .meta {
    display: none;
  }

  .related .link--arrow {
    margin-top: auto;
  }
  
  .related .link--arrow .link__inner:after {
    background-image: url('../images/link-arrow-large-black.svg');
    margin-top: -3px;    
  }

  /* Share */
  .share {
    position: fixed; right: 59px; bottom: 175px;
    z-index: 99;
  }

  .is-show-privacy-message .share {
    bottom: 272px;
  }

  .share__toggle {
    height: 37px;
    background: url('../images/share.svg') 50% 50% no-repeat;
  }

  .share__menu-wrapper {
    bottom: 188px;
    padding-bottom: 9px;
    padding-top: 9px;
    opacity: 0;
    visibility: hidden;
    background: none;
    transition: 0.25s all;    
  }

  .is-show-privacy-message .share__menu-wrapper {
    bottom: 288px;
  }

  .share.is-open .share__menu-wrapper {
    opacity: 1; visibility: visible;
  }
  
  .share__menu {
    width: 100%;
  }

  .share__link  {
    height: 26px; 
    display: block;
    background: url('../images/share-twitter.svg') 50% 50% no-repeat;
  }

  .share__link--whatsapp {
    background-image: url('../images/share-whatsapp.svg');
  }

  .share__link--linkedin {
    background-image: url('../images/share-linkedin.png');
    background-size: 15px;
  }

  .share__link--facebook {
    background-image: url('../images/share-facebook.svg');
  }

  .share__link--mail {
    background-image: url('../images/share-email.svg');
  }

/* Portal */

  /* General portal settings */
  .page-template-default .footer,
  .page-template-portal .footer {
    opacity: 1;
  }

  .page--portal {
    padding: 0 var(--side-padding);    
    padding-top: calc(var(--large-header-height) + var(--simple-header-top));    
    background: var(--background-color);
    padding-bottom: 50px;
    position: relative; z-index: 2;
  }

  .page__title {
    text-align: center;
  }

  .portal__title {
    margin-bottom: 188px;
  }

  /* The actual portal boxes */
  .wordpress-gdpr-privacy-center-items {
    display: flex; margin: 0 -27px;
  }

  .wordpress-gdpr-privacy-center-item {
    width: calc(25% - 54px); margin: 0 27px 54px 27px;
  }

  .wordpress-gdpr-privacy-center-item-action {
    background: none; position: relative;
  }

  .page--portal .wordpress-gdpr-privacy-center-item-headline {
    font-size: 2.15rem !important; 
    line-height: 1 !important;
    font-weight: 500;
    margin-bottom: 20px !important;
  }

  .wordpress-gdpr-privacy-center-item .fa {
    display: none;
  }

  .wordpress-gdpr-privacy-center-item {
    padding: 4rem 25px 3rem 25px;
    height: auto;
  }

  .wordpress-gdpr-privacy-center-item > div {
    display: flex; flex-direction: column; height: 100%;
  }

  .wordpress-gdpr-privacy-center-item-desc {
    margin-bottom: 2.5rem;
  }

  .wordpress-gdpr-privacy-center-item-action {
    margin-top: auto; display: block;
  }

/* Privacy popup */

.wordpress-gdpr-privacy-settings-popup {
  background: rgba(0,0,0,0.7) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 80px 70px 110px 70px;
  color: white !important;
  font-size: 1rem;
  transform: none; -webkit-transform: none;
  position: relative;
  margin: 0;  top: 0; left: 0;
  max-width: 990px;
  pointer-events: all;
}

.wordpress-gdpr-privacy-settings-popup-backdrop {
  background: none;
}

.wordpress-gdpr-privacy-settings-popup-logo {
  display: none;
}

.wordpress-gdpr-privacy-settings-popup-info {
  margin-left: 153px;
  width: auto;  
  margin-bottom: 55px;
}

.wordpress-gdpr-privacy-settings-popup-services-container {
  display: flex;
}

.wordpress-gdpr-privacy-settings-popup-service-categories {
  width: 196px;
  margin-top: 9px;
}

.wordpress-gdpr-privacy-settings-popup-services {
  padding-left: 0;
  margin-left: 0;
}

.wordpress-gdpr-popup-privacy-settings-services-content-description {
  font-size: 0.78rem;
  color: var(--light-gray);
  margin-bottom: 0.5rem;
}

.wordpress-gdpr-privacy-settings-popup-services-buttons .btn {
  text-transform: none; font-size: 0.78rem;
  padding: 16px 25px;
  background: transparent !important;
  white-space: nowrap;
  margin: 0 21px;
}

.wordpress-gdpr-privacy-settings-popup-services-buttons .btn:active {
  background: white !important; 
  color: black !important;
}

.wordpress-gdpr-popup-decline {
  border-color: transparent;
}

.wordpress-gdpr-privacy-settings-popup-services-buttons {
  margin: 0 auto;
  display: flex; justify-content: center;
  flex-direction: row-reverse;
  margin-top: 20px;
}


a.wordpress-gdpr-popup-privacy-settings-service-category,
.wordpress-gdpr-privacy-settings-popup-service-categories,
.wordpress-gdpr-privacy-settings-popup-header,
.wordpress-gdpr-privacy-settings-popup-services-container {
  border: none;
  background: none;
}


.wordpress-gdpr-popup-privacy-settings-services-content hr{
  display: none;
}

.wordpress-gdpr-privacy-settings-popup-services-container a:hover,
.wordpress-gdpr-privacy-settings-popup-services-container a {
  color: var(--lighter-gray); font-size: 0.76rem; font-weight: 100;
  background: transparent;
  padding: 0;
  margin-bottom: 0.5rem;
}

a.wordpress-gdpr-popup-privacy-settings-open-service-category {
  color: white;
}

.wordpress-gdpr-popup-privacy-settings-services-content-title .fa {
  display: none;
}

.wordpress-gdpr-privacy-settings-popup-message {
  background: none;
  font-size: 0.78rem;
  opacity: 0.75;
  font-weight: 100;
  margin-bottom: 20px;
  position: absolute;
  left: 0; right: 0; top: 20px;
  padding: 11px;
}


.wordpress-gdpr-privacy-settings-popup-container {
  position: fixed; z-index: 99999;
  display: flex; top: 0; left: 0; right: 0; bottom: 0;
  justify-content: center; align-items: center;
  pointer-events: none; transition: 0.25s all;
  opacity: 0; visibility: hidden; 
}

.is-show-privacy-popup .wordpress-gdpr-privacy-settings-popup-container {
  opacity: 1; visibility: visible;
}

input[type="checkbox"].gdpr-service-switch:disabled,
input[type="checkbox"].gdpr-service-switch {
  background: #989898;
  border: 2px solid #0000009c;
  border-radius: 20px;
  box-shadow: inset -20px 0px 0px 1px #383838;
  float: left;
  margin-left: 13px;
}

input[type="checkbox"].gdpr-service-switch:checked {
  box-shadow: inset 20px 0px 0px 0px white;
  border: 2px solid white;
  background: #383838;
}

input[type="checkbox"].gdpr-service-switch:disabled {
  opacity: 0.5;
}

.wordpress-gdpr-privacy-settings-popup-title {
  font-size: 2.2rem;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.wordpress-gdpr-privacy-settings-popup-close {
  background: url('../images/close.svg') 50% 50% no-repeat !important;
  display: block; width: 30px; height: 30px;
  top: 20px; right: 20px;
}

.wordpress-gdpr-privacy-settings-popup-close .fa {
  display: none;
}

.wordpress-gdpr-privacy-settings-popup-service-categories {
  height: auto; margin-bottom: 50px;
}


/* Page with top */
.page__top--with-top {
  min-height: 100vh;
  display: flex; justify-content: center; align-items: center;
}

.is-sticky-footer .page__top-bg {
  opacity: 0; pointer-events: none;
}

.page__main--with-top {
  margin-top: -183px;
  position: relative;
  min-height: 100vh;
  /* transform: translateZ(0); */
}

.page--hide-intro .page__main--with-top {
  margin-top: 0;
  padding-top: var(--large-header-height);
  background: var(--background-color);
}

.page--with-top:before {
  content: '';
  display: block; position: absolute; left: 0; right: 0; bottom: 0; top: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) var(--small-header-height), rgba(0,0,0,1) calc(var(--vh, 1vh) * 120 + 100px));
}

.page--with-top {
  position: relative; z-index: 2;
}

/* Partners page */
.intro {
  max-width: 1150px;
  text-align: center;
  margin-bottom: 164px;
}

.partner__logo-groups {
  max-width: 1319px;
  text-align: center;
}

.logo-group__title {
  border-bottom: 1px solid;
  display: inline-block;
  margin-bottom: 70px;
}

.logo-group__items {
  display: flex; flex-wrap: wrap;
  justify-content: center;
}

.logo-group {
  margin-bottom: 162px;
}

.page__top--with-top .page__title {
  margin-top: calc(var(--small-header-height) * -1);
}

.logo-item {
  flex-basis: 25%;
  padding: 0 40px;
  line-height: 1.35;
  margin-bottom: 65px;
}

.logo-item__title {
  text-decoration: underline;
}

.logo-item__logo-wrapper {
  display: flex; height: 100px;
  justify-content: center; align-items: center;
  margin-bottom: 30px;
}

/* Simple page */
.default__header {
  background: black; color: white;
  height: calc(var(--vh, 1vh) * 100 - 186px);
  min-height: 200px;
  display: flex; align-items: center;
}

.default__title  {
  width: 100%;
  text-align: left; max-width: 1782px;
  font-size: 5rem; letter-spacing: -0.004em;
  padding-top: 10.3%;
}

.default__content {
  background: var(--whitish); color: var(--black);
  font-weight: 600;
  line-height: 1.45;
  font-size: 1.06rem;
  letter-spacing: 0.024rem;
  padding-top: 134px;
  padding-bottom: 134px;
}

.default__content a {
  color: var(--black);
  text-decoration: underline;
}

.default__content ul {
  margin: 2.8rem 0rem 3.1rem 1.5rem;
}

.default__content li {
  margin-bottom: 1.8rem;
}

.default__content .page__content {
  max-width: 1040px;
}

.default__content h2 {
  font-size: 2.42rem;
  margin-bottom: 0.7rem;
}

.default__content h2:not(:first-child) {
  margin-top: 4.6rem;
}

.default__content p {
  margin-bottom: 1.5rem;
}

.default__content .table-wrapper {
  margin-left: calc(-50vw + 518px);
  width: calc(100vw - var(--side-padding) * 2) !important;
  padding: 0;
  margin-top: 11rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: auto;
}

.default__content table ul {
  margin: 0;
}

.default__content table li {
  margin: 0 0 1.1rem 0;
}

.default__content table li:before {
  content: '· '
}

.default__content td,
.default__content th {
  vertical-align: top;
  padding: 0 20px 20px 20px;
  text-align: left;
}

.default__content thead {
  position: sticky;
  top: 50px;  
}

.default__content th {
  padding-bottom: 14px;
  margin-bottom: 0;

}

.default__content td {
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  padding-bottom: 50px;
  line-height: 1.45;
}

/* Contact DPO */
.default__content .wordpress-gdpr-back-link {
  color: var(--light-gray);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group button {
  border-color: black;
}

.wordpress-gdpr-form {
  margin-top: 59px;
  max-width: 578px;
}

.wordpress-gdpr-form input[type="text"], .wordpress-gdpr-form input[type="email"], 
.wordpress-gdpr-form textarea {
  padding: 17px 32px;; letter-spacing: -0.01em;
  border-radius: 5px;
  font-size: 0.8rem;
}

.wordpress-gdpr-form input[type="checkbox"] {
  width: 18px; height: 18px; 
}

.wordpress-gdpr-form label[for="gdpr_terms"] {
  font-size: 0.85rem;
  letter-spacing: 0.005em;
  padding-left: 31px;
  margin-top: -9px;
}

.wordpress-gdpr-form input[type="submit"] {
  color: black; border-color: black;
  display: inline-block; width: auto;
  font-weight: bold; font-size: 0.82rem;
  padding: 19px 23px 15px 23px; min-width: 232px;
  margin-top: 20px;
}

.wordpress-gdpr-form input[type="submit"]:active {
  background: black; color: white;
}

.form-group label:not([for="gdpr_terms"]) {
  position: absolute;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--light-gray);
  font-weight: 400;
  top: 14px; left: 33px;
}

.form-group label:not([for="gdpr_terms"]).is-hidden {
  display: none;
}

.form-group input[type="checkbox"] {
  position: absolute; left: 0; top: 4px;
}

.form-group input[type="checkbox"]:checked {
  background-image: url('../images/check-black.svg');
  background-position: 60% 3px;
  background-size: 10px;
}

.alert {
  background: transparent;
  border: 5px solid;
  max-width: 581px;
}

.alert-danger {
  color: red;
}

/* FAQ */
.page--faq .default__content {
  background: white;
}

.page--faq .page__content {
  --base-width: 614px; 
  max-width: calc(var(--base-width) + var(--side-padding) * 2);  
  padding-top: 23px;
}

.faq-intro h2 {
  font-size: 2.2rem;
  letter-spacing: -0.005em;
}

.faq-intro {
  border-bottom: 1px solid;
  padding-bottom: 39px;
  margin-bottom: 79px;
}

.faq-column__title {
  font-weight: bold;
  margin-bottom: 60px;
}

.faq-category__title {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 0.75rem;
}

.faq-question__title {
  line-height: 1.1;
}

.faq-question__link {
  padding-left: 20px;
  font-weight: 300;
  background: url('../images/faq-right.svg') left 0 top 4px no-repeat;
  display: block;
  line-height: 1.3;
}

.faq-column:not(:last-of-type) {
  border-bottom: 1px solid;
  margin-bottom: 74px;
  padding-bottom: 26px;
}



.faq-column .faq-question__link {
  text-decoration: none;
}

.faq-column .faq-question__link:hover {
  color: var(--light-gray);
}

.faq-column .faq-categories,
.faq-column .faq__questions {
  margin: 0;
}

.faq-column .faq-column__questions {
  margin-bottom: 40px;
}

.faq-column .faq-category {
  margin-bottom: 34px;
}

.faq-column .faq-question {
  margin-bottom: 19px;
}

.faq-question__text {
  font-weight: 500;
  display: none;
}

.is-open .faq-question__link {
  background-image: url('../images/faq-down.svg');
}

.is-open .faq-question__text {
  display: block;
  font-weight: bold;
  padding: 24px 50px 0px 48px;
  font-size: 0.75rem;
}

/* Solutions */
.section.section--low-carousel,
.page--solutions .section {
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
  padding-top: var(--side-padding);
}

.page--landing .section--low-carousel {
  min-height: 0;
  padding-bottom: 120px;
}

.page--solutions .section--video-carousel {
  padding: 0;
}


  /* Text section */
  .section--text__buttons {
    margin-top: 1rem;
  }
  

  .section--text__titles.titles{ 
    justify-content: flex-start;
    padding-top: var(--small-header-height);
  }

  .section--text__titles > * {
    max-width: 900px;
    letter-spacing: 0.014em;
  }

  .section--text__text p {
    margin-bottom: 1.4rem;
  }

  .section--text__text a {
    display: inline-block;
    border-bottom: 1px solid;
    line-height: 0.7;
  }

  h2.section--text__title {
    margin-bottom: 6.4rem;
  }

  .section--text__title.section--text__title--short {
    margin-bottom: 1rem;
  }

  .press-release-thumb__link span:after,
  .section--text__text a:after {
    content: ''; display: inline-block;
    width: 20px; height: 20px;
    background: url('../images/link-arrow-small.svg') 0 0 no-repeat;
    position: absolute;
    background-size: 6px;
    margin-left: 1px;
  }

  .text-columns {
    display: flex;
    margin: 66px 0;
    max-width: 1150px;
  }

  .text-column {
    flex: 1;
    text-align: left;
    margin: 0 30px;
  }

    /* Intro text section */
    .section.section--text--intro-text:first-of-type {
      margin-top: -30vh;
      padding-bottom: 12vh;
    }


    .page--solutions .section,
    .section.section--text--short,
    .section.section--text--short .titles,
    .section.section--text--intro-text,
    .section.section--text--intro-text .titles {
      min-height: 0; height: auto;
    } 

    .section--text--short .section--text__titles > *,
    .section--text--intro-text .section--text__titles > * {
      max-width: 1200px;
    }

    .section--text--intro-text .section--text__title {
      margin-bottom: 57px;
    }

    .section--text--intro-text .section--text__text {
      line-height: 1.2;
    }

    /* Large text */
    h2.section--text__title--large-text {
      font-size: 3.2272727rem;
      letter-spacing: -0.01em;      
    }

    .section--text__text--large-text {
      font-size: 1.5rem;
      letter-spacing: 0.01em;
      line-height: 1.2;
    }

    .section--text__text--large-text p {
      margin-bottom: 3px;
    }

    .section.section--text--large-text {
      margin-bottom: 6.5rem;
    }

    /* Simple text blocks */
    .section--text__title.section--text__title--simple-text {
      margin-bottom: 67px;
    }

    .section--text__text.section--text__text--simple-text {
      max-width: 700px;
      text-align: left;
    }

    .section--text__text ul li:before,
    .thumbnail-main__text ul li:before {
      content: '·'; padding-right: 5px;
    }

    .section--text__text ul li {
      margin-bottom: 30px;
    }

  
  /* Text infos */
  .text-info__title {
    font-weight: 500;
    letter-spacing: 0;
  }

  .text-info__text h4 {
    color: white;
    margin-bottom: 0.4rem;
  }
  
  .text-info--no-subtitle .text-info__title {
    margin-bottom: 0.7rem;
  }

  .text-info__subtitle {
    margin-bottom: 0.45rem;
  }

  .text-info__text {
    line-height: 1.35;
  }

  .text-info__text li {
    margin-bottom: 0rem;
  }

  .text-info__text h4 ~ blockquote {
    color: inherit;
  }

  .text-info__text blockquote {
    color: white;
    font-size: 1rem;
    letter-spacing: 0.023em;
    line-height: 1.39;
    margin: 0 0 0rem 0;
  }

  .text-info__text blockquote em {
    font-style: normal;
    color: var(--lighter-gray);
  }

  .text-info__text p,
  .text-info__text ul {
    margin-bottom: 1.05rem;
  }

  .text-info__text li:before {
    content: '·'; padding-right: 3px;
  }

  .text-info__button {
    min-width: 210px; width: auto; max-width: none;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    margin-top: 0.5rem;
  }

  /* Deckables */
  .page--solutions .section--deckables {
    padding-left: 0; padding-right: 0;
    --deckable-header-height: 50px;
  }

  .page--solutions.page--hide-intro .section--deckables {
    padding-top: 0;
  }

  .deckables__title {
    text-align: center;
    margin-bottom: 131px;
  }

  .deckable__header-inner, .deckable__main {
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);    
    background: var(--background-color);
    transition: 0.25s background;
  }

  .deckable:first-of-type:not(.is-fixed) .deckable__header-inner, 
  .deckable:first-of-type:not(.is-fixed) .deckable__main {
    background: transparent;
  }

  .deckable:nth-child(even) .deckable__header-inner, 
  .deckable:nth-child(even) .deckable__main {
    background: #191919;
  }

  .deckable__header, .deckable__header-inner {
    height: var(--deckable-header-height); display: flex;
    align-items: center;

    font-size: 0.67rem;
  }

  .deckable__header-inner {
    position: absolute; width: 100%;
  }

  .deckable__header-inner br {
    display: none;
  }

  .deckable__main {
    display: flex;
    padding-top: 62px; padding-bottom: 115px;
  }

  .deckable__text-info {
    flex: 0 0 42%;
    padding-right: 12%;
  }

  .deckables__wrapper:not(.deckables--alternate) .deckable__text-info {
    padding-right: 5%
  }

  .deckable__text-info .text-info__text {
    padding-right: 1%;
  }

  .deckables--alternate .deckable:nth-child(even) .deckable__main {
    flex-direction: row-reverse;
  }

  .deckables--alternate .deckable:nth-child(even) .deckable__text-info {
    padding-right: 8%; padding-left: 4%;
  }

  .deckables--alternate .deckable:nth-child(even) .text-info__text {
    padding-right: 12%;
  }


    /* Deckables positioning effects */
    .deckable {
      position: relative; pointer-events: none;
    }

    .deckable__inner * {
      pointer-events: auto;
    }

    .bookmark {
      position: relative; top: -80px
    }

    .deckable__image-link-wrapper {
      display: flex; justify-content: center; align-items: center;
    }

    .deckable__image-wrapper {
      position: relative;
    }

    .deckable {
      position: sticky;
      top: calc(var(--small-header-height) + var(--deckable-header-height) * var(--index));
    }

    .deckables  {
      position: relative;
    }

    .deckable__bookmark {
      position: absolute;
    }

    .page-template-solutions-php, .page-template-solutions-php .page {
      overflow: visible;
    }


    /* Non-CSS-sticky solution */
    .deckable.is-fixed .deckable__inner {
      position: fixed;
      left: 0; right: 0; top: 0;
      margin-top: calc(var(--small-header-height) + var(--deckable-header-height) * var(--index));
      background: var(--background-color);
    }

    html:not(.is-deckable-short-mode) .deckable.is-fixed:first-child .deckable__header-inner,
    html:not(.is-deckable-short-mode) .deckable.is-fixed:first-child .deckable__header,
    .deckable.is-fixed:first-child .deckable__inner,
    .deckable.is-fixed:first-child .deckable__main {
      background: transparent;
    }

    .page--hide-intro .deckables {
      background: var(--background-color);
    }

    .deckables--single .deckable__header {
      display: none;
    }
    
    .deckables.is-fixed-end {
      position: relative;
    }

    .deckables.is-fixed-end .deckable {
      position: static;
    }

    .deckables.is-fixed-end .deckable.is-fixed .deckable__inner {
      position: absolute; left: 0; right: 0;
    }

    .deckables.is-fixed-end .deckable.is-fixed:last-child .deckable__inner {
      bottom: 0; top: auto;
    }

    .deckables.is-fixed-end .deckable.is-fixed .deckable__inner {
      top: var(--last-item-top);
    }
   
    html:not(.is-deckable-short-mode) .deckables.is-fixed-end .deckable.is-fixed:not(:last-child) .button {
      display: none;
    }
 

    /* Deckables short mode */
    .is-deckable-short-mode #content .deckable,
    .is-deckable-short-mode #content .deckable__inner {
      position: static; top: 0; left: 0; right: 0;
      margin-top: 0; 
    }


    .is-deckable-short-mode #content .deckable.is-fixed .deckable__header-inner {
      position: fixed;
      z-index: 99; top: 0;
      margin-top: calc(var(--small-header-height) + var(--deckable-header-height) * var(--index));
    }

    .is-deckable-short-mode #content .deckables.is-fixed-end .deckable__header-inner {
      top: calc(var(--last-item-top) - var(--number-of-deckables) * var(--deckable-header-height) - 10px); position: absolute;
    }


  /* Large cards */
  .image-wrapper {
    position: relative;
  }

  .section--text-cards {
    background: var(--darker-gray);;
  }

  .text-cards__title {
    text-align: center; padding: 3.6rem 0 4.6rem 0;
  }

  .text-cards {
    display: flex; flex-wrap: wrap;
  }

  .text-card__image-wrapper {
    padding-top: 66%;
    margin-bottom: 1rem
  }

  .text-card {
    flex: 0 0 50%;
    padding: 38px;
  }

  /* Call to action */
  .section--call-to-action {
    min-height: 0;
    background: var(--darker-gray);
  }

  .section--call-to-action .section__inner {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    height: 520px;     
  }

  .section--call-to-action .section__inner > *:not(.bg) {
    position: relative; z-index: 2;
  }

  .cta  {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.0em;
    padding-left: 47px;
    padding-right: 47px;
  }

    /* Small text cards */
    .section--text-cards.section--text-cards--small {
      background: var(--black);
    }

    .section--text-cards--small .text-cards {
      max-width: 1400px;
      margin-left: auto; margin-right: auto;
    }

    .section--text-cards--small .text-card {
      padding: 9px;
    }

    .section--text-cards--small .text-card__image-wrapper {
      margin-bottom: 28px;
    }

  /* Low carousel */
  .low-carousel__main {
    display: flex; flex-direction: row-reverse;
  }

  .low-carousel__items {
    flex: 1;
    margin-right: calc(-1 * var(--side-padding));
  }
    
    /* Header */
    .low-carousel__title {
      text-align: center;
      margin-bottom: 2.75rem;
    }

    .page-template-landing .low-carousel__title {
      margin-bottom: 4rem;
    }

    .low-carousel__navs {
      justify-content: center; display: flex;
      margin-bottom: 6.6rem;
    }

    .low-carousel__nav {
      margin: 0 2.5em;
      line-height: 1.1;
    }

    .low-carousel__nav.is-current {
      color: white; border-bottom: 1px solid;
    }

    /* Sidebar */
    .low-carousel__sidebar {
      flex: 0 0 420px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-template-landing .low-carousel__sidebar-top {
      margin-top: auto;;
    }
  
    .low-carousel__sidebar .carousel__nav {
      justify-content: flex-start;
      margin-top: auto;
    }

      

    .low-carousel__item-title {
      font-weight: 500;
      margin-bottom: 0.22rem;
    }

    .low-carousel__item-subtitle {
      margin-bottom: 1.8rem;
    }

    /* Carousel */

    .low-carousel__item {
      width: 50%;
      height: 420px;
    }

    .low-carousel__items {
      display: none;
    }

    .low-carousel__items .flickity-slider,
    .low-carousel__items .flickity-viewport {
      min-width: 100%; display: flex;
    }

    .low-carousel__items.is-current {
      display: flex;
    }

    .low-carousel__item .fill-image * {
      object-fit: contain; object-position: 50% 50%;
    }

    .flickity-slider {
      height: 100%;
      display: flex;
    }

  /* Video block */
  .section--video-block {
    margin-left: 100px;
    margin-right: 100px;
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .video-block__top-title {
    text-align: center;
    margin-bottom: 37px;  
  }

  .video-block__image-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }

  .video-block__link-wrapper {
    display: flex; align-items: center; justify-content: center;
  }

  .video-block__title {
    margin-right: 46px;
  }

  /* Text columns */
  .section--column-paragraphs__title {
    text-align: center;
    margin-bottom: 106px;
  }

  .section--column-paragraphs__columns {
    margin: 20px auto;
    max-width: 1300px;
  }

  .text-columns--centered .text-column {
    text-align: center;
  }

  /* Main thumbnail */
  .thumbnail-main__section-title {
    text-align: center;
    margin-bottom: 88px;
  }

  .section--main-thumbnail {
    max-width: 1650px;
    margin-left: auto; margin-right: auto;
  }

  .section--main-thumbnail .thumbnail-main {
    flex-direction: row-reverse;
  }

  .section--main-thumbnail .thumbnail-main__side {
    margin-right: 143px;
  }

  .thumbnail-main__text blockquote {
    color: white;
    padding: 0; margin: 0;
    font-size: 1rem;
  }

  .thumbnail-main__text blockquote p {
    margin-bottom: 29px;
  }

  .thumbnail-main__text ul li {
    position: relative;
    margin-bottom: 20px;
  }

  
  

  
/* About page */

  /* Vision */
  .lottie-intro__title.intro__title {
    margin-bottom: 200px;
  }

  .about__vision  {
    max-width: 1250px;
    margin-bottom: 30px;
  }

  .about__vision .link__wrapper {
    margin-top: 2rem;
  }

  .lottie-intro__columns {
    display: flex; 
  }

  .lottie-intro__columns .lottie-intro__animation-wrapper {
    flex: 0 0 500px;
    width: 500px;
    margin-right: 46px;
    margin-left: -46px;
    margin-top: -60px;
  } 

  .lottie-intro__animation-wrapper video {
    width: 100%;
  }
  
  .lottie-intro__subtitle {
    margin-bottom: 1.3rem;
  }

  .lottie-intro__columns > *{
    flex: 1;
    text-align: left;
  }

  /* History */
  .history__title  {
    text-align: center;
    margin-bottom: 101px;
  }

    /* Ruler */
    .ruler__inner, .ruler__content {
      display: flex;
    }


    .ruler__inner {
      background:  url('../images/about-notch.svg') calc(50vw - var(--notch-width) / 2) 0;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding-left: calc(50vw - var(--notch-width) / 2);
      position: absolute;
      padding-right: 200vw;
    }

    .ruler__content {
    }

    .ruler-item {
      width: calc(var(--notch-width) * var(--notches, 1));
    }

    .ruler,
    .ruler__wrapper,
    .ruler-item__link {
      height: var(--history-ruler-height);
    }

    .ruler {
      position: relative;
    }
  
    .ruler-item__link {
      width: var(--notch-width);
      display: flex; flex-direction: column;
      align-items: center;
    }

    .ruler-item__icon-wrapper {
      height: 45px; 
      margin-top: 2px;
      margin-bottom: 3px;
      display: flex; align-items: flex-end; justify-content: center;
    }

    .ruler-item__icon {
      max-width: 25px;
      margin-bottom: 6px;
      display: block;
    }

    /* Ruler pointer */
    .ruler__pointer {
      position: absolute; left: 50%; bottom: 0; height: 4px;
      border-left: 1px solid white;
      z-index: 99;
      display: none;
    }

    .ruler__pointer:before {
      content: ''; display: block;
      position: absolute; top: -81px; height: 4px;
      border-left: 1px solid white;
      z-index: 99;
    }

    /* Sticky ruler */
    .history {
      position: relative;
    }

    .history.is-sticky .ruler {
      position: fixed; left: 0; right: 0; top: var(--small-header-height);
      transform: translateZ(0);
    }

    .history.not-sticky .ruler {
      position: absolute; bottom: var(--last-para-height); top: auto;
    }


    /* Sticky shadow */
    .history:after {
      content: ''; display: block;
      position: absolute; 
      --shadow-height: calc(40vh - var(--small-header-height));
      top: calc(var(--small-header-height) + var(--history-ruler-height) + var(--shadow-height) + 250px); 
      left: 0; right: 0;
      height: var(--shadow-height);
      background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);    
      transition: 0.45s opacity; pointer-events: none;
    } 

    .history.is-sticky:after {
      top: auto; bottom: 0; position: fixed;
    }

    .history.not-sticky:after {
      opacity: 0; 
    }

    .link__wrapper--history {
      position: fixed; bottom: 0px; left: 0; right: 0;
      display: flex; justify-content: center;
      opacity: 0; visibility: hidden; transition: 0.25s all;
      z-index: 2;

      margin-bottom: 50px;
    }

    .history.is-sticky .link__wrapper {
      opacity: 1; visibility: visible;
    }

    .history.is-sticky-end .link__wrapper {
      position: absolute;
    }

    .history__link {
      position: relative;
      margin-top: 145px;
    }



    /* Mark currently scrolled */
    .ruler-item__link {
      opacity: 0.5; transition: 0.25s opacity;    
    }

    .history:not(.is-sticky) .ruler-item:first-of-type .ruler-item__link {
      opacity: 1;
    }

    .is-current-section .ruler-item__link {
      opacity: 1;
    }

    /* Text sections */
    .history__text  .bookmark {
      position: relative; top: calc(-1 * (var(--small-header-height) + 85px + 10px));
    }

    .history__texts {
      margin-top: 42px;
    }

    .history-text__title {
      font-weight: bold;
      letter-spacing: 0;
      margin-bottom: 1.5rem;
    }

    .history__text {
      transition: 0.25s color;
      margin-bottom: 2.75rem
    }

    .history__text:not(.is-current-section) {
      color: var(--lighter-gray);
    }

  /* Team members */
  .team-member__image-wrapper {
    position: relative;
    width: 265px; height: 265px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 38px;
  }

  .team {
    margin-top: 181px;
    text-align: center;
    margin-bottom: 220px;
  }

  .team__section-title {
    margin-bottom: 129px;
  }

  .team-member__role {
    margin-bottom: 37px;
  }
  
  .team__inner  {
    max-width: calc(1320px + var(--side-padding) * 2);
  }

  .team-members {
    display: flex; flex-wrap: wrap;
  }

  .team-member {
    flex: 0 0 calc(100% / 3);
    text-align: center;
    padding: 0 30px;    
    margin-bottom: 2rem;
  }

  /* Locations */
  .locations__maps  {
    height: calc(100vh - 251px);
    width: 100%; overflow: hidden;
    margin-bottom: 53px;
    position: relative;
  }

  .locations__intro {
    max-width: 950px;
    margin: 0 auto 106px auto;
  }

  .page--about--no-team .locations__title  {
    margin-top: 106px;
  }

  .locations__title {
    margin-bottom: 63px;
  }

  .locations__section  {
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
    margin-bottom: var(--side-padding);
    text-align: center;
  }

  .locations__map {
    display: block; opacity: 1;
    position: absolute !important; 
    top: 0; left: 0; right: 0; bottom: 0;
    transition: 0.25s all;
  }

  .locations__map:not(.is-current) {
    opacity: 0;
  }

  .locations {
    display: flex;
    margin: 0 -20px;
  }

  .location {
    flex: 1;
    outline: none;
    padding: 0 20px;
    text-align: left;
  }

  .location__subtitle {
    margin-bottom: 17px;
  }

  .location__text {
    transition: 0.25s all;
    line-height: 1.5;
    letter-spacing: 0.008em;
  }

  .location.is-current .location__text {
    color: white;
  }

  /* Bottom cards */
  .bottom-cards {
    margin-left: calc(var(--side-padding) * 2);
    margin-right: calc(var(--side-padding) * 2);
    margin-bottom: var(--side-padding);
  }
 
 
  .bottom-card {
    padding: 44px 10px;
  }

  .bottom-card .text-card__image-wrapper {
    margin-bottom: 1.7rem;
  }

  .bottom-card .text-info--no-subtitle .text-info__title {
    margin-bottom: 0.45rem;
  }

  .bottom-card .text-info__text p {
    margin-bottom: 0.5rem;
  }

  .bottom-card .text-card__text-info {
    max-width: 500px;
  }

/* Search results */
.page--search > * {
  padding: var(--side-padding);
  background: var(--background-color);
}
  
  /* Top */
  .search-page__top {
    background: #141414;
  }
  
  .search-page__title {
    height: 421px;
    display: flex; justify-content: center; align-items: center;
    padding-bottom: 72px;
  }

  .search-page__keywords {
    margin-left: 20px;
  }

  .result {
    max-width: 960px;
    margin-bottom: 65px;
  }

  .result__title  {
    margin-bottom: 6px;
  }

  .result__excerpt  {
    margin-bottom: 20px;
  }
  
  .search-page__load-more-wrapper {
    display: flex; justify-content: center; align-items: center;
    height: 201px;
  }

  .is-read-more .search-page__load-more-wrapper {
    display: none;
  }

  body:not(.is-read-more) .result:nth-child(3) ~ .result {
    display: none;
  }

  /* Empty */
  .page--search--empty .search-page__title {
    height: auto; padding: 0;
    margin-bottom: 20px;
  }

  .page--search--empty .search-page__top {
    height: 80vh;
    flex-direction: column;
    display: flex; justify-content: center; align-items: center;
    text-align: center;
  }

  /* Suggestions */
  .suggestions {
    display: flex;
    flex-wrap: wrap;
  }

  .suggestion {
    flex: 0 0 calc(100% / 3);
    padding: 10px;
    margin-bottom: 70px;
  }

  .suggestion__thumb-link {
    position: relative;
    padding-top: 63%;
    display: block;
    margin-bottom: 14px;
  }

  .suggestions__title {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 180px;
  }

  .suggestion__link:not(:hover) {
    transiton: 0.25s;
    opacity: 0.5;
  }

/* Media center */

  /* General thumbnails */
  .thumbnails {
    display: flex; flex-wrap: wrap;
    --gap: 6px; 
  }

  .media-videos__wrapper .video-carousel-thumb__title {
    color: white;
  }

  .thumbnails > * {
    flex: 0 0 calc(100% / 3 - var(--gap) * 2);
    margin: 0 var(--gap) 60px var(--gap);
  }

  .load-more-items__footer {
    display: flex; justify-content: center; align-items: center;
    background: linear-gradient(0deg, black 0%, black 50%, rgba(0,0,0,0) 100%);   
    height: 250px;
    z-index: 222; position: absolute; bottom: 0; left: 0; right: 0;
    transition: 0.25s all;
  }

  .is-done .load-more-items__footer {
    opacity: 0; visibility: hidden; margin: 0;
  }

  .load-more-items__button {
    padding: 15px 62px;
  }

  .load-more-items {
    --footer-height: 265px;
    height: calc(var(--wrapper-height) - var(--footer-height)); 
    transition: 1s height cubic-bezier(0.42, 0, 0.1, 0.96);
    position: relative;
    overflow: hidden;
  }

  .load-more-items--no-more {
    height: auto;
  }

  .load-more-items.is-done {
    height: calc(var(--wrapper-height) );
  }

  /* Videos */
  .media-videos__title {
    margin-bottom: 190px;
  }
  
  .media-video--main .video-carousel__image-wrapper {
    padding-top: 47%;
  }

  .video-carousel-thumb__text {
    margin-top: 10px;
    margin-bottom: 11px;
  }

  .video-carousel-thumb__bottom {
    display: flex; align-items: flex-start; justify-content: space-between;
  }

 .video-carousel-thumb__content {
    max-width: 355px;
  }


  /* Main thumbnail */
  .thumbnail-main {
    display: flex;
    margin-bottom: 50px;
  }

  .thumbnail-main__image-wrapper {
    flex: 2;
  }

  .thumbnail-main__side {
    flex: 1;   
  }

  .thumbnail-main__side .meta {
    margin: 35px 0 30px;
  }

  .thumbnail-main__side > * {
    padding-left: 23px;
  }

  .media-videos__wrapper {
    margin-bottom: 91px;
  }

  .thumbnail-main__tag-wrapper .thumbnail__tag {
    margin-bottom: 21px;
  }  

  .thumbnail-main__title {
    margin-bottom: 5px;
  }

  .thumbnail-main__button {
    margin-top: 27px;
    display: block;
  }

  .media-blogs--desktop {
    padding-top: 47px;
    margin-top: -35px;
  }

  .media-blog--small {
    overflow: visible;
    position: relative;
    margin-bottom: 75px;
  }

  .media-blog--small .thumbnail__tag {
    position: absolute;
    top: -47px;
  }

  /* Blogs */
  .media-presskit__title,
  .page--media .page__title {
    margin-bottom: 140px;
  }
  
  .media-presskit__title {
    margin-top: 250px;
  }

  .media-blogs {
    --footer-height: 360px;
    margin-bottom: 155px;
  }



/* Newsroom */
  
  /* Intro */
  .newsroom-reviews__title {
    margin-bottom: 325px;
  }

  .newsroom__main-review {
    max-width: 1180px;
    line-height: 1.3;
    margin: 0 auto 150px auto;
  }
  
  .review-main__excerpt {
    margin-bottom: 20px;
    font-weight: 300;
  }

  .review-thumb__bottom.review-main__bottom {
    justify-content: flex-end;
  }

  .review-main .review-thumb__logo-wrapper {
    margin-right: 46px;
    margin-top: -4px;
  }

  .review-main .review-thumb__logo-wrapper * {
    width: auto; height: 100%;
  }

  /* Thumbs */
  .newsroom-reviews__wrapper {
    --base-width: 1800px;
    margin-bottom: 239px;
  }

  .review-thumb__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .thumbnails .review-thumb {
    flex: 0 0 calc(25% - var(--gap) * 2);
    margin-bottom: 86px;
    overflow: hidden;
  }

  .review-thumbs .thumbnails {
    --gap: 40px;
    margin-left: calc(-1 * var(--gap));
    margin-right: calc(-1 * var(--gap));
  }

  .review-thumb__excerpt {
    padding-right: 0;
  }

  .review-thumb__logo-wrapper {
    margin-right: 40px; 
    height: 28px;
  }

  .review-thumb__logo-wrapper *,
  .review-thumb__logo-wrapper picture img {
    height: 100%; width: auto;
    max-width: 170px;
  }

  .review-thumb__image-wrapper {
    padding-top: 70%;
  }

  .review-thumbs .load-more-items__footer {
    height: 350px;
  }

  /* Press releases */
  .newsroom-releases .thumbnails {
    flex-direction: column;
  }  

  .newsroom-releases__title {
    padding-bottom: 3.13636rem;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid #707070;
  }

  .newsroom-releases .thumbnails .press-release-thumb {
    flex: 1;
    margin-bottom: 1.68181rem;
  } 

  .press-release-thumb__link:hover,
  .press-release-thumb__link:hover span:after {
    opacity: 0.7;
  }

  .newsroom-releases__wrapper {
    --base-width: 685px;
  }

  .press-release-thumb__link span {
    position: relative;
    font-weight: 500;
  }
  
  .press-release-thumb__link span:after {
    top: auto; margin-left: 9px; margin-top: 9px;
    background-size: 11px;
  }
 

/* Science */
.science__intro {
  --base-width: 1470px;
  max-width: calc(var(--base-width) + var(--side-padding) * 2);
  line-height: 1.25;
  margin-bottom: 207px;
  font-weight: 300;
}

  /* Technologies */
  .technology {
    position: relative;
    background: black;
  }

  .technologies {
    background: black;
  }

  .medium-title {
    font-size: 3.3rem;
    letter-spacing: 0.002em;
    line-height: 1;
    font-weight: 500;    
  }

  .technology__title {
    display: flex;
    align-items: center; justify-content: center;
    margin-bottom: 15px;
    height: 20vw;
  }

  .technology__text {
    font-size: 1.35rem;
    font-weight: 500;
  }

  .technology__inner {
    max-width: calc(1150px + var(--side-padding) * 2);
    text-align: center;
    padding: 37px var(--side-padding); 
    padding-bottom: 159px;
    margin: 0 auto;
    position: relative; z-index: 2;
  }

  .technology__bg.fill-image *,
  .technology__bg.fill-image {
    object-position: 50% 0%;
  }

  /* Whiteppapers */
  .white-papers__wrapper {
    background: #f7f7f7;
    --text-color: black;
    color: black;
  }

  .white-papers__title {
    margin-bottom: 111px;
  }

  .white-papers {
    display: flex; flex-wrap: wrap;
    --gap: 8px;
  }

  .white-papers__inner {
    --base-width: 1120px;    
    padding: 180px 0 77px;   
  }

  .thumbnail--white {
    border: 1px solid;
    padding: 65px;
    flex: 0 0 calc(50% - var(--gap) * 2);    
  }

  .thumbnail--white .thumbnail__title {
    margin-bottom: 32px;
  }

  .thumbnail--white .thumbnail__meta-link, 
  .thumbnail--white .thumbnail__title, 
  .thumbnail--white .thumbnail__excerpt {
    padding-right: 0;
    color: var(--text-color);
    font-weight: 500;
  }

  .thumbnail--white .thumbnail__excerpt {
    margin-bottom: 33px;
  }

  .thumbnail--white .button {
    color: var(--text-color);
    font-weight: 800;
    padding-left: 60px;
    padding-right: 60px;
  }

  .thumbnail--white .button .link__inner:after {
    background-image: url('../images/link-arrow-small-black.svg');
  }

  .thumbnail--white .meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .thumbnail--white .meta__date-duration {
    color: var(--dark-gray);
  }

  .thumbnail--white .meta__author {
    align-items: flex-start; margin-right: 0;
    color: var(--text-color);
    margin-bottom: 4px;
    width: 100%;
  }


  .thumbnail--white .meta__author-wrapper {
    width: 42px; height: 42px;
    flex: 0 0 42px;
  }

  .thumbnail--white .thumbnail__button:active {
    border-color: black; color: white;
    background: black;
  }

  .thumbnail--white .button.thumbnail__button:active .link__inner:after {
    background-image: url('../images/link-arrow-small.svg');
  }

  .thumbnail--white .thumbnail__button:active .button__stroke-rect--white {
    display: none;
  }

/* Presskit */
.presskit__top {
  flex-direction: column;
}

.page-top__wrapper {
  margin-top: 70px;
}

.page-top__wrapper .button  {
  padding-left: 25px;
  padding-right: 25px;
}

.presskit__intro {
  --base-width: 1007px;
  text-align: center;
  margin-bottom: 25vh;
}

.presskit-intro__title {
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 2.15rem;
}

.is-loaded .presskit__intro,
.presskit .page__main--with-top {
  min-height: 0;
}

  /* Images */
  .download-images__title {
    margin-bottom: 92px;
  }

  .download-images {
    display: flex; flex-wrap: wrap;
    margin-bottom: 193px;

    --gap: 7px;
    --items-per-row: 4;
  }

  .download-image {
    flex: 0 0 calc(100% / var(--items-per-row) - var(--gap) * 2);  
    margin: 0 var(--gap) 39px var(--gap);
  }

  .download-images__wrapper {
    --base-width: 1920px;
  }

  .download-image__link {
    padding-top: calc(1080/1920 * 100%); 
    position: relative;
    margin-bottom: 2px;
    display: block;
  }


  .download-image .link {
    transition: none;
  }

  .download-image:not(:hover) .link__inner:after {
    background-image: url('../images/link-arrow-small-gray.svg');
  }

  .download-image:hover .link {
    color: white;
  }

  /* Guidelines */
  .guidelines__wrapper {
    --base-width: 1180px;
    --side-padding: 220px;
  }

  .guidelines__intro {
    text-align: center;
    margin-bottom: 156px;
  }

  .guidelines__title  {
    margin-bottom: 48px;
  }

  .guideline  {
    display: flex;
    justify-content: space-between;
    margin-bottom: 147px;
  }

  .guideline__image-wrapper {
    flex: 0 0 160px;
    display: flex; align-items: center; justify-content: center;
  }

  .guideline--wide .guideline__image-wrapper {
    flex: 0 0 550px;
    margin-right: -182px;
  }

  .guideline--wide .guideline__image {
    max-width: none;
  }

  .guideline__title {
    margin-bottom: 4px;
  }

  .guideline__texts  {
    max-width: 620px;
    margin-right: 60px;
  }

  .guidelines__bottom {
    display: flex; align-items: center; justify-content: center;
    margin-top: 211px;
    margin-bottom: 266px; 
  }

  /* Outro */
  .outro.column-width {
    text-align: center;
    --base-width: 1200px;
  }

  .outro__title  {
    margin-bottom: 26px;
  }

  .outro__text p {
    margin-bottom: 1.4rem;
  }

  .outro__text strong {
    font-weight: normal; color: white;
  }

  .outro__text a:hover {
    color: white;
  }