﻿html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body,
p,
input,
ul,
figcaption,
figure {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

input {
  outline: none;
}

button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  outline: none;
  border: none;
  cursor: pointer;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 177%;
  color: #646F79;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  overflow-y: auto;
  background: #FFFFFF;
}

svg {
  display: block;
}

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

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

.scroll-up-wrapper {
  padding-bottom: 15px;
  visibility: hidden;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  z-index: 2222;
  cursor: pointer;
  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;
  position: fixed;
  width: 100px;
  height: 60px;
  bottom: 0px;
  right: 10px;
}

.chevron {
  pointer-events: none;
  position: absolute;
  width: 2.1rem;
  height: 0.48rem;
  opacity: 0;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
  -webkit-animation: move-chevron 3s ease-out infinite;
          animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
  -webkit-animation: move-chevron 3s ease-out 1s infinite;
          animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  -webkit-animation: move-chevron 3s ease-out 2s infinite;
          animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: #2684ff;
}

.chevron:before {
  left: 0;
  -webkit-transform: skewY(30deg);
          transform: skewY(30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skewY(-30deg);
          transform: skewY(-30deg);
}

@-webkit-keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    -webkit-transform: translateY(2.28rem);
            transform: translateY(2.28rem);
  }
  66.6% {
    opacity: 1;
    -webkit-transform: translateY(3.12rem);
            transform: translateY(3.12rem);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(4.8rem) scale(0.5);
            transform: translateY(4.8rem) scale(0.5);
  }
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    -webkit-transform: translateY(2.28rem);
            transform: translateY(2.28rem);
  }
  66.6% {
    opacity: 1;
    -webkit-transform: translateY(3.12rem);
            transform: translateY(3.12rem);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(4.8rem) scale(0.5);
            transform: translateY(4.8rem) scale(0.5);
  }
}

.cn {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
}

.wrap {
  width: 100%;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrap-big {
  width: 100%;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.h2 {
  margin: 0;
  font-weight: bold;
  font-size: 35px;
  line-height: 42px;
}

.h2:not(.blue) {
  color: #FFFFFF;
}

.h2.blue {
  color: #2684FF;
}

.h2.black {
  color: #151B26;
}

.h3 {
  margin: 0;
}

.btn-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 9px 12px;
  font-weight: 500;
  font-size: 16px;
  background: transparent;
  color: #151B26;
}

.btn-tr svg {
  display: inline-block;
  margin-right: 5px;
}

.btn-tr.btn-mob.close {
  width: 45px;
  padding: 10px;
  height: 45px;
  background: url("../image/close.svg") no-repeat center;
}

.btn-tr.btn-mob svg {
  margin: 0;
}

.btn-tr.nav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-tr.nav_link svg {
  margin: 0 0 0 10px;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 46px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  padding: 0 18px;
  font-size: 16px;
}

.btn:not(.blue) {
  color: #151B26;
  border-radius: 8px;
  background: #FFFFFF;
  -webkit-transition: background .25s;
  transition: background .25s;
}

.btn:not(.blue):hover {
  background: rgba(255, 255, 255, 0.85);
}

.btn svg {
  margin-right: 16px;
}

.btn.blue {
  color: #fff;
  border-radius: 4px;
  background: #2684FF;
  -webkit-transition: .25s;
  transition: .25s;
}

.btn.blue:hover {
  background: #00b3ff;
}

.btn-block {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  min-width: 236px;
  max-width: 284px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 73.5px;
  padding: 0 23px 0 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 5.6px 37px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5.6px 37px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-size: 14px;
  line-height: 130%;
  z-index: 1;
}

.btn-block .title {
  color: #46576E;
}

.btn-block .count {
  color: #90A1B8;
  text-transform: uppercase;
}

.btn-block > svg {
  display: block;
  margin-left: auto;
}

.plyr__control.plyr__control--overlaid {
  background: #2684FF;
}

.plyr--video .plyr__controls {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}

.btn-video-close {
  display: block;
  width: 32px !important;
  height: 32px;
  background: url("../image/close.svg") no-repeat center;
  background-size: cover;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  padding: 5px;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  border-radius: 50%;
}

.plyr:-webkit-full-screen .btn-video-close {
  visibility: visible;
  opacity: 1;
}

.plyr:-moz-full-screen .btn-video-close {
  visibility: visible;
  opacity: 1;
}

.plyr:-ms-fullscreen .btn-video-close {
  visibility: visible;
  opacity: 1;
}

.plyr:fullscreen .btn-video-close {
  visibility: visible;
  opacity: 1;
}

.plyr__control.plyr__control--overlaid {
  padding: 22px;
}

.logo {
  display: block;
  width: 162px;
  height: 38px;
  background: url("../image/logo.svg") no-repeat center;
  background-size: contain;
}

.ico {
  display: block;
}

.head {
  position: fixed;
  top: 0;
  width: 100%;
  padding-top: 47px;
  padding-bottom: 47px;
  padding-right: 5px;
  z-index: 99;
  background: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
}

.head.mini {
  padding-top: 15px;
  padding-bottom: 15px;
}

.menu {
  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;
  height: 37px;
}

.menu_li {
  display: none;
}

.menu_li .btn {
  max-height: 40px;
}

.dropdown {
  position: relative;
}

.nav_link {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 35px;
  color: #151B26;
  background: transparent;
}

.nav_link.dropdown__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav_link.dropdown__toggle svg {
  -webkit-transition: .2s;
  transition: .2s;
  margin-left: 5px;
}

.dropdown__menu {
  position: absolute;
  top: calc(100% + 5px);
  max-width: 280px;
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  margin-right: 50%;
  visibility: hidden;
  opacity: 0;
  border-radius: 8px;
  -webkit-box-shadow: -7px 8px 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: -7px 8px 15px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
  min-width: 280px;
}

.dropdown.active .dropdown__menu {
  visibility: visible;
  opacity: 1;
}

.dropdown.active .nav_link {
  color: #2684ff;
}

.dropdown.active svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.dropdown.active path {
  stroke: #2684ff;
}

.dropdown__menu-it {
  line-height: 30px;
  font-size: 15px;
  color: #273951;
  -webkit-transition: background .2s linear;
  transition: background .2s linear;
}

.dropdown__menu-it:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #2684ff;
}

.dropdown__menu-link {
  padding: 6px 18px;
  display: block;
  color: inherit;
}

.mob-menu {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 0 65px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  text-align: center;
}

.mob-menu header {
  position: absolute;
}

.mob-menu.active {
  opacity: 1;
  visibility: visible;
}

.mob-menu.active .mob_menu_nav li {
  position: relative;
  -webkit-animation: fadeInRight .5s ease forwards;
          animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.mob-menu.active .mob_menu_nav li:nth-child(2) {
  -webkit-animation-delay: .45s;
          animation-delay: .45s;
}

.mob-menu.active .mob_menu_nav li:nth-child(3) {
  -webkit-animation-delay: .50s;
          animation-delay: .50s;
}

.mob-menu.active .mob_menu_nav li:nth-child(4) {
  -webkit-animation-delay: .55s;
          animation-delay: .55s;
}

.mob-menu.active .meet_ul li {
  position: relative;
  -webkit-animation: fadeInRight .5s ease forwards;
          animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.mob-menu.active .meet_ul li:nth-child(2) {
  -webkit-animation-delay: .65s;
          animation-delay: .65s;
}

.mob-menu.active .meet_ul li:nth-child(3) {
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
}

.mob-menu.active .meet_ul li:nth-child(4) {
  -webkit-animation-delay: .75s;
          animation-delay: .75s;
}

.mob-menu.active .meet_ul li:nth-child(5) {
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}

.mob-menu .meet_ul {
  margin: auto auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.mob-menu .meet_ul li {
  opacity: 0;
}

.mob-menu .wrap {
  padding-right: 5px;
}

.mob-menu .nav_link {
  margin-top: 45px;
  font-size: 28px;
  line-height: 35px;
  -webkit-transition: .25s;
  transition: .25s;
}

.mob-menu .nav_link:hover {
  color: #2684FF;
}

.mob-menu .nav_link:hover path {
  stroke: #2684ff;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.mob_menu_nav {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto 0;
  padding: 40px 0 50px;
}

.mob_menu_nav ul {
  height: 100%;
}

.mob_menu_nav li {
  opacity: 0;
}

.mob_menu_nav .nav_link.accord_toggle {
  padding-left: 30px;
}

.accord_menu {
  height: 0;
  opacity: 0;
  -webkit-transition: .25s;
  transition: .25s;
}

.accord.active .accord_menu {
  opacity: 1;
  height: 105px;
}

.accord_link {
  font-weight: 600;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
  color: #151B26;
}

#errorMsgDiv {
  position: absolute;
  top: -28px;
  color: #d20000;
  text-align: left;
  font-size: 13px;
}

.cn_form {
  position: relative;
}

.form__group input {
  color: #ffffff;
  padding: 0 16px;
  background: transparent;
  border: 1px solid #92C1FF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 46px;
  height: 46px;
  width: 100%;
}

.form__group input::-webkit-input-placeholder {
  color: #ffffff;
}

.form__group input::-moz-placeholder {
  color: #ffffff;
}

.form__group input:-ms-input-placeholder {
  color: #ffffff;
}

.form__group input:-moz-placeholder {
  color: #ffffff;
}

.form__group .btn {
  margin-top: 12px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 992px) and (max-height: 500px) {
  @-webkit-keyframes show-handle {
    0% {
      top: 97%;
    }
    to {
      top: 50%;
    }
  }
  @keyframes show-handle {
    0% {
      top: 97%;
    }
    to {
      top: 50%;
    }
  }
  .desc {
    display: none !important;
  }
  .plyr:not(:-webkit-full-screen) .plyr__controls {
    left: 44px;
    right: 66px;
    bottom: 56px;
    border-radius: 0 0 17px 17px;
    padding-bottom: 15px;
    -webkit-transform: none;
            transform: none;
  }
  .plyr:not(:-moz-full-screen) .plyr__controls {
    left: 44px;
    right: 66px;
    bottom: 56px;
    border-radius: 0 0 17px 17px;
    padding-bottom: 15px;
    transform: none;
  }
  .plyr:not(:-ms-fullscreen) .plyr__controls {
    left: 44px;
    right: 66px;
    bottom: 56px;
    border-radius: 0 0 17px 17px;
    padding-bottom: 15px;
    transform: none;
  }
  .plyr:not(:fullscreen) .plyr__controls {
    left: 44px;
    right: 66px;
    bottom: 56px;
    border-radius: 0 0 17px 17px;
    padding-bottom: 15px;
    -webkit-transform: none;
            transform: none;
  }
  .plyr:not(:-webkit-full-screen) .plyr__video-wrapper {
    height: 370px;
    width: 176px;
    margin-left: 46px;
    margin-top: 63px;
    border-radius: 0 0 17px 17px;
    -webkit-box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
            box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
    padding-bottom: 10px;
  }
  .plyr:not(:-moz-full-screen) .plyr__video-wrapper {
    height: 370px;
    width: 176px;
    margin-left: 46px;
    margin-top: 63px;
    border-radius: 0 0 17px 17px;
    box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
    padding-bottom: 10px;
  }
  .plyr:not(:-ms-fullscreen) .plyr__video-wrapper {
    height: 370px;
    width: 176px;
    margin-left: 46px;
    margin-top: 63px;
    border-radius: 0 0 17px 17px;
    box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
    padding-bottom: 10px;
  }
  .plyr:not(:fullscreen) .plyr__video-wrapper {
    height: 370px;
    width: 176px;
    margin-left: 46px;
    margin-top: 63px;
    border-radius: 0 0 17px 17px;
    -webkit-box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
            box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
    padding-bottom: 10px;
  }
  .plyr:not(:-webkit-full-screen) .plyr__controls__item.plyr__control[data-plyr=pip] {
    display: none;
  }
  .plyr:not(:-moz-full-screen) .plyr__controls__item.plyr__control[data-plyr=pip] {
    display: none;
  }
  .plyr:not(:-ms-fullscreen) .plyr__controls__item.plyr__control[data-plyr=pip] {
    display: none;
  }
  .plyr:not(:fullscreen) .plyr__controls__item.plyr__control[data-plyr=pip] {
    display: none;
  }
  .plyr:not(:-webkit-full-screen) .plyr__controls__item.plyr__menu {
    display: none;
  }
  .plyr:not(:-moz-full-screen) .plyr__controls__item.plyr__menu {
    display: none;
  }
  .plyr:not(:-ms-fullscreen) .plyr__controls__item.plyr__menu {
    display: none;
  }
  .plyr:not(:fullscreen) .plyr__controls__item.plyr__menu {
    display: none;
  }
  .plyr:not(:-webkit-full-screen) .plyr__controls__item.plyr__time--current.plyr__time {
    display: none;
  }
  .plyr:not(:-moz-full-screen) .plyr__controls__item.plyr__time--current.plyr__time {
    display: none;
  }
  .plyr:not(:-ms-fullscreen) .plyr__controls__item.plyr__time--current.plyr__time {
    display: none;
  }
  .plyr:not(:fullscreen) .plyr__controls__item.plyr__time--current.plyr__time {
    display: none;
  }
  .plyr:not(:-webkit-full-screen) .plyr__control {
    padding: 2px;
  }
  .plyr:not(:-moz-full-screen) .plyr__control {
    padding: 2px;
  }
  .plyr:not(:-ms-fullscreen) .plyr__control {
    padding: 2px;
  }
  .plyr:not(:fullscreen) .plyr__control {
    padding: 2px;
  }
  .plyr:not(:-webkit-full-screen) .plyr__control.plyr__control--overlaid {
    padding: 22px;
    left: 46%;
    top: 48%;
  }
  .plyr:not(:-moz-full-screen) .plyr__control.plyr__control--overlaid {
    padding: 22px;
    left: 46%;
    top: 48%;
  }
  .plyr:not(:-ms-fullscreen) .plyr__control.plyr__control--overlaid {
    padding: 22px;
    left: 46%;
    top: 48%;
  }
  .plyr:not(:fullscreen) .plyr__control.plyr__control--overlaid {
    padding: 22px;
    left: 46%;
    top: 48%;
  }
  .plyr {
    display: block;
    max-width: 290px;
    height: 490px;
    width: 100%;
    position: absolute;
    top: 0;
    left: calc(50% - 140px);
    background: url(../image/sect_2-min.png) no-repeat;
    background-size: cover;
  }
  .plyr:-webkit-full-screen .plyr__poster {
    display: none;
  }
  .plyr:-moz-full-screen .plyr__poster {
    display: none;
  }
  .plyr:-ms-fullscreen .plyr__poster {
    display: none;
  }
  .plyr:fullscreen .plyr__poster {
    display: none;
  }
  .plyr__video-wrapper {
    background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fcfdfd));
    background: linear-gradient(0deg, #fff, #fcfdfd);
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .plyr__control.plyr__control--overlaid {
    background: #2684FF;
  }
  .plyr__poster {
    background: transparent;
    background-repeat: no-repeat;
    background-size: cover;
  }
  video.player {
    height: 380px;
    vertical-align: middle;
    width: calc(100% - 4px);
    margin-left: 2px;
    opacity: 0.9;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .front_img {
    position: relative;
    overflow: hidden;
    height: inherit;
    -webkit-transform: translate3d(0px, 100%, 0px);
            transform: translate3d(0px, 100%, 0px);
  }
  .front_img .img {
    -webkit-transform: translate3d(0px, -100%, 0px);
            transform: translate3d(0px, -100%, 0px);
  }
}

@media (max-width: 767px) {
  .front_img {
    -webkit-transform: translate3d(0px, 100%, 0px);
            transform: translate3d(0px, 100%, 0px);
  }
  .front_img .img {
    -webkit-transform: translate3d(0px, -100%, 0px);
            transform: translate3d(0px, -100%, 0px);
  }
  @-webkit-keyframes show-handle {
    0% {
      top: 97%;
    }
    to {
      top: 50%;
    }
  }
  @keyframes show-handle {
    0% {
      top: 97%;
    }
    to {
      top: 50%;
    }
  }
  .desc {
    display: none !important;
  }
  .plyr:not(:-webkit-full-screen) .plyr__controls {
    left: 44px;
    right: 66px;
    bottom: 56px;
    border-radius: 0 0 17px 17px;
    padding-bottom: 15px;
    -webkit-transform: none;
            transform: none;
  }
  .plyr:not(:-moz-full-screen) .plyr__controls {
    left: 44px;
    right: 66px;
    bottom: 56px;
    border-radius: 0 0 17px 17px;
    padding-bottom: 15px;
    transform: none;
  }
  .plyr:not(:-ms-fullscreen) .plyr__controls {
    left: 44px;
    right: 66px;
    bottom: 56px;
    border-radius: 0 0 17px 17px;
    padding-bottom: 15px;
    transform: none;
  }
  .plyr:not(:fullscreen) .plyr__controls {
    left: 44px;
    right: 66px;
    bottom: 56px;
    border-radius: 0 0 17px 17px;
    padding-bottom: 15px;
    -webkit-transform: none;
            transform: none;
  }
  .plyr:not(:-webkit-full-screen) .plyr__video-wrapper {
    height: 370px;
    width: 176px;
    margin-left: 46px;
    margin-top: 63px;
    border-radius: 0 0 17px 17px;
    -webkit-box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
            box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
    padding-bottom: 10px;
  }
  .plyr:not(:-moz-full-screen) .plyr__video-wrapper {
    height: 370px;
    width: 176px;
    margin-left: 46px;
    margin-top: 63px;
    border-radius: 0 0 17px 17px;
    box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
    padding-bottom: 10px;
  }
  .plyr:not(:-ms-fullscreen) .plyr__video-wrapper {
    height: 370px;
    width: 176px;
    margin-left: 46px;
    margin-top: 63px;
    border-radius: 0 0 17px 17px;
    box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
    padding-bottom: 10px;
  }
  .plyr:not(:fullscreen) .plyr__video-wrapper {
    height: 370px;
    width: 176px;
    margin-left: 46px;
    margin-top: 63px;
    border-radius: 0 0 17px 17px;
    -webkit-box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
            box-shadow: inset 0 -4px 5px rgba(0, 0, 0, 0.28);
    padding-bottom: 10px;
  }
  .plyr:not(:-webkit-full-screen) .plyr__controls__item.plyr__control[data-plyr=pip] {
    display: none;
  }
  .plyr:not(:-moz-full-screen) .plyr__controls__item.plyr__control[data-plyr=pip] {
    display: none;
  }
  .plyr:not(:-ms-fullscreen) .plyr__controls__item.plyr__control[data-plyr=pip] {
    display: none;
  }
  .plyr:not(:fullscreen) .plyr__controls__item.plyr__control[data-plyr=pip] {
    display: none;
  }
  .plyr:not(:-webkit-full-screen) .plyr__controls__item.plyr__menu {
    display: none;
  }
  .plyr:not(:-moz-full-screen) .plyr__controls__item.plyr__menu {
    display: none;
  }
  .plyr:not(:-ms-fullscreen) .plyr__controls__item.plyr__menu {
    display: none;
  }
  .plyr:not(:fullscreen) .plyr__controls__item.plyr__menu {
    display: none;
  }
  .plyr:not(:-webkit-full-screen) .plyr__controls__item.plyr__time--current.plyr__time {
    display: none;
  }
  .plyr:not(:-moz-full-screen) .plyr__controls__item.plyr__time--current.plyr__time {
    display: none;
  }
  .plyr:not(:-ms-fullscreen) .plyr__controls__item.plyr__time--current.plyr__time {
    display: none;
  }
  .plyr:not(:fullscreen) .plyr__controls__item.plyr__time--current.plyr__time {
    display: none;
  }
  .plyr:not(:-webkit-full-screen) .plyr__control {
    padding: 2px;
  }
  .plyr:not(:-moz-full-screen) .plyr__control {
    padding: 2px;
  }
  .plyr:not(:-ms-fullscreen) .plyr__control {
    padding: 2px;
  }
  .plyr:not(:fullscreen) .plyr__control {
    padding: 2px;
  }
  .plyr:not(:-webkit-full-screen) .plyr__control.plyr__control--overlaid {
    padding: 22px;
    left: 46%;
    top: 48%;
  }
  .plyr:not(:-moz-full-screen) .plyr__control.plyr__control--overlaid {
    padding: 22px;
    left: 46%;
    top: 48%;
  }
  .plyr:not(:-ms-fullscreen) .plyr__control.plyr__control--overlaid {
    padding: 22px;
    left: 46%;
    top: 48%;
  }
  .plyr:not(:fullscreen) .plyr__control.plyr__control--overlaid {
    padding: 22px;
    left: 46%;
    top: 48%;
  }
  .plyr {
    display: block;
    max-width: 290px;
    height: 490px;
    width: 100%;
    position: absolute;
    top: 0;
    left: calc(50% - 140px);
    background: url(../image/sect_2-min.png) no-repeat;
    background-size: cover;
  }
  .plyr:-webkit-full-screen .plyr__poster {
    display: none;
  }
  .plyr:-moz-full-screen .plyr__poster {
    display: none;
  }
  .plyr:-ms-fullscreen .plyr__poster {
    display: none;
  }
  .plyr:fullscreen .plyr__poster {
    display: none;
  }
  .plyr__video-wrapper {
    background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fcfdfd));
    background: linear-gradient(0deg, #fff, #fcfdfd);
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .plyr__control.plyr__control--overlaid {
    background: #2684FF;
  }
  .plyr__poster {
    background: transparent;
    background-repeat: no-repeat;
    background-size: cover;
  }
  video.player {
    height: 380px;
    vertical-align: middle;
    width: calc(100% - 4px);
    margin-left: 2px;
    opacity: 0.9;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.plyr.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: none;
  z-index: 999;
  background: #ffffff;
}

.plyr.active .plyr__video-wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

.plyr.active video.player {
  width: 100%;
  margin: 0;
  height: 100vh;
}

.plyr.active .btn-video-close {
  opacity: 1;
  visibility: visible;
}

.plyr.active .plyr__controls {
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0;
}

@media (max-width: 1099px) {
  .desc-full {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .mob-full {
    display: none !important;
  }
  .sect_1 .cn_info {
    max-width: 398px !important;
  }
}

.masternode-title {
  text-align: center;
  color: #283950;
  font-weight: bold;
  font-size: 30px;
}

.masternode-image {
  max-width: 450px;
  margin: 0 auto;
}

.masternode-image img {
  width: 100%;
}

.masternode-content-title {
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
  color: #151B26;
}

.masternode-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.masternode-content-item {
  margin-top: 30px;
  width: 550px;
}

.masternode-content-item:nth-child(2n) {
  margin-left: 100px;
}

.masternode-content-text {
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  color: #646F79;
}

.masternode-content-info {
  margin-top: auto;
  padding: 10px;
  border: 1px solid #22D089;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.masternode-content-info-desc {
  max-width: 150px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #00D482;
}

.masternode-content-info-percent {
  font-weight: 600;
  font-size: 51px;
  line-height: 55px;
  color: #22D089;
}

.masternode-content-info-of-block {
  font-weight: normal;
  font-size: 18px;
  line-height: 20px;
  color: #646F79;
}

.masternode-content-item:nth-child(2n) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 60px !important;
}

.masternode-content-item:nth-child(2n) .masternode-content-info-desc {
  max-width: 190px !important;
}

@media (max-width: 768px) {
  .masternode-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .masternode-content-item {
    width: 100%;
  }
  .masternode-content-item:nth-child(2n) {
    margin-left: 0px;
  }
  .masternode-content-item:nth-child(2n) .masternode-content-info-desc {
    max-width: 100% !important;
  }
  .masternode-content-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .masternode-content-item:nth-child(2n) {
    margin-left: 0px !important;
  }
  .masternode-content-info-desc {
    max-width: 100%;
    font-size: 15px;
  }
  .masternode-content-info-percent {
    font-size: 35px;
  }
  .masternode-content-info-of-block {
    font-size: 15px;
  }
}

.rewards__description {
  margin-top: 25px;
  color: #225CFF !important;
  font-size: 14px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rewards__description svg {
  margin-right: 5px;
}

.sect_9 .cn_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.anim {
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

.arrow {
  display: none;
}

.main-page-controllers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.ess-framework-title {
  text-align: center !important;
  color: #283950;
}

#ess-framework {
  padding-bottom: 100px;
}

#ess-framework .ess-framework-desc {
  width: 65%;
  text-align: center;
  margin: 25px auto;
  font-size: 19px;
}

@media (max-width: 768px) {
  #ess-framework .ess-framework-desc {
    width: 90%;
  }
}

#ess-framework .ess-framework-image {
  max-width: 1000px;
  margin: 0 auto;
}

#ess-framework .ess-framework-image img {
  width: 100%;
}

#ess-services {
  margin-bottom: 100px !important;
  max-width: 1200px;
  margin: 0 auto;
}

#ess-services .ess-service-main-title {
  padding-bottom: 2rem;
}

#ess-services .ess-service-title {
  font-weight: bold;
  font-size: 21px;
  line-height: 25px;
  color: #151B26;
  margin: 2rem 0;
}

#ess-services .ess-service-description {
  font-size: 18px;
  line-height: 25px;
  color: #646F79;
}

#ess-services .ess-services-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#ess-services .ess-service {
  margin: 1.5rem;
  padding: 1.5rem;
  width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #2684FF;
  border-radius: 4px;
}

#ess-services .ess-service-desctiption-wrapper {
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#ess-defihub {
  margin-bottom: 100px !important;
}

#ess-defihub .ess-service-main-title {
  padding: 2rem 0 !important;
  padding-bottom: 3rem !important;
}

#ess-defihub .defihub-image, #ess-defihub img {
  margin: 0 auto;
  max-width: 100%;
}

.sect_1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 160px;
  text-align: center;
}

.sect_1 .cn_desc-btn .btn {
  width: 100% !important;
}

.sect_1 .essentia-subtitle {
  color: #151B26 !important;
}

.sect_1 .essentia-description-blocks {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sect_1 .essentia-description-blocks svg {
  margin: 0px 5px;
}

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

.sect_1 .essentia-descripiton-block {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5.66526px 37.7684px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5.66526px 37.7684px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  height: 120px;
  width: 148px;
  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-weight: bold;
  font-size: 18px;
  line-height: 20px;
  color: #46576E;
}

.sect_1 .hide-mobile {
  display: block;
}

@media (max-width: 768px) {
  .sect_1 .essentia-description-blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sect_1 .essentia-descripiton-block {
    width: 130px;
    height: 120px;
  }
  .sect_1 .hide-mobile {
    display: none;
  }
  .sect_1 .links-row {
    margin: 10px 0px;
  }
  .sect_1 .essentia-description-blocks svg {
    margin: 15px 5px;
  }
}

.sect_1 .color-green {
  background: #00D482 !important;
  color: white !important;
}

.sect_1 .color-dark-gray {
  background: #273951 !important;
  color: white !important;
}

.sect_1 .des {
  font-size: 20px !important;
  line-height: 24px !important;
  margin-top: 10px !important;
}

.sect_1 .h1 {
  font-size: 62px !important;
}

.sect_1 .h1 .blue {
  font-size: 38px !important;
  line-height: 40px !important;
}

.h1 {
  margin: 0;
  font-size: 46px;
  line-height: 110%;
  text-align: center;
  color: #151B26;
}

.h1 .blue {
  color: #2684FF;
}

.cn_mob-btn {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -9px 0 15px;
}

.btn-svg {
  display: block;
  width: 165px;
  height: 50px;
  margin: 9px 10px;
  cursor: pointer;
}

.sect_1 .des {
  margin: 35px auto;
  max-width: 630px;
}

.sect_1 .cn_img {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 21px;
  height: 460px;
}

.sect_1 .img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sect_2 {
  background: #EDF1F2;
  padding-top: 116px;
  padding-bottom: 30px;
  border-radius: 100px 0 0 0;
  text-align: center;
}

.sect_2 .des {
  padding: 0 5px;
  margin: 27px 0 0;
}

.sect_2 .cn_img {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 21px;
  height: 100%;
}

.sect_2 .cn_video {
  height: 460px;
}

.sect_2 .img {
  margin: 0 auto;
}

.cn_video {
  position: relative;
}

.btn-play {
  position: absolute;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 170px;
  height: 370px;
  top: 35px;
  left: calc(50% - 85px);
  font-size: 14px;
  line-height: 177%;
  text-align: center;
  color: #151B26;
}

.btn-play span {
  max-width: 85px;
  padding-top: 15px;
}

#our-team {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

#our-team .employe-list {
  margin: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#our-team .employe-item {
  margin: 0 1.5rem;
}

#our-team .employe-item-picture {
  width: 160px;
  height: 160px;
  border-radius: 12px;
}

#our-team .employe-item-title {
  margin: 0;
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #2684FF;
}

#our-team .employe-item-position {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #151B26;
}

.our-team-description {
  margin: 0 auto;
  width: 75%;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #646F79;
}

.break-line {
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .break-line {
    margin: 0 !important;
  }
  .our-team-description {
    width: 90%;
  }
  .employe-item {
    margin-bottom: 2rem !important;
  }
}

.sect_3 {
  padding-top: 46px;
  padding-bottom: 50px;
  border-radius: 100px 0 0 0;
  text-align: center;
}

.sect_3 .des {
  margin: 22px 0;
}

.sect_3 .cn_btn {
  margin: 0 38px 0 45px;
}

.sect_3 .ico {
  width: 33px;
  height: 33px;
  background: #F5A623;
  margin-right: 12px;
}

.sect_3 .cn_bl {
  height: 350px;
  margin: 0 -15px 66px;
  width: calc(100% + 30px);
}

.sect_3 .btn-block {
  width: 236px;
}

.sect_3 .btn-block:last-of-type {
  margin-left: auto;
}

.sect_3 .img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-brd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 44px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
  color: #151B26;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid rgba(100, 111, 121, 0.2);
  padding: 0 12px;
  margin: 13px 0;
  white-space: nowrap;
}

.btn-brd svg {
  margin-right: 11px;
}

.btn-brd:nth-child(1) {
  margin-left: auto;
}

.btn-brd:nth-child(2) {
  margin: 0 auto;
}

.btn-brd:nth-child(3) {
  margin-left: -10px;
}

.btn-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 43px auto 36px;
  width: 82px;
  height: 82px;
  background: #2684FF;
  -webkit-box-shadow: 0 4px 56px 29.2171px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 56px 29.2171px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.btn-circle:before {
  content: '';
  display: block;
  position: absolute;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  border: 1px solid #DADADA;
}

.btn-circle:after {
  content: '';
  display: block;
  position: absolute;
  width: 247px;
  height: 247px;
  border-radius: 50%;
  border: 1px solid #DADADA;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.sect_4 {
  padding-top: 89px;
  border-radius: 100px 0 0 0;
  text-align: center;
  background: #2684FF;
  position: relative;
}

.sect_4 .des {
  margin: 27px 0 41px;
  color: #92C1FF;
}

.sect_4 .btn {
  margin: 0 auto;
}

.sect_4:after {
  content: '';
  display: block;
  width: 61px;
  height: 28px;
  background: url("../image/visual.svg") no-repeat center;
  background-size: contain;
  margin: 94px auto 0;
}

.cn_slider {
  width: 100%;
  margin-bottom: 48px;
}

.slid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin: 0 12.5px;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
}

.slid img {
  width: 85%;
  height: 85%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sect_5 {
  padding-top: 90px;
  padding-bottom: 50px;
  text-align: center;
}

.sect_5 .cn_img {
  position: relative;
  padding-left: 15px;
  height: 400px;
}

.sect_5 .img {
  margin: 0 auto;
  height: 100%;
  position: relative;
}

.sect_5 .des:not(.active) {
  display: none;
}

.sect_5 .cn_info {
  padding-top: 55px;
}

.it_visual_1 {
  position: absolute;
  top: -10px;
  right: calc(50% - 130px);
  background: rgba(38, 132, 255, 0.3);
  border-radius: 4px;
  width: 70px;
  height: 66px;
}

.it_visual_2 {
  position: absolute;
  top: 154px;
  left: calc(50% - 110px);
  background: rgba(38, 132, 255, 0.3);
  border-radius: 4px;
  width: 105px;
  height: 75px;
}

.it_visual_3 {
  position: absolute;
  top: 40px;
  left: calc(50% - 150px);
  width: 105px;
  height: 75px;
  background: rgba(227, 227, 227, 0.3);
  border-radius: 4px;
}

.it_visual_4 {
  position: absolute;
  background: #FFFFFF;
  -webkit-box-shadow: 0 5px 37px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 37px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  width: 138px;
  height: 134px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.it_visual_4:not(.active) {
  opacity: 0;
}

.it_visual_4.touch {
  top: 146px;
  left: calc(50% + 18px);
}

.it_visual_4.touch .cn_ico {
  background: url("../image/touch.png") no-repeat center;
  background-size: initial;
  position: relative;
}

.it_visual_4.touch .cn_ico:before {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% + 1px);
  left: -10px;
  right: -10px;
  border-top: 1px dashed #2684FF;
}

.it_visual_4.wallet {
  top: 75px;
  left: calc(50% - 130px);
}

.it_visual_4.wallet .cn_ico {
  background: url("../image/hd_wallet.svg") no-repeat center;
  background-size: initial;
}

.it_visual_4.seed {
  top: 146px;
  left: calc(50% - 130px);
}

.it_visual_4.seed .cn_ico {
  background: url("../image/seed.svg") no-repeat center;
  background-size: initial;
}

.cn_ico {
  width: 99px;
  height: 99px;
  border: 2px solid #DADADA;
  border-radius: 50%;
}

.cn_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 28px auto;
  max-width: 305px;
}

.btn-tab {
  display: block;
  background: transparent;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  padding-bottom: 8px;
  color: rgba(0, 0, 0, 0.5);
}

.btn-tab:before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  background: #FF8E26;
  -webkit-transition: .2s width;
  transition: .2s width;
}

.btn-tab.active {
  color: #151B26;
}

.btn-tab.active:before {
  width: 40px;
}

.sect_6 {
  padding-top: 88px;
  padding-bottom: 97px;
  border-radius: 100px 0 100px 0;
  text-align: center;
  background: #2684FF;
}

.sect_6 .cn_el {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 216px;
      grid-template-columns: 216px;
  grid-gap: 22px 28px;
  font-weight: 600;
  margin-top: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sect_6 .str {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #151515;
}

.sect_6 .h3 {
  font-size: 45px;
  line-height: 42px;
  color: #53D9FF;
}

.sect_6 .des {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #151515;
}

.sect_6 .el {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 22px 19px 23px;
  width: 100%;
  min-height: 153px;
  max-height: 187px;
  background: #FFFFFF;
  border-radius: 6px;
}

.sect_7 {
  overflow-x: hidden;
  padding-top: 128px;
  text-align: center;
}

.sect_7 .des {
  margin-top: 25px;
}

.sect_7 .cn_des {
  margin-top: 90px;
}

.sect_7 .cn_bl {
  max-width: 400px;
  width: 100%;
  height: 320px;
  padding-left: 15px;
  margin: 0 auto;
  position: relative;
  background: url("../image/sect_7.svg") no-repeat;
}

.sect_7 .cn_btn {
  max-width: 290px;
  padding-left: 10px;
  position: absolute;
  top: 30px;
  left: calc(50% - 145px);
  width: 100%;
}

.sect_7 .btn-block {
  width: 257px;
  height: 80px;
  padding: 0 25px 0 22px;
  margin-bottom: 15px;
}

.sect_7 .btn-block:nth-of-type(1) .ico {
  background: url("../image/ico-1.svg") no-repeat;
  background-size: cover;
}

.sect_7 .btn-block:nth-of-type(2) .ico {
  background: url("../image/ico-2.svg") no-repeat;
  background-size: cover;
}

.sect_7 .btn-block:nth-of-type(3) .ico {
  background: url("../image/ico-3.svg") no-repeat;
  background-size: cover;
}

.sect_7 .btn-block .title {
  color: #646F79;
}

.sect_7 .btn-block:nth-of-type(even) {
  margin-left: 32px;
}

.sect_7 .ico {
  width: 36px;
  height: 36px;
  margin-right: 17px;
  border-radius: 50%;
}

.sect_8 {
  padding-top: 140px;
  text-align: center;
  padding-bottom: 98px;
}

.sect_8 .des {
  margin-top: 25px;
}

.sect_8 .cn_bl {
  position: relative;
  margin-bottom: 60px;
}

.sect_8 .cn_img {
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.sect_8 .img {
  width: 100%;
  height: 100%;
  max-width: 560px;
  max-height: 505px;
}

.bl_visual_1 {
  position: absolute;
  top: -5px;
  right: calc(50% - 115px);
  width: 63px;
  height: 59px;
  background: rgba(38, 132, 255, 0.3);
  border-radius: 4px;
}

.bl_visual_2 {
  position: absolute;
  width: 95px;
  height: 68px;
  left: calc(50% - 100px);
  bottom: 20px;
  background: rgba(227, 227, 227, 0.3);
  border-radius: 4px;
}

.subscribe-mail-input::-webkit-input-placeholder {
  color: #92c1ff !important;
}

.subscribe-mail-input:-ms-input-placeholder {
  color: #92c1ff !important;
}

.subscribe-mail-input::-ms-input-placeholder {
  color: #92c1ff !important;
}

.subscribe-mail-input::placeholder {
  color: #92c1ff !important;
}

.sect_9 {
  padding-top: 132px;
  padding-bottom: 120px;
  border-radius: 100px 0 100px 0;
  background: #2684FF;
  text-align: center;
}

.sect_9 .cn_img .btn {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.85);
}

.sect_9 .des {
  max-width: 526px;
  margin: 18px auto 35px;
  color: #92C1FF;
}

.sect_9 .cn_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 306px;
  margin: 0 auto;
}

.sect_9 .btn {
  font-size: 14px;
}

.sect_9 .ico {
  width: 16px;
  height: 16px;
  margin-right: 16px;
  background-repeat: no-repeat;
  background-size: contain;
}

.sect_9 .ico.ios {
  background-image: url("../image/ios.svg");
}

.sect_9 .ico.android {
  background-image: url("../image/android.svg");
}

.sect_9 .ico.win {
  background-image: url("../image/window.svg");
}

.sect_9 .img {
  margin: 0 auto 28px;
  height: 205px;
}

.sect_88 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
  margin: 100px auto;
  margin-top: 0px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sect_88 .get-ess-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 10px;
}

.sect_88 .get-ess-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sect_88 .get-ess-link-item {
  margin: 15px;
  width: 170px;
  height: 47px;
  border: 2px solid rgba(0, 212, 130, 0.25);
}

.sect_88 .get-ess-link-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sect_88 .get-ess-prices {
  margin: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sect_88 .get-ess-price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 10px;
}

.sect_88 .get-ess-price-symbol {
  font-size: 16px;
  color: #637DDD;
}

.sect_88 .get-ess-price-cost {
  font-size: 18px;
}

.sect_88 .get-ess-price-rate {
  color: #d0021b;
  font-size: 14px;
}

.sect_88 .get-ess-title {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 20px;
}

.sect_88 .get-ess-description {
  font-size: 20px;
}

.setup-node {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .cn_visual .front .front_img, .cn_visual .front .partition, .cn_visual .front .handle {
    display: none;
  }
  .sect_88 {
    -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;
    text-align: center;
  }
  .sect_88 img {
    max-width: 220px;
    margin: 0 auto;
  }
  .sect_88 .get-ess-prices {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sect_88 .get-ess-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.sect_20 {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 139px;
  margin-bottom: 70px;
}

.sect_20 .advisor-title {
  color: #273951;
  font-size: 35px;
}

.sect_20 .advisors-list {
  width: 900px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.sect_20 .advisor-line-2 {
  margin-top: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sect_20 .advisor-line-2 .advisor-item {
  margin: 0px 40px;
}

.sect_20 .advisor-item {
  position: relative;
}

.sect_20 .advisor-text-gray {
  color: #273951;
}

.sect_20 .advisor-hidden-content {
  margin-top: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  width: 200%;
  position: absolute;
  top: 100%;
  left: -10px;
  padding-left: 10px;
  margin-left: 10px;
  background-color: white;
  z-index: 222;
}

.sect_20 .advisor-expand-btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sect_20 .advisor-btn-active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sect_20 .advisor-hidden-title {
  color: #225cff;
}

.sect_20 .advisor-medium-link {
  display: inline-block;
  margin-left: 10px;
}

.sect_20 .advisor-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sect_20 .advisor-active-content {
  visibility: visible;
  opacity: 1;
}

.sect_20 .arrow {
  border: solid #225cff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.sect_20 .down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.sect_20 .advisor-image {
  border: 1px solid #225cff;
  padding: 20px;
  margin-bottom: 20px;
}

.sect_20 .advisor-name {
  padding-left: 20px;
  font-size: 20px;
  line-height: 1.25;
  color: #273951;
  font-weight: bold;
}

.sect_20 .advisor-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sect_20 .advisor-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sect_20 .advisor-description {
  max-width: 600px;
}

@media (max-width: 768px) {
  .advisors-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto !important;
  }
  .advisor-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px !important;
  }
  .advisor-line-2 {
    margin-top: 0 !important;
  }
  .sect_20 .advisor-hidden-content {
    width: 100%;
  }
}

.sect_10 {
  padding-top: 60px;
}

.sect_10 .h2 {
  text-align: center;
}

.sect_10 .img {
  width: 100%;
  height: 124px;
}

.sect_10 .h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 5px;
  color: #151B26;
}

.cn_ctg {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (291px)[auto-fill];
      grid-template-columns: repeat(auto-fill, 291px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 34px;
  margin-top: 54px;
}

.ctg_i {
  display: block;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  height: 240px;
}

.ctg_i:nth-child(1) .img {
  -o-object-position: 50% 40%;
     object-position: 50% 40%;
}

.ctg_i:nth-child(2) .img {
  -o-object-position: 50% 25%;
     object-position: 50% 25%;
}

.ctg_i:nth-child(3) .img {
  -o-object-position: 50% 5%;
     object-position: 50% 5%;
}

.ctg_des {
  padding: 17px 37px 18px 21px;
}

.time {
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: rgba(21, 27, 38, 0.5);
}

.sect_11 {
  padding-top: 68px;
  text-align: center;
}

.sect_11 .des {
  margin: 30px 0 23px;
}

.sect_11 .btn {
  margin: 0 auto;
  border-radius: 8px;
}

.sect_11 .ico {
  width: 18px;
  height: 18px;
  background: url("../image/git_hub.svg") no-repeat center;
  background-size: contain;
  margin-right: 15px;
}

.cn_visual {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  position: relative;
  width: 340px;
  margin: 0 auto 45px;
  height: 680px;
}

.cn_visual .img {
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

.anim .front_img {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.anim .front_img .img {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.active .front_img {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.active .front_img .img {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.active .handle {
  -webkit-animation: show-handle 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: show-handle 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.active .partition {
  -webkit-animation: show-handle 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: show-handle 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.front {
  height: 100%;
}

.front_img {
  position: relative;
  overflow: hidden;
  height: inherit;
}

.partition {
  position: absolute;
  width: calc(100% - 70px);
  top: 97%;
  left: 35px;
  right: 35px;
  border-top: 1px dashed #2684FF;
}

.handle {
  z-index: 1;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFFFFF;
  border: 1px solid #2684FF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  top: 97%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(50% - 17px);
}

.range {
  direction: ltr;
  cursor: ew-resize;
  position: absolute;
  height: 34px;
  opacity: 0;
  -webkit-appearance: none;
  background: transparent;
  z-index: 2;
  top: 0;
  left: 0;
  width: 714px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: 94px 94px;
          transform-origin: 94px 94px;
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 34px;
  height: 34px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

.range::-webkit-slider-thumb:before {
  content: '';
  display: block;
}

.sect_12 {
  padding-top: 75px;
  padding-bottom: 80px;
  text-align: center;
}

.sect_12 .des {
  margin: 30px auto 29px;
}

.sect_12 .img {
  min-width: 75px;
  -o-object-fit: none;
     object-fit: none;
  margin: 20px 10px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.ctg-partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: -20px;
}

.sect_13 {
  padding-top: 93px;
  padding-bottom: 88px;
  border-radius: 100px 0 100px 0;
  text-align: center;
  background: #2684FF;
  position: relative;
  z-index: 1;
}

.sect_13 .cn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px;
}

.sect_13 .des {
  color: #92C1FF;
  margin: 26px auto 35px;
}

.ft {
  padding: 135px 50px 19px;
  margin-top: -100px;
  background: #EDF1F2;
  z-index: 0;
}

.ft .logo {
  width: 122px;
  height: 28px;
}

.ft_nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 45px;
}

.nav_it {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.nav_it:nth-child(2) {
  -ms-grid-column-align: right;
      justify-self: right;
}

.nav_it:not(.meet) {
  min-height: 135px;
}

.nav_it.meet {
  width: 100%;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
}

.h3-ul {
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 5px;
}

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

.meet_ln {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 20px;
}

.meet_ln.fs {
  background: url("../image/facebook.svg") no-repeat 0 50%;
  background-size: contain;
}

.meet_ln.tw {
  background: url("../image/twitter.svg") no-repeat 50%;
  background-size: contain;
}

.meet_ln.tl {
  background: url("../image/telegram.svg") no-repeat 50%;
  background-size: contain;
}

.meet_ln.md {
  background: url("../image/img.png") no-repeat 50%;
  width: 33px;
  height: 25px;
}

.meet_ln.gh {
  background: url("../image/github.svg") no-repeat 50%;
  background-size: contain;
}

.cn_cop {
  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: center;
      -ms-flex-align: center;
          align-items: center;
}

.cop {
  margin-top: 14px;
  font-size: 12px;
  line-height: 21px;
  color: #646F79;
}

.gate-item img {
  width: 80px;
}

@media (min-width: 350px) {
  .sect_9 .btn {
    font-size: 16px;
  }
}

@media (min-width: 400px) {
  .sect_12 .img {
    margin: 20px 22px;
  }
}

@media (min-width: 600px) {
  .sect_3 .des {
    margin-bottom: 28px;
  }
  .sect_3 .cn_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sect_3 .btn-brd {
    margin: 0 4px;
  }
  .sect_12 .img {
    margin: 25px 28px;
  }
  .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form__group input {
    width: 368px;
  }
  .form__group .btn {
    margin: 0 0 0 12px;
  }
  #errorMsgDiv {
    top: 46px;
    left: calc(50% - 250px);
  }
  .ft_nav {
    -ms-grid-columns: 3fr 4fr 4fr;
        grid-template-columns: 3fr 4fr 4fr;
  }
  .nav_it:nth-child(2) {
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .nav_it:nth-child(3) {
    justify-self: flex-end;
  }
  .cn_cop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 650px) {
  .sect_6 .cn_el {
    -ms-grid-columns: (minmax(180px, 216px))[3];
        grid-template-columns: repeat(3, minmax(180px, 216px));
  }
}
/*# sourceMappingURL=style.css.map */