@font-face {
  font-family: "Night";
  src: local("Night sans SemiBold"), local("Night-sans-SemiBold"),
    url("../fonts/Nightsans-SemiBold.woff2") format("woff2"),
    url("../fonts/Nightsans-SemiBold.woff") format("woff"),
    url("../fonts/Nightsans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: black;
}
a:hover {
  transition: 0.15s;
  opacity: 0.8;
}
h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
p {
  font-size: 22px;
  line-height: 1.6363636364;
  margin-bottom: 30px;
  font-weight: 300;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
button {
  border: none;
  outline: none;
  background: none;
}
header {
  padding: 10px 70px 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  box-shadow: 0 1px 1px rgb(0 0 0 / 7%);
  width: 100%;
  background: #fff;
  z-index: 999;
}

.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}
.header__burger .burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: #2f2f2f;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header__burger .burger-line + .burger-line {
  margin-top: 6px;
}
/* animate to X when open */
.header__burger.open .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger.open .burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.open .burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 60px;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: calc(100vh - 60px);
  background: #fff;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 998;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav ul {
  padding: 20px;
}
.mobile-nav li {
  border-bottom: 1px solid #eee;
}
.mobile-nav li a {
  display: block;
  padding: 14px 6px;
  font-size: 16px;
  color: #333333;
}
.mobile-nav a.mobile-register {
  color: #fff;
  background: #0047bb;
  border: 1px solid #0047bb;
  border-radius: 2px;
  text-align: center;
  margin-top: 14px;
}

.header__logo {
  font-family: Night;
  font-size: 42px;
}
.header__btns {
  display: flex;
  gap: 60px;
  row-gap: 10px;
  align-items: center;
}
.header__logo-sp-1 {
  color: #333333;
}
.header__logo-sp-2 {
  color: #ff671f;
}
.header__registerBtn {
  display: block;
  line-height: 40px;
  padding: 0 30px;
  text-align: center;
  margin-top: 5px;
  background: #ffffff;
  color: rgba(25, 111, 252, 1);
  border: 1px solid rgba(25, 111, 252, 1);
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.header__registerBtn:hover {
  opacity: 0.75;
  transition: 0.15s;
  background: #f5f7fa;
}

.header__changeLang__wrapper {
  position: relative;
}
.header__langBtn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 200;
  color: rgba(51, 51, 51, 1);
  cursor: pointer;
}
.header__langBtn img {
  height: 20px;
  width: 20px;
}
.header__changeLang__wrapper:hover span {
  color: #0047bb;
}
.header__changeLang__wrapper:hover img {
  filter: invert(15%) sepia(57%) saturate(4754%) hue-rotate(212deg)
    brightness(102%) contrast(104%);
}
.header__lang-list {
  position: absolute;
  width: 200px;
  background: #fff;
  z-index: 9999;
  left: -20px;
  text-align: left;
  box-shadow: 0 4px 12px 0 rgb(0 0 0 / 10%);
  max-height: 0px;
  transition: all 0.5s;
  overflow: hidden;
}
.header__changeLang__wrapper:hover .header__lang-list {
  max-height: 1000px;
  transition: all 0.5s;
}
.header__lang-list li {
  line-height: 42px;
  cursor: pointer;
  padding: 0 30px 0 35px;
}
.header__lang-list li a {
  display: inline-block;
  width: 100%;
  color: #333333;
}
.header__lang-list li.active a {
  color: #0047bb;
}
.webpage__wrapper {
  padding: 120px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__wrapper {
  padding-left: calc(8% + 15px);
  padding-right: calc(8% + 15px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__inner {
  width: 100%;
}
.section__inner.section-app {
  width: 100%;
  max-width: 928px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-app .app-logo {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}
.section-app h1 {
  color: #0047bb;
  font-size: 42px;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: -0.036em;
  line-height: 1.285;
  text-align: center;
}
.section-app h3 {
  font-weight: 600;
  color: #202020;
  text-align: center;
  letter-spacing: -0.036em;
}
.section-app p {
  text-align: center;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 30px;
}
.blueBtn {
  letter-spacing: 0.125em;
  text-indent: -0.1em;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 60px;
  padding: 23px 40px;
  font-size: 24px;
  background: #0047bb;
  color: #fff;
  border-radius: 999px;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgb(0 0 0 / 10%), 0 2px 4px rgb(0 0 0 / 10%);
  letter-spacing: 0.125em;
  text-indent: -0.1em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.blueBtn:hover {
  box-shadow: 0 6px 7px 0 rgb(0 0 0 / 15%), 0 0px 5px 0px rgb(0 0 0 / 10%);
  opacity: 1;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  transition: 0.35s;
}
.section-app .phoneImg {
  width: 100%;
  height: 500px;
  object-position: top;
  object-fit: cover;
}
.section__wrapper.section-award-wrap {
  padding: 120px calc(8% + 15px);
  background: #f6f6f6;
}
.section-award {
  display: flex;
  gap: 70px;
  align-items: center;
}
.section-award div {
  width: 50%;
}
.section-award .awardImg-div img {
  width: 100%;
}
.section-award h2 {
  color: #0047bb;
  font-size: 42px;
  line-height: 1.285;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.036em;
}
.awardImg-div h2 {
  display: none;
  width: 100%;
  text-align: center;
}
.award-content ul {
  margin-top: 50px;
}
.award-content li {
  margin-bottom: 60px;
}
.award-content li h4 {
  font-size: 30px;
  font-weight: 500;
  color: #333333;
  margin: 0;
  line-height: 1.6363636364;
}
.award-content li p {
  font-size: 24px;
  font-weight: 400;
  color: #8a8a8a;
}
.award-content li a {
  color: #1d1dff;
  font-size: 30px;
  font-weight: 500;
  transition: 0.15s;
}
.award-content li a:hover {
  transition: 0.15s;
  opacity: 0.8;
}
.section-advantages {
  padding: 150px 0 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.h-blue {
  color: #0047bb;
  font-size: 42px;
  line-height: 1.285;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.036em;
}
.section-advantages h2 {
  width: 100%;
  text-align: center;
}
.section-advantages ul {
  opacity: 0.9;
  font-size: 20px;
  line-height: 38px;
  text-align: left;
  list-style: disc;
  color: #202020;
}
.section-advantages ul .last {
  list-style: none;
  margin-left: -25px;
}
.section-advantages ul .last a {
  text-decoration: underline;
  color: #2461c5;
  font-style: italic;
}
.advantages-img {
  width: 100%;
  max-width: 722px;
  margin-bottom: 60px;
}
.downloadApp__wrapper {
  display: flex;
  justify-content: space-around;
  gap: 25px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 557px;
}
.downloadApp__wrapper img {
  width: 100%;
  max-width: 160px;
}
.section-regulated_wrapper {
  background-position: center;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 200px;
}
.section-regulated__inner p {
  opacity: 0.8;
  width: 100%;
  max-width: 559px;
  margin-bottom: 113px;
}
.section-regulated__inner .blueBtn {
  margin: 0 auto 0 auto;
}
.section-regulated__inner .btn-wrap-center {
  width: 100%;
  display: flex;
  justify-items: center;
}
.section-activation-wrap {
  background: #f6f6f6;
}
.section-activation {
  max-width: 1114px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-activation h2 {
  max-width: 532px;
  margin-bottom: 20px;
  text-align: center;
}
.section-activation .steps {
  display: flex;
  gap: 20px;
}
.section-activation .steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-activation .steps img {
  margin-top: 50px;
  margin-bottom: 40px;
  max-width: 186px;
  width: 100%;
}
.section-activation .steps h3 {
  font-size: 30px;
  color: #333;
  font-weight: 400;
}
.section-activation .steps p {
  opacity: 0.6;
  font-size: 24px;
  color: #8a8a8a;
  line-height: 26px;
  font-weight: 400;
  text-align: center;
}
.section-activation .btn-wrap-center {
  margin: 50px 0 40px 0;
}
.section-payMethods-wrap {
  padding: 40px 0 30px 0;
}
.section-payMethods-wrap h2 {
  text-align: center;
}
.section-payMethods-wrap ul {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.section-payMethods-wrap ul img {
  width: 100%;
  max-width: 200px;
}
.section-payMethods-wrap .section__inner {
  max-width: 1021px;
  width: 100%;
}
.modalRegisterNow {
  background: #fff;
  max-width: 600px;
  width: 100%;
  height: 150px;
  position: fixed;
  bottom: 15px;
  margin-left: -300px;
  display: none;
  justify-content: center;
  align-items: center;
}
.modalRegisterNow.visible {
  display: flex;
}
.modalRegisterNow a {
  display: block;
  width: 336px;
  height: 72px;
  line-height: 72px;
  background: rgba(25, 111, 252, 1);
  border-radius: 3px;
  font-size: 29px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  text-decoration: none;
}
.section-trade-wrap {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-trade-wrap img {
  width: 100%;
}
.section-trade-wrap .section__inner {
  display: flex;
  gap: 65px;
}
.section-trade-wrap .section__inner div {
  width: 50%;
}

.h-border-bottom {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #ff671f;
  font-size: 32px;
  font-weight: 400;
  color: #333333;
  line-height: 48px;
}
.small-p {
  padding-top: 20px;
  padding-bottom: 15px;
  font-size: 16px;
  font-family: roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
  color: rgba(51, 51, 51, 1);
  line-height: 24px;
  font-weight: 400;
  margin: 0;
}
.mob-view {
  display: none !important;
}
.btnOpenAcc {
  display: inline-block;
  outline: none;
  background: #ffffff;
  border: 1px solid #0047bb;
  margin: 0;
  border-radius: 0;
  line-height: 40px;
  font-size: 16px;
  margin-bottom: 20px;
  color: #0047bb;
  padding: 0 16px;
  font-family: roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  transition: background 0.25s;
  -moz-transition: background 0.25s;
  -webkit-transition: background 0.25s;
  -o-transition: background 0.25s;
}
.btnOpenAcc:hover {
  color: #ffffff;
  background: #0047bb;
  opacity: 1;
}
.section-platforms-wrap {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-platforms-wrap .section__inner {
  display: flex;
  gap: 60px;
  width: 100%;
}
.section-platforms-wrap div {
  width: 50%;
}
.section-platforms-wrap img {
  width: 100%;
}
.section-platforms-wrap .h-border-bottom {
  position: relative;
  width: 100%;
}
.a-hov-red {
  position: absolute !important;
  right: 0;
  font-size: 16px;
  color: #333333;
  bottom: 6px;
  font-weight: 400;
  padding-right: 12px;
}
.a-hov-red:after {
  content: "";
  position: absolute;
  right: 0;
  width: 6px;
  height: 6px;
  border: #333333 solid;
  border-top: 2px;
  border-left: 2px;
  top: 50%;
  margin-top: -3px;
  transform: rotate(-45deg);
  border-radius: 2px;
}
.a-hov-red:hover {
  opacity: 1;
  color: #ff671f;
}
.a-hov-red:hover::after {
  border-color: #ff671f;
}
.section-platforms-wrap .h-border-bottom span {
  padding-right: 75px;
}
.section-platforms-wrap ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-platforms-wrap ul li {
  padding-left: 20px;
  position: relative;
  width: 100%;
}
.section-platforms-wrap ul li img {
  width: 10px;
  position: absolute;
  left: 0;
  top: 6px;
}
.section-platforms-wrap ul li p {
  padding: 0;
}
.section-trust-wrap {
  padding-top: 40px;
  padding-bottom: 60px;
}
.section-trust-wrap .section__inner {
  display: flex;
  gap: 60px;
  width: 100%;
}
.section-trust-wrap .section__inner div {
  width: 100%;
}
.section-trust-wrap .section__inner .h-border-bottom {
  width: 100%;
}
.trust-div400 {
  max-width: 400px;
}
.section-trust-wrap .section__inner a {
  position: relative;
  right: 0;
  font-size: 16px;
  color: #333333;
  bottom: 6px;
  font-weight: 400;
  padding-right: 12px;
}
.section-trust-wrap .section__inner a:after {
  content: "";
  position: absolute;
  right: 0;
  width: 6px;
  height: 6px;
  border: #333333 solid;
  border-top: 2px;
  border-left: 2px;
  top: 50%;
  margin-top: -3px;
  transform: rotate(-45deg);
  border-radius: 2px;
}
.section-trust-wrap .section__inner a:hover {
  opacity: 1;
  color: #ff671f;
}
.section-trust-wrap .section__inner a:hover::after {
  border-color: #ff671f;
}
.section-trust-wrap .section__inner ul {
  display: flex;
  gap: 35px;
  flex-direction: column;
}
.section-trust-wrap .section__inner li {
  position: relative;
  padding-left: 52px;
}
.section-trust-wrap .section__inner li p {
  padding: 0;
}
.section-trust-wrap .section__inner li img {
  width: 32px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -16px;
}
.trust-div650 {
  max-width: 650px;
}
.six-divs-wrap {
  padding-top: 60px;
  padding-bottom: 40px;
}
.six-divs-wrap .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.six-divs-wrap .h-border-bottom {
  padding-left: 12px;
  padding-right: 12px;
}
.three-divs {
  display: flex;
  gap: 50px;
  max-width: 850px;
  margin-top: 40px;
}
.three-divs .wrap {
  width: 100%;
  display: flex;
  gap: 30px;
}
.three-divs .wrap img {
  width: 60px;
  height: 60px;
}
.three-divs .wrap h5 {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  line-height: 24px;
  margin-bottom: 6px;
}

.p-16 {
  text-align: left;
  font-size: 16px;
  font-weight: 200;
  color: rgba(51, 51, 51, 1);
  line-height: 24px;
}
.faq-wrap {
  width: 100%;
  max-width: 980px;
  padding: 60px 100px 80px 100px;
  background: #f5f7fa;
  flex-direction: column;
}
.faq-div-up {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-div-up h3 {
  display: inline-block;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
}
.faq-div-up a {
  height: fit-content;
  top: 0;
  margin-top: 10px;
  color: #8c9ba5;
  font-weight: 400;
}
.faq-div-up a:after {
  border-color: #8c9ba5;
}
.faq-wrap .section__inner {
  width: 100%;
  background: #ffffff;
  padding: 50px 80px;
  border-radius: 20px;
}
.faq-block {
  border-bottom: 1px solid #ddd;
}
.faq-block h4 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  line-height: 32px;
  padding: 15px 15px 15px 30px;
}
.faq-block h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  height: 8px;
  width: 8px;

  border: rgba(51, 51, 51, 1) solid;
  border-bottom: 2px;
  border-left: 2px;
  transform: rotate(135deg);
  border-radius: 2px;
}
.section-main-features {
  padding-top: 40px;
  padding-bottom: 80px;
}
.section-main-features .section__inner {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-main-features .section__inner h2 {
  max-width: 500px;
  width: 100%;
  text-align: center;
}
.features-wrap {
  margin-top: 40px;
  display: flex;
  gap: 100px;
}
.feature-div {
  padding-left: 50px;
  position: relative;
}
.feature-div h5 {
  text-align: left;
  font-size: 24px;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  line-height: 32px;
  margin-bottom: 9px;
}
.feature-div img {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
}
.features-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 50%;
}
.section-footer {
  padding: 36px 0 80px 0;
  background: #eff1f2;
}
.section-footer .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}
.footer-app-logo {
  height: 50px;
  width: 50px;
  margin-bottom: 40px;
}
.footer-follow-p {
  color: rgba(77, 85, 90, 1);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-social-medias {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: center;
}
.footer-social-medias img {
  width: 36px;
  height: 36px;
}
.footer-div-text .a-link a {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: rgba(140, 155, 165, 1);
  cursor: pointer;
}
.footer-div-text .a-link {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
  text-align: center;
}
.footer-p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(77, 85, 90, 1);
  line-height: 24px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .section-award {
    flex-direction: column-reverse;
    gap: 0;
  }
  .section-award div {
    width: 100%;
  }
  .section-trade-wrap .section__inner {
    flex-direction: column-reverse;
    gap: 0;
  }
  .PC-view {
    display: none !important;
  }
  .mob-view {
    display: block !important;
  }
  .section-trade-wrap img {
    margin-top: 20px;
  }
  .btnOpenAcc {
    display: block;
    width: 100%;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    background: rgb(0, 71, 187);
    padding: 12px 0px;
  }
  .section-trade-wrap .section__inner div {
    width: 100%;
  }
  .section-platforms-wrap .h-border-bottom span {
    max-width: 275px;
  }
  .section-platforms-wrap .section__inner {
    flex-direction: column;
  }
  .section-platforms-wrap div {
    width: 100%;
  }
  .section-trust-wrap .section__inner {
    flex-direction: column;
    gap: 0;
  }
  .trust-div650 {
    max-width: 100%;
  }
  .trust-div400 {
    max-width: 100%;
  }
  .trust-div400 .small-p {
    padding-left: 13px;
    padding-right: 7px;
  }
  .three-divs {
    flex-direction: column;
    gap: 10px;
  }
  .features-wrap {
    flex-direction: column;
    gap: 0px;
  }
  .features-wrap .features-block {
    width: 100%;
    gap: 0px;
  }
  .features-wrap .features-block h5 {
    font-size: 20px;
    line-height: 32px;
  }
  .features-wrap .features-block img {
    top: 0px;
  }
}

@media screen and (max-width: 768px) {
  .header__logo {
    font-size: 32px;
  }
  .header__burger {
    display: inline-flex;
    flex-direction: column;
  }
  .header__btns {
    flex-direction: column;
  }
  .header__registerBtn {
    display: inline-block;
    text-align: center;
    height: 36px;
    line-height: 36px;
    padding: 0 2px;
    background: #3682ff;
    border-radius: 2px;
    border: 1px solid #0b6aff;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);

    margin-top: 3px;
  }
  .section-app h1 {
    font-size: 32px;
  }
  .section-app h2 {
    font-size: 18px;
  }
  p {
    font-size: 14px;
  }
  .blueBtn {
    padding: 17px 28px;
    font-size: 15px;
  }
  header {
    padding: 10px 70px 10px 20px;
  }
  .mobile-nav {
    top: 56px;
  }
  .section-app .phoneImg {
    height: 300px;
  }
  .award-content h2 {
    display: none;
  }
  .awardImg-div h2 {
    display: block;
  }
  .h-blue {
    font-size: 32px;
  }
  .award-content li h4 {
    font-size: 18px;
    font-weight: 500;
  }
  .award-content li p {
    font-size: 14px;
    font-weight: 400;
  }
  .award-content li a {
    font-size: 18px;
    font-weight: 500;
  }
  .award-content li {
    margin-bottom: 40px;
  }
  .award-content ul {
    margin: 0;
  }
  .section-advantages ul {
    font-size: 16px;
    line-height: 30px;
  }
  .section-activation .steps h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .section-activation .steps p {
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 30px;
  }
  .section-payMethods-wrap ul {
    flex-direction: column;
  }
  .h-border-bottom {
    padding-right: 15px;
    font-size: 24px;
    color: rgb(51, 51, 51);
    line-height: 32px;
    padding-bottom: 6px;
  }
  .small-p {
    font-size: 14px;
    padding-bottom: 12px;
  }
  .faq-wrap {
    padding: 60px 20px 80px 20px;
    position: relative;
    margin: 20px;
    width: calc(100% - 40px);
  }
  .faq-wrap .section__inner {
    padding: 20px 20px 40px 20px;
  }
  .faq-wrap .faq-div-up {
    position: unset;
  }
  .faq-wrap .faq-div-up a {
    position: absolute;
    top: unset;
    bottom: 35px;
    left: 50%;
    margin-left: -18px;
    width: fit-content;
  }
  .faq-wrap .faq-block h4 {
    font-size: 16px;
    padding-right: 0;
    line-height: 24px;
  }
  .p-16 {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
  }
}
