.router {
  position: relative;
}

.router_btn {
  position: relative;
  width: 127px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  border: 2px solid var(--violet, #7C00E0);
  background: var(--black, #18111D);
  outline: none;
  transition: hover ease-in-out 0.3s;
  padding: 10px 34px 10px 14px;
  outline: none;
  text-align: left;
  cursor: pointer;
}

.router_btn::after,
.current::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 15px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAICAYAAADJEc7MAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABbSURBVHgBjc3RDYAgDEXR10l0BEdwBEdwA0fQFZxUJ6A8Ej4IKbQkN4SUk4qqHgAWEXnhHP4t18X+8tjYx24PsYelugwu7tDZD008RSMcQhYOIwPHUYNXto/mGbuDlB8fKJyrAAAAAElFTkSuQmCC');
  background-repeat: no-repeat;
  width: 14px;
  height: 8px;
}

.router_btn:hover {
  opacity: 0.8;
}

.router_btn.active {
  opacity: 1;
}

.router_list {
  display: none;
  width: 127px;
  position: absolute;
  z-index: 10;
  text-align: left;
  border: 2px solid var(--violet, #7C00E0);
  background: var(--black, #18111D);
  border-radius: 5px;
  top: 0px;
}

.router_list.show {
  display: block;
}

.router_item {
  display: block;
  position: relative;
  padding: 10px 34px 10px 14px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  text-decoration: unset;
  transition: all 0.3s ease-in-out;
}

.router_item:hover {
  color: #fff !important;
  opacity: 0.8;
}

/* new style */
.hero {
  padding-bottom: 108px;
}

.header_logo {
  margin-right: 55px;
}

.header_list {
  column-gap: 25px;
}

.right {
  min-width: 240px;
}

.hero_title {
  max-width: 1050px;
  margin: 0 auto 24px;
  line-height: 48px;
}

.hero_title::before {
  left: -170px;
}

.become_p2 {
  max-width: 680px;
}

.formWrp {
  width: 100%;
}

.benefit {
  padding: 100px 0 0;
  background: #022624;
}

.benefit_title {
  text-align: left;
  margin-bottom: 24px;
}

.common_inner {
  display: flex;
  column-gap: 20px;
}

.benefits_p1 {
  max-width: 680px;
}

.benefits_p2 {
  max-width: 480px;
}

.common_text {
  font-family: 'Neue Haas Grotesk Display Pro';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
}

.common_text b {
  font-weight: 600;
}

.common_col {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.benefits_p2 .common_text:last-of-type {
  margin-top: 19px;
}

.common_list {
  padding-left: 30px;
}

.what {
  padding: 100px 0 0;
  background: #022624;
}

.what_title {
  margin-bottom: 24px;
}

.what_img {
  border-radius: 15px;
}

.what_img.tab,
.what_img.mob {
  display: none;
}

.invest {
  padding: 100px 0 40px;
  background: #022624;
}

.invest_title {
  text-align: left;
  margin-bottom: 24px;
}

.try {
  padding: 0 0 100px;
  background: #022624;
}

.try_title {
  margin-bottom: 24px;
}

.try_title2 {
  margin: 100px 0 24px;
}

.try_p1,
.tr_p2 {
  width: 50%;
  row-gap: 25px;
}

.faq_itemTitle {
  line-height: 57.5px !important;
}

@media (max-width: 1250px) {
  .hero_title {
    line-height: 40px;
  }

  .hero_title::before {
    left: 0;
  }

  .header_inner {
    padding: 0 25px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .header_list {
    order: 1;
    min-width: 750px;
    margin: 0 auto;
    column-gap: 35px;
    justify-content: center;
  }

  .right {
    min-width: unset;
  }

  .common_text {
    font-size: 18px;
    line-height: 22px;
  }

  .benefits_p1,
  .benefits_p2 {
    width: 50%;
    max-width: unset;
  }

  .smart_formWrp {
    max-width: 387px !important;
  }

  .smart_form {
    padding: 32px !important;
  }

  .smart .form__title {
    font-size: 36.2812px !important;
    line-height: 41px !important;
  }
}

@media (max-width: 1023px) {

  .benefits,
  .what {
    padding-top: 80px;
  }

  .what_img.desk {
    display: none;
  }

  .what_img.tab {
    display: block;
  }

  .invest {
    padding: 85px 0 55px;
  }

  .try {
    margin-top: -20px;
    padding-bottom: 80px;
  }

  .try_title2 {
    margin-top: 80px;
  }
}

@media (max-width: 767px) {

  .router_btn,
  .router_item {
    font-size: 14px;
    line-height: 14px;
  }

  .router_btn,
  .router_list {
    width: 102px;
  }

  .router_btn::after,
  .current::after {
    top: 12px;
  }

  .header_inner {
    padding: 0;
  }

  .header_logo {
    margin: auto auto auto 0;
    max-width: 136px;
  }

  .header_list {
    min-width: unset;
  }

  .hero_title {
    line-height: 26px;
  }

  .hero_title::before {
    left: unset;
  }

  .common_inner {
    flex-direction: column;
    row-gap: 20px;
  }

  .common_col {
    width: 100%;
  }

  .common_text {
    font-size: 16px;
    line-height: 19px;
  }

  .benefits,
  .what {
    padding-top: 80px;
  }

  .benefit_title,
  .what_title,
  .invest_title,
  .try_title,
  .try_title2 {
    margin-bottom: 20px;
  }

  .what_img.tab {
    display: none;
  }

  .what_img.mob {
    display: block;
    margin-bottom: 20px;
  }

  .invest {
    padding: 80px 0 50px;
  }

  .faq_itemTitle {
    line-height: 120% !important;
  }

  .smart_formWrp {
    max-width: 290px !important;
  }

  .smart_form {
    padding: 24px !important;
  }

  .smart .form__title {
    font-size: 26.5909px !important;
    line-height: 30px !important;
  }
}