html,
body {
  position: relative;
  overflow: -moz-scrollbars-none;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  background-color: #fff;
  color: #232c45;
}

::-webkit-scrollbar {
  display: none;
}

* {
  box-sizing: border-box;
  font-size: 0;
}

a {
  color: inherit;
  text-decoration: none;
  color: #2c9fef;
  transition: .2s;
}

a:hover {
  color: #64bfff;
}

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

.container {
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transition: opacity .3s;
}


@media only screen and (max-width: 960px) {
  .container {
    padding: 0;
  }
}

header {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 30px 30px 20px;
  position: relative;
}

.logo {
  display: block;
  width: 84px;
  height: 24px;
  background-image: url(../img/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

header nav {
  position: absolute;
  right: 30px;
  bottom: 6px;
}

header nav a {
  font-size: 14.2px;
  line-height: 44px;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 0 15px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  transition: color .2s;
  text-transform: uppercase;
  color: #232c45;
}

header nav a span {
  font-size: 11px;
  letter-spacing: -0.1px;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  opacity: 0.5;
  line-height: 20px;
  height: 20px;
  margin-top: -2px;
}

header nav a:last-child {
  padding-right: 0;
}

header nav a:before, header nav .dropdown:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  height: 12px;
  width: 1px;
  background: #11182f;
  opacity: 0.2;
}

header nav a:first-child:before {
  display: none;
}

header nav a.telegram {
  font-size: 0;
  line-height: 1;
  padding-top: 10px;
  padding-bottom: 10px;
}

header nav a svg {
  width: 20px;
  height: 16px;
  fill: #232c45;
  transition: .2s;
}

header nav a:hover {
  color: #2c9fef;
}

header nav a:hover svg {
  fill: #2c9fef;
}

.dropdown {
  position: relative;
  display: inline-block;
  font-size: 14.2px;
  line-height: 44px;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 0 15px;
  vertical-align: middle;
  cursor: pointer;
  transition: color .2s;
  text-transform: uppercase;
  color: #232c45;
}

.dropdown .more {
  font-size: 14.2px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 1px;
  display: none;
  margin: 0;
  list-style: none;
  width: 130px;
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,.1); 
  box-shadow: 0px 5px 15px 5px rgba(0,0,0,.1);
}

.dropdown .link {
  display: block;
  text-decoration: none;
  background: #fff;
  letter-spacing: 0;
  text-transform: capitalize;
  font-weight: 400;
  border-bottom: solid 1px #f0f0f0;
}

.dropdown li:last-child .link {
 border-bottom: 0;
}

.dropdown_whitepaper {
  position: relative;
  display: inline;
  cursor: pointer;
  color: #4e94fe;
}

.dropdown_whitepaper:hover .dropdown-menu {
  display: block;
}

.dropdown_whitepaper .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 1px;
  display: none;
  margin: 0;
  list-style: none;
  width: 160px;
  padding: 0;
}

.dropdown_whitepaper:hover .dropdown-menu {
  display: block;
}

.dropdown_whitepaper .dropdown-menu {
  border-radius: 10px;
  overflow: hidden;
  background: #111b38;
  -webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,.15); 
  box-shadow: 0px 5px 15px 5px rgba(0,0,0,.15);
  border: solid 1px rgba(255,255,255,0.075);
}

.dropdown_whitepaper .link {
  display: block;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  padding: 15px;
  letter-spacing: 0;
  color: #fff;
  border-bottom: solid 1px rgba(255,255,255,0.075);
}

.dropdown_whitepaper .link:hover {
  color: #4e94fe;
}

.dropdown_whitepaper li:last-child .link {
 border-bottom: 0;
}

.desktop {
  display: block !important;
}

.desktop_inline {
  display: inline-block !important;
}

.mobile {
  display: none !important;
}

@media only screen and (max-width: 960px) {
  header {
    padding: 0 20px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: 50px;
    height: 14px;
    background-image: url(../img/logo_mobile.svg);
    margin-top: -2px;
  }

  header nav {
    position: static;
    right: auto;
    bottom: auto;
  }

  header nav a, .dropdown {
    font-size: 11px;
    padding: 0 10px;
    letter-spacing: 0;
  }

  .dropdown .more {
    font-size: 11px;
  }

  header nav a span {
    font-size: 9px;
  }

  header nav a:before, .dropdown:before {
    display: none;
  }

  header nav a:hover {
    color: inherit;
  }

  header nav a svg {
    width: 15px;
    height: 12px;
  }

  .dropdown .link {
    font-size: 11px;
    line-height: 34px;
    font-weight: 500;
  }

  .dropdown .dropdown-menu {
    width: 100px;
    top: 90%;
    -webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,.2); 
    box-shadow: 0px 5px 15px 5px rgba(0,0,0,.2);
  }

  .desktop {
    display: none !important;
  }

  .desktop_inline {
    display: none !important;
  }
  
  .mobile {
    display: block !important;
  }
}


.top_section {
  background: #172240;
  text-align: center;
}

.top_section .kv_web {
  width: 100%;
  max-width: 1200px;
}

.top_section .kv_mobile {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: none;
}

.top_section h2 {
  font-size: 22px;
  line-height: 1.5;
  color: #a7a9b1;
  width: 80%;
  max-width: 820px;
  margin: 0 auto;
  font-weight: 300;
  text-align: center;
  letter-spacing: -0.4px;
  padding-bottom: 150px;
}

.top_section h2 div {
  font-size: 22px;
}

.top_section a {
  font-size: 22px;
  color: #4e94fe;
  transition: color .2s;
}

.top_section a:hover {
  color: #fff;
}

@media only screen and (max-width: 1280px) {
  .top_section h2 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 960px) {
  .top_section {
    display: flex;
    min-height: 80vh;
    padding: 90px 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .top_section .kv_web {
    display: none;
  }

  .top_section .kv_mobile {
    display: block;
  }

  .top_section h2 {
    font-size: 15px;
    padding: 0 0 10px;
    max-width: 370px;
  }
  .top_section h2 div, .top_section h2 a {
    font-size: 15px;
  }
}

section {
  padding: 160px 30px;
}

.section1 {
  width: 100%;
  padding-bottom: 80px;
}

section > .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


h2 {
  padding: 0;
  margin: 0;
  font-size: 62px;
  color: #2c9fef;
  letter-spacing: -0.8px;
  line-height: 1.25;
  text-align: center;
}


article {
  font-size: 22px;
  line-height: 1.5;
  max-width: 900px;
  letter-spacing: -0.2px;
  margin: 38px auto 0;
}

article b, article a {
  font-size: 22px;
}

.section1 article {
  margin-bottom: 120px;
}

.section1 .image_description {
  border-top: solid 1px #edeef0;
  padding: 33px 0;
  display: flex;
  align-items: center;
}

.section1 .image_description .image,
.section1 .image_description .description {
  width: 50%;
}

.section1 .image_description .image {
  text-align: center;
}

.section1 .image_description .image img {
  width: 380px;
  height: 380px;
}

.section1 .image_description .description {
  font-size: 22px;
  font-weight: 300;
  color: #505466;
  line-height: 1.5;
}

.section1 .image_description .description b {
  font-size: 22px;
}

@media only screen and (max-width: 1280px) {

  h2 {
    font-size: 58px;
  }

  article {
    font-size: 20px;
  }

  article b {
    font-size: 20px;
  }

  article a {
    font-size: 20px;
  }

  .section1 .image_description .description {
    font-size: 20px;
    padding-right: 40px;
  }

  .section1 .image_description .description b {
    font-size: 20px;
  }
}

@media only screen and (max-width: 960px) {

  section {
    padding: 90px 30px;
  }

  .section1 {
    padding-bottom: 60px;
  }

  h2 {
    font-size: 34px;
  }

  article {
    margin-top: 30px;
    font-size: 15px;
  }

  article b, article a {
    font-size: 15px;
  }

  .section1 article {
    margin-bottom: 70px;
  }
  
  .section1 .image_description {
    padding: 30px 0 70px;
    display: block;
  }

  .section1 .image_description.second {
    padding: 10px 0 70px;
  }
  
  .section1 .image_description .image,
  .section1 .image_description .description {
    width: 100%;
  }
  
  .section1 .image_description .image img {
    width: 80%;
    max-width: 320px;
    height: auto;
  }
  
  .section1 .image_description .description,
  .section1 .image_description .description b {
    font-size: 15px;
    padding: 0;
  }

  .section1 .image_description .description {
    margin-top: 0;
  }

  .section1 .image_description.second .description {
    margin-top: -20px;
  }

  .section1 .image_description.third .description {
    margin-top: -10px;
  }
}

.section2 {
  background-color: #f5f8fc;
  padding: 160px 20px;
}

.section2 .inner {
  max-width: 1220px;
}

.section2 h2 {
  margin-bottom: 40px;
}

.section2 .row {
  display: flex;
}

.section2 .card {
  flex: 50%;
  margin: 10px;
  background: #fff;
  text-align: center;
}

.section2 .card .card_link, .section2 .card .inner {
  display: block;
  padding: 55px 30px 30px;
}

.section2 .card .icon img {
  width: 94px;
  height: 64px;
}

.section2 .card .name {
  font-size: 26px;
  color: #232c45;
  font-weight: 600;
  letter-spacing: -0.2px;
  padding: 15px 0 0;
}

.section2 .card .description {
  font-size: 16px;
  color: #8b909f;
  padding-bottom: 27px;
}

.section2 .card .description a {
  font-size: 16px;
}

.section2 .card .links a {
  margin: 0 8px;
  padding: 10px;
  display: inline-block;
}

.section2 .card .links .launch {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section2 .card .links .launch span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  transition: .2s;
  height: 26px;
  line-height: 26px;
  background-color: #b7c7e7;
  border-radius: 13px;
  padding: 0 13px;
}

.section2 .card .links svg {
  width: 26px;
  height: 26px;
  fill: #b7c7e7;
  transition: .2s;
}

.section2 .card .links a:hover svg, .section2 .card .card_link:hover .links svg {
  fill: #2c9fef;
}

.section2 .card .card_link:hover .launch span {
  background-color: #2c9fef;
}

@media only screen and (max-width: 960px) {
  .section2 {
    background-color: #f5f8fc;
    padding: 90px 30px;
  }
  
  .section2 h2 {
    margin-bottom: 30px;
  }
  
  .section2 .row {
    display: block;
  }
  
  .section2 .card {
    flex: 100%;
    width: 100%;
    margin: 15px 0;
  }
  
  .section2 .card .card_link, .section2 .card .inner {
    padding: 40px 40px 30px;
  }
  
  .section2 .card .icon img {
    width: 62px;
    height: 42px;
  }
  
  .section2 .card .name {
    font-size: 20px;
  }
  
  .section2 .card .description {
    font-size: 14px;
    padding-bottom: 20px;
  }
  
  .section2 .card .description a {
    font-size: 14px;
  }

  .section2 .card .links svg {
    width: 22px;
    height: 22px;
  }
}

.section3, .section4 {
  padding: 230px 30px;
}

.section3 article {
  text-align: center;
}

.section3 .section_bottom {
  border-top: solid 1px #edeef0;
  margin-top: 75px;
  padding-top: 43px;
  text-align: center;
}

.section3 .section_bottom p {
  display: block;
  font-size: 18px;
  margin-bottom: 30px;
}

.section3 .links a,
.section4 .links a {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;;
  margin: 0 20px;
}

.section3 .links a svg,
.section4 .links a svg {
  width: 8px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;;
  margin-top: -1px;
  margin-left: 5px;
  fill: #2c9fef;
  transition: .2s;
}
.section3 .links a:hover svg,
.section4 .links a:hover svg {
  color: #64bfff;
}

@media only screen and (max-width: 1280px) {
  .section3 .section_bottom p {
    font-size: 16px;
  }
  
  .section3 .links a,
  .section4 .links a {
    font-size: 16px;
    margin: 0 15px;
  }
}

@media only screen and (max-width: 960px) {

  .section3, .section4 {
    padding: 90px 30px;
  }
  
  .section3 article {
    text-align: left;
  }

  .section3 article br {
    display: none;
  }
  
  .section3 .section_bottom {
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
  }
  
  .section3 .section_bottom p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .section3 .links a,
  .section4 .links a {
    font-size: 13px;
    display: block;
    margin: 0;
    padding: 3px 0;
  }
  
  .section3 .links a svg,
  .section4 .links a svg {
    width: 6px;
    height: 10px;
  }
}

.section4 {
  background-color: #0b0f1a;
}

.section4 h2 {
  font-size: 61px;
  color: #fff;
}

.section4 article {
  color: #a7a9b1;
}

.section4 .links {
  width: 100%;
  max-width: 900px;
  margin: 75px auto 0;
}

.section4 .links a:first-child {
  margin-left: 0;
}

.section4 a:hover {
  color: #fff;
}

.section4 a:hover svg {
  fill: #fff;
}

@media only screen and (max-width: 1280px) {
  .section4 h2 {
    font-size: 57px;
    text-align: left;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 960px) {
  .section4 h2 {
    font-size: 34px;
    text-align: center;
  }
  
  .section4 .links {
    margin: 50px auto 0;
  }
}

.section5 {
  background-color: #f5f8fc;
  padding-top: 180px;
}

.section5 > .inner {
  max-width: 900px;
}

.section5 h2 {
  text-align: left;
}

.media-carousel {
  margin-top: 50px;
}

.owl-carousel .title {
  font-weight: 300;
  line-height: 1.5;
  font-size: 18px;
  margin: 15px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #172240;
}

.owl-carousel .source {
  font-weight: 300;
  font-size: 16px;
  margin: 0;
  color: #8b909f;
}

@media only screen and (max-width: 960px) {
  .section5 {
    padding-top: 90px;
  }
  .owl-carousel .title {
    font-size: 14px;
    margin: 10px 0 5px;
    -webkit-line-clamp: 3;
  }

  .owl-carousel .source {
    font-size: 12px;
  }
}

.section5 a img, .section5 a p {
  transition: .2s;
}

.section5 a:hover img, .section5 a:hover p {
  opacity: .65;
}

.footer {
  padding: 0 30px;
  background-color: #f5f8fc;
}

.footer .inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer .copyright {
  padding: 10px;
  padding-left: 0;
}

.footer .copyright svg {
  width: 67px;
  height: 16px;
  opacity: .25;
}

.footer .inner div {
  font-size: 14.2px;
  font-weight: 500;
  color: #000;
}

.footer a {
  opacity: 0.25;
  padding: 10px;
  transition: .2s;
}

.footer a:last-of-type {
  padding-right: 0;
}

.footer a:hover {
  opacity: 1;
}

.footer a img {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 960px) {
  .footer .copyright svg {
    width: auto;
    height: 14px;
  }
  
  .footer .inner div {
    font-size: 13px;
  }

  .footer a img {
    width: 16px;
    height: 16px;
  }
}