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

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

html,
html a {
  -webkit-font-smoothing: antialiased;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input,
input:focus {
  border: 0;
  outline: 0;
}

button:focus {
  outline: 0;
}

/*------------------------Global------------------------*/
body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #2C3B62;
  background: #fff;
  letter-spacing: 0.5px;
  overflow-x: hidden;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  aspect-ratio: attr(width)/attr(height);
}

input,
button,
textarea {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

input {
  width: 100%;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  height: 48px;
  padding: 0 16px;
}
input:hover {
  background: #FAFAFA;
}
input:focus {
  border: 1px solid #E8E8E8;
  background: #fff;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

b {
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
}

.container {
  position: relative;
  max-width: 1280px;
  width: 100%;
  padding: 0 54px;
  margin: 0 auto;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  height: 48px;
  line-height: 46px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  padding: 0 16px;
  font-weight: 500;
  font-size: 14px;
}
.btn img {
  margin-left: 12px;
}
.btn.btn-next::after {
  position: relative;
  top: -4px;
  width: 24px;
  height: 24px;
  margin-left: 12px;
}
.btn.btn-white {
  background: #fff;
  color: #3382DF;
}
.btn.btn-white.btn-next::after {
  content: url(../images/arrow-right-blue.svg);
}
.btn.btn-white:hover {
  border: 1px solid #3382DF;
}
.btn.btn-white:focus {
  background: #EAF2FB;
}
.btn.btn-white.btn-shadow {
  -webkit-box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.08);
}
.btn.btn-white.btn-border {
  border: 1px solid #3382DF;
}
.btn.btn-blue {
  background: #3382DF;
  color: #fff;
}
.btn.btn-blue.btn-shadow {
  -webkit-box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.08);
}
.btn.btn-blue.btn-next::after {
  content: url(../images/arrow-right-white.svg);
}
.btn.btn-blue.btn-next.btn-shadow {
  -webkit-box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.12);
}
.btn.btn-blue:hover {
  background: #3874BC;
}
.btn.btn-blue:focus {
  background: #255793;
}
.btn.btn-border-blue {
  background: #fff;
  color: #3382DF;
  border-color: #3382DF;
}
.btn.btn-border-blue:hover {
  background: #3382DF;
  color: #fff;
}
.btn.btn-border-blue:focus {
  background: #255793;
}
.btn.btn-full {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.title-section {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
}

.section {
  padding: 64px 0 80px;
}

/*------------------------Navbar------------------------*/
.navbar {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.navbar.scroll {
  background: #FEFEFE;
}
.navbar.hidden {
  top: -100%;
}
.navbar.active {
  background: #FEFEFE;
  top: 0;
}
.navbar .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .nav-wrap {
  height: 80px;
  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;
}
.navbar .nav-wrap .menu-box .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar .nav-wrap .menu-box .menu li {
  margin: 0 21px;
}
.navbar .nav-wrap .menu-box .menu li a:hover {
  color: #3382DF;
}
.navbar .nav-wrap .menu-box .btn {
  display: none;
}
.navbar .nav-wrap .auth a {
  display: inline-block;
  margin-right: 16px;
}
.navbar .nav-wrap .auth a:last-child {
  margin-right: 0;
}
.navbar .nav-wrap .footer-menu,
.navbar .nav-wrap #get-started {
  display: none;
}
.navbar .burger {
  display: none;
  margin-right: 27px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar .burger div {
  width: 18px;
  height: 2px;
  background: #515D7B;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar .burger:hover div {
  opacity: 0.6;
}
.navbar .burger.toggle .line1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 5px);
      -ms-transform: rotate(-45deg) translate(-6px, 5px);
          transform: rotate(-45deg) translate(-6px, 5px);
}
.navbar .burger.toggle .line2 {
  opacity: 0;
}
.navbar .burger.toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-6px, -5px);
      -ms-transform: rotate(45deg) translate(-6px, -5px);
          transform: rotate(45deg) translate(-6px, -5px);
}

/*------------------------Header------------------------*/
.header-wrapper {
  display: grid;
  grid-template-columns: minmax(320px, 469px) 1fr;
  grid-gap: 48px;
  min-height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 80px 0 0;
}
.header-wrapper h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.5px;
}
.header-wrapper .header-desc {
  margin: 15px 0 30px;
  color: #515D7B;
}

/*------------------------Tabs------------------------*/
.tabs {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 675px);
  grid-gap: 38px;
}
.tabs .tab-head li {
  margin-bottom: 48px;
  color: #515D7B;
  opacity: 0.5;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
}
.tabs .tab-head li:last-child {
  margin-bottom: 0;
}
.tabs .tab-head li.active {
  font-size: 28px;
  color: #2C3B62;
  opacity: 1;
}

.tab-item {
  display: none;
}
.tab-item.active {
  display: block;
}

.tab-side {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*------------------------Solution Box------------------------*/
.solution-box .description {
  margin-top: 148px;
}

/*------------------------How it works------------------------*/
.instruction-box .title-section {
  margin-bottom: 40px;
}
.instruction-box .instruction-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
}
.instruction-box .instruction-wrapper .instruction-item {
  margin-bottom: 57px;
  max-width: 336px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.instruction-box .instruction-wrapper .instruction-item:last-child {
  margin-bottom: 48px;
}
.instruction-box .instruction-wrapper .instruction-item .num {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: rgba(51, 130, 223, 0.1);
  color: #3382DF;
  border-radius: 50%;
  text-align: center;
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.instruction-box .instruction-wrapper .instruction-item .instruction-info .title {
  font-weight: 700;
}
.instruction-box .instruction-wrapper .instruction-item .instruction-info .desc {
  color: #515D7B;
}
.instruction-box .instruction-wrapper .btn-doc {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
}
.instruction-box .instruction-wrapper .instruction-tab .code-box {
  background: #2C3B62;
  border: 1px solid #3382DF;
  -webkit-box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin-top: 30px;
}
.instruction-box .instruction-wrapper .instruction-tab .code-box .head {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 12px 12px 0 0;
  text-align: center;
  overflow: hidden;
}
.instruction-box .instruction-wrapper .instruction-tab .code-box .head li {
  padding: 16px;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.instruction-box .instruction-wrapper .instruction-tab .code-box .head li:hover, .instruction-box .instruction-wrapper .instruction-tab .code-box .head li.active {
  background: #2C3B62;
  border-color: #3382DF;
}
.instruction-box .instruction-wrapper .instruction-tab .code-box .content {
  height: 390px;
  padding: 24px 15px;
  position: relative;
  overflow: hidden;
}
.instruction-box .instruction-wrapper .instruction-tab .code-box .content .tab-item pre {
  overflow: auto;
  height: 374px;
  padding-bottom: 15px;
}
.instruction-box .instruction-wrapper .instruction-tab .code-box .content .tab-item pre::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.instruction-box .instruction-wrapper .instruction-tab .code-box .content .tab-item pre::-webkit-scrollbar-track {
  background: transparent;
}
.instruction-box .instruction-wrapper .instruction-tab .code-box .content .tab-item pre::-webkit-scrollbar-thumb {
  border-radius: 24px;
  background: #515D7B;
}
.instruction-box .instruction-wrapper .instruction-tab .code-box .content .copy-text {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #62729B;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  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;
  z-index: 3;
  cursor: pointer;
}

/*------------------------Price Box------------------------*/
.price-box .price-head {
  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-bottom: 49px;
}
.price-box .price-head .tab-head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #3382DF;
  border-radius: 50px;
  padding: 4px;
}
.price-box .price-head .tab-head li {
  width: 133px;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  color: #3382DF;
  font-weight: 500;
  font-size: 20px;
  height: 48px;
  line-height: 48px;
}
.price-box .price-head .tab-head li.active {
  background: #3382DF;
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
  color: #fff;
}
.price-box .price-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
.price-box .price-wrapper .price-item {
  border: 1px solid transparent;
  padding: 16px;
  background: #FEFEFE;
  color: #515D7B;
  border-radius: 6px;
  overflow: hidden;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.price-box .price-wrapper .price-item.active {
  border-color: #3382DF;
  -webkit-box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.06);
}
.price-box .price-wrapper .price-item.active .btn {
  background: #3382DF;
  color: #fff;
}
.price-box .price-wrapper .price-item .price-title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 16px;
}
.price-box .price-wrapper .price-item .price-total span {
  color: #2C3B62;
  font-weight: 700;
  font-size: 28px;
}
.price-box .price-wrapper .price-item .price-info {
  margin: 16px 0 28px;
}
.price-box .price-wrapper .price-item .price-list {
  font-size: 14px;
  margin-left: 36px;
}
.price-box .price-wrapper .price-item .price-list li {
  position: relative;
  margin-bottom: 20px;
}
.price-box .price-wrapper .price-item .price-list li:before {
  position: absolute;
  content: url(../images/check.svg);
  left: -36px;
}

/*------------------------Roadmap Box------------------------*/
.roadmap-box .roadmap-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.roadmap-box .roadmap-side {
  max-width: 380px;
}
.roadmap-box .roadmap-side .description {
  margin: 32px 0 28px;
}
.roadmap-box .roadmap-info {
  margin-left: 16px;
}
.roadmap-box .roadmap-info .item {
  position: relative;
  border-left: 1px solid rgba(51, 130, 223, 0.23);
  padding: 0 0 85px 58px;
}
.roadmap-box .roadmap-info .item:last-child {
  border-left: none;
}
.roadmap-box .roadmap-info .item:after {
  position: absolute;
  top: -9px;
  left: -23px;
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #3382DF;
  z-index: 2;
  border: 9px solid #fff;
}
.roadmap-box .roadmap-info .item.active {
  position: relative;
}
.roadmap-box .roadmap-info .item.active:after {
  background: #3382DF;
}
.roadmap-box .roadmap-info .item.active:before {
  position: absolute;
  top: 0;
  left: -1px;
  content: "";
  width: 1px;
  height: calc(100% - 100px);
  background: #3382DF;
}
.roadmap-box .roadmap-info .item .year {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
}
.roadmap-box .roadmap-info .item .inform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  margin-top: 20px;
}
.roadmap-box .roadmap-info .item .inform li {
  background: #F5F8FD;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 14px;
  color: rgba(44, 59, 98, 0.9);
}
.roadmap-box .m-request-btn {
  display: none;
}

/*------------------------Roadmap Box------------------------*/
.question-box .title-section {
  margin-bottom: 100px;
}
.question-box .tab-content {
  position: relative;
  top: -24px;
}
.question-box .question-item {
  border-bottom: 1px solid rgba(44, 59, 98, 0.2);
  padding: 16px 0;
}
.question-box .question-item:last-child {
  border-bottom: 0;
}
.question-box .question-item .title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}
.question-box .question-item .description {
  color: #323F55;
}

/*------------------------Reinvent Box------------------------*/
.reinvent-box .reinvent-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 130px;
}
.reinvent-box .reinvent-wrapper .reinvent-side .description {
  margin: 20px 0 32px;
}

/*------------------------Slider Box------------------------*/
.swiper-wrapper {
  padding-top: 10px;
}

.slider-wedo .swiper {
  padding-right: 54px;
}

.slider-box {
  background: #2C3B62;
  padding: 64px 0;
  overflow: hidden;
}
.slider-box .slider-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.slider-box .slider-header .slider-info .slider-description {
  color: #fff;
  margin-bottom: 75px;
}
.slider-box .slider-wedo {
  margin-right: -54px;
}
.slider-box .slider-wedo .swiper-slide {
  width: 320px;
}
.slider-box .title-section {
  color: #fff;
}
.slider-box .swiper-slide {
  height: auto;
}
.slider-box .slide-card {
  position: relative;
  top: 0;
  height: 100%;
  background: #FEFEFE;
  border: 1px solid #EAF2FB;
  -webkit-box-shadow: 0px 3px 32px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 3px 32px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 18px 20px;
  -webkit-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
}
.slider-box .slide-card .chain-logo {
  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;
  width: 70px;
  height: 70px;
  border: 1px solid #3382DF;
  border-radius: 50%;
  margin-bottom: 28px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.slider-box .slide-card:hover {
  top: -10px;
}
.slider-box .slide-card:hover .chain-logo {
  background: #3382DF;
}
.slider-box .slide-card:hover .chain-logo path {
  fill: #fff;
}
.slider-box .slide-card .user-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 26px;
}
.slider-box .slide-card .user-head .avatar {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  overflow: hidden;
}
.slider-box .slide-card .user-head .info {
  margin-left: 12px;
}
.slider-box .slide-card .user-head .info .name {
  font-weight: 700;
  margin-bottom: 6px;
}
.slider-box .slide-card .user-head .info .logo {
  height: 22px;
}
.slider-box .slide-card .title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}
.slider-box .brands {
  padding-top: 64px;
  margin-top: 64px;
  border-top: 1px solid #515D7B;
  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;
}
.slider-box .brands.part-brands {
  overflow-x: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.slider-box .brands.part-brands::-webkit-scrollbar {
  display: none;
}
.slider-box .brands li {
  margin-right: 30px;
  opacity: 0.4;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.slider-box .brands li:last-child {
  margin-right: 0;
}

.slider-wrapper {
  margin: 64px 0;
}

.slider-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.slider-toolbar .toolbar-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.slider-toolbar .toolbar-item:last-child {
  margin-right: 0;
}
.slider-toolbar .swiper-pagination {
  max-width: 334px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.slider-toolbar .swiper-button-prev {
  margin-right: 16px;
}
.slider-toolbar .slide-total,
.slider-toolbar .slide-active {
  font-weight: 700;
  color: #fff;
  margin-right: 16px;
}
.slider-toolbar .slide-total {
  margin-right: 28px;
  margin-left: 16px;
}
.slider-toolbar .slide-active {
  margin-right: 16px;
}

/*------------------------Footer------------------------*/
.footer {
  padding: 36px 0 24px;
}
.footer .footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 0 -30px;
}
.footer .footer-wrap .item {
  margin: 0 0 0 30px;
}
.footer .footer-wrap .footer-menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer-wrap .footer-menu .menu li {
  margin: 0 16px;
}
.footer .footer-wrap .footer-menu .menu li a:hover {
  color: #3382DF;
}
.footer .footer-wrap .footer-menu .payment {
  margin-top: 16px;
  text-align: center;
}
.footer .footer-wrap .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer-wrap .footer-social li {
  margin: 0 8px;
}
.footer .footer-wrap .footer-social li:last-child {
  margin: 0 0 0 8px;
}

/*------------------------Error 404------------------------*/
.error-404 {
  min-height: 100vh;
  background: url(../images/dot-bg.svg) repeat;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.error-404 .desc {
  max-width: 463px;
  padding: 47px 0 28px;
  margin: 0 auto;
}
.error-404 .btn-box .btn:last-child {
  margin-left: 16px;
}

/*------------------------Adaptive------------------------*/
.text-page {
  padding-top: 104px;
}
.text-page .desc {
  margin-top: 20px;
}
.text-page .desc .title-item {
  font-weight: 700;
  font-size: 16px;
}

/*------------------------Adaptive------------------------*/
@media (max-width: 996px) {
  .container {
    padding: 0 24px;
  }

  .navbar .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar .nav-wrap .auth {
    display: none;
  }
  .navbar .nav-wrap .menu-box {
    background: #FEFEFE;
    visibility: hidden;
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    min-height: calc(100vh - 80px);
    z-index: 5;
    width: 100%;
    padding: 0 24px;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .navbar .nav-wrap .menu-box.active {
    visibility: visible;
    top: 80px;
    opacity: 1;
  }
  .navbar .nav-wrap .menu-box .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0 39px;
    border-bottom: 1px solid #CFD8E0;
    margin-bottom: 20px;
  }
  .navbar .nav-wrap .menu-box .menu li {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 32px;
  }
  .navbar .nav-wrap .menu-box .menu li:last-child {
    margin: 0;
  }
  .navbar .nav-wrap .menu-box .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    font-size: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navbar .nav-wrap .menu-box .btn:after {
    position: relative;
    width: 24px;
    height: 24px;
    margin-left: 12px;
    top: -3px;
  }
  .navbar .nav-wrap .menu-box .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 10px;
  }
  .navbar .nav-wrap .menu-box .footer-menu .footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 11px;
  }
  .navbar .nav-wrap .menu-box .footer-menu .footer-social li {
    margin: 0 12px 0 0;
  }
  .navbar .nav-wrap .menu-box .footer-menu .footer-copyright {
    text-align: right;
  }
  .navbar .nav-wrap #get-started {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header-wrapper {
    grid-template-columns: 1fr;
  }
  .header-wrapper .head-info .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-wrapper .head-promo {
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .footer .footer-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
  .footer .footer-wrap .footer-menu .menu {
    display: none;
  }
  .footer .footer-wrap .footer-menu .payment {
    margin-top: 24px;
    text-align: right;
  }
  .footer .footer-wrap .footer-social {
    position: absolute;
    top: 28px;
    left: -8px;
  }
  .footer .footer-wrap .copyright {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 28px 0;
  }

  .slider-box {
    padding: 30px 0;
  }
  .slider-box .slider-header {
    grid-template-columns: 1fr;
  }
  .slider-box .slider-header .swiper-button-prev,
.slider-box .slider-header .swiper-button-next {
    display: none;
  }
  .slider-box .slider-header .slider-toolbar .swiper-pagination {
    max-width: inherit;
  }
  .slider-box .slider-header .slider-toolbar .slide-total {
    margin-right: 0;
  }
  .slider-box .slider-header .slider-info .slider-description {
    margin-bottom: 16px;
  }

  .slider-wrapper {
    margin: 30px 0 40px;
  }

  .instruction-box .instruction-wrapper .btn-doc {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
  }

  .instruction-box .instruction-wrapper {
    grid-template-columns: 1fr;
  }
  .instruction-box .instruction-wrapper .btn-doc {
    margin-top: 16px;
    grid-row-start: 3;
  }
  .instruction-box .instruction-wrapper .btn-doc .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .instruction-box .instruction-wrapper .instruction-item {
    margin-bottom: 32px;
  }
  .instruction-box .instruction-wrapper .instruction-tab .code-box {
    margin-top: 0;
  }

  .roadmap-box .roadmap-wrapper {
    grid-template-columns: 1fr;
  }
  .roadmap-box .roadmap-info .item {
    position: relative;
    border-left: 1px solid rgba(51, 130, 223, 0.23);
    padding: 0 0 26px 26px;
  }
  .roadmap-box .roadmap-info .item.active:before {
    height: calc(100% - 28px);
  }
  .roadmap-box .d-request-btn {
    display: none;
  }
  .roadmap-box .m-request-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .price-box .price-head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .price-box .price-head .tab-head {
    margin-top: 28px;
  }
  .price-box .price-wrapper {
    overflow-x: auto;
    padding: 15px 0 22px 10px;
    margin-left: -10px;
  }
  .price-box .price-wrapper::-webkit-scrollbar {
    display: none;
  }
  .price-box .price-wrapper .price-item {
    width: 270px;
    -webkit-box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.08);
  }
  .price-box .price-wrapper .price-item.active {
    border-color: transparent;
  }
  .price-box .price-wrapper .price-item.active .btn {
    background: transparent;
    color: #3382DF;
  }

  .reinvent-box .reinvent-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 34px;
  }

  .slider-box .brands {
    padding-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    justify-items: center;
  }
  .slider-box .brands.part-brands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .slider-box .brands li {
    width: 97px;
  }
  .slider-box .brands .tabs .tab-head li {
    margin-bottom: 20px;
  }

  .solution-box .description {
    margin-top: 28px;
  }

  .question-box .title-section {
    margin-bottom: 26px;
  }
}
@media (max-width: 500px) {
  .roadmap-box .roadmap-info .item .inform {
    grid-template-columns: 1fr;
  }

  .reinvent-side .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}