body {
  margin: 0;
  line-height: 1.4;
  background-color: #fff;
  font-family: 'Lilita One', cursive;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h2 {
  font-size: 36px;
}

a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-family: inherit;
}

a:hover {
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 35px;
}

.none {
  opacity: 0;
}

.main {
  position: relative;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  margin: 0 auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Btn */
.btn {
  width: 220px;
  height: 55px;
  background-color: #6381EF;
  border: 1px solid rgba(42, 42, 42, 0.21);
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
  line-height: 32px;
}

.btn:link,
.btn:visited {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn:hover {
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.btn:active {
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn-bottom-animation-1 {
  -webkit-animation: comeFromBottom 1s ease-out .8s;
          animation: comeFromBottom 1s ease-out .8s;
}

.btn::after {
  content: "";
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 100px;
  display: inline-block;
  z-index: -1;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-white::after {
  background-color: #6381EF;
}

.btn-animation-1:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
          transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-big {
  width: 320px;
  height: 80px;
  font-size: 38px;
  line-height: 43px;
}

@-webkit-keyframes comeFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes comeFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* Header */
.header {
  background: url(../img/background_header.png) center no-repeat;
  background-size: cover;
}

.header__inner {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: rgba(39, 134, 164, 0.9);
  top: 0;
  right: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header__inner-content {
  padding: 0 15px;
  max-width: 1110px;
  width: 100%;
  height: 100px;
  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;
  margin: 0 auto;
}

.header__inner-right {
  max-width: 800px;
  width: 100%;
}

.header__inner-left {
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__inner-left img {
  margin-right: 15px;
}

.nav {
  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;
}

.nav__item {
  font-size: 28px;
  line-height: 32px;
  position: relative;
}

.nav__item:before {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  max-height: 0;
  color: #6381EF;
  content: attr(data-hover);
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}

.nav__item:hover:before {
  max-height: 100%;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__content-left {
  padding-top: 247px;
  width: 554px;
  margin-bottom: 104px;
  z-index: 1;
}

.header__content-right {
  padding-top: 145px;
}

.header__content-title {
  font-size: 64px;
  line-height: 73px;
  text-shadow: 1px 0 1px #000,  0 1px 1px #000,  -1px 0 1px #000,  0 -1px 1px #000;
}

.header__content-subtitle {
  margin: 23px 0 35px;
  font-size: 32px;
  line-height: 37px;
  color: #E3E3E3;
  text-shadow: 1px 0 1px #000,  0 1px 1px #000,  -1px 0 1px #000,  0 -1px 1px #000;
}

.content__cartoon {
  position: relative;
}

.home {
  z-index: 3;
  position: relative;
  top: 80px;
  right: 140px;
}

.shadow1 {
  position: absolute;
  width: 540px;
  height: 540px;
  top: -20px;
  left: -250px;
  z-index: 1;
}

.shadow2 {
  position: absolute;
  width: 399px;
  height: 91px;
  top: 495px;
  left: -145px;
  z-index: 1;
}

.backteries1 {
  position: absolute;
  top: 315px;
  left: -244px;
  z-index: 2;
}

.backteries2 {
  position: absolute;
  top: -30px;
  right: 196px;
  z-index: 2;
}

.backteries3 {
  position: absolute;
  top: 260px;
  right: -12px;
  z-index: 1;
}

/* Map */
.map {
  background-color: #72D9F8;
  position: relative;
  z-index: 2;
}

.map__vector {
  width: 100%;
  height: 122px;
  position: relative;
  top: -105px;
  background: url(../img/vector1.png) center no-repeat;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-size: cover;
}

.map__vector--rot {
  width: 100%;
  height: 122px;
  position: relative;
  top: 122px;
  background: url(../img/vector2.png) center no-repeat;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-size: cover;
}

.map__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.map__inner-left {
  margin-right: 26px;
}

.map__inner-title {
  font-size: 64px;
  line-height: 73px;
  color: #12808D;
}

.map__inner-text {
  margin: 30px 0 0 5px;
  font-size: 34px;
  line-height: 39px;
}

/* Forest */
.forest {
  margin: 0 auto;
  position: relative;
  height: 1620px;
  width: 100%;
  background: url(../img/background_forest.png) center no-repeat;
  background-size: cover;
}

.forest span {
  width: 1px;
  height: 1px;
  position: relative;
  top: 1px;
}

.forest__inner {
  max-width: 540px;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 610px;
  left: 170px;
  padding: 44px 31px 51px 43px;
  background-color: #6382EF;
  border-radius: 80px;
}

.forest__inner-title {
  font-size: 55px;
  line-height: 63px;
  margin-bottom: 54px;
  text-align: center;
}

.forest__inner-text {
  font-size: 36px;
  line-height: 41px;
  color: rgba(255, 255, 255, 0.89);
}

.ship {
  position: absolute;
  left: 450px;
  bottom: 30px;
}

.map__vector--blue {
  width: 100%;
  height: 122px;
  position: relative;
  top: -11px;
  background: url(../img/vector3.png) center no-repeat;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-size: cover;
  z-index: 3;
}

/* Slider */
.slider {
  background: url(../img/background_slider.png) center no-repeat;
  background-size: cover;
  margin-top: -122px;
  position: relative;
  z-index: 2;
}

.slider__inner {
  width: 100%;
  margin: 0 auto;
}

.slider__inner-title {
  margin-top: 130px;
  margin-bottom: 18px;
  text-align: center;
  font-size: 64px;
  line-height: 73px;
}

.slider__inner-subtitle {
  text-align: center;
  font-size: 36px;
  line-height: 41px;
  color: rgba(255, 255, 255, 0.89);
  margin-bottom: 34px;
}

.slider__item {
  width: 350px;
  height: 350px;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  margin: 40px auto;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}

.slider__cont {
  width: 100%;
  height: 122px;
  position: relative;
  z-index: 2;
  top: -5px;
  background: url(../img/vector4.png) center no-repeat;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-size: cover;
}

/* Whitepaper */
.whitepaper {
  background: url(../img/background_whitepaper.png) center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin-top: -125px;
}

.whitepaper__title {
  font-size: 64px;
  line-height: 73px;
  text-align: center;
  margin-bottom: 39px;
  margin-top: 130px;
}

.whitepaper__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 30px;
}

.whitepaper__inner-left {
  width: 540px;
  min-height: 770px;
  background: #6381EF;
  border-radius: 30px;
  padding: 22px 19px 32px 37px;
  margin-right: 20px;
}

.whitepaper__inner-right {
  width: 540px;
  min-height: 770px;
  background: #6381EF;
  border-radius: 30px;
  padding: 22px 22px 37px 24px;
}

.whitepaper__under {
  max-width: 1110px;
  width: 100%;
  min-height: 130px;
  font-size: 40px;
  line-height: 46px;
  text-align: center;
  padding: 19px 28px 7px 29px;
  background: #6381EF;
  border-radius: 30px;
}

/* Footer */
.footer {
  margin-top: 36px;
  height: 100px;
  background-color: rgba(39, 134, 164, 0.9);
  -webkit-box-shadow: 0px -4px 13px rgba(0, 0, 0, 0.13);
          box-shadow: 0px -4px 13px rgba(0, 0, 0, 0.13);
}

.footer__inner {
  width: 100%;
  height: 100px;
  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;
}

.copy {
  font-size: 14px;
  line-height: 16px;
}

.logo {
  width: 162px;
  height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 36px;
  line-height: 41px;
}

.logo img {
  margin-right: 13px;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 122px;
}

.social-item {
  border-radius: 50%;
  -webkit-transition: -webkit-box-shadow .2s linear;
  transition: -webkit-box-shadow .2s linear;
  transition: box-shadow .2s linear;
  transition: box-shadow .2s linear, -webkit-box-shadow .2s linear;
  width: 50px;
  height: 50px;
}

.social-item:hover {
  -webkit-box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.704);
          box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.704);
}

.burger {
  display: none;
}

@media (max-width: 1149px) {
  .whitepaper__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .whitepaper__inner-left {
    margin-bottom: 20px;
  }
}

@media (max-width: 1080px) {
  .whitepaper__inner-left {
    margin-right: 0;
  }
  .map__inner-left {
    margin-right: 0;
  }
  .map__inner-right img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  .header__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .header__content-title {
    text-align: center;
  }
  .header__content-right {
    position: absolute;
    top: 0;
    right: 40px;
    z-index: 0;
    opacity: .8;
  }
  .center {
    margin: 0 auto;
  }
  .burger {
    display: block;
    padding: 9px 2px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 20px;
    background: none;
    border: 0;
    cursor: pointer;
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
  .burger__item {
    display: block;
    width: 37px;
    height: 4px;
    background-color: #fff;
    font-size: 0;
    position: relative;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
  }
  .burger__item:before,
  .burger__item:after {
    content: "";
    height: 100%;
    background-color: #fff;
    position: absolute;
    right: 0;
    z-index: 1;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
  }
  .burger__item:before {
    width: 37px;
    top: -11px;
    -webkit-transition: top .25s .25s, -webkit-transform .25s;
    transition: top .25s .25s, -webkit-transform .25s;
    transition: transform .25s, top .25s .25s;
    transition: transform .25s, top .25s .25s, -webkit-transform .25s;
  }
  .burger__item:after {
    width: 37px;
    bottom: -10px;
    -webkit-transition: bottom .25s .25s, -webkit-transform .25s;
    transition: bottom .25s .25s, -webkit-transform .25s;
    transition: transform .25s, bottom .25s .25s;
    transition: transform .25s, bottom .25s .25s, -webkit-transform .25s;
  }
  .burger-active .burger__item {
    -webkit-transition-duration: 0.1s;
            transition-duration: 0.1s;
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
    background: transparent;
  }
  .burger-active .burger__item:before {
    top: 0;
    -webkit-transition: top .4s, -webkit-transform .25s .25s;
    transition: top .4s, -webkit-transform .25s .25s;
    transition: top .4s, transform .25s .25s;
    transition: top .4s, transform .25s .25s, -webkit-transform .25s .25s;
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
  }
  .burger-active .burger__item:after {
    bottom: 0;
    -webkit-transition: bottom .25s, -webkit-transform .25s .25s;
    transition: bottom .25s, -webkit-transform .25s .25s;
    transition: bottom .25s, transform .25s .25s;
    transition: bottom .25s, transform .25s .25s, -webkit-transform .25s .25s;
    -webkit-transform: rotateZ(-45deg);
            transform: rotateZ(-45deg);
  }
  .nav {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #2786a4;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .2s linear;
    transition: height .2s linear;
  }
  .nav__item {
    margin-right: 20px;
  }
  .nav__item:first-child {
    margin-top: 10px;
  }
  .nav .btn {
    margin-bottom: 10px;
  }
  .nav.show {
    height: 270px;
    -webkit-transition: height .2s linear;
    transition: height .2s linear;
  }
  .map__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .map__inner-left {
    text-align: center;
    margin-bottom: 20px;
  }
  .forest {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .forest__inner {
    position: static;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .ship {
    left: 20%;
  }
}

@media (max-width: 700px) {
  .header__content-right {
    display: none;
  }
  .whitepaper__under {
    font-size: 30px;
    line-height: 34px;
  }
  .whitepaper__inner {
    text-align: center;
  }
  .forest__inner-text {
    text-align: center;
  }
}

@media (max-width: 570px) {
  .footer__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .logo,
  .copy {
    margin: 0 20px;
  }
}
/*# sourceMappingURL=style.css.map */