@font-face {
  font-family: "PlusJakartaSans";
  font-display: swap;
  src: url("../fonts/PlusJakartaSans-Bold.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: "PlusJakartaSans";
  font-display: swap;
  src: url("../fonts/PlusJakartaSans-Semibold.woff2") format("woff2");
  font-weight: 600;
}

@font-face {
  font-family: "PlusJakartaSans";
  font-display: swap;
  src: url("../fonts/PlusJakartaSans-Medium.woff2") format("woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Gilroy";
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
}

@font-face {
  font-family: "PlusJakartaSans";
  font-display: swap;
  src: url("../fonts/PlusJakartaSans-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "PlusJakartaSans";
  font-display: swap;
  src: url("../fonts/PlusJakartaSans-Light.woff2") format("woff2");
  font-weight: 300;
}

body.overflow {
  overflow: hidden;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "PlusJakartaSans", sans-serif;
  color: #222222;
  font-weight: 400;
  vertical-align: baseline;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

body {
  background-color: #f4f4f4;
  background-image: url("../img/bg.png");
  background-size: contain;
  background-repeat: repeat;
  color: #222222;
  font-family: "PlusJakartaSans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.6%;
}

.bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: contain;
     object-fit: contain;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

.viewport {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.scroll-container {
  position: absolute;
  overflow: hidden;
  z-index: 10;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.text-reveal {
  overflow: hidden;
  line-height: 1;
}

.text-reveal span {
  display: block;
}

.text-reveal.fading-up span {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  -o-transition: 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  transition: 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}

@-webkit-keyframes reveal {
  0% {
    -webkit-transform: translate(0, 105%);
            transform: translate(0, 105%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes reveal {
  0% {
    -webkit-transform: translate(0, 105%);
            transform: translate(0, 105%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes revealReversed {
  0% {
    -webkit-transform: translate(0, -200px);
            transform: translate(0, -200px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes revealReversed {
  0% {
    -webkit-transform: translate(0, -200px);
            transform: translate(0, -200px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-webkit-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

a {
  text-decoration: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul,
nav {
  list-style: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.container {
  max-width: 1426px;
  padding: 0 15px;
  margin: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -15px;
}

.--relative {
  position: relative;
}

.beehance-badges {
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
}

.header.home-header .header-logo, .header.home-header .hamburger {
  -webkit-animation: revealReversed 1s ease-out forwards;
          animation: revealReversed 1s ease-out forwards;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
  -webkit-transform: translateY(-80px);
      -ms-transform: translateY(-80px);
          transform: translateY(-80px);
}

.header .header-logo, .header .hamburger {
  -webkit-animation: revealReversed .6s ease-out forwards;
          animation: revealReversed .6s ease-out forwards;
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
  -webkit-transform: translateY(-80px);
      -ms-transform: translateY(-80px);
          transform: translateY(-80px);
}

.header.no-animation .header-logo, .header.no-animation .hamburger {
  -webkit-animation: none;
          animation: none;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

.header {
  padding: 34px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2222;
  width: 308px;
}

.header-logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header .container {
  max-width: 1590px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .hamburger {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 222;
}

.header .hamburger span {
  background: #222222;
  width: 40px;
  height: 2px;
  right: 0;
  display: block;
  position: absolute;
  -webkit-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.header .hamburger span:nth-child(1) {
  top: 10px;
}

.header .hamburger span:nth-child(2) {
  width: 33px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.header .hamburger span:nth-child(3) {
  width: 33px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.header .hamburger span:nth-child(4) {
  bottom: 10px;
}

.header .hamburger.active span:nth-child(1) {
  width: 0;
  right: 50%;
  opacity: 0;
}

.header .hamburger.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header .hamburger.active span:nth-child(3) {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.header .hamburger.active span:nth-child(4) {
  width: 0;
  right: 50%;
  opacity: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg.png");
  background-size: contain;
  background-repeat: repeat;
  background-color: #f4f4f4;
  -webkit-transition: all .6s ease-in-out;
  -o-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  z-index: 99;
}

.navbar.active {
  left: 0;
}

.navbar .hero-screen-title {
  margin: 60px 0;
}

.navbar .hero-screen-title .title-item img {
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  height: 130px;
}

.navbar .container {
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar .container .footer-contacts {
  width: 100%;
  position: relative;
}

.navbar .container .footer-contacts .hero-screen-cta {
  position: absolute;
  right: 140px;
  bottom: calc(100% + 20px);
}

.hero-screen .hero-screen-title .title-item {
  overflow: hidden;
}

.hero-screen .hero-screen-title .title-item img {
  display: block;
  -webkit-transform: translateY(150%);
      -ms-transform: translateY(150%);
          transform: translateY(150%);
  -webkit-animation: reveal .8s ease-out forwards;
          animation: reveal .8s ease-out forwards;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.hero-screen .hero-screen-title .title-item-1 img {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.hero-screen .hero-screen-title .title-item-2 img {
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}

.hero-screen .hero-screen-title .title-item-3 img {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.hero-screen .hero-screen-title .title-item-4 img {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.hero-screen .hero-screen-subtitle {
  -webkit-animation: fadeInFromNone 1s ease-in-out;
          animation: fadeInFromNone 1s ease-in-out;
}

.hero-screen {
  padding: 178px 0 35px 0;
  border-bottom: 1px solid #000000;
}

.hero-screen .container {
  position: relative;
}

.hero-screen-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  animation: rotation 12s infinite linear;
  -webkit-animation: rotation 12s infinite linear;
  cursor: pointer;
}

.hero-screen-cta-wrapper {
  z-index: 30;
  position: absolute;
  bottom: 70px;
  right: 0;
  opacity: 0;
  -webkit-animation: fadeInFromNone 1s ease-out forwards;
          animation: fadeInFromNone 1s ease-out forwards;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
  position: fixed;
  right: 16vw;
  bottom: 25vh;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.hero-screen-cta-wrapper.fixed {
  bottom: 30px;
  right: 30px;
}

.hero-screen-cta img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hero-screen-cta:hover img {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}

.hero-screen-subtitle {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 20px;
}

.hero-screen-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.hero-screen-title .title-item {
  cursor: pointer;
  position: relative;
  width: auto;
  display: block;
}

.hero-screen-title .title-item .hover {
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 992px) {
  .hero-screen-title .title-item:hover .default {
    opacity: 0;
  }
  .hero-screen-title .title-item:hover .hover {
    opacity: 1;
  }
}

.hero-screen-title .hover {
  opacity: 0;
}

.cases__heading {
  margin: 200px auto;
  width: 970px;
  font-weight: 300;
  font-size: 32px;
  line-height: 50px;
  opacity: 0;
  -webkit-animation: fadeInFromNone 1s ease-out forwards;
          animation: fadeInFromNone 1s ease-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.cases .text-reveal {
  margin-bottom: 100px;
}

.cases__title {
  font-weight: 300;
  font-size: 100px;
  line-height: 150px;
}

.cases-list .case-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.cases-list .case-item:nth-child(even) .case-item-info {
  padding: 0 0 0 120px;
}

.cases-category {
  margin-bottom: 100px;
}

.case-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 200px;
}

.case-item-info {
  width: 50%;
  padding: 0 120px 0 0;
  z-index: 32;
}

.case-item__title {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 8px;
}

.case-item__category {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 80px;
  color: #797979;
}

.case-item__description {
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 80px;
}

.case-item__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 32px;
  border: 1px solid #222222;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.case-item__link line {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.case-item__link:hover {
  background: #222222;
}

.case-item__link:hover line {
  stroke: #ffffff;
}

.case-item-image {
  width: 50%;
  position: relative;
}

.case-item-image .reveal {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.case-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer .container {
  padding: 280px 15px;
  border-top: 1px solid #222222;
}

.footer .text-reveal {
  padding: 0;
}

.footer-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 80px;
  line-height: 100px;
  margin-bottom: 175px;
}

.footer-cta p {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.footer-cta p:before {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  height: 3px;
  bottom: 0;
  left: 0;
  background: currentcolor;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
}

.footer-cta p:hover:before {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
}

.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-email {
  position: relative;
}

.footer-email:before {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background: currentcolor;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
}

.footer-email:hover:before {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
}

.footer-links__item {
  margin-right: 140px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.footer-links__item:before {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background: currentcolor;
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.footer-links__item:hover:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
}

.case-single {
  margin: 228px 0 0 0;
}

.case-single-title {
  overflow: hidden;
  margin-bottom: 70px;
  padding: 10px 0;
}

.case-single-title h1 {
  font-size: 100px;
  line-height: 120px;
  font-weight: 300;
  max-width: 80%;
  display: block;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-animation: reveal .6s ease-out forwards;
          animation: reveal .6s ease-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.case-single-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
}

.case-single-meta-item {
  margin-right: 80px;
}

.case-single-meta__title {
  font-size: 18px;
  line-height: 36px;
}

.case-single-meta__title span {
  color: #797979;
}

.case-single-meta__value {
  font-size: 24px;
  line-height: 36px;
}

.case-single-meta__title, .case-single-meta__value {
  overflow: hidden;
}

.case-single-meta__title span, .case-single-meta__value span {
  display: block;
  -webkit-transform: translateY(150%);
      -ms-transform: translateY(150%);
          transform: translateY(150%);
  -webkit-animation: reveal .6s ease-out forwards;
          animation: reveal .6s ease-out forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.case-single-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1426px;
  padding: 0 15px;
  margin: auto auto 200px auto;
}

.case-single-text-hero {
  padding: 0;
}

.case-single-text-hero .case-single-text__title, .case-single-text-hero .case-single-text__description {
  opacity: 0;
  -webkit-animation: fadeInFromNone .6s ease-out forwards;
          animation: fadeInFromNone .6s ease-out forwards;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.case-single-text-hero .case-single-text__title span, .case-single-text-hero .case-single-text__description span {
  display: block;
}

.case-single-text__title {
  width: 295px;
  min-width: 295px;
  font-size: 24px;
  line-height: 36px;
  overflow: hidden;
}

.case-single-text__description {
  font-size: 32px;
  line-height: 50px;
}

.case-single-text__description .text-reveal-inner {
  font-weight: 300;
}

.case-single-text__description span {
  font-weight: 300;
}

.case-single-image {
  margin-bottom: 200px;
}

.case-single-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-single-image .mobile {
  display: none;
}

.case-study-navigation {
  padding: 0 0 200px 0;
  border: none;
}

.modal {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  overflow-y: auto;
  background-color: #f4f4f4;
  background-image: url("../img/bg.png");
  background-size: contain;
  background-repeat: repeat;
  background-color: #f4f4f4;
  opacity: 0;
  visibility: hidden;
  bottom: -100%;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.modal.active {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.modal-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-header {
  padding: 0 0 100px 0;
}

.modal-header-top {
  max-width: 1590px;
  margin: auto auto 130px auto;
  padding: 40px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal-header-title {
  font-size: 100px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 80px;
}

.modal-header-email {
  display: inline-block;
  position: relative;
}

.modal-header-email:before {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background: currentcolor;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
}

.modal-header-email:hover:before {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
}

.modal-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 308px;
}

.modal-logo img {
  display: block;
  width: 100%;
}

.modal .btn-primary {
  padding: 24px;
  font-size: 24px;
  line-height: 50px;
  color: #222222;
  font-weight: 400;
  font-family: inherit;
}

.form-section {
  padding: 100px 0;
  border-top: 1px solid #222222;
}

.form-heading {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 50px;
  font-weight: 300;
}

.form-checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
  height: 36px;
  cursor: pointer;
}

.form-checkbox input {
  display: none;
}

.form-checkbox input:checked ~ label:after {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.form-checkbox label {
  display: block;
  margin-left: 52px;
  cursor: pointer;
}

.form-checkbox label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  width: 36px;
  height: 36px;
  border: 2px solid #222222;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  cursor: pointer;
}

.form-checkbox label:after {
  content: '';
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  left: 8px;
  top: 8px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  background: -webkit-linear-gradient(26.75deg, #FFE32A -5.4%, #FFAA00 40.94%, #FF4700 86.29%);
  background: -o-linear-gradient(26.75deg, #FFE32A -5.4%, #FFAA00 40.94%, #FF4700 86.29%);
  background: linear-gradient(63.25deg, #FFE32A -5.4%, #FFAA00 40.94%, #FF4700 86.29%);
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-row .form-control {
  margin-right: 50px;
}

.form-row .form-control:last-child {
  margin-right: 0;
}

.form-control {
  position: relative;
  width: 380px;
}

.form-control .label-name {
  position: absolute;
  left: 18px;
  top: 0px;
  font-size: 20px;
  line-height: 50px;
  color: #222222;
  -webkit-transition: all 0.3s cubic-bezier(1, -0.02, 0, 0.99) 0s;
  -o-transition: all 0.3s cubic-bezier(1, -0.02, 0, 0.99) 0s;
  transition: all 0.3s cubic-bezier(1, -0.02, 0, 0.99) 0s;
  pointer-events: none;
}

.form-control .label-name.active {
  top: -40px;
  font-size: 16px;
}

.form-control .label-name span {
  color: #FF0000;
}

.form-control-textarea {
  margin-top: 60px;
  max-width: 1240px;
  width: auto;
}

.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #222222;
  background: transparent;
  padding: 0 18px;
  font-size: 32px;
  line-height: 50px;
  font-family: inherit;
  color: inherit;
  font-weight: 300;
  border-radius: 0;
}

.form-input::-webkit-input-placeholder {
  font-weight: 300;
}

.form-input:-ms-input-placeholder {
  font-weight: 300;
}

.form-input::-ms-input-placeholder {
  font-weight: 300;
}

.form-input::placeholder {
  font-weight: 300;
}

.form-input:-ms-input-placeholder {
  font-weight: 300;
}

.form-input::-ms-input-placeholder {
  font-weight: 300;
}

.form-input:focus {
  outline: none;
}

.form-textarea {
  height: 180px;
  width: 100%;
  resize: none;
}

.form-submit {
  margin-top: 80px;
}

.btn-primary {
  background: transparent;
  cursor: pointer;
  font-size: 32px;
  line-height: 50px;
  border: 1px solid #222222;
  padding: 32px;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
}

.btn-primary:hover {
  background-color: #222222;
  color: #ffffff;
}

.fileupload {
  opacity: 0;
  position: absolute;
  visibility: hidden;
}

.error-page {
  height: 100vh;
}

.error-page .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1590px;
  padding: 200px 15px 0 15px;
}

.error-page img {
  margin-bottom: 30px;
}

.error-page h1 {
  margin-bottom: 60px;
  font-weight: 300;
  font-size: 32px;
  line-height: 50px;
}

.footer-cta .cta-trigger p {
  padding: 0 0 10px 0;
}

@media (min-width: 2000px) {
  .hero-screen .container {
    padding: 80px 0;
  }
  .hero-screen-cta-wrapper {
    right: 25vw;
    bottom: 30vh;
  }
}

@media (max-width: 1600px) {
  .footer .footer-links {
    padding-right: 150px;
  }
  .hero-screen-cta-wrapper {
    right: 50px;
  }
  .footer .container {
    padding: 180px 15px;
  }
  .hero-screen-cta-wrapper {
    bottom: 30px;
    right: 30px;
  }
}

@media (max-width: 1400px) {
  .footer .footer-links {
    padding-right: 0;
  }
  .hero-screen-cta-wrapper img {
    width: 140px;
    height: 140px;
  }
}

@media (max-height: 960px) {
  .hero-screen {
    padding: 110px 0 35px 0;
  }
  .footer .container {
    padding: 180px 15px;
  }
  .cases-category {
    margin-bottom: 50px;
  }
  .error-page {
    height: auto;
  }
  .error-page .container {
    padding: 160px 15px 0 15px;
  }
  .error-page img {
    width: 500px;
  }
}

@media (max-height: 860px) {
  .hero-screen-title .title-item img,
  .navbar .hero-screen-title .title-item img {
    height: 120px;
  }
}

@media (max-height: 760px) {
  .hero-screen-title .title-item img,
  .navbar .hero-screen-title .title-item img {
    height: 100px;
  }
  .navbar .hero-screen-title {
    margin: 110px 0 40px 0;
  }
  .error-page .container {
    padding: 120px 15px 0 15px;
  }
  .error-page img {
    width: 400px;
  }
}

@media (max-width: 1200px) {
  .beehance-badges {
    width: 170px;
  }
  .navbar .hero-screen-title .title-item img {
    height: 125px;
  }
  .hero-screen .title-item img {
    height: 120px;
  }
  .container {
    padding: 0 60px;
  }
  .cases__heading {
    width: 100%;
    margin: 60px 0 80px 0;
  }
  .cases__title {
    font-size: 80px;
  }
  .cases .text-reveal {
    margin-bottom: 60px;
  }
  .cases-list .case-item:nth-child(even) .case-item-info {
    padding: 0 0 0 70px;
  }
  .case-item {
    margin-bottom: 0;
  }
  .case-item-info {
    padding: 0 70px 0 0;
    width: 44%;
  }
  .case-item__description {
    font-size: 36px;
    line-height: 54px;
  }
  .case-item__link {
    padding: 30px;
  }
  .case-item-image {
    width: 56%;
  }
  .footer-links__item {
    margin: 0 0 0 100px;
  }
  .navbar .container .footer-contacts .hero-screen-cta {
    right: 0;
    bottom: calc(100% + 30px);
  }
  .case-single-title h1 {
    font-size: 80px;
    line-height: 100px;
  }
  .modal-header {
    padding: 0 0 80px 0;
  }
  .modal-header-top {
    margin: auto auto 80px auto;
  }
  .modal-header-title {
    font-size: 80px;
    line-height: 1;
  }
  .form-section {
    padding: 80px 0;
  }
}

@media (max-width: 992px) {
  .hero-screen-cta-wrapper {
    bottom: 15px;
    right: 15px;
  }
  .hero-screen-cta-wrapper.fixed {
    bottom: 15px;
    right: 15px;
  }
  .hero-screen-cta-wrapper img {
    width: 100px;
    height: 100px;
  }
  .hero-screen-title .title-item img,
  .navbar .hero-screen-title .title-item img {
    height: 80px;
  }
  .footer-links__item {
    margin: 0 0 0 70px;
  }
  .container {
    padding: 0 15px;
  }
  .navbar .hero-screen-title {
    margin: 60px 0 50px 0;
  }
  .cases__heading {
    font-size: 28px;
    line-height: 44px;
  }
  .cases__title {
    font-size: 60px;
    line-height: 80px;
  }
  .cases-category {
    margin-bottom: 150px;
  }
  .cases-list .case-item:nth-child(even) .case-item-info {
    padding: 0 0 0 50px;
  }
  .case-item {
    margin-bottom: 100px;
  }
  .case-item-image {
    height: auto;
  }
  .case-item-info {
    padding: 0 50px 0 0;
  }
  .footer .container {
    padding: 140px 15px;
  }
  .footer .cta {
    margin-bottom: 100px;
  }
  .case-single-title h1 {
    font-size: 60px;
    line-height: 80px;
  }
  .case-single {
    margin: 130px 0 0 0;
  }
  .case-single-text__description {
    font-size: 28px;
    line-height: 44px;
  }
  .case-single-text__title {
    width: 200px;
    min-width: 200px;
  }
  .modal-header-title {
    font-size: 60px;
  }
  .form-heading {
    font-size: 48px;
    line-height: 60px;
  }
  .form-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-contacts .form-control {
    width: 100%;
    margin: 0 0 50px 0;
  }
  .form-control {
    width: auto;
  }
  .form-control-textarea {
    margin-top: 0;
  }
  .error-page img {
    width: 400px;
  }
}

@media (max-width: 767px) {
  .hero-screen-title .title-item {
    margin-bottom: 10px;
  }
  .case-single-title h1 {
    max-width: 100%;
  }
  .beehance-badges {
    position: static;
    width: 240px;
    margin: -100px 0 50px 0;
  }
  .navbar .hero-screen-title {
    margin: 90px 0 0 0;
  }
  .navbar .container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .navbar .container .footer-contacts {
    margin-bottom: 60px;
    position: static;
  }
  .navbar .container .footer-contacts .hero-screen-cta {
    right: unset;
    left: 0;
    top: 50%;
    bottom: unset;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: unset;
    bottom: unset;
  }
  .navbar .container .footer-contacts .hero-screen-cta img {
    width: 150px;
  }
  .navbar .container .footer-email {
    margin-bottom: 60px;
  }
  .header {
    padding: 15px 0;
  }
  .header-logo {
    width: 175px;
  }
  .hero-screen-title .title-item img, .navbar .hero-screen-title .title-item img {
    height: 65px;
  }
  .hero-screen {
    overflow: hidden;
    padding: 86px 0 60px 0;
  }
  .hero-screen-cta-wrapper {
    bottom: 15px;
    right: 15px;
  }
  .hero-screen-cta img {
    width: 80px;
    height: 80px;
  }
  .cases__heading {
    font-size: 20px;
    line-height: 36px;
    margin: 60px 0 100px 0;
  }
  .cases__title {
    font-size: 48px;
    line-height: 64px;
  }
  .cases .text-reveal {
    margin-bottom: 100px;
  }
  .case-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .case-item-info {
    width: 100%;
    padding: 0;
  }
  .case-item-image {
    width: 100%;
  }
  .case-item__title {
    font-size: 22px;
    line-height: 22px;
  }
  .case-item__category {
    margin-bottom: 24px;
  }
  .case-item__description {
    font-size: 32px;
    line-height: 54px;
    margin-bottom: 24px;
  }
  .case-item__link {
    display: none;
  }
  .cases-list .case-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cases-list .case-item:nth-child(even) .case-item-info {
    padding: 0;
  }
  .footer .container {
    padding: 100px 15px;
  }
  .footer-cta {
    font-size: 42px;
    line-height: 64px;
    margin-bottom: 100px;
  }
  .footer-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer-email {
    margin-bottom: 100px;
  }
  .footer-links {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-links__item {
    margin: 0;
  }
  .case-single-title {
    margin-bottom: 24px;
  }
  .case-single-title h1 {
    font-size: 48px;
    line-height: 64px;
  }
  .case-single {
    margin: 94px 0 0 0;
  }
  .case-single-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .case-single-meta-item {
    margin-bottom: 24px;
  }
  .case-single-meta__title {
    font-size: 14px;
    line-height: 28px;
  }
  .case-single-meta__value {
    font-size: 18px;
    line-height: 36px;
  }
  .case-single-meta-item {
    margin-right: 40px;
  }
  .case-single-meta-item:last-child {
    margin-right: 0;
  }
  .case-single-text {
    display: block;
    margin: 0 0 50px 0;
  }
  .case-single-text__description {
    font-size: 28px;
    line-height: 44px;
    font-size: 22px;
    line-height: 46px;
  }
  .case-single-text__description .text-reveal-inner, .case-single-text__description span {
    opacity: 1 !important;
    -webkit-transform: translate(0, 0) !important;
        -ms-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
    font-size: 22px;
    line-height: 46px;
  }
  .case-single-text__title {
    width: 100%;
    margin-bottom: 16px;
    min-width: unset;
    font-size: 18px;
    font-weight: 600;
  }
  .case-single-text__title .text-reveal-inner, .case-single-text__title span {
    font-size: 18px;
    font-weight: 600;
    opacity: 1 !important;
    -webkit-transform: translate(0, 0) !important;
        -ms-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
  }
  .case-single-image {
    margin-bottom: 100px;
  }
  .case-single-image .desktop {
    display: none;
  }
  .case-single-image .mobile {
    display: block;
  }
  .case-single-text-hero .case-single-text__title, .case-single-text-hero .case-single-text__description {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
  .modal-close {
    width: 20px;
    height: 20px;
  }
  .modal-header {
    padding: 0 0 60px 0;
  }
  .modal-header-title {
    font-size: 52px;
    line-height: 60px;
    margin-bottom: 60px;
  }
  .modal-header-top {
    margin: auto auto 20px auto;
    padding: 25px 15px;
  }
  .form-section {
    padding: 60px 0;
  }
  .form-heading {
    font-size: 40px;
    line-height: 52px;
  }
  .form-heading br {
    display: none;
  }
  -row .form-control {
    margin-right: 40px;
  }
  -contacts .form-control {
    margin: 0 0 40px 0;
  }
  .error-page .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .error-page img {
    width: 300px;
  }
}

@media (max-width: 576px) {
  .navbar .container .footer-contacts .hero-screen-cta {
    left: -25px;
    top: 50%;
  }
  .hero-screen-title .title-item img, .navbar .hero-screen-title .title-item img {
    height: 45px;
  }
  .modal-logo {
    width: 175px;
  }
  .form-submit {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */