@import url('https://fonts.googleapis.com/css?family=Raleway:400,500,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway:900&display=swap');
/* font-family: 'Raleway', sans-serif; */

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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*  RESET END
------------------------------------------------------------------------------*/

/* FONTS
------------------------------------------------------------------------------*/
body {
  font: 400 16px/1.5 'Raleway', sans-serif;
}

/* FONTS END
------------------------------------------------------------------------------*/

/* REUSABLE STYLES
------------------------------------------------------------------------------*/
.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.clear {
  height: 0;
  clear: both;
  overflow: hidden;
  font-size: 0;
}

.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}

.clearfix:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

.js-show-smoothly {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all .5s cubic-bezier(0.390, 0.575, 0.565, 1.000);
  transition: all .5s cubic-bezier(0.390, 0.575, 0.565, 1.000);
}

.js-show-smoothly.visible {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* REUSABLE STYLES END
------------------------------------------------------------------------------*/

/* FOUNDATION
------------------------------------------------------------------------------*/
html {
  height: 100%;
}

body {
  background-color: #000;
  -webkit-text-size-adjust: none;
  color: #fff;
  height: 100%;
  min-height: 100%;
  position: relative;
}

a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: none;
}

img {
  color: #fff;
}

strong {
  font-weight: bold;
}

/* FOUNDATION
------------------------------------------------------------------------------*/

/* BUTTONS
------------------------------------------------------------------------------*/
.btn {
  display: inline-block;
  vertical-align: middle;
  font: 800 20px/1.2 'Raleway', sans-serif;
  text-decoration: none;
  padding: 6px 15px;
  margin: 0;
  border-style: solid;
  -webkit-transition: background-color .1s linear, color .1s linear, border-color .1s linear;
  transition: background-color .1s linear, color .1s linear, border-color .1s linear;
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
  text-align: center;
  -webkit-appearance: none;
  letter-spacing: calc(1em * 0.1);
}

.btn:hover {
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.btn:focus {
  outline: none;
}


.btn-outline-primary {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline-primary:hover {
}

.btn-outline-success {
  background-color: transparent;
  border: 1px solid #31cb84;
  color: #31cb84;
}

.btn-outline-success:hover {
}

.btn-outline-danger {
  background-color: transparent;
  border: 1px solid #ff4e4e;
  color: #ff4e4e;
}

.btn-outline-danger:hover {
  -webkit-box-shadow: 0 0 5px 0 #ff4e4e;
  box-shadow: 0 0 5px 0 #ff4e4e;
}

.btn-lg {
  font-size: 26px;
  line-height: 1.15;
  padding: 17px 50px;
}

.btn-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#31bfcb), color-stop(50%, #0045ff), color-stop(50%, #024afd), to(#27a7d5));
  background: linear-gradient(to right, #31bfcb 0%, #0045ff 50%, #024afd 50%, #27a7d5 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  border: 0;
  color: #fff;
  -webkit-transition: background-position 0.2s ease;
  transition: background-position 0.2s ease;
}

.btn-gradient:hover {
  background-position: 0 0;
}

.btn-gradien.btn-lg {
  padding: 19px 50px;
}

.btn-icon {
  padding: 13px 35px;
}

.btn-icon .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-icon .icons-holder {
  margin-left: 10px;
}

.btn-icon .svg-icon {
  display: block;
}

.btn-icon .svg-icon-rocket {
  width: 20px;
  height: 21px;
}

.btn-icon .svg-icon-check {
  width: 20px;
  height: 21px;
}

.btn-icon .svg-icon-times {
  width: 14px;
  height: 21px;
}

.btn-glow {
  -webkit-animation: glow 800ms ease-out infinite alternate;
  animation: glow 800ms ease-out infinite alternate;
}

.btn-glow:hover {
  background-color: #fff;
  color: #000;
}

@-webkit-keyframes glow {
  0% {
    border-color: #fff;
    -webkit-box-shadow: 0 0 5px rgba(255, 255, 255, .2), inset 0 0 5px rgba(255, 255, 255.1);
    box-shadow: 0 0 5px rgba(255, 255, 255, .2), inset 0 0 5px rgba(255, 255, 255.1);
  }
  100% {
    border-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, .6), inset 0 0 10px rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, .6), inset 0 0 10px rgba(255, 255, 255, 0.4);
  }
}

@keyframes glow {
  0% {
    border-color: #fff;
    -webkit-box-shadow: 0 0 5px rgba(255, 255, 255, .2), inset 0 0 5px rgba(255, 255, 255.1);
    box-shadow: 0 0 5px rgba(255, 255, 255, .2), inset 0 0 5px rgba(255, 255, 255.1);
  }
  100% {
    border-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, .6), inset 0 0 10px rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, .6), inset 0 0 10px rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 480px) {
  .btn-lg {
    font-size: 21px;
  }
}

/* BUTTONS END
------------------------------------------------------------------------------*/


/* COMMON BLOCKS
------------------------------------------------------------------------------*/
.wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.wrap {
  max-width: 1208px;
  margin: 0 auto;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.page.active {
  opacity: 1;
  height: auto;
  -webkit-transition: opacity 1s ease 0.2s;
  transition: opacity 1s ease 0.2s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.page-content {
  padding: 94px 0 0;
}

.section-title {
  font-size: 46px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 700px) {
  .section-title {
    font-size: 35px;
    line-height: 1.4;
  }
}

@media (max-width: 576px) {
  .page-content {
    padding: 100px 0 0;
  }
}


.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  height: 93px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.header_scrolled {
  background-color: rgba(0, 0, 0, .7);
}

.header .wrap {
  position: relative;
}

.header .logo {
  display: block;
  overflow: hidden;
  text-indent: -1000px;
  width: 240px;
  height: 36px;
  background: url(../images/header/logo-light.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: 28px;
  left: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header .logo {
    background-image: url(../images/header/logo-light@2x.png);
  }
}

@media (max-width: 780px) {
  .header .logo {
    left: 20px;
    -webkit-filter: none;
    filter: none;
  }
}

@media (max-width: 576px) {
  .header {
    height: 76px;
  }

  .header .logo {
    background-image: url(../images/header/logo-mob-light@2x.png);
    width: 47px;
    height: 47px;
    top: 14px;
  }
}

.hbr-btn {
  display: block;
  width: 50px;
  height: 21px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 42px;
  background: transparent;
  border: 0;
}

.hbr-btn:hover {
  cursor: pointer;
}

.hbr-btn .bar {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hbr-btn .bar-1 {
  width: 100%;
  top: 0;
}

.hbr-btn .bar-2,
.hbr-btn .bar-3 {
  width: 34px;
  top: 50%;
  right: 0;
  margin-top: -1px;
}

.hbr-btn .bar-4 {
  width: 34px;
  bottom: 0;
  right: 0;
  top: auto;
}

.hbr-btn:focus {
  outline: none;
}

.menu-open .hbr-btn {
  width: 35px;
}

.menu-open .hbr-btn .bar-1 {
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
  background-color: transparent;
}

.menu-open .hbr-btn .bar-2 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-open .hbr-btn .bar-3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-open .hbr-btn .bar-4 {
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
  background-color: transparent;
}

@media (max-width: 1280px) {
  .hbr-btn {
    right: 20px;
  }
}

@media (max-width: 780px) {
  .hbr-btn {
    right: 20px;
  }
}

@media (max-width: 576px) {
  .hbr-btn {
    top: 28px;
  }
}

.backdrop {
  -webkit-backdrop-filter: blur(7.3px);
  backdrop-filter: blur(7.3px);
  background-color: #000000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0.5;
}

.menu-open {
  overflow: hidden;
}

.menu-open .backdrop {
  display: block;
}

.menu-open .menu {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.menu-open .header {
  z-index: 10001;
}

.menu-open .pages,
.menu-open .footer,
.menu-open .header .logo {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

.menu-open .header_scrolled {
  background-color: transparent;
}

@media (max-width: 576px) {
  .menu-open .header .logo {
    width: 194px;
    height: 29px;
    top: 24px;
    background: url(../images/header/logo-light.png) 0 0 no-repeat;
    background-size: contain;
    -webkit-filter: none;
    filter: none;
  }
}

@media (max-width: 576px) and(-webkit-min-device-pixel-ratio: 2), (max-width: 576px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 576px) and (min-resolution: 192dpi) {
  .menu-open .header .logo {
    background-image: url(../images/header/logo-light@2x.png);
  }
}

.footer {
  padding: 13px 0 10px;
  background-color: #000;
}

.footer .wrap {
  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 .copyright {
  font-weight: 300;
}

.footer .nav-list .item {
  display: inline-block;
}

.footer .nav-list .item:not(:first-child) {
  margin-left: 45px;
}

.footer .nav-list .link {
  text-transform: uppercase;
  font-weight: 500;
}

.footer .nav-list .link:hover {
  color: #0045FF;
}

.footer .social-list .item {
  display: inline-block;
}

.footer .social-list .item-twitter {
  margin-left: 13px;
}

.footer .social-list svg {
  display: block;
}

.footer .social-list svg path {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.footer .social-list .link {
  color: #fff;
}

.footer .social-list .link:hover {
  color: #0045FF;
}

.hidden-footer .footer {
  display: none;
}

@media (max-width: 950px) {
  .footer .nav-list .item:not(:first-child) {
    margin-left: 35px;
  }
}

@media (max-width: 850px) {
  .footer {
    padding: 15px 0;
  }

  .footer .wrap {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer .nav-list .item:not(:first-child) {
    margin-left: 45px;
  }

  .footer .nav-list {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .footer .copyright {
    position: absolute;
    left: 15px;
    bottom: 4px;
  }

  .footer .social-list {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-top: 15px;
  }
}

@media (max-width: 550px) {
  .footer .nav-list .item {
    display: block;
    margin: 13px 0 0;
    text-align: center;
  }

  .footer .nav-list .item:not(:first-child) {
    margin-left: 0;
  }

  .footer .social-list {
    margin-top: 13px;
  }
}


.menu {
  display: block;
  width: 50%;
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  bottom: 0;
  -webkit-box-shadow: -5px 0 34px 0 rgba(0, 0, 0, 0.4);
  box-shadow: -5px 0 34px 0 rgba(0, 0, 0, 0.4);
  background-color: #0d152e;
  background-image: linear-gradient(92deg, #0d152e, #040315);
  z-index: 1000;
  overflow: hidden;
  -webkit-transform: translate3d(-10000px, 0, 0);
  transform: translate3d(-10000px, 0, 0);
  opacity: 0;
}

.menu:after {
  display: block;
  content: '';
  background-image: url(../images/global/letter-m.svg);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 306px 306px;
  height: 100%;
  width: 306px;
  height: 306px;
  position: absolute;
  bottom: -10px;
  right: 0;
  z-index: -1;
}

.menu .nav {
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 165px 0 0 115px;
}

.menu .nav .list {
}

.menu .nav .item {
  margin: 0 0 29px;
  position: relative;
}

.menu .nav .item a {
  color: inherit;
  letter-spacing: 0.84px;
}

.menu .nav .item.current,
.menu .nav .item:hover {
  padding-left: 50px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -webkit-transition: padding 0.2s ease;
  transition: padding 0.2s ease;
  transition: padding 0.2s ease, -webkit-transform 0.2s ease;
}

.menu .nav .item.current a,
.menu .nav .item:hover a {
  opacity: 0.68;
  padding-left: 1px;
}

.menu .nav .item.current a:hover {
  cursor: default;
}

.menu .nav .item:before {
  display: block;
  content: '';
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 100%;
  width: 200px;
  margin-right: -20px;
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
  transition: right 0.4s ease;
  right: calc(100% + 150px);
}

.menu .nav .item.current:before,
.menu .nav .item:hover:before {
  right: 100%;
}

.menu .nav .item:after {
  display: block;
  content: '';
  background: url(../images/global/bullet-light.svg);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: calc(100% + 150px);
  margin-top: -28px;
  margin-right: -50px;
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
}

.menu .nav .item.current:after,
.menu .nav .item:hover:after {
  right: 100%;
}

.menu .socials {
  text-align: center;
  display: none;
}

.menu .socials .item {
  margin: 0 0 10px;
}

.menu .socials .item .icon {
}

.menu .socials .item .icon:hover {
  color: #0045FF;
}

@-webkit-keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media (max-width: 1200px) {
  .menu {
    width: 65%
  }
}

@media (max-width: 780px) {
  .menu {
    width: 100%
  }

  .menu .nav {
    padding: 175px 0 0 110px;
  }

  .menu .nav .item.current {
    padding-left: 50px
  }

  .menu .nav .item {
  }
}

@media (max-width: 576px) {
  .menu .nav {
    font-size: 26px;
    padding: 125px 0 0 25px;
  }

  .menu .nav .item {
    margin: 0 0 20px;
    -webkit-transform: translate3d(40px, 0, 0);
    transform: translate3d(40px, 0, 0);
  }

  .menu .nav .item.current,
  .menu .nav .item:hover {
    padding-left: 40px;
  }

  .menu .nav .item.current:before {
  }

  .menu .nav .item.current:after,
  .menu .nav .item:hover:after {
    margin-right: -40px;
  }

  .menu .nav .item.current:before,
  .menu .nav .item:hover:before {
    margin-right: -10px;
  }

  .menu .socials {
    display: block;
    position: absolute;
    right: 35px;
    bottom: 30px;
  }
}


.page-title {
  font-size: 65px;
  font-weight: 900;
  line-height: 1.26;
  letter-spacing: 2.47px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 780px) {

}

@media (max-width: 576px) {
  .page-title {
    font-size: 38px;
    line-height: 2.16;
    letter-spacing: 1.44px;
  }
}

.page-lines {
  display: block;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: -1;
}

.page-lines .wrap {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.page-lines .line {
  display: block;
  position: absolute;
  width: 0;
  border-left: 1px solid #fff;
  opacity: 0.1;
  top: 0;
  height: 300%;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.page-lines .line:first-child {
  left: 0;
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
  display: none;
}

.page-lines .line:first-child + .line {
  left: 25%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.page-lines .line:first-child + .line + .line {
  left: 50%;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.page-lines .line:first-child + .line + .line + .line {
  left: 75%;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.page-lines .line:first-child + .line + .line + .line + .line {
  left: 100%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.page.active .page-lines {
  height: 100%;
}

.page.active .page-lines .line {
  -webkit-animation: slide-in-top 5.5s ease-out both;
  animation: slide-in-top 5.5s ease-out both;
}


.page-home .page-lines .line:first-child {
  display: none;
}

@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0.1;
  }
  49.999% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0.1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.1;
  }
}

@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0.1;
  }
  49.999% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0.1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.1;
  }
}

@media (max-width: 780px) {
  .page-lines .line:first-child + .line,
  .page-lines .line:first-child + .line + .line + .line {
    display: none;
  }

  .page-lines .line:first-child {
    left: 90px;
  }

  .page-lines .line:first-child + .line + .line + .line + .line {
    left: calc(100% - 90px);
  }
}

@media (max-width: 576px) {
  .page-lines {
    display: none;
  }
}

.grow-section {
  padding: 50px 0 65px;
  text-align: center;
  -webkit-box-shadow: inset 0 -20px 30px -20px rgba(255, 255, 255, .5);
  box-shadow: inset 0 -20px 30px -20px rgba(255, 255, 255, .5);
}

.grow-section .wrap {
  max-width: 870px;
}

.grow-section .message {
  margin-top: 25px;
  font-size: 26px;
  font-weight: 700;
}

.grow-section .message strong {
  display: block;
  font-size: 46px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  padding: 0 0 17px;
}

.grow-section .message-text {
  font-size: 30px;
  line-height: 1.27;
  font-weight: 700;
  padding: 17px 0 14px;
}

.grow-section .author {
  text-align: right;
  font-size: 20px;
  padding: 0 10px;
  position: relative;
  height: 0;
  bottom: 20px;
}

.grow-section .author .sign {
  display: inline-block;
  background: url(../images/who-we-are/great-things/SteveJobs@2x.png) 0 0 no-repeat;
  background-size: contain;
  width: 165px;
  height: 57px;
  font-size: 0;
  vertical-align: top;
  color: transparent;
}

.grow-business .author .sign {
  background: url("../images/who-we-are/great-things/Henry Ford@2x.png") 0 0 no-repeat;
}

.grow-section .btn-holder {
  margin-top: 20px;
}

.grow-section .btn {
  padding: 19px 40px;
}

@media (max-width: 700px) {
  .grow-section {
    padding: 55px 0;
  }

  .grow-section .message {
    margin-top: 15px;
    font-size: 20px;
  }

  .grow-section .message strong {
    font-size: 38px;
    line-height: 1.4;
    letter-spacing: 1.44px;
  }

  .grow-section .author {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .grow-section .message-text {
    font-size: 22px;
  }
}


.list-regular {
  list-style: none;
}

.list-regular li {
  padding: 0 0 0 60px;
  position: relative;
  margin-bottom: 10px;
}

.list-regular li:before {
  display: block;
  content: '';
  width: 41px;
  height: 0;
  opacity: 0.37;
  border: solid 1px #ffffff;
  position: absolute;
  top: 50%;
  right: calc(100% - 41px);
  margin-top: -1px;
}

.list-regular li:first-child:before {
  display: block;
  content: '';
  height: 0;
}

.list-regular li:first-child ~ li:before {
  width: 15px;
}

.list-regular li:first-child + li:before {
  width: 27px;
}

.list-regular li:first-child + li + li:before {
  width: 23px;
}

.loading .loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: none;
  transition: none;
}

.loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 500;
}

.loader .video {
  display: block;
  width: 420px;
  height: 300px;
}

.loaded .loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: height 0s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s, opacity 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
  transition: height 0s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s, opacity 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.loader .loader-svg-container {
  width: 100%;
  height: 100%;
}

/* COMMON BLOCKS END
------------------------------------------------------------------------------*/


/* PAGES
------------------------------------------------------------------------------*/
/* Page Home */
.page-home {
}

.page-home .page-content {
  padding: 160px 0 0;
}

.page-home .wrap {
  position: relative;
}

.page-home .page-layout {
  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: streth;
  -ms-flex-align: streth;
  align-items: streth;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: calc(100vh - 160px);
  min-height: calc(var(--vh, 1vh) * 100 - 160px);
  height: auto;
}

.page-home .page-layout .page-main {
  z-index: 1;
  pointer-events: none;
}

.page-home .page-layout .page-footer {
}

.page-home .global-title {
  font-size: 94px;
  line-height: 82px;
  letter-spacing: 6.58px;
  text-transform: uppercase;
  font-weight: 800;
  padding: 14px 0 39px;
  pointer-events: none;
}

.page-home .global-title .second-word {
  white-space: nowrap;
}

.page-home .global-title .smaller {
  text-transform: none;
  font-size: 57px;
  font-weight: 800;
  letter-spacing: normal;
  display: block;
  padding-left: 25px;
  margin-top: 12px;
}

.page-home .global-title .letter-affix {
  position: relative;
}

.page-home .global-title .letter-affix:after {
  display: block;
  content: '';
  position: absolute;
  width: 17px;
  height: 10px;
  background-color: #fff;
  bottom: 100px;
  left: 50%;
  margin: 0 0 -7px -10px;
}

.page-home .general-content {
  padding-left: 25px;
  position: relative;
}

.page-home .general-content:before {
  display: block;
  content: '';
  width: 0;
  border-left: 1px solid #fff;
  position: absolute;
  top: -129px;
  bottom: 0;
  left: 0;
}

.page-home .general-content .heading {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
  color: #fff;
  padding: 0 0 4px;
  pointer-events: none;
}

.page-home .general-content .sub-title {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 20px;
  pointer-events: none;
}

.page-home .row-btn {
  padding: 47px 0 0 0;
}

.page-home .btn {
  pointer-events: all;
}

.page-home .page-footer {
  padding-top: 10px;
  position: relative;
  padding: 0 0 30px;
}

.page-home .page-footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-home .page-footer .foot-heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.17;
  position: relative;
  padding: 10px 0 0;
}

.page-home .page-footer .foot-heading:before {
  display: block;
  content: '';
  width: 30px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.page-home .page-footer .socials {
  margin: -19px -25px 0 0;
  text-align: center;
}

.page-home .page-footer {
}

.page-home .pic-holder {
  position: absolute;
  top: -25px;
  right: 42px;
  z-index: 0;
}

.page-home .pic-holder {
  opacity: 0;
  -webkit-transition: opacity 5.5s ease;
  transition: opacity 5.5s ease;
}

.page-home.active .pic-holder {
  opacity: 1;
  width: 512px;
  height: 512px;
}

.page-home .pic-holder canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.page-home .socials {
}

.page-home .socials .item {
  margin: 0 0 10px;
}

.page-home .socials .item .icon {
}

.page-home .socials .item a:hover {
  color: #0045FF;
}

.page-home .go-next {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.page-home .go-next .text-go-next {
  display: none;
  background: #000;
  -webkit-box-shadow: 0 0 0 30px #000;
  box-shadow: 0 0 0 30px #000;
  font-size: 14px;
  text-transform: uppercase;
}

.page-home .go-next .icon-go-next {
  background: #000;
  -webkit-box-shadow: 0 0 0 30px #000;
  box-shadow: 0 0 0 30px #000;
}

@media (max-height: 690px) {
  .page-home .page-content {
    padding-top: 94px;
  }

  .page-home .page-layout {
    min-height: calc(100vh - 95px);
    min-height: calc(var(--vh, 1vh) * 100 - 95px);
  }
}

@media (max-width: 1280px) {
  .page-home .page-footer .socials {
    margin-right: 0;
  }
}

@media (max-width: 780px) {
  .page-home .global-title {
    line-height: 1.15;
    padding: 0 0 0;
  }

  .page-home .global-title .smaller {
    letter-spacing: 4.1px;
    margin-top: 16px;
  }

  .page-home .global-title .letter-affix:after {
    display: none;
  }

  .page-home .go-next .text-go-next {
    display: block;
  }

  .page-home .go-next .icon-go-next {
    display: none;
  }

  .page-home .page-lines .line:first-child {
    display: block;
  }

  .page-home .wrap {
    padding: 0;
    padding: 0 90px;
  }

  .page-home .page-footer .socials {
    margin: 25px -12px 0 0;
  }

  .page-home .general-content {
    padding-top: 20px;
  }

  .page-home .general-content:before {
    top: -68px;
  }

  .page-home .row-btn {
    padding: 53px 0 0;
  }

  .page-home .page-footer {
    margin-bottom: 20px;
  }

  .page-home .go-next {
    bottom: 20px;
  }

  .page-home .pic-holder {
    top: auto;
    right: 0;
    bottom: 81px;
    width: 373px;
    height: 475.6px;
  }
}

@media (max-width: 740px) {
  .page-home .global-title {
    line-height: 1;
  }

  .page-home .global-title .second-word {
    font-size: 70px;
  }

  .page-home .general-content:before {
    top: -110px;
  }
}

@media (max-width: 576px) {
  .page-home .wrap {
    padding: 0 20px;
  }

  .page-home .global-title {
    font-size: 60px;
    line-height: 52px;
  }

  .page-home .global-title .second-word {
    font-size: 35px;
    letter-spacing: 4.2px;
    display: block;
  }

  .page-home .global-title .letter-affix:after {
    display: block;
    width: 8px;
    height: 5px;
    bottom: 100%;
    margin: 0 0 -5px -7px;
  }

  .page-home .global-title .smaller {
    letter-spacing: 1.58px;
    font-size: 22px;
    line-height: 36px;
    padding-left: 0;
    margin-top: 0;
  }

  .page-home .general-content {
    padding-top: 31px;
  }

  .page-home .general-content:before {
    display: none;
  }

  .page-home .general-content .heading {
    padding: 0 0 14px;
    line-height: 29px;
    font-size: 17px;
    max-width: 240px;
  }

  .page-home .general-content {
    padding-left: 0;
    line-height: 1.47;
    letter-spacing: 0.08px;
    font-size: 15px;
  }

  .page-home .general-content .sub-title {
    max-width: 280px;
    font-size: 15px;
  }

  .page-home .page-footer .foot-heading {
    display: none;
  }

  .page-home .page-footer .socials {
    display: none;
  }

  .page-home .row-btn {
    padding: 26px 0 0;
    text-align: center;
  }

  .page-home .go-next .text-go-next {
    font-size: 9px;
    line-height: 10px;
  }

  .page-home .go-next .text-go-next:before {
    display: block;
    content: '';
    width: 0;
    height: 45px;
    border: solid 1px #ffffff;
    position: absolute;
    bottom: 100%;
    margin: 0 0 10px -1px;
    left: 50%;
  }
}

@media (max-width: 576px) and (max-height: 560px) {
  .page-home .go-next .text-go-next:before {
    display: none;
  }
}

/* Page Home end*/

/* Page What we offer */
.page-what-we-offer .page-content {
  padding-top: 94px;
}

.page-what-we-offer .intro {
  position: relative;
  padding-bottom: 227px;
  background-image: url(../images/what-we-offer/intro/bg-s.svg), url(../images/what-we-offer/intro/planet/planet.png);
  background-position: calc(50% - 565px) calc(50% - -70px), calc(50% - -436px) calc(50% - 101px);
  background-size: auto, auto, 100% 260px;
  background-repeat: no-repeat;
}

.page-what-we-offer .intro:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../images/what-we-offer/intro/wave.png);
  background-position: 50% 100%;
  background-size: 100% 260px;
  background-repeat: no-repeat;
  z-index: -2;
}

.page-what-we-offer .intro .page-title {
  position: relative;
  max-width: 544px;
  height: 47px;
  margin: 0 auto 55px;
}

.page-what-we-offer .intro .page-title .title {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-what-we-offer .intro .page-title svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #fff;
  stroke: rgba(0, 0, 0, 0)
}

.page-what-we-offer .intro .blockquote {
  border-left: 2px solid #fff;
  margin-bottom: 93px;
  max-width: 635px;
  padding-left: 27px;
}

.page-what-we-offer .intro .blockquote .text {
  margin-bottom: 17px;
}

.page-what-we-offer .intro .blockquote .quote {
  max-width: 475px;
  font-size: 15px;
  opacity: 0.6;
}

.page-what-we-offer .intro .blockquote .quote i {
  display: block;
  margin-bottom: 4px;
  font-style: italic;
}

.page-what-we-offer .intro .blockquote .quote .name {
  display: block;
  font-size: 14px;
  text-align: right;
}

.page-what-we-offer .intro .features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 780px;
  height: 276px;
}

.page-what-we-offer .intro .features-list .item {
  margin: 0 15px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.page-what-we-offer .intro .features-list .item.payment {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.page-what-we-offer .intro .features-list .item svg {
  display: block;
  margin: 0 auto 4px;
}

.page-what-we-offer .intro .features-list .item .cls-1 {
  opacity: .561;
  fill: url(#linear-gradient)
}

.page-what-we-offer .intro .features-list .item .cls-2 {
  fill: #fff
}

.page-what-we-offer .intro .features-list .item.development .cls-3 {
  -webkit-filter: url(#Ellipse_88);
  filter: url(#Ellipse_88)
}

.page-what-we-offer .intro .features-list .item.payment .cls-3 {
  -webkit-filter: url(#Ellipse_89);
  filter: url(#Ellipse_89)
}

.page-what-we-offer .intro .features-list .item.legal .cls-4 {
  -webkit-filter: url(#Ellipse_90);
  filter: url(#Ellipse_90)
}

.page-what-we-offer .expertise-area {
  position: relative;
  padding-top: 94px
}

.page-what-we-offer .expertise-area:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#090e26), to(#020113));
  background-image: linear-gradient(#090e26, #020113);
  z-index: -2;
}

.page-what-we-offer .expertise-area .section-title {
  margin-bottom: 46px;
}

.page-what-we-offer .expertise-area .areas > .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-what-we-offer .expertise-area .areas > .item-2 {
  padding-bottom: 140px;
}

.page-what-we-offer .expertise-area .areas > .item-3 {
  margin-top: -82px;
  padding-bottom: 146px;
}

.page-what-we-offer .expertise-area .areas > .item .pic-holder {
  position: absolute;
  top: 53%;
  width: 100%;
  max-width: 50%;
}

.page-what-we-offer .expertise-area .areas > .item-1 .pic-holder {
  left: 0;
}

.page-what-we-offer .expertise-area .areas > .item-2 .pic-holder {
  right: -90px;
}

.page-what-we-offer .expertise-area .areas > .item-3 .pic-holder {
  top: 43%;
  left: 0;
}

.page-what-we-offer .expertise-area .areas > .item .pic-holder img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-what-we-offer .expertise-area .areas > .item .content {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-what-we-offer .expertise-area .areas > .item-1 .content {
  margin-left: auto;
  padding: 60px 0 0 35px;
}

.page-what-we-offer .expertise-area .areas > .item-2 .content {
  margin-right: auto;
  padding: 62px 35px 0 0;
  text-align: right;
}

.page-what-we-offer .expertise-area .areas > .item-3 .content {
  margin-left: auto;
  padding: 49px 0 0 35px;
}

.page-what-we-offer .expertise-area .areas .heading {
  position: relative;
  margin-bottom: 13px;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
}

.page-what-we-offer .expertise-area .areas .heading:before {
  content: '';
  position: absolute;
  top: -9px;
  left: -63px;
  width: 56px;
  height: 56px;
  background-image: url(../images/what-we-offer/expertise-area/bubble.svg);
  -webkit-transform: translate(-112%, -50%);
  transform: translate(-112%, -50%);
  -webkit-animation: pulsate-bck 0.5s ease-in-out infinite both;
  animation: pulsate-bck 0.5s ease-in-out infinite both;
}

.page-what-we-offer .expertise-area .areas .item-2 .heading:before {
  top: -9px;
  left: auto;
  right: -63px;
  -webkit-transform: translate(112%, -50%);
  transform: translate(112%, -50%);
  -webkit-animation: pulsate-bck 0.5s 0.25s ease-in-out infinite both;
  animation: pulsate-bck 0.5s 0.25s ease-in-out infinite both;
}

.page-what-we-offer .expertise-area .areas .description {
  margin-bottom: 18px;
}

.page-what-we-offer .expertise-area .areas .features-list {
  padding-left: 61px;
}

.page-what-we-offer .expertise-area .areas > .item-2 .features-list {
  display: inline-block;
  text-align: left;
}

.page-what-we-offer .expertise-area .areas .features-list .item {
  position: relative;
  padding-left: 9px;
}

.page-what-we-offer .expertise-area .areas .features-list .item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: .6;
}

.page-what-we-offer .expertise-area .areas .features-list .item:nth-child(1):before {
  width: 42px;
}

.page-what-we-offer .expertise-area .areas .features-list .item:nth-child(2):before {
  width: 28px;
}

.page-what-we-offer .expertise-area .areas .features-list .item:nth-child(3):before {
  width: 24px;
}

.page-what-we-offer .expertise-area .areas .features-list .item:nth-child(4):before {
  width: 16px;
}

.page-what-we-offer .expertise-area .areas .features-list .item:nth-child(5):before {
  width: 12px;
}

.page-what-we-offer .expertise-area .areas .features-list .item:nth-child(6):before {
  width: 8px;
}

.page-what-we-offer .grow-business {
  background: #000 url(../images/what-we-offer/grow-business/banner.jpg) no-repeat 100% 50%;
  padding: 40px 0 75px;
}

.page-what-we-offer .grow-business .wrap {
  max-width: 920px;
}

@keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media (max-width: 1150px) {
  .page-what-we-offer .intro {
    background-position: calc(50% - 405px) calc(50% - -70px), calc(50% - -275px) calc(50% - 101px);
  }

  .page-what-we-offer .intro .features-list {
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .page-what-we-offer .grow-business {
    background-size: cover;
  }
}

@media (max-width: 780px) {
  .page-what-we-offer .intro {
    background-position: calc(50% - 336px) calc(50% - -70px), calc(50% - -131px) calc(50% - 101px);
  }

  .page-what-we-offer .intro .blockquote {
    margin: 0 auto 58px auto;
    max-width: 572px;
    border: none;
  }

  .page-what-we-offer .intro .blockquote .text {
    position: relative;
    margin-bottom: 28px;
  }

  .page-what-we-offer .intro .blockquote .text:before {
    content: '';
    position: absolute;
    left: -28px;
    height: 100%;
    border-left: 1px solid #fff;
  }

  .page-what-we-offer .intro .features-list .item {
    margin: 0 auto 0;
  }

  .page-what-we-offer .expertise-area {
    padding-bottom: 50px;
  }

  .page-what-we-offer .expertise-area .areas {
    margin: auto;
    max-width: calc(100% - 150px);
  }

  .page-what-we-offer .expertise-area .areas > .item .content {
    width: 100%;
  }

  .page-what-we-offer .expertise-area .areas > .item-1 {
    padding-bottom: 111px;
  }

  .page-what-we-offer .expertise-area .areas > .item-2 {
    padding-bottom: 269px;
  }

  .page-what-we-offer .expertise-area .areas > .item-3 {
    padding-bottom: 212px;
  }

  .page-what-we-offer .expertise-area .areas > .item .pic-holder img {
    position: static;
    -webkit-transform: none;
    transform: none;
  }

  .page-what-we-offer .expertise-area .areas > .item-1 .pic-holder {
    top: auto;
    left: auto;
    right: -17px;
    bottom: 0;
    max-width: 337px;
  }

  .page-what-we-offer .expertise-area .areas > .item-2 .pic-holder {
    top: auto;
    right: auto;
    left: 54px;
    bottom: 0;
    max-width: 319px;
  }

  .page-what-we-offer .expertise-area .areas > .item-3 .pic-holder {
    top: auto;
    right: 15px;
    left: auto;
    bottom: 0;
    max-width: 225px;
  }

  .page-what-we-offer .page-lines .line:first-child {
    display: block;
  }
}

@media (max-width: 576px) {
  .page-what-we-offer {
    background-image: url(../images/what-we-offer/intro/planet/planet.png);
    background-position: calc(100% - -140px) -0.7%;
    background-size: 393px;
    background-repeat: no-repeat;
  }

  .page-what-we-offer .intro {
    padding-bottom: 127px;
    background-image: url(../images/what-we-offer/intro/bg-s.svg);
    background-position: 100% calc(100% - 41px);
    background-size: 191px;
  }

  .page-what-we-offer .intro:before {
    background-size: 100% 85px;
  }

  .page-what-we-offer .intro .blockquote {
    margin-bottom: 36px;
    padding: 0;
  }

  .page-what-we-offer .intro .blockquote .text:before {
    display: none;
  }

  .page-what-we-offer .intro .blockquote .quote {
    max-width: 241px;
    margin-left: auto;
  }

  .page-what-we-offer .intro .features-list {
    display: block;
    height: auto;
    text-align: center;
  }

  .page-what-we-offer .intro .features-list .item {
    margin-bottom: 28px;
  }

  .page-what-we-offer .expertise-area {
    padding-top: 20px;
  }

  .page-what-we-offer .expertise-area .section-title {
    margin-bottom: 23px;
  }

  .page-what-we-offer .expertise-area .areas {
    max-width: 100%;
  }

  .page-what-we-offer .expertise-area .areas .features-list {
    padding-left: 42px;
  }

  .page-what-we-offer .expertise-area .areas > .item-1 {
    margin-bottom: 29px;
    padding-bottom: 244px;
  }

  .page-what-we-offer .expertise-area .areas > .item-2 {
    margin-bottom: 52px;
    padding-bottom: 337px;
  }

  .page-what-we-offer .expertise-area .areas > .item-3 {
    margin-bottom: 42px;
    padding-bottom: 263px;
  }

  .page-what-we-offer .expertise-area .areas > .item .pic-holder {
    left: 0;
    right: 0;
    max-width: none;
  }

  .page-what-we-offer .expertise-area .areas > .item .pic-holder img {
    margin: auto;
  }

  .page-what-we-offer .expertise-area .areas > .item-1 .pic-holder img {
    max-width: 304px;
  }

  .page-what-we-offer .expertise-area .areas > .item-2 .pic-holder img {
    max-width: 304px;
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }

  .page-what-we-offer .expertise-area .areas > .item-3 .pic-holder img {
    max-width: 226px;
  }

  .page-what-we-offer .expertise-area .areas > .item .content {
    padding: 0;
  }

  .page-what-we-offer .expertise-area .areas > .item-2 .content {
    text-align: left;
  }

  .page-what-we-offer .grow-section .btn {
    padding: 17px 20px;
  }
}

/* Page What we offer */

/* Page Who we are */
.page-who-we-are .intro {
  padding-bottom: 90px;
  background-image: url(../images/who-we-are/intro/bg-w.svg), -webkit-gradient(linear, left top, left bottom, color-stop(1%, #000000), to(#06041c));
  background-image: url(../images/who-we-are/intro/bg-w.svg), linear-gradient(to bottom, #000000 1%, #06041c 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: left -100px bottom -30px, 50% 0;
}

.page-who-we-are .page-title {
  position: relative;
  width: 430px;
  height: 48px;
  margin: 0 auto;
}

.page-who-we-are .page-title .title {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-who-we-are .page-title svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-who-we-are .intro .page-who-we-are-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 60px;
  padding-right: 150px;
}

.page-who-we-are .intro .main {
}

.page-who-we-are .intro .main-line {
  position: absolute;
  left: calc(50% - 74px);
  top: 0;
  display: block;
  width: 1px;
  height: calc(100% - 85px);
  background-color: #fff;
}

.page-who-we-are .intro .col {
  position: relative;
}

.page-who-we-are .intro .col-1 {
  width: 530px;
  -webkit-transform: translateX(296px);
  transform: translateX(296px);
}

.page-who-we-are .intro .col-2 {
  width: 500px;
  -webkit-transform: translateX(-280px);
  transform: translateX(-280px);
  margin-top: 124px;
  text-align: right;
}

.page-who-we-are .intro .col .pic-holder {
  position: absolute;
}

.page-who-we-are .intro .col-1 .pic-holder {
  top: 0;
  -webkit-transform: translateX(-536px);
  transform: translateX(-536px);
}

.page-who-we-are .intro .col-2 .pic-holder {
  top: -96px;
  right: 0;
  -webkit-transform: translateX(631px);
  transform: translateX(631px);
}

.page-who-we-are .intro .banner-holder {
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.page-who-we-are .intro .banner {
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.page-who-we-are.active .intro .col-1 .banner {
  -webkit-animation: showWhoWeAreBanner 1s ease-in-out 0.5s forwards;
  animation: showWhoWeAreBanner 1s ease-in-out 0.5s forwards;
}

.page-who-we-are.active .intro .col-2 .banner {
  -webkit-animation: showWhoWeAreBanner 1s ease-in-out 1.5s forwards;
  animation: showWhoWeAreBanner 1s ease-in-out 1.5s forwards;
}

.page-who-we-are .intro .col-2 .square-circle {
  position: absolute;
  left: 397px;
  top: -33px;
  width: 222px;
  height: 225px;
}

.page-who-we-are .intro .col .heading {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  opacity: 0;
}

.page-who-we-are .intro .col .description {
  margin-top: 12px;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  opacity: 0;
  letter-spacing: 0.2px;
}

.page-who-we-are .intro .btn-holder {
  margin: 20px -23px 0 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  opacity: 0;
}

.page-who-we-are .intro .btn {
  padding: 17px 25px;
}

.great-things {
  background: #08152d url(../images/who-we-are/great-things/banner-1920.jpg) no-repeat right top;
  background-size: cover;
}

.page-who-we-are.active .intro .col-1 .heading {
  -webkit-animation: showWhoWeAreBanner 1s ease-in-out 0.3s forwards;
  animation: showWhoWeAreBanner 1s ease-in-out 0.3s forwards;
}

.page-who-we-are.active .intro .col-1 .description {
  -webkit-animation: showWhoWeAreBanner 1s ease-in-out 0.3s forwards;
  animation: showWhoWeAreBanner 1s ease-in-out 0.3s forwards;
}

.page-who-we-are.active .intro .col-2 .heading {
  -webkit-animation: showWhoWeAreBanner 1s ease-in-out 1.3s forwards;
  animation: showWhoWeAreBanner 1s ease-in-out 1.3s forwards;
}

.page-who-we-are.active .intro .col-2 .description {
  -webkit-animation: showWhoWeAreBanner 1s ease-in-out 1.3s forwards;
  animation: showWhoWeAreBanner 1s ease-in-out 1.3s forwards;
}

.page-who-we-are.active .intro .col-2 .btn-holder {
  -webkit-animation: showWhoWeAreBanner 1s ease-in-out 1.4s forwards;
  animation: showWhoWeAreBanner 1s ease-in-out 1.4s forwards;
}

@-webkit-keyframes showWhoWeAreBanner {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes showWhoWeAreBanner {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .page-who-we-are .intro {
    background-position: right bottom -30px;
  }

  .page-who-we-are .page-title {
    width: 420px;
    height: 84px;
  }

  .page-who-we-are .intro .main {
    margin-top: 37px;
  }

  .page-who-we-are .intro .page-who-we-are-content {
    padding-right: 0;
  }

  .page-who-we-are .intro .main-line {
    display: none;
  }

  .page-who-we-are .intro .col-1 {
    width: 416px;
    -webkit-transform: translateX(-141px);
    transform: translateX(-141px);
  }

  .page-who-we-are .intro .col-1 .heading {
    width: 100%;
    max-width: 400px;
  }

  .page-who-we-are .intro .col-1 .pic-holder {
    -webkit-transform: translateX(460px);
    transform: translateX(460px);
  }

  .page-who-we-are .intro .col-2 {
    width: 370px;
    margin-top: 88px;
  }

  .page-who-we-are .intro .col-2 {
    -webkit-transform: translateX(168px);
    transform: translateX(168px);
    text-align: left;
  }

  .page-who-we-are .intro .col-2 .pic-holder {
    right: auto;
    top: 6px;
    -webkit-transform: translateX(-328px);
    transform: translateX(-328px);
  }

  .page-who-we-are .intro .btn-holder {
    margin-right: 0;
  }

  .page-who-we-are .intro .col-2 .square-circle {
    left: 74px;
    top: -24px;
  }
}

@media (max-width: 780px) {
  .page-who-we-are .page-title {
    width: 300px;
    height: 60px;
  }

  .page-who-we-are .intro {
    padding-bottom: 120px;
    background-size: 300px 213px;
    background-position: left -50px bottom 25px;
  }

  .page-who-we-are .intro .main {
    display: block;
    margin-top: 28px;
  }

  .page-who-we-are .intro .col {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    width: 100%;
  }

  .page-who-we-are .intro .col .heading {
    max-width: 100%;
  }

  .page-who-we-are .intro .col .pic-holder {
    position: static;
    margin-top: 20px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    text-align: center;
  }

  .page-who-we-are .intro .col-2 {
    margin-top: 30px;
  }

  .page-who-we-are .intro .col-2 .square-circle {
    display: none;
  }

  .page-who-we-are .intro .btn-holder {
    margin-top: 35px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .page-who-we-are .page-title {
    width: 255px;
    height: 51px;
  }
}

/* Page Who we are end */

/* Page Get in touch */

.form {
}

.form .form-control {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  font-family: inherit;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-material .row {
  min-height: 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0 5px;
}

.form-material .row-textarea {
  min-height: 109px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0 5px;
}

.form-material .form-group {
  position: relative;
}

.form-material .form-group:before {
  display: block;
  content: '';
  height: 0;
  width: 100%;
  overflow: hidden;
}

.form-material .form-group .control-label {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  top: 18px;
  left: 10px;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  line-height: 1.19;
}

.form-material .form-group:first-child .control-label {
  top: 10px
}

.form-material .form-group:nth-child(2) .control-label {
  top: 10px
}

.form-material .form-group .form-control {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #707070;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 17px 10px;
  -webkit-appearance: none;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.form-material .form-group .form-control:focus + .control-label,
.form-material .form-group.not-empty .form-control + .control-label {
  color: #1c8be0;
  font-size: 14px;
  -webkit-transform: translate3d(0, -18px, 0);
  transform: translate3d(0, -18px, 0);
}

.form-material .form-group.has-error .form-control:focus + .control-label,
.form-material .form-group.has-error.not-empty .form-control + .control-label {
  color: #b42133;
}

.form-material .form-group select.form-control {
  background: transparent url(../images/general/arr-select.svg) calc(100% - 10px) 50% no-repeat;
  background-size: 11px 17px;
}

.form-material .form-group .form-control:focus {
  outline: none;
  border-color: #1c8be0;
}

.form-material .form-group textarea.form-control {
  height: 65px;
  resize: none;
  padding-top: 0;
  margin-top: 17px;
}

.form-material .form-group .form-control:focus + .control-label {
  opacity: 1;
}

.form-material .form-group textarea.form-control {
}

.form-material .form-group.has-error .form-control,
.form-material .form-group .form-control.wpcf7-not-valid {
  border-color: #b42133;
}

.form-material .form-group.has-error .control-label {
  color: #b42133;
}

.form-material.form-material-transparent .form-group .form-control {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.form-material.form-material-transparent .form-group.has-error .form-control,
.form-material.form-material-transparent .form-group .form-control.wpcf7-not-valid {
  border-color: #b42133;
}

.form .alert-message {
  display: none;
}

.form .alert-message,
.form-material .required {
  color: #65a0ff;
  font-size: 21px;
  position: relative;
  right: 4px;
  top: 4px;
}

.form .wpcf7-not-valid-tip {
  font-size: 11px;
  color: #b42133;
  letter-spacing: calc(1em * 0.1);
  padding: 3px 0 0;
}

.form .has-error .alert-message {
  display: block;
}

/*.form-success.form-material .form-group .form-control {border-color: #31cb84;}*/
.form-success.form-material .form-group .form-control:focus + .control-label,
.form-success.form-material .form-group.not-empty .form-control + .control-label {
  color: #1c8be0;
}

.form-material .form-group.has-error.not-empty .form-control + .control-label {
  color: #b42133;
}

.form-material .has-success .control-label {
  color: #31cb84 !important;
}

.form-material .has-success .form-control {
  border-color: #31cb84;
}

@media (max-width: 780px) {
  .color-transparent {
    color: transparent !important;
  }
}

.form-contact {
  width: 100%;
}

.form-contact .row {
}

.form-contact {
}

.form-contact {
}

.form-contact .row-btn {
  text-align: right;
  position: relative;
}

.form-contact .row-btn .notification {
  font-size: 12px;
  line-height: 1.17;
  display: none;
}

.form-contact .row-btn .notification-success {
  color: #31cb84;
}

.form-contact .row-btn .btn {
  padding: 13px 20px;
  min-width: 170px;
}

.form-contact.form-success .notification {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 3px;
}

@media (max-width: 780px) {
  .form-contact.form-success .notification {
    top: -23px;
    right: 0;
    text-align: center;
  }
}

.page-get-in-touch.active {
  min-height: calc(100vh - 53px);
  height: calc(var(--vh, 1vh) * 100 - 53px);
  position: relative;
}

.page-get-in-touch .page-title {
  position: relative;
  width: 462px;
  height: 48px;
  margin: 0 auto;
}

.page-get-in-touch .page-title .title {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-get-in-touch .page-title svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-get-in-touch .page-layout {
  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: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-get-in-touch .cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 -30px;
  padding: 64px 0 0;
}

.page-get-in-touch .cols .col {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 30px;
  width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.page-get-in-touch .contact-us {
}

.page-get-in-touch .contact-us-inner {
  position: relative;
  padding: 0 0 0 50px;
  width: 360px;
}

.page-get-in-touch.active .contact-us .decor {
  display: block;
  position: absolute;
  top: 20px;
  bottom: calc(100% - 20px);
  left: 0;
  width: 0;
  -webkit-animation: drawBorder 2s linear both;
  animation: drawBorder 2s linear both;
  overflow: hidden;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

@-webkit-keyframes drawBorder {
  0% {
    bottom: calc(100% - 20px);
  }
  75% {
    bottom: 20px;
    width: 0;
  }
  100% {
    bottom: 20px;
    width: 50%;
  }
}

@keyframes drawBorder {
  0% {
    bottom: calc(100% - 20px);
  }
  75% {
    bottom: 20px;
    width: 0;
  }
  100% {
    bottom: 20px;
    width: 50%;
  }
}

.page-get-in-touch .contact-us .heading {
  font-size: 35px;
  font-weight: 900;
  line-height: 2.34;
  letter-spacing: 0.11px;
  text-transform: uppercase;
  padding: 0 0 10px;
  text-align: center;
}

.page-get-in-touch {
  background-image: url(../images/get-in-touch/comet.png), url(../images/get-in-touch/map.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: 100% calc(50% - 100px), 100% 100%;
}

.page-get-in-touch .page-content {
  padding: 94px 0 0;
}

.page-get-in-touch .page-content-inner {
  z-index: 1;
  position: relative;
}

.page-get-in-touch .our-contacts {
}

.page-get-in-touch .our-contacts .our-contacts-inner {
  padding: 19px 0 0 27px;
  max-width: 250px;
}

.page-get-in-touch .our-contacts .heading {
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 0 22px;
}

.page-get-in-touch .our-contacts .contacts-list {
}

.page-get-in-touch .our-contacts .item {
  margin: 0 0 17px;
}

.page-get-in-touch .our-contacts .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-family: 'Open Sans', sans-serif;
}

.page-get-in-touch .our-contacts .link:hover {
  color: #1c8be0;
}

.page-get-in-touch .our-contacts .link-email {
}

.page-get-in-touch .our-contacts .link-phone {
}

.page-get-in-touch .our-contacts .svg-icon {
  margin-right: 15px;
}

.page-get-in-touch .our-contacts .svg-icon-envelope-open-text {
  width: 20px;
  height: 21px;
}

.page-get-in-touch .our-contacts .svg-icon-phone {
  width: 20px;
  height: 21px;
}

.page-get-in-touch .our-contacts .icon-flag {
  width: 17px;
  height: 11px;
  margin: 0 0 0 10px;
}

.page-get-in-touch .link-home {
  font-size: 18px;
  line-height: 1.17;
  text-transform: uppercase;
  -webkit-transform: rotateZ(-90deg) translate3d(0, -50%, 0);
  transform: rotateZ(-90deg) translate3d(0, -50%, 0);
  position: absolute;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  bottom: 0px;
  left: 50%;
  background-color: #000;
  -webkit-box-shadow: 0 0 0 20px #000;
  box-shadow: 0 0 0 20px #000;
}

.page-get-in-touch .link-home:hover {
  color: #1c8be0;
}

.page-get-in-touch {
}

@media (max-width: 780px) {
  .page-get-in-touch.active {
    height: auto;
  }

  .page-get-in-touch .cols {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
  }

  .page-get-in-touch .cols .col {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 0;
  }

  .page-get-in-touch .contact-us-inner {
    margin: 0 auto 52px;
  }

  .page-get-in-touch .our-contacts .our-contacts-inner {
    padding: 19px 0 0 40px;
    max-width: 220px;
    margin: 0 auto;
  }

  .page-get-in-touch {
    background-position: 100% calc(50% - 100px), 50% calc(100% - 100px);
  }

  .page-get-in-touch .contact-us .decor {
    max-width: 75px;
  }

  .form-contact .row-btn .btn {
    margin-right: 155px;
  }
}

@media (max-width: 576px) {
  .page-get-in-touch .page-title {
    width: 279px;
    height: 28px;
  }

  .page-get-in-touch .contact-us .heading {
    font-size: 26px;
    line-height: 1.2;
  }

  .page-get-in-touch.active .contact-us .decor {
    display: none;
  }

  .page-get-in-touch .contact-us-inner {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 17px;
    padding: 0 0 32px;
    border-bottom: 1px solid #707070;
  }

  .page-get-in-touch .cols {
    padding: 45px 0 0;
  }

  .page-get-in-touch .contact-us .heading {
    padding: 0 0 20px;
  }

  .form-contact .row-btn {
    padding: 10px 0 0;
    text-align: center;
  }

  .form-contact .row-btn .btn {
    margin: 0;
  }

  .page-get-in-touch .our-contacts .heading {
    padding: 0 0 30px;
  }

  .page-get-in-touch .our-contacts .our-contacts-inner {
    padding: 19px 0 150px 15px;
  }

  .page-get-in-touch {
    background-image: url(../images/get-in-touch/map.jpg);
    background-repeat: no-repeat;
    background-position: 50% 100%;
  }

  .page-get-in-touch .link-home {
    display: none;
  }
}

/* Page Get in touch end */

/* Page Get in touch */
.page-text {
  background: url(../images/text-pages/wave@2x.png) 50% 100% no-repeat;
  background-size: 100% auto;
}

.page-text .page-lines {
  z-index: 0;
}

.page-text .page-content {
  padding: 76px 0 0;
}

.page-text .page-title {
  padding: 0 0 57px;
}

.page-text .text {
  max-width: 1050px;
}

.content-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 18px;
}

.content-text:after {
  display: block;
  content: '';
  clear: both;
}

.content-text p:first-child {
  margin-top: 0;
}

.content-text p {
  margin: 15px 0 23px;
}

.content-text .list-regular {
  list-style: none;
  margin: 0 0 20px 0;
}

.content-text ul,
.content-text ol {
  margin: 0 0 20px 25px;
}

.content-text ul {
  list-style: outside disc;
}

.content-text ol {
  list-style: outside decimal;
}

.content-text li {
  margin-bottom: 15px;
}

.content-text b,
.content-text strong {
  font-weight: 700;
}

.content-text i,
.content-text em {
  font-style: italic;
}

.content-text h1:first-child,
.content-text h2:first-child,
.content-text h3:first-child,
.content-text h4:first-child,
.content-text h5:first-child,
.content-text h6:first-child {
  margin-top: 0;
}

.content-text h1 {
  line-height: 1.26;
  letter-spacing: 2.47px;
  font-size: 65px;
  font-weight: 900;
  margin: 40px 0 10px;
  line-height: 1.2em;
}

.content-text h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 15px;
  line-height: 1.2;
}

.content-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 10px;
  line-height: 1.2em;
}

.content-text h4,
.content-text h5,
.content-text h6 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 10px;
  line-height: 1.2em;
}

.content-text h5 + p,
.content-text h6 + p {
  margin-top: 0;
}

.content-text img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.content-text img.size-full {
  max-width: 100%;
  height: auto;
}

.content-text hr {
  border-top: 1px solid #cfcfcf;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

.content-text a {
  color: #1c8be0;
}

.content-text a:hover {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .page-text .wrap {
    padding: 0 90px;
  }
}

@media (max-width: 780px) {
  .page-text .page-title {
    padding: 0 0 22px;
  }
}

@media (max-width: 576px) {
  .page-text .page-title {
    font-size: 38px;
    padding: 0 0 5px;
  }

  .page-text .wrap {
    padding: 0 20px;
  }
}

/* Page Get in touch end */
/* PAGES END
------------------------------------------------------------------------------*/
body {
  overflow: hidden;
}

@media (max-width: 780px) {
  body {
    overflow: scroll;
  }
}

.scroll-content {
  overflow: scroll;
}

.scroll-content::-webkit-scrollbar {
  width: 0;
}
