@charset "UTF-8";
.slick-list {
  overflow: hidden;
}
.slick-list:after {
  content: "";
  clear: both;
  display: table;
}

.slick-dots {
  width: 100%;
  text-align: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li button {
  text-indent: 9999px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 0;
  overflow: hidden;
  vertical-align: top;
  position: relative;
  outline: none;
}
.slick-dots li button:after {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  background-color: #6f7073;
  display: block;
}
.slick-dots li.slick-active button:after {
  background-color: white;
}

/*
Animate.css - http://daneden.me/animate
Licensed under the ☺ license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
            transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
            transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
            transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
            transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
            transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
            transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
            transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
            transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
            transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
            transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
            transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
            transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flip;
          animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
            transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
            transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  -webkit-animation-name: flipOutX;
          animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
            transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
            transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
          animation-name: flipOutY;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(-200deg);
            transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(200deg);
            transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
            transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
            transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
            transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
            transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
            transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
            transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}
@keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
            transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
            transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
            transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
            transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
            transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
            transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
            transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
            transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
}
.wiggle {
  -webkit-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.wiggle {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

/**
 * Foundation for Sites by ZURB
 * Version 6.3.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
@font-face {
  font-family: 'GT-Walsheim-Bold';
  src: url("../fonts/gt-walsheim-bold-web.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/gt-walsheim-bold-web.eot?#iefix") format("embedded-opentype"), url("../fonts/gt-walsheim-bold-web.woff") format("woff"), url("../fonts/gt-walsheim-bold-web.ttf") format("truetype"), url("../fonts/gt-walsheim-bold-web.svg#GT-Walsheim-Bold") format("svg");
  /* Legacy iOS */
}
@font-face {
  font-family: 'GT-Walsheim-Light';
  src: url("../fonts/gt-walsheim-light-web.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/gt-walsheim-light-web.eot?#iefix") format("embedded-opentype"), url("../fonts/gt-walsheim-light-web.woff") format("woff"), url("../fonts/gt-walsheim-light-web.ttf") format("truetype"), url("../fonts/gt-walsheim-light-web.svg#GT-Walsheim-Light") format("svg");
  /* Legacy iOS */
}
@font-face {
  font-family: 'GT-Walsheim-LightItalic';
  src: url("../fonts/gt-walsheim-light-oblique-web.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/gt-walsheim-light-oblique-web.eot?#iefix") format("embedded-opentype"), url("../fonts/gt-walsheim-light-oblique-web.woff") format("woff"), url("../fonts/gt-walsheim-light-oblique-web.ttf") format("truetype"), url("../fonts/gt-walsheim-light-oblique-web.svg#GT-Walsheim-LightItalic") format("svg");
  /* Legacy iOS */
}
@font-face {
  font-family: 'GT-Walsheim-Medium';
  src: url("../fonts/gt-walsheim-medium-web.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/gt-walsheim-medium-web.eot?#iefix") format("embedded-opentype"), url("../fonts/gt-walsheim-medium-web.woff") format("woff"), url("../fonts/gt-walsheim-medium-web.ttf") format("truetype"), url("../fonts/gt-walsheim-medium-web.svg#GT-Walsheim-Medium") format("svg");
  /* Legacy iOS */
}
@font-face {
  font-family: 'GT-Walsheim-Regular';
  src: url("../fonts/gt-walsheim-web.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/gt-walsheim-web.eot?#iefix") format("embedded-opentype"), url("../fonts/gt-walsheim-web.woff") format("woff"), url("../fonts/gt-walsheim-web.ttf") format("truetype"), url("../fonts/gt-walsheim-web.svg#GT-Walsheim-Regular") format("svg");
  /* Legacy iOS */
}
@font-face {
  font-family: 'GT-Walsheim-Italic';
  src: url("../fonts/gt-walsheim-regular-oblique-web.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/gt-walsheim-regular-oblique-web.eot?#iefix") format("embedded-opentype"), url("../fonts/gt-walsheim-regular-oblique-web.woff") format("woff"), url("../fonts/gt-walsheim-regular-oblique-web.ttf") format("truetype"), url("../fonts/gt-walsheim-regular-oblique-web.svg#GT-Walsheim-Italic") format("svg");
  /* Legacy iOS */
}
@font-face {
  font-family: 'madeo-icons';
  src: url("../fonts/madeo-icons.eot?45504769");
  src: url("../fonts/madeo-icons.eot?45504769#iefix") format("embedded-opentype"), url("../fonts/madeo-icons.woff2?45504769") format("woff2"), url("../fonts/madeo-icons.woff?45504769") format("woff"), url("../fonts/madeo-icons.ttf?45504769") format("truetype"), url("../fonts/madeo-icons.svg?45504769#madeo-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'madeo-icons';
    src: url('../font/madeo-icons.svg?45504769#madeo-icons') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "madeo-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-ico-facebook:before {
  content: '\e800';
}

.icon-ico-instagram:before {
  content: '\e801';
}

.icon-ico-arrow-right:before {
  content: '\e802';
}

.icon-ico-close2:before {
  content: '\e803';
}

.icon-ico-down:before {
  content: '\e804';
}

.about-us {
  text-align: center;
  display: table;
  vertical-align: middle;
  height: 100vh;
}
.about-us--career {
  height: auto;
  margin-top: 22rem;
  margin-bottom: 24rem;
}
@media only screen and (max-width: 770px) {
  .about-us--career {
    margin-top: 12rem;
    margin-bottom: 14rem;
  }
}
@media only screen and (max-width: 667px) {
  .about-us--career {
    margin-top: 8rem;
    margin-bottom: 10rem;
  }
}
.about-us__wrapper {
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  width: 100%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
  float: none;
}
@media print, screen and (min-width: 41.6875em) {
  .about-us__wrapper {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.about-us__wrapper:last-child:not(:first-child) {
  float: right;
}
@media only screen and (max-width: 667px) {
  .about-us {
    height: auto;
    padding-bottom: 7rem;
  }
}

.awards {
  max-width: 137rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
  margin: 10rem 0 0;
}
.awards::before, .awards::after {
  display: table;
  content: ' ';
}
.awards::after {
  clear: both;
}
@media print, screen and (min-width: 41.6875em) {
  .awards {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.awards:last-child:not(:first-child) {
  float: right;
}
.awards, .awards:last-child {
  float: none;
}
.awards__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
  opacity: 0;
  transition: -webkit-transform 0.8s 0.2s cubic-bezier(0.16, 0.47, 0.52, 1), opacity 0.8s 0.2s cubic-bezier(0.16, 0.47, 0.52, 1);
  transition: transform 0.8s 0.2s cubic-bezier(0.16, 0.47, 0.52, 1), opacity 0.8s 0.2s cubic-bezier(0.16, 0.47, 0.52, 1);
  width: 50%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
  box-sizing: border-box;
}
@media print, screen and (min-width: 41.6875em) {
  .awards__list {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.awards__list:last-child:not(:first-child) {
  float: right;
}
.awards__list:first-child {
  transition-delay: 0.44s;
}
@media only screen and (max-width: 667px) {
  .awards__list {
    width: 100%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 667px) and (min-width: 41.6875em) {
  .awards__list {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 667px) {
  .awards__list:last-child:not(:first-child) {
    float: right;
  }
  .awards__list:first-child {
    transition-delay: 0.2s;
  }
}
.awards.is-view .awards__list {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}
.awards__item {
  position: relative;
  display: block;
  width: 100%;
  height: 130px;
  float: none;
  padding-left: 12rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 667px) {
  .awards__item {
    padding-left: 9rem;
    height: 80px;
  }
}
.awards__item__number {
  font-family: "GT-Walsheim-Medium", sans-serif;
  font-size: 10.0rem;
  color: white;
  width: 12rem;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  text-align: center;
}
.awards__item__number:after {
  display: block;
  content: "";
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 2rem;
  bottom: 1rem;
  right: 0;
}
.awards__item__number__wrapper {
  overflow: hidden;
}
@media only screen and (max-width: 667px) {
  .awards__item__number {
    font-size: 4.6rem;
    width: 8rem;
  }
  .awards__item__number:after {
    top: 0rem;
    bottom: 0rem;
  }
}
.awards__item__project {
  font-family: "GT-Walsheim-Medium", sans-serif;
  font-size: 2.1rem;
  color: white;
  display: block;
  padding: 2.5rem 1.5rem 0.2rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 667px) {
  .awards__item__project {
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem 0.2rem;
  }
}
.awards__item__project__wrapper {
  overflow: hidden;
}
.awards__item__description {
  font-family: "GT-Walsheim-Medium", sans-serif;
  font-size: 2.1rem;
  display: block;
  padding: 0.2rem 0rem 0.2rem 1.5rem;
  color: #706f79;
}
@media only screen and (max-width: 667px) {
  .awards__item__description {
    font-size: 1.5rem;
  }
}

#canvas-container {
  height: 100vh;
  width: 100%;
  position: fixed;
  overflow: hidden;
  z-index: -100;
}

canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0;
  background-color: transparent !important;
}
@media only screen and (max-width: 667px) {
  canvas {
    display: none;
  }
}

.contact {
  height: 100vh;
  width: 100%;
  background-color: #1edd8e;
  position: fixed;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  z-index: 999;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
}
.contact__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  height: 50px;
  width: 50px;
}
.contact__wrapper {
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
  vertical-align: middle;
}
.contact__content {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.contact__form {
  max-width: 90rem;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width: 667px) {
  .contact__submit {
    width: 100%;
    display: block;
  }
}
.contact.is-active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  visibility: visible;
}
.contact.is-active .large-word__title {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  visibility: visible;
}
.contact .large-word__title {
  color: rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  visibility: hidden;
  transition: -webkit-transform 0.6s 0.05s ease-in-out;
  transition: transform 0.6s 0.05s ease-in-out;
}
.contact .buttons-group {
  text-align: left;
  margin-top: 10rem;
}
@media only screen and (max-width: 667px) {
  .contact .large-word {
    height: 5.5rem;
  }
  .contact .large-word__title {
    font-size: 6.5rem;
  }
}

body.active-consoleopen .consoleopen {
  display: block;
}

.consoleopen {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background-size: cover;
}
.consoleopen__wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
  text-align: center;
}

.brands {
  margin: 0;
}

.brand-logos {
  text-align: center;
}
.brand-logos__list {
  max-width: 137rem;
  margin-right: auto;
  margin-left: auto;
  margin: 0;
  padding: 0;
}
.brand-logos__list::before, .brand-logos__list::after {
  display: table;
  content: ' ';
}
.brand-logos__list::after {
  clear: both;
}
.brand-logos__item {
  outline: 0;
  display: inline-block;
  width: 16.66667%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
  box-sizing: border-box;
  text-align: center;
}
@media print, screen and (min-width: 41.6875em) {
  .brand-logos__item {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.brand-logos__item:last-child:not(:first-child) {
  float: right;
}
.brand-logos__item img {
  outline: 0;
  margin: 0 auto;
  height: 60px;
}
@media only screen and (max-width: 667px) {
  .brand-logos__item {
    padding: 0 0.8em;
    float: none;
    vertical-align: middle;
  }
  .brand-logos__item img {
    height: auto;
  }
}

.button {
  padding: 1rem 1.5rem;
  display: inline-block;
  background: none;
  border: 0;
  outline: 0;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
}
.button--default {
  padding: 3.0rem 6.0rem;
  font-family: "GT-Walsheim-Bold", sans-serif;
  background: #212136;
  color: white;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  box-sizing: border-box;
  min-width: 20rem;
  box-shadow: 0px 10px 36px 0px rgba(0, 0, 0, 0.39);
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0) perspective(1px);
          transform: translate3d(0, 0, 0) perspective(1px);
}
.button--default:hover {
  -webkit-transform: perspective(1px) scale(1.1);
          transform: perspective(1px) scale(1.1);
  box-shadow: 0px 30px 36px 13px rgba(0, 0, 0, 0.39);
}
@media only screen and (max-width: 667px) {
  .button--default {
    padding: 2.5rem 3.0rem;
  }
}
.button--smaller {
  padding: 2.4rem 6.0rem;
  font-family: "GT-Walsheim-Bold", sans-serif;
  background: #212136;
  color: white;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  box-sizing: border-box;
  min-width: 20rem;
  box-shadow: 0px 10px 36px 0px rgba(0, 0, 0, 0.39);
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0) perspective(1px);
          transform: translate3d(0, 0, 0) perspective(1px);
}
.button--smaller:hover {
  -webkit-transform: perspective(1px) scale(1.1);
          transform: perspective(1px) scale(1.1);
  box-shadow: 0px 30px 36px 13px rgba(0, 0, 0, 0.39);
}
@media only screen and (max-width: 667px) {
  .button--smaller {
    padding: 2.0rem 3.0rem;
  }
}
.button--close {
  background-color: transparent;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 3rem;
  padding: 0;
  transition: border 0.3s ease-in-out;
}
.button--close:hover {
  -webkit-animation: closeHover 0.3s ease-in-out;
          animation: closeHover 0.3s ease-in-out;
  border: 1px solid white;
}

.buttons-group {
  margin-top: 5rem;
}

@-webkit-keyframes closeHover {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@keyframes closeHover {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.email-link {
  display: inline-block;
}
.email-link a {
  font-family: "GT-Walsheim-Regular", sans-serif;
  font-size: 5.0rem;
  color: white;
  text-decoration: none;
}
@media only screen and (max-width: 1025px) {
  .email-link a {
    font-size: 4.0rem;
  }
}
@media only screen and (max-width: 667px) {
  .email-link {
    margin-bottom: 20px;
  }
  .email-link a {
    font-size: 2.5rem;
  }
}

.footer {
  height: 8rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition: -webkit-transform 0.4s cubic-bezier(0.16, 0.47, 0.52, 1), background 0.4s cubic-bezier(0.16, 0.47, 0.52, 1), border-top 0.4s cubic-bezier(0.16, 0.47, 0.52, 1), opacity 0.9s 0.4s ease-in-out;
  transition: transform 0.4s cubic-bezier(0.16, 0.47, 0.52, 1), background 0.4s cubic-bezier(0.16, 0.47, 0.52, 1), border-top 0.4s cubic-bezier(0.16, 0.47, 0.52, 1), opacity 0.9s 0.4s ease-in-out;
  box-sizing: border-box;
  padding: 0rem 8rem;
}
.footer::before, .footer::after {
  display: table;
  content: ' ';
}
.footer::after {
  clear: both;
}
@media only screen and (max-width: 667px) {
  .footer {
    height: auto;
    padding: 2rem;
  }
}
.footer__address {
  float: left;
  font-size: 1.6rem;
  color: #706f79;
  line-height: 5rem;
  display: inline-block;
  padding: 1.5rem;
  opacity: 0;
}
@media only screen and (max-width: 667px) {
  .footer__address {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
    line-height: 2rem;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
  }
}
.footer__email {
  float: right;
  font-family: "GT-Walsheim-Bold", sans-serif;
  font-size: 1.1rem;
  color: white;
  text-transform: uppercase;
  line-height: 5rem;
  display: inline-block;
  letter-spacing: 0.4rem;
  text-decoration: none;
  padding: 1.5rem;
}
@media only screen and (max-width: 667px) {
  .footer__email {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
    line-height: 2rem;
    padding: 0.5rem;
    font-size: 1.1rem;
  }
}
.footer--start {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.footer--start .footer__address {
  opacity: 0;
}
.footer--end {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background-color: #212136;
  border-top: 1px solid #37384c;
}
.footer--end .footer__address {
  opacity: 1;
}

.homepage {
  height: 100vh;
  width: 100%;
  display: table;
  vertical-align: middle;
  text-align: center;
  position: relative;
}
.homepage__square {
  display: none;
  width: 43rem;
  height: 43rem;
  background-color: #212136;
  margin: 0 auto;
  position: absolute;
  top: 6.5rem;
  left: 0;
  right: 0;
  z-index: -1;
  box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(70%);
          transform: translateY(70%);
  opacity: 0;
  transition: opacity 0.8s 0.1s ease-in-out, box-shadow 0.9s 0.2s ease-in-out, -webkit-transform 0.9s 0.2s ease-in-out;
  transition: opacity 0.8s 0.1s ease-in-out, box-shadow 0.9s 0.2s ease-in-out, transform 0.9s 0.2s ease-in-out;
}
@media only screen and (max-width: 667px) {
  .homepage__square {
    width: 20rem;
    height: 20rem;
    top: 3rem;
  }
}
.homepage__arrow {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  max-width: 250px;
  z-index: 100;
  transition: opacity 0.9s 0.4s ease-in-out;
}
@media only screen and (max-width: 667px) {
  .homepage__arrow {
    bottom: inherit;
    top: 77%;
  }
}
.homepage__arrow button {
  background-color: transparent;
  font-family: "GT-Walsheim-Bold", sans-serif;
  border: 0;
  color: white;
  font-size: 1.1rem;
  outline: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
}
@media only screen and (max-width: 667px) {
  .homepage__arrow button span {
    display: none;
  }
}
.homepage__arrow svg {
  position: relative;
  top: 1px;
  left: -1px;
}
.homepage__arrow svg path {
  fill: white;
  opacity: 0.36;
  display: block;
  -webkit-animation: scrollDownAnim 1.8s cubic-bezier(0.16, 0.47, 0.52, 1);
          animation: scrollDownAnim 1.8s cubic-bezier(0.16, 0.47, 0.52, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.homepage__arrow svg path.cls-2 {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}
.homepage__wrapper {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.homepage__content {
  position: relative;
  height: 46rem;
  padding: 3rem 0 3rem 0;
}
@media only screen and (max-width: 1441px) {
  .homepage__content {
    height: 43rem;
    padding-top: 1rem;
  }
}
@media only screen and (max-width: 667px) {
  .homepage__content {
    height: 20rem;
    padding-top: 4rem;
  }
}
.homepage__email {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.homepage__email a {
  font-family: "GT-Walsheim-Bold", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.4rem;
  height: 30px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
.homepage .small-title {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.homepage .main-title__title {
  -webkit-transform: translateY(150%);
          transform: translateY(150%);
  transition: opacity 0.3s ease-in-out;
}

.footer, .topbar {
  opacity: 0;
  visibility: hidden;
}

body.loaded .topbar__logotext span {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
body.loaded .homepage__square {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  box-shadow: 0px 35px 90px 0px rgba(0, 0, 0, 0.7);
}
body.loaded .homepage__arrow {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
body.loaded .homepage__arrow--hidden {
  opacity: 0;
  transition: opacity 0.4s 0s ease-in-out;
}
body.loaded .homepage.animation-enter .main-title__title {
  -webkit-animation: homeMainTitleEnter 0.8s cubic-bezier(0.16, 0.47, 0.52, 1);
          animation: homeMainTitleEnter 0.8s cubic-bezier(0.16, 0.47, 0.52, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.50s;
          animation-delay: 0.50s;
}
body.loaded .homepage.animation-enter .main-title__title2 {
  -webkit-animation-delay: 0.62s;
          animation-delay: 0.62s;
}
body.loaded .homepage.animation-enter .main-title__title3 {
  -webkit-animation-delay: 0.74s;
          animation-delay: 0.74s;
}
body.loaded .footer, body.loaded .topbar {
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes homeMainTitleEnter {
  from {
    -webkit-transform: translateY(150%);
            transform: translateY(150%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes homeMainTitleEnter {
  from {
    -webkit-transform: translateY(150%);
            transform: translateY(150%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@-webkit-keyframes scrollDownAnim {
  0% {
    opacity: 0.36;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0.36;
  }
  100% {
    opacity: 0.36;
  }
}
@keyframes scrollDownAnim {
  0% {
    opacity: 0.36;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0.36;
  }
  100% {
    opacity: 0.36;
  }
}
.inputs {
  position: relative;
}
.inputs input, .inputs textarea {
  background-color: transparent;
  border: 0;
  outline: 0;
  border-bottom: 1px solid white;
  height: 80px;
  font-size: 3.6rem;
  font-family: "GT-Walsheim-Regular", sans-serif;
  color: white;
  width: 100%;
  max-width: none;
  padding-left: 0px;
  padding-top: 20px;
  min-width: 0;
  box-sizing: border-box;
  line-height: 1.4;
}
.inputs input:focus + label, .inputs textarea:focus + label {
  -webkit-transform: scale(0.4) translateY(10px);
          transform: scale(0.4) translateY(10px);
}
@media only screen and (max-width: 667px) {
  .inputs input, .inputs textarea {
    font-size: 2.6rem;
    height: 50px;
  }
}
.inputs textarea {
  transition: height 0.4s ease-in-out;
  resize: none;
}
.inputs textarea:focus {
  height: 15rem;
}
.inputs label {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  font-size: 3.6rem;
  font-family: "GT-Walsheim-Regular", sans-serif;
  position: absolute;
  transition: all 0.4s ease-in-out;
  left: 0;
  line-height: 2.2;
  box-sizing: border-box;
}
@media only screen and (max-width: 667px) {
  .inputs label {
    font-size: 2.6rem;
  }
}
.inputs.is-filled label {
  -webkit-transform: scale(0.4) translateY(10px);
          transform: scale(0.4) translateY(10px);
}

.js-inview {
  visibility: hidden;
}
.js-inview.is-view {
  visibility: visible;
}

.inview-smalltitle .small-title__line {
  visibility: hidden;
  width: 0;
  transition: width 0.4s 0.1s cubic-bezier(0.16, 0.47, 0.52, 1);
}
.inview-smalltitle .small-title__title span {
  visibility: hidden;
}
.inview-smalltitle.is-view .small-title__line {
  visibility: visible;
  width: 6.4rem;
}

.is-view .section-title__title span {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.homepage .small-title__title {
  visibility: hidden;
}

.homepage .small-title__title span[class*="char"] {
  visibility: hidden;
  opacity: 0;
}

.small-title__title.is-view, .is-view .small-title__title, .loaded .homepage .small-title__title {
  visibility: visible;
}
.small-title__title.is-view span[class*="char"], .is-view .small-title__title span[class*="char"], .loaded .homepage .small-title__title span[class*="char"] {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  visibility: visible;
}
.small-title__title.is-view .char2, .is-view .small-title__title .char2, .loaded .homepage .small-title__title .char2 {
  -webkit-animation-delay: 40ms;
          animation-delay: 40ms;
}
.small-title__title.is-view .char3, .is-view .small-title__title .char3, .loaded .homepage .small-title__title .char3 {
  -webkit-animation-delay: 80ms;
          animation-delay: 80ms;
}
.small-title__title.is-view .char4, .is-view .small-title__title .char4, .loaded .homepage .small-title__title .char4 {
  -webkit-animation-delay: 120ms;
          animation-delay: 120ms;
}
.small-title__title.is-view .char5, .is-view .small-title__title .char5, .loaded .homepage .small-title__title .char5 {
  -webkit-animation-delay: 160ms;
          animation-delay: 160ms;
}
.small-title__title.is-view .char6, .is-view .small-title__title .char6, .loaded .homepage .small-title__title .char6 {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
.small-title__title.is-view .char7, .is-view .small-title__title .char7, .loaded .homepage .small-title__title .char7 {
  -webkit-animation-delay: 240ms;
          animation-delay: 240ms;
}
.small-title__title.is-view .char8, .is-view .small-title__title .char8, .loaded .homepage .small-title__title .char8 {
  -webkit-animation-delay: 280ms;
          animation-delay: 280ms;
}
.small-title__title.is-view .char9, .is-view .small-title__title .char9, .loaded .homepage .small-title__title .char9 {
  -webkit-animation-delay: 320ms;
          animation-delay: 320ms;
}
.small-title__title.is-view .char10, .is-view .small-title__title .char10, .loaded .homepage .small-title__title .char10 {
  -webkit-animation-delay: 360ms;
          animation-delay: 360ms;
}
.small-title__title.is-view .char11, .is-view .small-title__title .char11, .loaded .homepage .small-title__title .char11 {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
.small-title__title.is-view .char12, .is-view .small-title__title .char12, .loaded .homepage .small-title__title .char12 {
  -webkit-animation-delay: 440ms;
          animation-delay: 440ms;
}
.small-title__title.is-view .char13, .is-view .small-title__title .char13, .loaded .homepage .small-title__title .char13 {
  -webkit-animation-delay: 480ms;
          animation-delay: 480ms;
}
.small-title__title.is-view .char14, .is-view .small-title__title .char14, .loaded .homepage .small-title__title .char14 {
  -webkit-animation-delay: 520ms;
          animation-delay: 520ms;
}
.small-title__title.is-view .char15, .is-view .small-title__title .char15, .loaded .homepage .small-title__title .char15 {
  -webkit-animation-delay: 560ms;
          animation-delay: 560ms;
}
.small-title__title.is-view .char16, .is-view .small-title__title .char16, .loaded .homepage .small-title__title .char16 {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
.small-title__title.is-view .char17, .is-view .small-title__title .char17, .loaded .homepage .small-title__title .char17 {
  -webkit-animation-delay: 640ms;
          animation-delay: 640ms;
}
.small-title__title.is-view .char18, .is-view .small-title__title .char18, .loaded .homepage .small-title__title .char18 {
  -webkit-animation-delay: 680ms;
          animation-delay: 680ms;
}
.small-title__title.is-view .char19, .is-view .small-title__title .char19, .loaded .homepage .small-title__title .char19 {
  -webkit-animation-delay: 720ms;
          animation-delay: 720ms;
}
.small-title__title.is-view .char20, .is-view .small-title__title .char20, .loaded .homepage .small-title__title .char20 {
  -webkit-animation-delay: 760ms;
          animation-delay: 760ms;
}

.large-text {
  max-width: 95rem;
  margin: 0 auto;
}
.large-text--career-about {
  max-width: 70rem;
  margin: 0;
}
@media only screen and (max-width: 1441px) {
  .large-text--career-about {
    max-width: 60rem;
  }
}
@media only screen and (max-width: 770px) {
  .large-text--career-about {
    max-width: 80rem;
    margin: 0 auto;
  }
}
.large-text__violet {
  color: #8658d2;
}
.large-text__green {
  color: #1edd8e;
}
.large-text p {
  font-family: "GT-Walsheim-Regular", sans-serif;
  font-size: 5rem;
  margin: 0;
  margin-top: 1rem;
}
@media only screen and (max-width: 1441px) {
  .large-text p {
    font-size: 4.2rem;
  }
}
@media only screen and (max-width: 1025px) {
  .large-text p {
    margin-top: 0;
  }
}
@media only screen and (max-width: 667px) {
  .large-text p {
    font-size: 2.5rem;
  }
}

.large-word {
  text-align: center;
  position: relative;
  z-index: 99;
  height: 22rem;
}
@media only screen and (max-width: 667px) {
  .large-word {
    height: 7rem;
  }
}
.large-word__wrapper {
  overflow: hidden;
  position: relative;
  height: 60%;
}
.large-word__title, .large-word__unit {
  font-size: 24rem;
  font-family: "GT-Walsheim-Bold", sans-serif;
  color: #131329;
  line-height: 0.8;
  display: inline-block;
}
@media only screen and (max-width: 667px) {
  .large-word__title, .large-word__unit {
    font-size: 9rem;
  }
}

.loading {
  height: 100vh;
  width: 100%;
  background-color: #212136;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease-in-out;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 0;
  z-index: 999;
}
.loading__close {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 50px;
  width: 50px;
}
.loading__wrapper {
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
  vertical-align: middle;
}
.loading__content {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.loading__form {
  max-width: 90rem;
  margin: 0 auto;
  width: 100%;
}
.loading.is-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}
.loading .large-word__wrapper {
  height: 0%;
}
.loading .small-title {
  position: absolute;
  top: calc(50% - 8px);
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 150px;
}
.loading .loading-bar {
  position: absolute;
  top: calc(50% + 50px);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 16rem;
}

.loading.animation-enter .large-word__wrapper {
  -webkit-animation: loadingTitleEnter 1s cubic-bezier(0.16, 0.47, 0.52, 1);
          animation: loadingTitleEnter 1s cubic-bezier(0.16, 0.47, 0.52, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes loadingTitleEnter {
  from {
    -webkit-transform: translateY(150%);
            transform: translateY(150%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes loadingTitleEnter {
  from {
    -webkit-transform: translateY(150%);
            transform: translateY(150%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.loading-bar {
  text-align: center;
  width: 10rem;
}
.loading-bar__square {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: white;
}
.loading-bar__square:nth-child(1) {
  opacity: 0;
  -webkit-animation: loadingBarSqure1 1.5s linear infinite;
          animation: loadingBarSqure1 1.5s linear infinite;
}
.loading-bar__square:nth-child(2) {
  opacity: 0;
  -webkit-animation: loadingBarSqure2 1.5s linear infinite;
          animation: loadingBarSqure2 1.5s linear infinite;
}
.loading-bar__square:nth-child(3) {
  opacity: 0;
  -webkit-animation: loadingBarSqure3 1.5s linear infinite;
          animation: loadingBarSqure3 1.5s linear infinite;
}
.loading-bar__square:nth-child(4) {
  opacity: 0;
  -webkit-animation: loadingBarSqure4 1.5s linear infinite;
          animation: loadingBarSqure4 1.5s linear infinite;
}
.loading-bar__square:nth-child(5) {
  opacity: 0;
  -webkit-animation: loadingBarSqure5 1.5s linear infinite;
          animation: loadingBarSqure5 1.5s linear infinite;
}
.loading-bar__square:nth-child(6) {
  opacity: 0;
  -webkit-animation: loadingBarSqure6 1.5s linear infinite;
          animation: loadingBarSqure6 1.5s linear infinite;
}
.loading-bar__square:nth-child(7) {
  opacity: 0;
  -webkit-animation: loadingBarSqure7 1.5s linear infinite;
          animation: loadingBarSqure7 1.5s linear infinite;
}
.loading-bar__square:nth-child(8) {
  opacity: 0;
  -webkit-animation: loadingBarSqure8 1.5s linear infinite;
          animation: loadingBarSqure8 1.5s linear infinite;
}
.loading-bar__square:nth-child(9) {
  opacity: 0;
  -webkit-animation: loadingBarSqure9 1.5s linear infinite;
          animation: loadingBarSqure9 1.5s linear infinite;
}

@-webkit-keyframes loadingBarSqure1 {
  10% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
}

@keyframes loadingBarSqure1 {
  10% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
}
@-webkit-keyframes loadingBarSqure2 {
  20% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes loadingBarSqure2 {
  20% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes loadingBarSqure3 {
  30% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
}
@keyframes loadingBarSqure3 {
  30% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
}
@-webkit-keyframes loadingBarSqure4 {
  40% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
}
@keyframes loadingBarSqure4 {
  40% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
}
@-webkit-keyframes loadingBarSqure5 {
  50% {
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
}
@keyframes loadingBarSqure5 {
  50% {
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
}
@-webkit-keyframes loadingBarSqure6 {
  60% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@keyframes loadingBarSqure6 {
  60% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@-webkit-keyframes loadingBarSqure7 {
  70% {
    opacity: 0;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loadingBarSqure7 {
  70% {
    opacity: 0;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loadingBarSqure8 {
  80% {
    opacity: 0;
  }
  95% {
    opacity: 1;
  }
  110% {
    opacity: 0;
  }
}
@keyframes loadingBarSqure8 {
  80% {
    opacity: 0;
  }
  95% {
    opacity: 1;
  }
  110% {
    opacity: 0;
  }
}
@-webkit-keyframes loadingBarSqure9 {
  90% {
    opacity: 0;
  }
  105% {
    opacity: 1;
  }
  120% {
    opacity: 0;
  }
}
@keyframes loadingBarSqure9 {
  90% {
    opacity: 0;
  }
  105% {
    opacity: 1;
  }
  120% {
    opacity: 0;
  }
}
.main-title {
  text-align: center;
  max-width: 920px;
  margin: 3rem auto;
  position: relative;
  height: 50rem;
}
@media only screen and (max-width: 1441px) {
  .main-title {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 667px) {
  .main-title {
    font-size: 5.9rem;
    text-align: center;
    margin-top: 0px;
  }
}
.main-title__wrapper {
  padding-top: 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 50%;
  transition: all 0.3s cubic-bezier(0.16, 0.47, 0.52, 1);
}
@media only screen and (max-width: 1441px) {
  .main-title__wrapper {
    height: 51%;
  }
}
.main-title__title {
  font-size: 14.6rem;
  line-height: 0.8;
  font-family: "GT-Walsheim-Bold", sans-serif;
  color: white;
  transition: color 0.3s ease-in-out;
  cursor: default;
}
.main-title__title--green {
  color: #1edd8e;
}
.main-title__title span {
  display: inline;
}
@media only screen and (max-width: 1441px) {
  .main-title__title {
    font-size: 14rem;
  }
}
@media only screen and (max-width: 667px) {
  .main-title__title {
    font-size: 5.4rem;
  }
}
.main-title__item {
  height: 15rem;
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  /* &:nth-child(1) {
     transform: translateY(0%);
   }
   &:nth-child(2) {
       transform: translateY(100%);
   }
   &:nth-child(3) {
       transform: translateY(200%);
   }*/
    /*&.is-active {
      height: 100%;
      width: 100%;
      z-index: 99;
      transform: translateY(0%);

      .main-title__title {
        color: $green;
        width: 100%;
      }

      .main-titletle__wrapper {
        height: 100%;
        transition: height 1.2s $default-easing;
      }
    }*/
}
.main-title__item:hover {
  z-index: 999;
}
.main-title__item:hover .main-title__wrapper {
  height: 17rem;
}
.main-title__item:hover .main-title__title {
  color: #1edd8e;
}
.main-title__item.is-hidden {
  visibility: hidden;
}
@media only screen and (max-width: 1441px) {
  .main-title__item {
    margin-bottom: 0rem;
    height: 14.6rem;
  }
}
@media only screen and (max-width: 667px) {
  .main-title__item {
    height: 5.8rem;
  }
}

.offices {
  margin-bottom: 7rem;
  margin-top: -1rem;
}
.offices__list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  max-width: 137rem;
  margin-right: auto;
  margin-left: auto;
}
.offices__list::before, .offices__list::after {
  display: table;
  content: ' ';
}
.offices__list::after {
  clear: both;
}
@media only screen and (max-width: 667px) {
  .offices__list {
    text-align: center;
  }
}
.offices__item {
  box-sizing: border-box;
  width: 20%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
  text-align: center;
}
@media print, screen and (min-width: 41.6875em) {
  .offices__item {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.offices__item:last-child:not(:first-child) {
  float: right;
}
.offices__item__city {
  font-family: "GT-Walsheim-Bold", sans-serif;
  color: white;
  font-size: 2.1rem;
}
@media only screen and (max-width: 667px) {
  .offices__item__city {
    font-size: 1.5rem;
  }
}
.offices__item__address {
  font-family: "GT-Walsheim-Medium", sans-serif;
  color: #706f79;
  font-size: 2.1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 667px) {
  .offices__item__address {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 667px) {
  .offices__item {
    width: 50%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 667px) and (min-width: 41.6875em) {
  .offices__item {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 667px) {
  .offices__item:last-child:not(:first-child) {
    float: right;
  }
  .offices__item:nth-child(odd):last-child {
    margin: auto;
    float: none;
    clear: both;
  }
}

.our-awards:after {
  clear: both;
  display: table;
  content: "";
}
.our-awards__left {
  width: 62%;
  float: left;
  box-sizing: border-box;
}
@media only screen and (max-width: 1025px) {
  .our-awards__left {
    width: 100%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 41.6875em) {
  .our-awards__left {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 1025px) {
  .our-awards__left:last-child:not(:first-child) {
    float: right;
  }
}
.our-awards__right {
  position: relative;
  width: 38%;
  float: right;
  box-sizing: border-box;
}
@media only screen and (max-width: 1441px) {
  .our-awards__right img {
    width: 140%;
  }
}
@media only screen and (max-width: 1441px) {
  .our-awards__right img {
    width: 140%;
  }
}
@media only screen and (max-width: 1025px) {
  .our-awards__right {
    width: 100%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 41.6875em) {
  .our-awards__right {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 1025px) {
  .our-awards__right:last-child:not(:first-child) {
    float: right;
  }
  .our-awards__right img {
    display: none;
  }
}
.our-awards__book {
  width: 100%;
  position: relative;
}
.our-awards__book img {
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
}

.our-work:after {
  clear: both;
  display: table;
  content: "";
}
.our-work__left {
  width: 25%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
  box-sizing: border-box;
}
@media print, screen and (min-width: 41.6875em) {
  .our-work__left {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.our-work__left:last-child:not(:first-child) {
  float: right;
}
@media only screen and (max-width: 667px) {
  .our-work__left {
    width: 100%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 667px) and (min-width: 41.6875em) {
  .our-work__left {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 667px) {
  .our-work__left:last-child:not(:first-child) {
    float: right;
  }
}
.our-work__right {
  box-sizing: border-box;
  width: 58.33333%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-left: 8.33333%;
}
@media print, screen and (min-width: 41.6875em) {
  .our-work__right {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.our-work__right:last-child:not(:first-child) {
  float: right;
}
@media only screen and (max-width: 667px) {
  .our-work__right {
    width: 100%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
    margin-left: 0%;
    padding: 0;
  }
}
@media only screen and (max-width: 667px) and (min-width: 41.6875em) {
  .our-work__right {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 667px) {
  .our-work__right:last-child:not(:first-child) {
    float: right;
  }
}
.our-work .works {
  margin-top: 2rem;
}

.say-hello {
  position: relative;
}
.say-hello:after {
  clear: both;
  display: table;
  content: "";
}
.say-hello__background {
  right: 0;
  z-index: 0;
  position: relative;
}
.say-hello__left {
  width: 25%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  position: absolute;
  top: 15rem;
  left: 0;
}
@media print, screen and (min-width: 41.6875em) {
  .say-hello__left {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.say-hello__left:last-child:not(:first-child) {
  float: right;
}
.say-hello__left::before, .say-hello__left::after {
  display: table;
  content: ' ';
}
.say-hello__left::after {
  clear: both;
}
@media only screen and (max-width: 667px) {
  .say-hello__left {
    width: 100%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
    text-align: center;
    top: 15rem;
    position: relative;
    top: 0;
  }
}
@media only screen and (max-width: 667px) and (min-width: 41.6875em) {
  .say-hello__left {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 667px) {
  .say-hello__left:last-child:not(:first-child) {
    float: right;
  }
}
.say-hello__right {
  box-sizing: border-box;
  width: 75%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 41.6875em) {
  .say-hello__right {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.say-hello__right:last-child:not(:first-child) {
  float: right;
}
@media only screen and (max-width: 667px) {
  .say-hello__right {
    width: 100%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 667px) and (min-width: 41.6875em) {
  .say-hello__right {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 667px) {
  .say-hello__right:last-child:not(:first-child) {
    float: right;
  }
}
.say-hello__bottom {
  width: 100%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 5.0rem;
  box-sizing: border-box;
}
@media print, screen and (min-width: 41.6875em) {
  .say-hello__bottom {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.say-hello__bottom:last-child:not(:first-child) {
  float: right;
}
.say-hello .row {
  text-align: left;
  width: auto;
  max-width: 50%;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.say-hello .button {
  margin-top: 50px;
}
@media only screen and (max-width: 1441px) {
  .say-hello .row {
    max-width: 60%;
  }
}
@media only screen and (max-width: 1025px) {
  .say-hello .row {
    max-width: 100%;
    text-align: center;
  }
}

.small-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 667px) {
  .small-title {
    text-align: center;
    display: block;
  }
}
.small-title__line {
  width: 6.4rem;
  height: 1px;
  background-color: white;
  display: inline-block;
  position: absolute;
  top: 0.8rem;
  left: -7.5rem;
}
@media only screen and (max-width: 667px) {
  .small-title__line {
    display: none;
  }
}
.small-title__title {
  font-size: 1.3rem;
  display: inline-block;
  text-transform: uppercase;
  font-family: "GT-Walsheim-Bold", sans-serif;
  letter-spacing: 0.4rem;
}
@media only screen and (max-width: 667px) {
  .small-title__title {
    font-size: 1.1rem;
  }
}
.small-title--sized {
  max-width: 250px;
  width: 100%;
  text-align: right;
  box-sizing: border-box;
  padding-right: 90px;
}
@media only screen and (max-width: 1441px) {
  .small-title--sized {
    max-width: 200px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 1025px) {
  .small-title--sized {
    max-width: 180px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 667px) {
  .small-title--sized {
    text-align: center;
    margin: 0 auto;
    padding-right: 0;
  }
}

@media only screen and (max-width: 667px) {
  .section-title {
    text-align: center;
  }
}
.section-title__wrapper {
  position: relative;
  margin-top: -25px;
}
.section-title__wrapper:first-child {
  margin-top: -20px;
}
.section-title__wrapper:nth-child(2) .section-title__title span {
  transition-delay: 0.52s;
}
@media only screen and (max-width: 667px) {
  .section-title__wrapper {
    margin-top: -15px;
  }
  .section-title__wrapper:first-child {
    margin-top: -15px;
  }
}
.section-title__title {
  font-size: 11.4rem;
  font-family: "GT-Walsheim-Medium", sans-serif;
  margin: 0;
  line-height: 1.3;
  color: white;
  letter-spacing: -0.025rem;
  overflow: hidden;
  display: inline-block;
}
.section-title__title span {
  display: inline-block;
  position: relative;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition: -webkit-transform 0.6s 0.4s cubic-bezier(0.16, 0.47, 0.52, 1);
  transition: transform 0.6s 0.4s cubic-bezier(0.16, 0.47, 0.52, 1);
}
@media only screen and (max-width: 1441px) {
  .section-title__title {
    font-size: 10rem;
  }
}
@media only screen and (max-width: 667px) {
  .section-title__title {
    font-size: 5.0rem;
  }
}
.section-title__title--green {
  color: #1edd8e;
}
.section-title__title--green span:before {
  background: #1edd8e;
}
.section-title__title--violet {
  color: #8658d2;
}
.section-title__title--violet span:before {
  background: #8658d2;
}

.social-icons {
  text-align: right;
}
.social-icons__icon {
  display: inline-block;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
}
.social-icons__icon:hover:before {
  color: #1edd8e;
}
@media only screen and (max-width: 667px) {
  .social-icons__icon {
    font-size: 2rem;
  }
}

.tag {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #1edd8e;
  border-radius: 1.3rem;
  height: 2.6rem;
  box-sizing: border-box;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.175rem;
  font-family: "GT-Walsheim-Regular", sans-serif;
  font-size: 1.1rem;
}
.tag--green {
  background-color: #1edd8e;
}
.tag--violet {
  background-color: #8658d2;
}
.tag--white {
  background-color: white;
}
.tag--blue {
  background-color: #42bfda;
}
@media only screen and (max-width: 667px) {
  .tag {
    height: 2.6rem;
  }
}

.topbar {
  position: relative;
  width: 100%;
  z-index: 899;
  height: 7rem;
  padding: 3rem 7rem;
  box-sizing: border-box;
  transition: background 0.3s cubic-bezier(0.16, 0.47, 0.52, 1), opacity 0.9s 0.4s ease-in-out;
}
.topbar--scroll {
  background: linear-gradient(rgba(33, 33, 54, 0.97) 20%, rgba(33, 33, 54, 0.75) 60%, rgba(41, 42, 46, 0));
}
.topbar__logo {
  float: left;
  display: inline-block;
}
.topbar__logo img {
  vertical-align: middle;
  display: inline-block;
}
.topbar__brandmaster {
  -webkit-transform: translateY(-59%);
          transform: translateY(-59%);
  transition: -webkit-transform 0.5s cubic-bezier(0.16, 0.47, 0.52, 1);
  transition: transform 0.5s cubic-bezier(0.16, 0.47, 0.52, 1);
}
.topbar__brandmaster img {
  margin-bottom: 10px;
}
@media only screen and (max-width: 667px) {
  .topbar__brandmaster {
    -webkit-transform: translateY(12%);
            transform: translateY(12%);
  }
  .topbar__brandmaster img {
    display: none;
  }
}
.topbar__logotext {
  display: inline-block;
  vertical-align: middle;
  padding-left: 13px;
  margin-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
  height: 32px;
  overflow: hidden;
}
@media only screen and (max-width: 667px) {
  .topbar__logotext {
    font-size: 1rem;
    display: none;
  }
}
.topbar__logotext span {
  transition: -webkit-transform 0.9s 0.5s cubic-bezier(0.16, 0.47, 0.52, 1);
  transition: transform 0.9s 0.5s cubic-bezier(0.16, 0.47, 0.52, 1);
  display: block;
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
  color: rgba(255, 255, 255, 0.5);
}
.topbar__logotext span:last-child {
  transition-delay: 0.6s;
}
.topbar__logotext:hover .topbar__brandmaster {
  -webkit-transform: translateY(-2%);
          transform: translateY(-2%);
}
@media only screen and (max-width: 667px) {
  .topbar__logotext:hover .topbar__brandmaster {
    -webkit-transform: translateY(12%);
            transform: translateY(12%);
  }
}
.topbar__social-icons {
  float: right;
  text-align: right;
  display: inline-block;
}
.topbar__social-icons a {
  display: inline-block;
  padding: 5px;
}
.topbar__nav {
  float: right;
  position: relative;
  top: 1rem;
}
.topbar__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.topbar__nav li {
  margin-right: 2.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  letter-spacing: 0.4rem;
  font-family: "GT-Walsheim-Bold", sans-serif;
  display: inline-block;
}
.topbar__nav a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}
.topbar__nav a:hover {
  opacity: 0.6;
}
.topbar__language {
  position: relative;
}
.topbar__language.active .topbar__lang-active {
  opacity: 0.6;
}
.topbar__language.active .topbar__lang-active:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.topbar__lang-active:after {
  content: '';
  display: inline-block;
  background-image: url("../img/arrow-nav.svg");
  width: 8px;
  height: 5px;
  margin-left: 3px;
}
.topbar__lang-list {
  display: none;
  position: absolute;
  bottom: -18px;
  left: 0;
}
.topbar:after {
  clear: both;
  display: table;
  content: "";
}
@media only screen and (max-width: 667px) {
  .topbar {
    padding: 2rem 1.4rem;
  }
}

.works {
  text-align: center;
}
.works--narrow {
  max-width: 690px;
  margin: auto;
  padding: 0 20px;
}
.works--career {
  margin-top: 5rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 1025px) {
  .works--career {
    max-width: inherit;
    padding: 0;
  }
  .works--career .works__item {
    padding: 0;
  }
}
@media only screen and (max-width: 667px) {
  .works--career {
    margin-bottom: 2rem;
  }
}
.works--career .works__item-number {
  margin-right: 3.6rem;
  font-size: 4.4rem;
  font-family: "GT-Walsheim-Medium", sans-serif;
  color: white;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 667px) {
  .works--career .works__item-number {
    margin-right: 2rem;
    font-size: 3rem;
  }
}
.works--career .works__item__title {
  text-transform: none;
  font-family: "GT-Walsheim-Medium", sans-serif;
  display: inline-block;
  vertical-align: middle;
}
.works--career .works__item__arrow {
  position: absolute;
  top: 40%;
}
.works__list {
  list-style-type: none;
  text-align: left;
  padding: 0;
  padding-bottom: 40px;
}
.works__item {
  box-sizing: border-box;
  position: relative;
  z-index: 9;
  padding: 0rem 3.5rem;
  margin-top: -1px;
  box-shadow: 0px 18px 40px 0px transparent;
  transition: box-shadow 0.4s 0s ease-in-out, border-top 0.4s ease-in-out, background 0.4s 0s ease-in-out;
  border-top: 1px solid rgba(255, 255, 255, 0);
}
.works__item:hover {
  padding: 0rem 3.5rem;
  box-shadow: 0px 18px 40px 13px rgba(0, 0, 0, 0.28);
  z-index: 99;
  background-color: #212136;
  border-top: 1px solid #212136;
  transition: box-shadow 0.4s 0.1s ease-in-out, border-top 0.4s ease-in-out, background 0.4s 0.1s ease-in-out !important;
}
.works__item:hover .works__item__arrow {
  opacity: 1;
  -webkit-animation: arrowMoving 0.6s ease-in-out infinite;
          animation: arrowMoving 0.6s ease-in-out infinite;
}
.works__item:hover .works__item__description {
  opacity: 1;
}
@media only screen and (max-width: 667px) {
  .works__item:hover .works__item__description {
    margin-right: 0;
  }
}
.works__item:hover .works__item__title {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.works__item:hover .works__item__container {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: border-bottom 0.3s 0s ease-in-out;
}
.works__item:hover .tag {
  opacity: 1;
}
.works__item__container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-bottom 0.3s 0.4s ease-in-out;
}
.works__item__link {
  text-decoration: none;
  display: block;
  padding: 3.5rem 0rem;
}
@media only screen and (max-width: 667px) {
  .works__item__link {
    padding: 2.0rem 0rem;
  }
}
.works__item__description {
  overflow: hidden;
  display: none;
}
.works__item__description p {
  margin-top: 2rem;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 2.1rem;
  font-family: "GT-Walsheim-Medium", sans-serif;
  color: #706f79;
}
.works__item__title {
  font-size: 2.1rem;
  text-transform: uppercase;
  font-family: "GT-Walsheim-Bold", sans-serif;
  display: inline-block;
  margin: 0;
  color: #ffffff;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
}
@media only screen and (max-width: 667px) {
  .works__item__title {
    font-size: 1.5rem;
  }
}
.works__item .tag {
  vertical-align: top;
  margin-left: 2.0rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.works__item .tag:first-of-type {
  margin-left: 3.0rem;
}
.works__item__arrow {
  position: absolute;
  right: 2.5rem;
  top: 3.3rem;
  background-color: transparent;
  border: 0;
  outline: 0;
  box-shadow: 0;
  color: white;
  font-size: 2.0rem;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (max-width: 667px) {
  .works__item__arrow {
    top: 2.2rem;
  }
}
.works__more {
  background-color: transparent;
  font-family: "GT-Walsheim-Bold", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  display: inline-block;
  padding: 15px;
  color: white;
  border: 0;
  letter-spacing: 0.4rem;
  cursor: pointer;
  display: none;
}

@-webkit-keyframes arrowMoving {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}

@keyframes arrowMoving {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
.world-map {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
}
.world-map__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.world-map__wrapper img {
  width: 100%;
}
.world-map__point {
  position: absolute;
  z-index: 9;
  width: 15px;
  height: 15px;
  background-color: #1edd8e;
  border-radius: 8px;
}
.world-map__point:after {
  width: 15px;
  height: 15px;
  border-radius: 32px;
  content: "";
  background-color: #1edd8e;
  opacity: 0.5;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: fadedRing 2.6s ease-in-out infinite;
          animation: fadedRing 2.6s ease-in-out infinite;
}
.world-map__point--brno {
  top: 48.2%;
  left: 50.7%;
}
.world-map__point--brno:after {
  -webkit-animation-delay: 1.0s;
          animation-delay: 1.0s;
}
.world-map__point--kristiansand {
  top: 42.5%;
  left: 49.8%;
}
.world-map__point--kristiansand:after {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.world-map__point--zlin {
  top: 47.8%;
  left: 51.05%;
}
.world-map__point--zlin:after {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.world-map__point--stockholm {
  top: 40%;
  left: 52%;
}
.world-map__point--stockholm:after {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.world-map__point--oslo {
  top: 41%;
  left: 50%;
}
.world-map__point--oslo:after {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes fadedRing {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(5);
            transform: scale(5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(5);
            transform: scale(5);
    opacity: 0;
  }
}

@keyframes fadedRing {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(5);
            transform: scale(5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(5);
            transform: scale(5);
    opacity: 0;
  }
}
body.active-resolutionscreen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body.active-resolutionscreen .weird-resolution {
  display: block;
}

.weird-resolution {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #212136;
  z-index: 10000;
}
.weird-resolution__wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
}
.weird-resolution p {
  margin: 0;
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
  padding: 1.2rem;
}
.weird-resolution p span {
  display: block;
  margin-bottom: 15px;
}

.career-page {
  position: relative;
  height: 100vh;
  opacity: 0;
  -webkit-animation: fadeInCareerImg 1.1s 0.5s forwards;
          animation: fadeInCareerImg 1.1s 0.5s forwards;
}
@media only screen and (max-width: 770px) {
  .career-page {
    height: 90vh;
  }
}
@media only screen and (max-width: 667px) {
  .career-page {
    height: 90vh;
  }
  .career-page:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28vh;
    z-index: 10;
    background: linear-gradient(rgba(33, 33, 54, 0.97) 30%, rgba(33, 33, 54, 0.75) 70%, rgba(41, 42, 46, 0));
  }
}
.career-page__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: auto 100%;
  background-position: center top;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 770px) {
  .career-page__img {
    background-size: auto 90%;
  }
}
@media only screen and (max-width: 667px) {
  .career-page__img {
    background-size: 170%;
    background-position: center;
  }
}
.career-page__text {
  position: relative;
  top: 50%;
  display: inline-block;
  margin: auto;
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
  text-align: left;
}
@media only screen and (max-width: 770px) {
  .career-page__text {
    top: 43%;
  }
}
@media only screen and (max-width: 667px) {
  .career-page__text {
    top: 42%;
  }
}
.career-page__title {
  font-size: 30rem;
  line-height: 1;
  font-family: 'GT-Walsheim-Bold';
}
@media only screen and (max-width: 1441px) {
  .career-page__title {
    font-size: 26rem;
  }
}
@media only screen and (max-width: 770px) {
  .career-page__title {
    font-size: 19rem;
  }
}
@media only screen and (max-width: 667px) {
  .career-page__title {
    font-size: 7rem;
  }
}
.career-page__subtitle {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 3px;
  position: absolute;
  top: 2rem;
  left: 2rem;
}
@media only screen and (max-width: 770px) {
  .career-page__subtitle {
    top: 0;
    left: 1rem;
  }
}
@media only screen and (max-width: 667px) {
  .career-page__subtitle {
    top: -1rem;
    left: 0.5rem;
  }
}

@-webkit-keyframes fadeInCareerImg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInCareerImg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main-section-title {
  position: relative;
  margin: 0 -5rem;
}
.main-section-title--career-about {
  display: inline-block;
}
.main-section-title--career-about .main-section-title__image {
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
  left: inherit;
  right: -10rem;
}
@media only screen and (max-width: 1025px) {
  .main-section-title--career-about .main-section-title__image {
    right: 0;
  }
}
.main-section-title--career-benefits .main-section-title__big {
  font-size: 28rem;
}
@media only screen and (max-width: 1320px) {
  .main-section-title--career-benefits .main-section-title__big {
    font-size: 26rem;
  }
}
@media only screen and (max-width: 1025px) {
  .main-section-title--career-benefits .main-section-title__big {
    font-size: 22rem;
  }
}
@media only screen and (max-width: 770px) {
  .main-section-title--career-benefits .main-section-title__big {
    font-size: 14rem;
  }
}
@media only screen and (max-width: 667px) {
  .main-section-title--career-benefits .main-section-title__big {
    font-size: 7rem;
  }
}
.main-section-title--career-benefits .main-section-title__image {
  top: inherit;
  bottom: -16rem;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (max-width: 1025px) {
  .main-section-title--career-benefits .main-section-title__image {
    bottom: -14rem;
  }
}
.main-section-title__square {
  display: inline-block;
  margin: 7rem 5rem;
  width: 66rem;
  height: 66rem;
  position: relative;
  background: #362d59;
}
@media only screen and (max-width: 1441px) {
  .main-section-title__square {
    width: 60rem;
    height: 60rem;
  }
}
@media only screen and (max-width: 770px) {
  .main-section-title__square {
    display: none;
  }
}
.main-section-title__small {
  position: absolute;
  top: 0;
  left: -2rem;
  font-size: 17rem;
  font-family: 'GT-Walsheim-Medium';
}
.main-section-title__small--right {
  top: -2rem;
  left: 62rem;
}
@media only screen and (max-width: 1320px) {
  .main-section-title__small--right {
    left: 56rem;
  }
}
@media only screen and (max-width: 1025px) {
  .main-section-title__small--right {
    left: inherit;
    right: 0;
  }
}
@media only screen and (max-width: 770px) {
  .main-section-title__small {
    display: none;
  }
}
.main-section-title__big {
  font-size: 40rem;
  font-family: 'GT-Walsheim-Bold';
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  left: 0;
  right: 0;
  color: #131329;
  opacity: 0.55;
  line-height: 1;
}
@media only screen and (max-width: 1441px) {
  .main-section-title__big {
    font-size: 36rem;
  }
}
@media only screen and (max-width: 1025px) {
  .main-section-title__big {
    font-size: 32rem;
  }
}
@media only screen and (max-width: 770px) {
  .main-section-title__big {
    position: static;
    font-size: 18rem;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
    color: white;
    font-family: 'GT-Walsheim-Medium';
  }
}
@media only screen and (max-width: 667px) {
  .main-section-title__big {
    font-size: 6rem;
  }
}
.main-section-title__image {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 770px) {
  .main-section-title__image {
    display: none;
  }
}
.main-section-title__img {
  display: block;
  margin: auto;
  max-width: 100%;
}
@media only screen and (max-width: 1441px) {
  .main-section-title__img--trumpet {
    height: 440px;
  }
  .main-section-title__img--repository {
    height: 440px;
  }
  .main-section-title__img--viking {
    height: 540px;
  }
}
@media only screen and (max-width: 1025px) {
  .main-section-title__img--trumpet {
    height: 410px;
  }
  .main-section-title__img--repository {
    height: 430px;
  }
  .main-section-title__img--viking {
    height: 500px;
  }
}

.career-aboutus {
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 1025px) {
  .career-aboutus {
    text-align: right;
  }
}
.career-aboutus__left {
  position: absolute;
  z-index: 10;
  top: 30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: left;
}
@media only screen and (max-width: 770px) {
  .career-aboutus__left {
    position: static;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    text-align: center;
  }
  .career-aboutus__left .inview-smalltitle .small-title__line {
    display: none;
  }
}

.block-text {
  margin-top: 10rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 770px) {
  .block-text {
    margin-top: 5rem;
  }
}
.block-text__number {
  display: block;
  font-size: 4.4rem;
  font-family: "GT-Walsheim-Medium", sans-serif;
  line-height: 1.6;
}
@media only screen and (max-width: 667px) {
  .block-text__number {
    font-size: 2.9rem;
  }
}
.block-text__headline {
  font-size: 2.1rem;
  font-family: "GT-Walsheim-Medium", sans-serif;
}
.block-text__text {
  font-size: 1.8rem;
  font-family: "GT-Walsheim-Regular", sans-serif;
  color: #797880;
  line-height: 1.8;
}
.block-text__row {
  margin-bottom: 4rem;
}
.block-text--benefits {
  margin-top: 9rem;
}

.career-footer {
  margin: 18rem 0 6rem;
}
@media only screen and (max-width: 1025px) {
  .career-footer {
    margin: 12rem 0 6rem;
  }
}
.career-footer__mails {
  text-align: center;
}
.career-footer__mail {
  display: inline-block;
  vertical-align: middle;
  margin: 0 6rem;
}
@media only screen and (max-width: 1025px) {
  .career-footer__mail:first-child {
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 667px) {
  .career-footer__mail {
    margin: 0;
  }
}
.career-footer__mail-separator {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.career-footer__mail-separator:before, .career-footer__mail-separator:after {
  content: '';
  width: 0.1rem;
  height: 2.5rem;
  background: white;
  display: inline-block;
}
.career-footer__mail-separator:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.career-footer__mail-separator:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media only screen and (max-width: 1025px) {
  .career-footer__mail-separator {
    display: none;
  }
}
.career-footer__small {
  font-family: "GT-Walsheim-Bold", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 5px;
}
@media only screen and (max-width: 667px) {
  .career-footer__small {
    font-size: 1rem;
    letter-spacing: 3px;
  }
}
.career-footer__big {
  font-family: "GT-Walsheim-Regular", sans-serif;
  font-size: 5rem;
  margin: 1rem 0;
}
@media only screen and (max-width: 667px) {
  .career-footer__big {
    font-size: 3rem;
  }
}
.career-footer__big a {
  color: white;
  text-decoration: none;
}

.social-feed {
  padding: 10rem 0 0;
}
.social-feed__headline {
  text-align: center;
  position: relative;
}
.social-feed__title {
  font-family: "GT-Walsheim-Bold", sans-serif;
  font-size: 24rem;
  color: #131329;
  line-height: 1;
}
@media only screen and (max-width: 770px) {
  .social-feed__title {
    font-size: 18rem;
  }
}
@media only screen and (max-width: 667px) {
  .social-feed__title {
    font-size: 8rem;
    margin-top: 2rem;
  }
}
.social-feed__subtitle {
  text-decoration: none;
  color: white;
  display: block;
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  margin: auto;
}
.social-feed__subtitle span[class*="icon"] {
  font-size: 2rem;
  line-height: 2;
}
.social-feed__subtitle p {
  font-family: "GT-Walsheim-Bold", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 5px;
}
@media only screen and (max-width: 667px) {
  .social-feed__subtitle {
    top: -11rem;
  }
}
.social-feed__feed {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin-top: -8.5rem;
}
@media only screen and (max-width: 770px) {
  .social-feed__feed {
    margin-top: -5.5rem;
  }
}
@media only screen and (max-width: 667px) {
  .social-feed__feed {
    margin-top: -1rem;
  }
}

.photos {
  max-width: 100%;
  width: 100%;
}
.photos:after {
  content: '';
  clear: both;
  display: table;
}
@media (max-width: 768px) {
  .photos {
    display: block;
  }
}
.photos__column {
  float: left;
}
.photos__column:after {
  content: '';
  clear: both;
  display: table;
}
.photos__column .js-instagram-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.photos__column--narrow {
  width: 16.66%;
}
@media (max-width: 768px) {
  .photos__column--narrow {
    display: block;
  }
  .photos__column--narrow .photos__column__img {
    width: 100%;
  }
  .photos__column--narrow .photos__column__img:nth-child(2) {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  .photos__column--narrow {
    width: 100%;
  }
}
.photos__column--wide {
  width: 33.33%;
}
@media (max-width: 768px) {
  .photos__column--wide {
    display: block;
  }
}
@media only screen and (max-width: 770px) {
  .photos__column--wide {
    width: 100%;
  }
}
.photos__column__img {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  background-color: #212136;
}
@media (max-width: 768px) {
  .photos__column__img {
    display: inline-block;
    margin-top: -4px;
  }
}
.photos__column__img:hover .photos__column__text {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.photos__column__img:hover .photos__column__background {
  opacity: 0.1;
}
.photos__column__background {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  transition: opacity .3s ease-in-out;
}
.photos__column__text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  color: #fff;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  text-align: center;
}
.photos__column__text-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.photos__column__instagramlink {
  padding-bottom: 1rem;
  color: white;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  text-align: center;
  height: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  text-decoration: none;
  z-index: 9;
  font-family: "GT-Walsheim-Bold", sans-serif;
}
.photos__column__description {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  font-family: "GT-Walsheim-Regular", sans-serif;
  color: #797880;
  line-height: 1.7;
  text-align: center;
  text-transform: none;
  width: 100%;
}
@media only screen and (max-width: 1441px) {
  .photos__column__description {
    font-size: 1.7rem;
  }
}

.section {
  width: 100%;
  overflow: hidden;
}
.section.topbar-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.section.footer-section {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.footer-section {
  height: 100px;
}

.our-work-section {
  padding-top: 12rem;
  overflow: visible;
}
@media only screen and (max-width: 667px) {
  .our-work-section {
    padding-top: 5rem;
  }
}

.brands-section {
  padding-top: 20rem;
}
@media only screen and (max-width: 667px) {
  .brands-section {
    padding-top: 5rem;
  }
}

.our-awards-section {
  padding-top: 25rem;
}
@media only screen and (max-width: 667px) {
  .our-awards-section {
    padding-top: 5rem;
  }
}

.say-hello-section {
  padding-top: 14rem;
  overflow: visible;
}
@media only screen and (max-width: 667px) {
  .say-hello-section {
    padding-top: 5rem;
  }
}

.our-offices {
  padding-top: 20rem;
}
@media only screen and (max-width: 667px) {
  .our-offices {
    padding-top: 5rem;
  }
}

.benefits-section {
  padding-top: 16rem;
}
@media only screen and (max-width: 770px) {
  .benefits-section {
    padding-top: 10rem;
  }
}
@media only screen and (max-width: 667px) {
  .benefits-section {
    padding-top: 4rem;
  }
}

.career-aboutus-section {
  padding-top: 16rem;
}
@media only screen and (max-width: 770px) {
  .career-aboutus-section {
    padding-top: 10rem;
  }
}
@media only screen and (max-width: 667px) {
  .career-aboutus-section {
    padding-top: 5rem;
  }
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}
@media only screen and (max-width: 1441px) {
  html {
    font-size: 52.5%;
  }
}
@media only screen and (max-width: 667px) {
  html {
    font-size: 62.5%;
  }
}

body {
  background-color: #212136;
  margin: 0;
  color: white;
  font-family: 'Circular-Book', sans-serif;
}

h1 {
  font-weight: normal;
  font-style: normal;
  margin: 0;
}

h2 {
  font-weight: normal;
  font-style: normal;
  margin: 0;
}

h3 {
  font-weight: normal;
  font-style: normal;
  margin: 0;
}

h4 {
  font-weight: normal;
  font-style: normal;
  margin: 0;
}

p {
  font-weight: normal;
  font-style: normal;
}

address {
  font-weight: normal;
  font-style: normal;
  margin: 0;
}

#wrapper {
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 9999999;
}

#container {
  height: auto;
  width: 100%;
  position: absolute;
  z-index: 2;
  padding-bottom: 150px;
}

.container {
  max-width: 137rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 137rem;
}
.container::before, .container::after {
  display: table;
  content: ' ';
}
.container::after {
  clear: both;
}
@media only screen and (max-width: 667px) {
  .container {
    font-size: 2.0rem;
  }
}
@media only screen and (max-width: 1441px) {
  .container {
    padding: 0 7rem;
  }
}
@media only screen and (max-width: 770px) {
  .container {
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 667px) {
  .container {
    padding: 0 3rem;
  }
}

.section {
  width: 100%;
}

.row {
  margin-left: -2rem;
  margin-right: -2rem;
}
.row:after {
  content: '';
  clear: both;
  display: table;
}

.col-l--3 {
  width: 25%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media print, screen and (min-width: 41.6875em) {
  .col-l--3 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.col-l--3:last-child:not(:first-child) {
  float: right;
}
.col-l--4 {
  width: 33.33333%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media print, screen and (min-width: 41.6875em) {
  .col-l--4 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.col-l--4:last-child:not(:first-child) {
  float: right;
}
.col-l--6 {
  width: 50%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media print, screen and (min-width: 41.6875em) {
  .col-l--6 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.col-l--6:last-child:not(:first-child) {
  float: right;
}
.col-l--8 {
  width: 66.66667%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media print, screen and (min-width: 41.6875em) {
  .col-l--8 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.col-l--8:last-child:not(:first-child) {
  float: right;
}
.col-l--10 {
  width: 83.33333%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media print, screen and (min-width: 41.6875em) {
  .col-l--10 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.col-l--10:last-child:not(:first-child) {
  float: right;
}
.col-l--12 {
  width: 100%;
  float: left;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media print, screen and (min-width: 41.6875em) {
  .col-l--12 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.col-l--12:last-child:not(:first-child) {
  float: right;
}

@media only screen and (max-width: 770px) {
  .col-m--3 {
    width: 25%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) and (min-width: 41.6875em) {
  .col-m--3 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) {
  .col-m--3:last-child:not(:first-child) {
    float: right;
  }
  .col-m--4 {
    width: 33.33333%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) and (min-width: 41.6875em) {
  .col-m--4 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) {
  .col-m--4:last-child:not(:first-child) {
    float: right;
  }
  .col-m--6 {
    width: 50%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) and (min-width: 41.6875em) {
  .col-m--6 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) {
  .col-m--6:last-child:not(:first-child) {
    float: right;
  }
  .col-m--8 {
    width: 66.66667%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) and (min-width: 41.6875em) {
  .col-m--8 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) {
  .col-m--8:last-child:not(:first-child) {
    float: right;
  }
  .col-m--10 {
    width: 83.33333%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) and (min-width: 41.6875em) {
  .col-m--10 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) {
  .col-m--10:last-child:not(:first-child) {
    float: right;
  }
  .col-m--12 {
    width: 100%;
    float: left;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) and (min-width: 41.6875em) {
  .col-m--12 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 770px) {
  .col-m--12:last-child:not(:first-child) {
    float: right;
  }
}
