﻿@import 'main.css';
.border-box {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.nofocus:focus {
  outline: none;
}
.noselect {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#stop-page {
  height: 300vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  background-color: #000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=.95)";
  opacity: .95;
}
#stop-page > section {
  width: 840px;
  height: 480px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -240px;
  margin-left: -420px;
  z-index: 1100;
  background-color: #FFF;
}
#stop-page > section .header {
  text-align: center;
  padding: 30px 0;
  width: 100%;
  overflow: visible;
}
#stop-page > section .header figure {
  margin: 0 auto;
}
#stop-page > section .corpo {
  padding: 0 117px;
}
#stop-page > section .corpo p {
  font-size: 29px;
  font-family: Arial;
  color: #000;
  text-align: center;
  line-height: 1.2;
}
#stop-page > section .corpo .browsers {
  margin-left: -18px;
  margin-right: -41px;
  white-space: nowrap;
}
#stop-page > section .corpo .browsers a {
  display: inline-block;
  vertical-align: top;
  margin-right: 54px;
  white-space: nowrap;
}
#stop-page > section .corpo .browsers a:focus {
  outline: none;
}
#stop-page > section .corpo .browsers a:last-child {
  float: right;
  margin-right: 0;
}
.cookies-layer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 60px;
  padding: 17px 10px 0;
  text-align: center;
  background-color: #2d2d2d;
  font-size: 12px;
  font-size: 1.2rem;
  color: #FFF;
  z-index: 100;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 760px) {
  .cookies-layer {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.cookies-layer.active {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.cookies-layer p {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 12px;
  letter-spacing: .5px;
}
.cookies-layer a {
  color: inherit;
  text-decoration: underline;
}
.cookies-layer a:hover {
  opacity: .8;
}
.cookies-layer button {
  width: 124px;
  display: inline-block;
  height: 28px;
  vertical-align: middle;
  font-size: 14px;
  border: 0;
  background-color: #4CB84C;
  color: #FFF;
  padding: 5px 0;
  text-transform: uppercase;
  margin: 0 7px 10px;
  text-decoration: none;
  font-weight: bold;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.cookies-layer button:focus {
  outline: none;
}
.cookies-layer button:hover {
  opacity: .8;
}
/*===================
===================*/
html {
  font-size: 62.5%;
}
body {
  margin: 0;
  font-size: 16px;
  font-family: Lato;
  font-weight: 400;
}
body.error {
  background-color: #000;
}
.js body {
  height: 100vh;
  overflow: hidden;
  background: url(/images/preloader.gif) no-repeat 50% 50%;
}
.js body.loaded {
  overflow: visible;
  height: auto;
  background: none;
}
::-webkit-scrollbar {
  background-color: #FFF;
  width: 4px;
}
::-webkit-scrollbar-thumb {
  background-color: #4CB84C;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
a {
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
figure {
  margin: 0;
}
h1 {
  font-weight: 400;
  margin: 0;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.breadcrumbs h1 {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  font-size: 1.3rem;
  color: #FFF;
  position: relative;
  text-transform: uppercase;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1100px) {
  .breadcrumbs h1 {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.breadcrumbs h1:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -14px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 3px;
  background-color: #4CB84C;
}
@media (min-width: 760px) {
  .heading h1 {
    display: none;
  }
}
body.home .heading h1 {
  display: none;
}
h2,
.big-txt {
  margin: 0;
  font-weight: 700;
  font-size: 25px;
  font-size: 2.5rem;
  color: #333;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  letter-spacing: .03em;
}
@media (min-width: 760px) {
  h2,
  .big-txt {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
@media (min-width: 1000px) {
  h2,
  .big-txt {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  h2,
  .big-txt {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media (min-width: 1500px) {
  h2,
  .big-txt {
    font-size: 45px;
    font-size: 4.5rem;
  }
}
h2:before,
.big-txt:before {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  margin-bottom: 20px;
  background-color: #4CB84C;
}
@media (min-width: 760px) {
  h2:before,
  .big-txt:before {
    margin-bottom: 20px;
  }
}
@media (min-width: 1500px) {
  h2:before,
  .big-txt:before {
    margin-bottom: 33px;
  }
}
.pp-layer h2:before,
.pp-layer .big-txt:before {
  margin-bottom: 10px;
}
.jobs h2:not(.big-txt),
.jobs .big-txt:not(.big-txt) {
  background-color: #F7F7F7;
  padding: 30px 0;
}
@media (min-width: 760px) {
  .jobs h2:not(.big-txt),
  .jobs .big-txt:not(.big-txt) {
    padding: 35px 0;
  }
}
@media (min-width: 1100px) {
  .jobs h2:not(.big-txt),
  .jobs .big-txt:not(.big-txt) {
    padding: 52px 0;
  }
}
.jobs h2:not(.big-txt):before,
.jobs .big-txt:not(.big-txt):before {
  display: none;
}
.dark h2,
.dark .big-txt,
.contact-us h2,
.contact-us .big-txt {
  color: #FFF;
}
.contact-us h2:before,
.contact-us .big-txt:before {
  background-color: #FFF;
}
h2 b,
.big-txt b {
  color: #4CB84C;
}
h3 {
  margin: 0;
  font-size: 19px;
  font-size: 1.9rem;
  color: #333;
  line-height: 1;
  margin-bottom: 15px;
}
@media (min-width: 760px) {
  h3 {
    margin-bottom: 21px;
  }
}
@media (min-width: 1100px) {
  h3 + p {
    -moz-transition-delay: .1s !important;
    -o-transition-delay: .1s !important;
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
  }
}
.grid {
  display: block;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 760px) {
  .grid {
    padding: 0 45px;
  }
}
.type-txt .grid {
  padding: 0;
}
.editoriale .grid {
  padding: 30px 20px;
}
@media (min-width: 760px) {
  .editoriale .grid {
    padding: 60px 45px;
  }
}
.cms-txt {
  margin: 1em 0 0;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #999;
}
@media (min-width: 760px) {
  .cms-txt {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.7;
  }
}
@media (min-width: 1200px) {
  .cms-txt {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media (min-width: 1500px) {
  .cms-txt {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.7;
  }
}
.dark .cms-txt,
.contact-us .cms-txt {
  color: #FFF;
}
.contact-us .cms-txt {
  margin: 0;
}
@media (min-width: 1100px) {
  .contact-us .cms-txt {
    -moz-transition-delay: .2s !important;
    -o-transition-delay: .2s !important;
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important;
  }
}
#ft .cms-txt {
  color: #CCC;
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0;
}
@media (min-width: 1100px) {
  .block .cms-txt {
    -moz-transition-delay: .1s !important;
    -o-transition-delay: .1s !important;
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
  }
}
.editoriale .b16 .cms-txt a {
  font-size: 15px;
  font-size: 1.5rem;
  color: #4CB84C;
}
.cms-txt p {
  margin: 0;
}
.cms-txt a.link {
  display: block;
  font-weight: 700;
  color: #4CB84C;
  margin-top: 14.4%;
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cms-txt a.link:hover {
  opacity: .7 !important;
}
.cms-txt a.link:after {
  content: url(/images/arrow-link.png);
  display: inline-block;
  vertical-align: middle;
  margin-left: 14px;
  position: relative;
  top: 1px;
}
.cms-txt .share {
  white-space: nowrap;
  margin-top: 55px;
}
.cms-txt .share > span {
  font-size: 17px;
  font-size: 1.7rem;
  display: inline-block;
  vertical-align: middle;
  padding-right: 12px;
}
@media (min-width: 760px) {
  .cms-txt .share > span {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
@media (min-width: 1200px) {
  .cms-txt .share > span {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media (min-width: 1500px) {
  .cms-txt .share > span {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
.cms-txt .share ul {
  display: inline-block;
  vertical-align: middle;
}
.cms-txt .share ul > li {
  display: inline-block;
  vertical-align: middle;
  padding-right: 7px;
}
.cms-txt .share ul > li > a {
  display: block;
  width: 32px;
  height: 33px;
  background: url(/images/share.png) no-repeat 0 0;
}
.cms-txt .share ul > li > a.twitter {
  background-position: -39px 0;
}
.cms-txt .share ul > li > a.facebook {
  background-position: -78px 0;
}
.cms-txt a:not(.link) {
  letter-spacing: 0.05em;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cms-txt a:not(.link):hover {
  color: #4CB84C;
}
@-moz-keyframes leftToRight {
  0% {
    opacity: 1;
    left: 4px;
  }
  100% {
    opacity: 0;
    left: 12px;
  }
}
@-ms-keyframes leftToRight {
  0% {
    opacity: 1;
    left: 4px;
  }
  100% {
    opacity: 0;
    left: 12px;
  }
}
@-webkit-keyframes leftToRight {
  0% {
    opacity: 1;
    left: 4px;
  }
  100% {
    opacity: 0;
    left: 12px;
  }
}
@keyframes leftToRight {
  0% {
    opacity: 1;
    left: 4px;
  }
  100% {
    opacity: 0;
    left: 12px;
  }
}
.flexslider {
  margin: 0;
  width: 100%;
  background-color: transparent;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#page {
  position: relative;
  height: 100vh;
  width: 100%;
  -moz-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, margin 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, margin 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, margin 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, margin 0.5s ease-in-out;
}
.js #page {
  opacity: 0;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: hidden;
  overflow: hidden;
}
.js #page.fade-in {
  opacity: 1;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  visibility: visible;
  overflow: hidden;
  height: auto;
}
@media (min-width: 760px) {
  #page.pushed-right {
    margin-left: -75%;
  }
}
@media (min-width: 760px) and (min-width: 1000px) {
  #page.pushed-right {
    margin-left: -67.3%;
  }
}
.error #page {
  width: 100%;
  height: 100vh;
  background: url(/images/404.jpg) no-repeat 0 50%;
  background-size: 100% auto;
}
.error #page > a {
  display: block;
  width: 100%;
  height: 100%;
}
#hd {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 20px 20px 10px;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: transform 0.3s ease-in-out, background 0.2s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, background 0.2s ease-in-out, opacity 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out, background 0.2s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, background 0.2s ease-in-out, opacity 0.3s ease-in-out;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 760px) {
  #hd {
    background-color: #333;
  }
}
@media (min-width: 760px) {
  #hd {
    padding: 33px 45px;
  }
}
#hd.scrolled {
  background-color: #333;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transition: transform 0.3s ease-in-out, background 0.2s 0.2s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, background 0.2s 0.2s ease-in-out, opacity 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out, background 0.2s 0.2s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, background 0.2s 0.2s ease-in-out, opacity 0.3s ease-in-out;
}
#hd.scrollUp {
  -moz-transform: translateY(-150px);
  -ms-transform: translateY(-150px);
  -o-transform: translateY(-150px);
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
}
@media (min-width: 760px) {
  #hd.menu-is-open {
    opacity: 0;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
body.work #hd {
  background-color: #333;
}
#hd a.logo {
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  height: 30px;
  background: url(/images/logo2x.png) no-repeat 0 0;
  background-size: contain;
}
@media (max-width: 760px) {
  #hd a.logo {
    position: relative;
    top: -5px;
  }
}
@media (min-width: 1100px) {
  #hd a.logo {
    width: 230px;
    height: 35px;
  }
}
#hd .nav-projects {
  position: absolute;
  top: 0;
  right: 171px;
  z-index: 1;
}
@media (max-width: 1000px) {
  #hd .nav-projects {
    display: none;
  }
}
#hd .nav-projects > a {
  display: inline-block;
  vertical-align: top;
  width: 60px;
  height: 101px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 1400px) {
  #hd .nav-projects > a {
    width: 101px;
  }
}
#hd .nav-projects > a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
#hd .nav-projects > a.all {
  background: url(/images/all-prjs.png) no-repeat 50% 50%;
}
#hd .nav-projects > a.prev {
  background: url(/images/prev-prjs.png) no-repeat 50% 50%;
}
#hd .nav-projects > a.next {
  background: url(/images/next-prjs.png) no-repeat 50% 50%;
}
#hd .icon-menu {
  line-height: 1;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  float: right;
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 760px) {
  #hd .icon-menu {
    top: 8px;
  }
}
#hd .icon-menu > span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  letter-spacing: .05em;
  font-size: 13px;
  font-size: 1.3rem;
  color: #FFF;
}
@media (max-width: 760px) {
  #hd .icon-menu > span {
    text-indent: -999px;
    overflow: hidden;
  }
}
#hd .icon-menu .burger {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 18px;
  margin-left: 13px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#hd .icon-menu .burger:hover {
  opacity: .7;
}
#hd .icon-menu .burger:before,
#hd .icon-menu .burger:after {
  background-color: #FFF;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
  height: 2px;
  width: 20px;
  left: 0;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 760px) {
  #hd .icon-menu .burger:before,
  #hd .icon-menu .burger:after {
    background-color: #4CB84C;
  }
}
.scrolled#hd .icon-menu .burger:before,
.scrolled#hd .icon-menu .burger:after {
  background-color: #4CB84C;
}
#hd .icon-menu .burger:before {
  -webkit-box-shadow: #FFF 0 8px 0 0;
  -moz-box-shadow: #FFF 0 8px 0 0;
  box-shadow: #FFF 0 8px 0 0;
  position: absolute;
  top: 0;
}
@media (max-width: 760px) {
  #hd .icon-menu .burger:before {
    -webkit-box-shadow: #4CB84C 0 8px 0 0;
    -moz-box-shadow: #4CB84C 0 8px 0 0;
    box-shadow: #4CB84C 0 8px 0 0;
  }
}
.scrolled#hd .icon-menu .burger:before {
  -webkit-box-shadow: #4CB84C 0 8px 0 0;
  -moz-box-shadow: #4CB84C 0 8px 0 0;
  box-shadow: #4CB84C 0 8px 0 0;
}
#hd .icon-menu .burger:after {
  position: absolute;
  top: 16px;
}
#hd .icon-menu .burger.close:hover {
  opacity: .7;
}
#hd .icon-menu .burger.close:before {
  -webkit-box-shadow: transparent 0 0 0 0 !important;
  -moz-box-shadow: transparent 0 0 0 0 !important;
  box-shadow: transparent 0 0 0 0 !important;
  top: 8px;
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
#hd .icon-menu .burger.close:after {
  top: 8px;
  -moz-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -o-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
#hd .breadcrumbs {
  line-height: 1;
  position: absolute;
  top: 33px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 760px) {
  #hd .breadcrumbs {
    display: none;
  }
}
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  height: 100vh;
  padding-bottom: 100vh;
  background: transparent;
  -moz-transition: width 0.3s ease-in-out, opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
  -o-transition: width 0.3s ease-in-out, opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
  -webkit-transition: width 0.3s ease-in-out, opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
  transition: width 0.3s ease-in-out, opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (min-width: 760px) {
  .menu {
    z-index: 0;
    width: 75%;
    background-color: #4CB84C;
  }
}
@media (min-width: 1000px) {
  .menu {
    width: 67.3%;
  }
}
.menu.open {
  opacity: 1;
  visibility: visible;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -moz-transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
  -o-transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
  -webkit-transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
}
.menu.open .nav-menu ul > li {
  opacity: 1;
  -moz-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  -o-transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
  -moz-transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.7s ease-in-out;
  -o-transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.7s ease-in-out;
  -webkit-transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.7s ease-in-out;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.7s ease-in-out;
}
.menu > div {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (min-width: 760px) {
  .menu > div {
    width: 50%;
  }
}
@media (max-width: 760px) {
  .menu > div:first-child {
    display: none;
  }
}
.menu > div.nav-menu {
  background: rgba(51, 51, 51, 0.95);
}
@media (min-width: 760px) {
  .menu > div.nav-menu {
    background-color: #333;
  }
}
.menu > div.nav-menu .icon-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 18px;
  margin-left: 13px;
  cursor: pointer;
}
@media (min-width: 760px) {
  .menu > div.nav-menu .icon-close {
    top: 41px;
    right: 45px;
  }
}
.menu > div.nav-menu .icon-close:before,
.menu > div.nav-menu .icon-close:after {
  background-color: #FFF;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
  height: 2px;
  width: 20px;
  right: 0;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 760px) {
  .menu > div.nav-menu .icon-close:before,
  .menu > div.nav-menu .icon-close:after {
    background-color: #4CB84C;
  }
}
.scrolled.menu > div.nav-menu .icon-close:before,
.scrolled.menu > div.nav-menu .icon-close:after {
  background-color: #4CB84C;
}
.menu > div.nav-menu .icon-close:before {
  -webkit-box-shadow: transparent 0 0 0 0;
  -moz-box-shadow: transparent 0 0 0 0;
  box-shadow: transparent 0 0 0 0;
  position: absolute;
  top: 8px;
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media (max-width: 760px) {
  .menu > div.nav-menu .icon-close:before {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
}
.scrolled.menu > div.nav-menu .icon-close:before {
  -webkit-box-shadow: #4CB84C 0 8px 0 0;
  -moz-box-shadow: #4CB84C 0 8px 0 0;
  box-shadow: #4CB84C 0 8px 0 0;
}
.menu > div.nav-menu .icon-close:after {
  position: absolute;
  top: 8px;
  -moz-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -o-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.menu > div.nav-menu ul li {
  opacity: 0;
  -moz-transition: transform 0s 0.4s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.7s ease-in-out;
  -o-transition: transform 0s 0.4s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.7s ease-in-out;
  -webkit-transition: transform 0s 0.4s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.7s ease-in-out;
  transition: transform 0s 0.4s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.7s ease-in-out;
}
.menu > div.nav-menu ul li.selected > a {
  color: #4CB84C;
}
.menu > div.nav-menu ul li:nth-child(1) {
  -moz-transform: translate3d(0, 100px, 0);
  -ms-transform: translate3d(0, 100px, 0);
  -o-transform: translate3d(0, 100px, 0);
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
}
.menu > div.nav-menu ul li:nth-child(2) {
  -moz-transform: translate3d(0, 150px, 0);
  -ms-transform: translate3d(0, 150px, 0);
  -o-transform: translate3d(0, 150px, 0);
  -webkit-transform: translate3d(0, 150px, 0);
  transform: translate3d(0, 150px, 0);
}
.menu > div.nav-menu ul li:nth-child(3) {
  -moz-transform: translate3d(0, 200px, 0);
  -ms-transform: translate3d(0, 200px, 0);
  -o-transform: translate3d(0, 200px, 0);
  -webkit-transform: translate3d(0, 200px, 0);
  transform: translate3d(0, 200px, 0);
}
.menu > div.nav-menu ul li:nth-child(4) {
  -moz-transform: translate3d(0, 250px, 0);
  -ms-transform: translate3d(0, 250px, 0);
  -o-transform: translate3d(0, 250px, 0);
  -webkit-transform: translate3d(0, 250px, 0);
  transform: translate3d(0, 250px, 0);
}
.menu > div.nav-menu ul li:nth-child(5) {
  -moz-transform: translate3d(0, 300px, 0);
  -ms-transform: translate3d(0, 300px, 0);
  -o-transform: translate3d(0, 300px, 0);
  -webkit-transform: translate3d(0, 300px, 0);
  transform: translate3d(0, 300px, 0);
}
.menu > div.nav-menu ul li:nth-child(6) {
  -moz-transform: translate3d(0, 350px, 0);
  -ms-transform: translate3d(0, 350px, 0);
  -o-transform: translate3d(0, 350px, 0);
  -webkit-transform: translate3d(0, 350px, 0);
  transform: translate3d(0, 350px, 0);
}
.menu > div.nav-menu ul li > a {
  display: block;
  text-align: right;
  font-weight: 700;
  font-size: 25px;
  font-size: 2.5rem;
  color: #FFF;
  line-height: 2.5;
  letter-spacing: .05em;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 760px) {
  .menu > div.nav-menu ul li > a {
    line-height: 2;
    font-size: 30px;
    font-size: 3rem;
  }
}
@media (max-height: 460px) {
  .menu > div.nav-menu ul li > a {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.menu > div.nav-menu ul li > a:hover {
  color: #4CB84C;
}
.menu > div ul,
.menu > div img {
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.menu > div ul {
  right: 20px;
}
@media (min-width: 760px) {
  .menu > div ul {
    right: 45px;
  }
}
.menu > div img {
  display: block;
  width: 230px;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
p.slogan {
  margin: 0;
  position: absolute;
  top: 65px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
@media (min-width: 760px) {
  p.slogan {
    top: 33px;
  }
}
@media (max-width: 900px) and (min-width: 760px) {
  p.slogan {
    margin-left: 50px;
  }
}
p.slogan > a:not(:last-child) {
  margin-right: 30px;
}
@media (min-width: 1100px) {
  p.slogan > a:not(:last-child) {
    margin-right: 70px;
  }
}
p.slogan > a.selected:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -7px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 3px;
  background-color: #4CB84C;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1100px) {
  p.slogan > a.selected:after {
    bottom: -14px;
  }
}
p.slogan > span,
p.slogan a {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  font-size: 1.3rem;
  color: #FFF;
  position: relative;
  text-transform: uppercase;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1100px) {
  p.slogan > span,
  p.slogan a {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#bd {
  position: relative;
  min-height: 100vh;
  z-index: 1;
}
@media (max-width: 760px) {
  #bd {
    padding-top: 60px;
    min-height: 0;
  }
}
body.work #bd {
  padding-top: 60px;
}
@media (min-width: 760px) {
  body.work #bd {
    padding-top: 96px;
  }
}
@media (min-width: 1100px) {
  body.work #bd {
    padding-top: 101px;
  }
}
#ft {
  width: 100%;
  background-color: #333;
  position: relative;
  z-index: 1;
}
@media (min-width: 1000px) {
  #ft {
    height: 265px;
  }
}
#ft .logo-ft > img {
  display: block;
  width: 200px;
}
@media (min-width: 1100px) {
  #ft .logo-ft > img {
    width: 230px;
    height: 35px;
  }
}
@media (max-width: 1000px) {
  #ft ul {
    display: none;
  }
}
#ft ul li {
  width: 11%;
  display: inline-block;
  vertical-align: middle;
  line-height: 2;
}
#ft small {
  display: block;
  margin-top: 15px;
  color: #666;
}
@media (min-width: 1000px) {
  #ft .info-container {
    width: 100%;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(204, 204, 204, 0.2);
  }
}
a.scroll-down {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  font-weight: 400;
  letter-spacing: .05em;
  font-size: 9px;
  font-size: 0.9rem;
  color: #FFF;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 760px) {
  a.scroll-down {
    font-size: 13px;
    font-size: 1.3rem;
    bottom: 25px;
  }
}
a.scroll-down:after {
  content: url(/images/arrow-down.png);
  display: block;
  text-align: center;
  position: relative;
  -moz-animation: scroll 1.5s infinite;
  -o-animation: scroll 1.5s infinite;
  -webkit-animation: scroll 1.5s infinite;
  animation: scroll 1.5s infinite;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
a.scroll-down:hover {
  opacity: .7;
}
a.scroll-down:hover:after {
  top: 6px;
  -moz-animation: none;
  -o-animation: none;
  -webkit-animation: none;
  animation: none;
}
@media (max-width: 760px) {
  body:not(.home) a.scroll-down {
    display: none;
  }
}
@-moz-keyframes scroll {
  0% {
    opacity: 1;
    top: 4px;
  }
  100% {
    opacity: 0;
    top: 12px;
  }
}
@-ms-keyframes scroll {
  0% {
    opacity: 1;
    top: 4px;
  }
  100% {
    opacity: 0;
    top: 12px;
  }
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    top: 4px;
  }
  100% {
    opacity: 0;
    top: 12px;
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    top: 4px;
  }
  100% {
    opacity: 0;
    top: 12px;
  }
}
.quotes {
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: calc(100vh - 210px);
  top: 43%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 760px) {
  .quotes {
    top: 50%;
  }
}
@media (min-width: 1100px) {
  .quotes {
    height: calc(100vh - 300px);
  }
}
.quotes > div {
  height: 100%;
  overflow: hidden;
}
.quotes > div .flexslider {
  position: relative;
}
.quotes > div .flexslider ul.slides > li {
  height: calc(100vh - 210px);
  overflow: hidden;
}
@media (min-width: 1100px) {
  .quotes > div .flexslider ul.slides > li {
    height: calc(100vh - 300px);
  }
}
.quotes > div .flexslider ul.slides > li blockquote {
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.quotes > div .flexslider .flex-direction-nav {
  position: absolute;
  bottom: -142px;
  z-index: 3;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: auto;
  right: auto;
  height: 70px;
  width: 115px;
}
.quotes > div .flexslider .flex-direction-nav li a {
  display: block;
  position: static;
  height: 70px;
  width: 115px;
}
.quotes > div .flexslider .flex-direction-nav li a.flex-prev {
  display: none;
}
.heading {
  position: relative;
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 1000px) {
  body:not(.home) .heading {
    height: auto;
  }
}
@media (max-width: 760px) {
  body.home .heading {
    height: calc(100vh - 60px);
  }
}
@media (min-width: 1000px) {
  body.internal .heading {
    height: 721px;
  }
}
.heading video#bgvid {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  /*background: url(polina.jpg) no-repeat;
        background-size: cover;*/
}
.heading > img {
  display: block;
  width: 100%;
}
@media (min-width: 1000px) {
  .heading > img {
    display: none;
  }
}
@-moz-keyframes zoomIn {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-ms-keyframes zoomIn {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heading-txt {
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  color: #FFF;
  max-width: 600px;
  width: 100%;
  padding: 0 45px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 1000px) {
  .heading-txt {
    max-width: 900px;
  }
}
.heading-txt:not(blockquote) {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.heading-txt p {
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin: 0 0 15px;
  font-size: 25px;
  font-size: 2.5rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 760px) {
  body:not(.home) .heading-txt p {
    display: none;
  }
}
@media (min-width: 760px) {
  .heading-txt p {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
@media (min-width: 1000px) {
  .heading-txt p {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .heading-txt p {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media (min-width: 1500px) {
  .heading-txt p {
    margin: 0 0 25px;
    line-height: normal;
    font-size: 45px;
    font-size: 4.5rem;
  }
}
@media (max-height: 500px) {
  .heading-txt p {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.heading-txt cite {
  font-size: 15px;
  font-size: 1.5rem;
  font-style: normal;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-height: 500px) {
  .heading-txt cite {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media (min-width: 760px) {
  .heading-txt cite {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
.row-wrapper {
  position: relative;
  overflow: hidden;
}
.row-wrapper.dark {
  background-color: #333;
}
.row-wrapper.bg-grey {
  background-color: #F7F7F7;
}
.block {
  display: inline-block;
  vertical-align: top;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
}
.block.b16 {
  width: 50%;
}
@media (min-width: 1000px) {
  .block.b16 {
    width: 16.66%;
  }
}
.block.b25 {
  width: 100%;
}
@media (min-width: 760px) {
  .block.b25 {
    width: 50%;
  }
}
@media (min-width: 1000px) {
  .block.b25 {
    width: 25%;
  }
}
@media (max-width: 1000px) and (min-width: 760px) {
  .contact-us .block.b25:last-child {
    float: right;
  }
}
@media (max-width: 1000px) {
  .clients .block.b25 {
    width: 50%;
  }
}
.block.b33 {
  width: 100%;
}
@media (min-width: 760px) {
  .block.b33 {
    width: 50%;
  }
}
@media (min-width: 1000px) {
  .block.b33 {
    width: 33.33%;
  }
}
.block.b50 {
  width: 100%;
}
@media (min-width: 1200px) {
  .block.b50 {
    width: 50%;
  }
}
.contact-us .block.b50 {
  width: 100%;
}
@media (min-width: 760px) {
  .contact-us .block.b50 {
    width: 50%;
  }
}
.block.b66 {
  width: 100%;
}
@media (min-width: 760px) {
  .block.b66 {
    width: 50%;
  }
}
@media (min-width: 1000px) {
  .block.b66 {
    width: 66.67%;
  }
}
.block.b75 {
  width: 100%;
}
@media (min-width: 760px) {
  .block.b75 {
    width: 50%;
  }
}
@media (min-width: 1000px) {
  .block.b75 {
    width: 75%;
  }
}
.block.b100 {
  width: 100%;
}
@media (max-width: 1000px) {
  .block.type-img:not(.with-effect) {
    height: 0 !important;
    padding-bottom: 56.25%;
  }
}
@media (max-width: 1200px) {
  .block.type-img.hideUnder1200 {
    display: none;
  }
}
.editoriale .block.type-img + .type-txt {
  padding: 0 0 0 45px;
}
@media (max-width: 760px) {
  .editoriale .block.type-img + .type-txt {
    padding: 10px 0 0;
  }
}
@media (max-width: 1000px) {
  .editoriale .block.type-img {
    height: auto !important;
    padding-bottom: 0;
  }
}
.block.type-img figure {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 0;
  padding-bottom: 56.25%;
}
.editoriale .block.type-img figure {
  padding-bottom: 0;
  height: 100%;
}
.block.type-img figure > img {
  display: block;
  width: 100%;
}
.block.type-txt {
  padding: 30px 20px;
}
@media (min-width: 760px) {
  .block.type-txt {
    padding: 45px;
  }
}
@media (min-width: 1200px) {
  .block.type-txt {
    padding: 35px 45px;
  }
}
@media (min-width: 1300px) {
  .block.type-txt {
    padding: 45px;
  }
}
.editoriale .block.type-txt {
  padding: 10px 0 0;
}
@media (min-width: 550px) {
  .editoriale .block.type-txt {
    padding: 0 45px 0 0;
  }
}
@media (max-width: 1000px) and (min-width: 550px) {
  .editoriale .block.type-txt:not(:nth-child(-n+2)) {
    padding: 30px 45px 0 0;
  }
}
.block.bg-grey {
  background-color: #F7F7F7;
}
@media (min-width: 1000px) {
  .contact-us .block {
    display: inline-block;
    vertical-align: bottom;
  }
}
@media (min-width: 1100px) {
  #ft .block:nth-child(2) {
    -moz-transition-delay: .1s !important;
    -o-transition-delay: .1s !important;
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
  }
  #ft .block:nth-child(3) {
    -moz-transition-delay: .2s !important;
    -o-transition-delay: .2s !important;
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important;
  }
  #ft .block:nth-child(4) {
    -moz-transition-delay: .3s !important;
    -o-transition-delay: .3s !important;
    -webkit-transition-delay: .3s !important;
    transition-delay: .3s !important;
  }
}
.main-page {
  background-color: #FFF;
}
@media (min-width: 1000px) {
  ul.key-figures {
    margin-top: 84px;
  }
}
@media (max-width: 1000px) {
  ul.key-figures > li {
    margin-top: 57px;
  }
}
@media (max-width: 760px) {
  ul.key-figures > li:not(:first-child) {
    margin-top: 18px;
  }
}
@media (min-width: 1100px) {
  ul.key-figures > li:nth-child(2) {
    -moz-transition-delay: .1s !important;
    -o-transition-delay: .1s !important;
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
  }
  ul.key-figures > li:nth-child(3) {
    -moz-transition-delay: .2s !important;
    -o-transition-delay: .2s !important;
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important;
  }
  ul.key-figures > li:nth-child(4) {
    -moz-transition-delay: .3s !important;
    -o-transition-delay: .3s !important;
    -webkit-transition-delay: .3s !important;
    transition-delay: .3s !important;
  }
}
ul.key-figures > li b {
  font-size: 15px;
  font-size: 1.5rem;
  color: #4CB84C;
  letter-spacing: .03em;
}
@media (min-width: 760px) {
  ul.key-figures > li b {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media (min-width: 1200px) {
  ul.key-figures > li b {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media (min-width: 1500px) {
  ul.key-figures > li b {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
ul.key-figures > li span {
  display: block;
  margin-top: 15px;
  font-family: Roboto Condensed;
  font-weight: 700;
  font-size: 80px;
  font-size: 8rem;
  color: #FFF;
  line-height: 1;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1100px) {
  ul.key-figures > li span {
    -moz-transition-delay: .1s !important;
    -o-transition-delay: .1s !important;
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
  }
}
@media (min-width: 760px) {
  ul.key-figures > li span {
    font-size: 110px;
    font-size: 11rem;
  }
}
@media (min-width: 1000px) {
  ul.key-figures > li span {
    margin-top: 30px;
    font-size: 80px;
    font-size: 8rem;
  }
}
@media (min-width: 1500px) {
  ul.key-figures > li span {
    font-size: 110px;
    font-size: 11rem;
  }
}
.adwards,
article.clients {
  background-color: #F7F7F7;
}
.adwards figure,
article.clients figure {
  height: 150px;
}
@media (min-width: 760px) {
  .adwards figure,
  article.clients figure {
    height: 300px;
  }
}
.adwards figure img,
article.clients figure img {
  position: relative;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1200px) and (min-width: 1000px) {
  .adwards figure img,
  article.clients figure img {
    width: 80%;
  }
}
@media (max-width: 760px) {
  .adwards figure img,
  article.clients figure img {
    max-width: 85%;
  }
}
@media (min-width: 1100px) {
  .adwards .block:nth-child(2) {
    -moz-transition-delay: .1s !important;
    -o-transition-delay: .1s !important;
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
  }
  .adwards .block:nth-child(3) {
    -moz-transition-delay: .2s !important;
    -o-transition-delay: .2s !important;
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important;
  }
  .adwards .block:nth-child(4) {
    -moz-transition-delay: .3s !important;
    -o-transition-delay: .3s !important;
    -webkit-transition-delay: .3s !important;
    transition-delay: .3s !important;
  }
}
.adwards .block figure {
  height: 200px;
}
@media (min-width: 760px) {
  .adwards .block figure {
    height: 300px;
  }
}
@media (max-width: 760px) {
  .adwards .block figure img {
    max-width: 50%;
  }
}
@media (min-width: 1100px) {
  article.clients ul > li:nth-child(2n) {
    -moz-transition-delay: .1s !important;
    -o-transition-delay: .1s !important;
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
  }
  article.clients ul > li:nth-child(3n) {
    -moz-transition-delay: .2s !important;
    -o-transition-delay: .2s !important;
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important;
  }
}
.btn {
  max-width: 265px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background-color: #4CB84C;
  z-index: -1;
  -moz-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  -ms-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  -o-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -o-transform-origin: 0 100%;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -moz-transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  -o-transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  -webkit-transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
@media (min-width: 1100px) {
  .btn:hover:before {
    opacity: 1;
    -moz-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    -o-transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    -moz-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  }
  .btn:hover > a,
  .btn:hover > input[type="submit"] {
    border-color: #FFF !important;
    color: #FFF !important;
  }
}
.btn#load-more {
  margin: 40px auto;
}
@media (min-width: 760px) {
  .btn#load-more {
    margin: 75px auto;
  }
}
@media (min-width: 1000px) {
  .contact-us .btn {
    float: right;
  }
}
@media (min-width: 1100px) {
  .contact-us .btn {
    -moz-transition-delay: .3s !important;
    -o-transition-delay: .3s !important;
    -webkit-transition-delay: .3s !important;
    transition-delay: .3s !important;
  }
}
.contact-us .btn:before {
  background-color: #FFF;
}
@media (min-width: 1100px) {
  .contact-us .btn:hover > a,
  .contact-us .btn:hover > input[type="submit"] {
    color: #4CB84C !important;
    border-color: #4CB84C !important;
  }
}
.contact-us .btn > a {
  color: #FFF;
  border-color: #FFF;
}
.cms-txt .btn {
  margin-top: 80px;
  float: left;
}
@media (min-width: 1200px) {
  .cms-txt .btn {
    float: right;
  }
}
.cms-txt .btn > a {
  border-color: #4CB84C;
  color: #4CB84C;
}
.btn.candidates,
.btn.send-form {
  float: none;
  border-color: #FFF;
  background-color: #4CB84C;
  margin: 40px 0 0;
}
@media (min-width: 550px) {
  .btn.candidates,
  .btn.send-form {
    margin: 50px 0 0;
  }
}
.btn.candidates:not(.candidates),
.btn.send-form:not(.candidates) {
  margin: 35px auto 0;
}
.btn.candidates > a,
.btn.send-form > a,
.btn.candidates > input[type="submit"],
.btn.send-form > input[type="submit"] {
  color: #FFF;
}
.btn > a,
.btn > input[type="submit"] {
  display: block;
  border: 1px solid #CCC;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .05em;
  font-weight: 700;
  color: #999;
  -moz-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  -o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  height: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.btn > input[type="submit"] {
  border: none;
  background-color: #4CB84C;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.btn > input[type="submit"]:focus {
  outline: none;
}
.contact-us {
  background-color: #4CB84C;
}
@media (min-width: 1200px) {
  .contact-us {
    height: 300px;
  }
}
.big-txt {
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
  letter-spacing: .03em;
  font-size: 20px;
  font-size: 2rem;
}
@media (min-width: 760px) {
  .big-txt {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media (min-width: 1000px) {
  .big-txt {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .big-txt {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
@media (min-width: 1500px) {
  .big-txt {
    font-size: 40px;
    font-size: 4rem;
  }
}
.big-txt:before {
  background-color: #FFF;
}
figcaption .big-txt {
  color: #FFF;
  font-weight: 700;
  line-height: 1;
}
figcaption .big-txt:before {
  background-color: #4CB84C;
  margin-bottom: 22px;
}
.jobs ul > li .big-txt {
  font-weight: 700;
}
.jobs ul > li .big-txt:before {
  background-color: #4CB84C;
}
@media (min-width: 760px) {
  .editoriale .big-txt {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
.editoriale .big-txt:before {
  display: none;
}
.modules > * {
  background-color: #000;
  overflow: hidden;
}
@media (min-width: 1100px) {
  .modules > *:nth-child(2n) {
    -moz-transition-delay: .1s !important;
    -o-transition-delay: .1s !important;
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
  }
  .modules > *:nth-child(3n) {
    -moz-transition-delay: .2s !important;
    -o-transition-delay: .2s !important;
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important;
  }
}
.touch .modules > * > a {
  pointer-events: auto !important;
}
.touch .modules > * > a figure img {
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -moz-transform: scale3d(1.1, 1.1, 1);
  -ms-transform: scale3d(1.1, 1.1, 1);
  -o-transform: scale3d(1.1, 1.1, 1);
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
  opacity: .4;
}
.touch .modules > * > a figure figcaption {
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  visibility: visible;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.touch .modules > * > a figure figcaption p,
.touch .modules > * > a figure figcaption span {
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -moz-transition-delay: .1s !important;
  -o-transition-delay: .1s !important;
  -webkit-transition-delay: .1s !important;
  transition-delay: .1s !important;
}
.modules > * a {
  display: block;
  position: relative;
}
.no-touch .modules > * a:hover figure img {
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -moz-transform: scale3d(1.1, 1.1, 1);
  -ms-transform: scale3d(1.1, 1.1, 1);
  -o-transform: scale3d(1.1, 1.1, 1);
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
  opacity: .4;
}
.no-touch .modules > * a:hover figure figcaption {
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  visibility: visible;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.no-touch .modules > * a:hover figure figcaption p,
.no-touch .modules > * a:hover figure figcaption span {
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -moz-transition-delay: .1s !important;
  -o-transition-delay: .1s !important;
  -webkit-transition-delay: .1s !important;
  transition-delay: .1s !important;
}
.touch .modules > * a {
  pointer-events: none;
}
.modules > * a figure img {
  display: block;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.modules > * a figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 7.3%;
  opacity: 0;
  visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modules > * a figure figcaption p,
.modules > * a figure figcaption span {
  -moz-transform: translate3d(-360px, 0, 0);
  -ms-transform: translate3d(-360px, 0, 0);
  -o-transform: translate3d(-360px, 0, 0);
  -webkit-transform: translate3d(-360px, 0, 0);
  transform: translate3d(-360px, 0, 0);
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modules > * a figure figcaption span {
  font-size: 15px;
  font-size: 1.5rem;
  color: #FFF;
  display: block;
  margin-top: 20px;
  -moz-transition-delay: 0.15s !important;
  -o-transition-delay: 0.15s !important;
  -webkit-transition-delay: 0.15s !important;
  transition-delay: 0.15s !important;
}
@media (min-width: 760px) {
  .modules > * a figure figcaption span {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media (min-width: 1000px) {
  .modules > * a figure figcaption span {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
.jobs ul > li {
  border-bottom: 1px solid #E1E1E1;
}
.jobs ul > li.selected > a {
  background-color: #4CB84C;
}
.jobs ul > li.selected > a i {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.jobs ul > li.selected > a i:before,
.jobs ul > li.selected > a i:after {
  background-color: #FFF;
}
.jobs ul > li.selected > a span {
  color: #FFF;
}
.jobs ul > li.selected > a span:before {
  background-color: #FFF;
}
.jobs ul > li > a {
  padding: 30px 0;
  display: block;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 760px) {
  .jobs ul > li > a {
    padding: 35px 0;
  }
}
@media (min-width: 1100px) {
  .jobs ul > li > a {
    padding: 55px 0;
  }
}
.jobs ul > li > a:hover {
  opacity: .7;
}
.jobs ul > li > a i {
  position: relative;
  top: -6px;
  width: 21px;
  height: 21px;
  display: inline-block;
  vertical-align: top;
  float: right;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 760px) {
  .jobs ul > li > a i {
    top: -3px;
    width: 28px;
    height: 28px;
  }
}
.jobs ul > li > a i:before,
.jobs ul > li > a i:after {
  content: "";
  display: block;
  height: 20px;
  width: 2px;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  margin-left: -1px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 760px) {
  .jobs ul > li > a i:before,
  .jobs ul > li > a i:after {
    height: 28px;
  }
}
.jobs ul > li > a i:after {
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.jobs ul > li .job-detail {
  display: none;
  padding-bottom: 50px;
}
@media (min-width: 760px) {
  .jobs ul > li .job-detail {
    padding: 20px 0 90px;
  }
}
@media (min-width: 1100px) {
  .jobs ul > li .job-detail {
    padding: 20px 0 110px;
  }
}
form {
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 550px) {
  form {
    margin-top: 60px;
  }
}
@media (min-width: 1100px) {
  form {
    margin-top: 96px;
  }
}
.job-detail form {
  display: none;
}
form fieldset {
  position: relative;
}
@media (min-width: 550px) {
  form fieldset {
    margin: 0 -2.25%;
  }
}
form fieldset > label {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 550px) {
  form fieldset > label {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 0 2.25%;
    margin-bottom: 29px;
  }
}
form fieldset > label:last-of-type {
  display: block;
  width: 100%;
}
form fieldset > label > span {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  color: #999;
  margin-bottom: 9px;
  padding-left: 5px;
}
@media (min-width: 760px) {
  form fieldset > label > span {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media (min-width: 1200px) {
  form fieldset > label > span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media (min-width: 1500px) {
  form fieldset > label > span {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
form fieldset > label > input,
form fieldset > label textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #999;
  height: 52px;
  padding: 0 10px;
  color: #999;
  font-size: 15px;
  font-size: 1.5rem;
}
form fieldset > label > input:focus,
form fieldset > label textarea:focus {
  outline: none;
}
@media (min-width: 1100px) {
  form fieldset > label > input,
  form fieldset > label textarea {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
form fieldset > label textarea {
  resize: none;
  height: 265px;
  font-family: Lato;
  font-weight: 400;
  padding: 10px;
}
form fieldset > label .upload a {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #4CB84C;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4CB84C;
  background-color: #FFF;
  width: 26.7%;
  height: 52px;
  line-height: 52px;
  text-align: center;
  z-index: 1;
  float: right;
  position: relative;
  margin-top: -52px;
  min-width: 90px;
}
form fieldset p.required {
  margin: 0;
  font-size: 13px;
  font-size: 1.3rem;
  color: #4CB84C;
  float: right;
  position: relative;
  top: -18px;
}
@media (min-width: 550px) {
  form fieldset p.required {
    position: absolute;
    bottom: -24px;
    top: auto;
    right: 29px;
    z-index: 1;
    float: none;
  }
}
form .check {
  position: relative;
  top: -2px;
}
form .check input[type="checkbox"] {
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
  margin: 0;
}
form .check input[type="checkbox"]:checked + a:before {
  background: url(/images/checked.png) no-repeat 50% 50%;
}
form .check a {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  font-size: 1.5rem;
  color: #4CB84C;
  text-decoration: underline;
  margin-left: 10px;
}
@media (min-width: 760px) {
  form .check a {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media (min-width: 1200px) {
  form .check a {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media (min-width: 1500px) {
  form .check a {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
form .check a:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #999;
  position: absolute;
  top: -3px;
  left: 0;
  z-index: 0;
}
.mockup-ipad,
.mockup-desktop,
.mockup-mobile {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.mockup-ipad > img,
.mockup-desktop > img,
.mockup-mobile > img {
  display: block;
  width: 100%;
}
.mockup-ipad {
  padding: 5% 11.5% 9% 9.4%;
  background: url(/images/mockup-ipad.png) no-repeat 0 0;
  background-size: 100% auto;
}
.mockup-desktop {
  padding: 4% 4% 21%;
  background: url(/images/mockup-desktop.png) no-repeat 0 0;
  background-size: 100% auto;
}
#masonry:before {
  content: '2 .column.size-1of2';
}
#masonry .column {
  float: left;
}
#masonry .column.size-1of2 {
  width: 50%;
}
#masonry .column img {
  display: block;
  width: 100%;
}
@media (min-width: 1100px) {
  #masonry .column > div:nth-child(2n) {
    -moz-transition-delay: .1s !important;
    -o-transition-delay: .1s !important;
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
  }
  #masonry .column > div:nth-child(3n) {
    -moz-transition-delay: .2s !important;
    -o-transition-delay: .2s !important;
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important;
  }
}
.navigations {
  width: 100%;
}
@media (min-width: 760px) {
  .navigations {
    height: 200px;
  }
}
.navigations > a {
  display: block;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 45px;
  height: 120px;
}
@media (min-width: 760px) {
  .navigations > a {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    height: 100%;
  }
}
@media (min-width: 760px) {
  .navigations > a:last-child {
    border-left: 1px solid #DBDBDB;
  }
}
@media (max-width: 760px) {
  .navigations > a:last-child {
    border-top: 1px solid #DBDBDB;
  }
}
.navigations > a > div {
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.navigations > a > div span {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  color: #333;
}
@media (min-width: 760px) {
  .navigations > a > div span {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media (min-width: 1000px) {
  .navigations > a > div span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media (min-width: 1500px) {
  .navigations > a > div span {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.navigations > a > div b {
  font-size: 25px;
  font-size: 2.5rem;
  color: #333;
}
@media (min-width: 760px) {
  .navigations > a > div b {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
@media (min-width: 1000px) {
  .navigations > a > div b {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .navigations > a > div b {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media (min-width: 1500px) {
  .navigations > a > div b {
    font-size: 45px;
    font-size: 4.5rem;
  }
}
@media (min-width: 1000px) {
  .no-touch.js .out-of-view {
    -moz-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    -o-transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
    opacity: 0 !important;
    visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .no-touch.js .out-of-view.heading-txt {
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 50px;
  }
}
@media (min-width: 1000px) {
  .no-touch.js .scroll-in-view {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1 !important;
    visibility: visible;
    -moz-backface-visibility: visible;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .no-touch.js .scroll-in-view.heading-txt {
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 0;
  }
}
.msg {
  width: 100%;
  font-size: 15px;
  font-size: 1.5rem;
  height: 75px;
  line-height: 75px;
  background-color: #990000;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7000;
}
.msg.confirm {
  background-color: #66CC00;
}
.curtain {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  opacity: 0;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.curtain.active {
  opacity: 1;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  visibility: visible;
}
.pp-layer {
  width: 100%;
  height: 100vh;
  max-width: 500px;
  max-height: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transform: translate(-50%, -50%) scale(0.7);
  -ms-transform: translate(-50%, -50%) scale(0.7);
  -o-transform: translate(-50%, -50%) scale(0.7);
  -webkit-transform: translate(-50%, -50%) scale(0.7);
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 102;
  background-color: #FFF;
  opacity: 0;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: hidden;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pp-layer.open {
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  visibility: visible;
}
.pp-layer a.close-pp {
  font-size: 24px;
  font-size: 2.4rem;
  color: #333;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1;
  line-height: 1;
}
.pp-layer .content {
  overflow: auto;
  height: calc(100% - 50px);
  padding-right: 20px;
  font-size: 12px;
  font-size: 1.2rem;
  color: #999;
}
.pp-layer .content > div > p:first-child {
  margin-top: 0;
}
.pp-layer .content > div a {
  -ms-word-break: break-word;
  word-break: break-word;
  color: #4CB84C;
}
.pp-layer .content > div a:hover {
  text-decoration: underline;
}
.tel-changed {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 102;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  transition: all .3s .3s ease;
}
.tel-changed.open {
  opacity: 1;
  visibility: visible;
  backface-visibility: visible;
  transition: all .3s 0s ease;
}
.tel-changed.open > div {
  opacity: 1;
  visibility: visible;
  backface-visibility: visible;
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all 0.3s 0.3s ease, -webkit-transform 0.3s 0.3s ease;
  transition: all .3s .3s ease, transform .3s .3s ease;
}
.tel-changed > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 90%;
  max-width: 400px;
  max-height: 220px;
  text-align: center;
  border: 3px solid #FFF;
  position: relative;
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  -o-transform: translateX(20%);
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s 0s ease, -webkit-transform 0.3s 0s ease;
  transition: all .3s 0s ease, transform .3s 0s ease;
}
@media only screen and (min-width: 760px) {
  .tel-changed > div {
    max-width: 800px;
    max-height: 350px;
    border: 5px solid #FFF;
  }
}
.tel-changed .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  font-size: 20px;
  color: #FFF;
}
@media only screen and (min-width: 760px) {
  .tel-changed .close {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.tel-changed span {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  font-size: 1.5rem;
  color: #FFF;
}
@media only screen and (min-width: 760px) {
  .tel-changed span {
    margin-bottom: 50px;
    font-size: 25px;
    font-size: 2.5rem;
  }
}
.tel-changed span:before,
.tel-changed span:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #FFF;
}
@media only screen and (min-width: 760px) {
  .tel-changed span:before,
  .tel-changed span:after {
    width: 100px;
    height: 5px;
  }
}
.tel-changed span:before {
  margin-right: 10px;
}
@media only screen and (min-width: 760px) {
  .tel-changed span:before {
    margin-right: 15px;
  }
}
.tel-changed span:after {
  margin-left: 10px;
}
@media only screen and (min-width: 760px) {
  .tel-changed span:after {
    margin-left: 15px;
  }
}
.tel-changed b {
  display: block;
  font-size: 30px;
  font-size: 3rem;
  color: #FFF;
}
@media only screen and (min-width: 760px) {
  .tel-changed b {
    font-size: 55px;
    font-size: 5.5rem;
  }
}
.tel-changed .tel {
  display: block;
  font-weight: 700;
  font-size: 25px;
  font-size: 2.5rem;
  color: #4CB84C;
}
@media only screen and (min-width: 760px) {
  .tel-changed .tel {
    font-size: 45px;
    font-size: 4.5rem;
  }
}