* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Albert Sans", sans-serif;
  font-style: normal;
  color: #0a0a0a;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.container {
  max-width: 1426px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

header .container {
  max-width: 1184px;
}

header {
  padding: 24px 0;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}

header .menu li {
  padding: 0 32px;
}

header .menu li a {
  color: rgba(10, 10, 10, 0.7);
  font-family: "Albert Sans";
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}

.start-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(10, 10, 10, 0.16);
  background: #fff;
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;
  transition: all 0.2s ease;

  color: #0a0a0a;
  font-size: 14px;
  font-style: normal;
  line-height: 19.6px;
}

.start-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
}

:root {
  --ring: #1f2937;
  --text: #e6edf3;
  --muted: #9aa4b2;
  --green: #16a34a;
  --red: #ef4444;
}
* {
  box-sizing: border-box;
}

.hero {
  position: relative;
  place-items: center;
  overflow: hidden;
  isolation: isolate;

  border-radius: 24px;
  background: radial-gradient(99.35% 132.66% at 0% 0%, #f2f5f3 0%, #f6fef7 50%, #fff 100%);
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;

  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 120px;
}

.hero::before {
  content: url("./img/bg-image-2.png");
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
}

.hero .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 564px;

  margin-bottom: 140px;
}

.info-label {
  padding: 2px 10px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 15, 16, 0.06), 0 1px 2px 0 rgba(15, 15, 16, 0.04),
    0 2px 4px 0 rgba(15, 15, 16, 0.04), 0 4px 8px 0 rgba(15, 15, 16, 0.06);

  color: rgba(10, 10, 10, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin-bottom: 40px;
}

.hero h1 {
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px; /* 120.833% */
  letter-spacing: -0.9px;
  margin-bottom: 20px;
}

.hero .subtitle {
  color: rgba(10, 10, 10, 0.7);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.2px;
  margin-bottom: 40px;
}

.load-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 12px 10px 16px;

  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */

  border-radius: 8px;
  border: 1px solid rgba(10, 10, 10, 0.16);
  background: #0a0a0a;
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;
  transition: all 0.2s ease;
}

.load-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
}

.coin-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.coin {
  position: absolute;
  width: 64px;
  height: 64px;
  animation: floatY var(--dur, 10s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  pointer-events: auto;
}
@keyframes floatY {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(-8px);
  }
}
.coin-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
  filter: blur(2.5px) brightness(0.95);
  opacity: 0.9;
}
.coin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.label {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(15, 20, 27, 0.9);
  border: 1px solid var(--ring);
  color: var(--text);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
}
.label .name {
  opacity: 0.85;
  margin-right: 8px;
}
.label .chg.up {
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.label .chg.down {
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.coin:hover {
  z-index: 3;
}
.coin:hover .coin-inner {
  filter: blur(0) brightness(1);
  transform: rotate(10deg) scale(1.2);
  opacity: 1;
}
.coin:hover .label {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(60% 60% at 50% 0%, rgba(124, 58, 237, 0.25), transparent 60%),
    radial-gradient(40% 40% at 20% 0%, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(40% 40% at 80% 0%, rgba(34, 197, 94, 0.18), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
}

/* crypto-change */

.shell-wrapper {
  border-radius: 28px;
  border: 1px solid rgba(15, 15, 16, 0.1);
  background: rgba(240, 241, 243, 0.48);
  padding: 12px;
  max-width: 554px;
  margin-bottom: 120px;
  position: relative;
  z-index: 5;
}

.shell {
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  background: #f9f9f9;

  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shell .title {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px; /* 120% */
  letter-spacing: -0.799px;
  margin-bottom: 18px;
}

.shell-label {
  padding: 2px 10px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 15, 16, 0.06), 0 1px 2px 0 rgba(15, 15, 16, 0.04),
    0 2px 4px 0 rgba(15, 15, 16, 0.04), 0 4px 8px 0 rgba(15, 15, 16, 0.06);

  color: rgba(10, 10, 10, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin-bottom: 10px;
}

.shell .panel {
  border-radius: 12px;
  border: 1px solid rgba(10, 10, 10, 0.04);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 20px;
  margin-bottom: 10px;
}

.shell .panel .amount-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shell .panel p {
  color: rgba(10, 10, 10, 0.7);
  font-family: "Albert Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.shell .panel p.total {
  color: rgba(10, 10, 10, 0.9);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}

.shell .panel p.total span {
  font-weight: 400;
}

.shell .panel p.bonus {
  color: #62a430;
  font-weight: 700;
}

.shell .panel p.bonus span {
  font-weight: 400;
}

.shell .amount-wrap input {
  border: none;
  color: #0a0a0a;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px; /* 120.833% */
  letter-spacing: -0.9px;
  max-width: 260px;

  outline: none;
}

.dong-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;

  border-radius: 14px;
  border: 1px solid #eaecf0;
  background: #f9fafb;
}

.swap-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  border: var(--stroke-weight-1, 1px) solid rgba(10, 10, 10, 0.16);
  background: #fff;
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;
  cursor: pointer;

  margin-top: -28px;
  margin-bottom: -16px;
  position: relative;
  z-index: 2;
}

.started-btn {
  border-radius: 8px;
  background: #0a0a0a;
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;

  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  cursor: pointer;
  transition: all 0.2s ease;
}

.started-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
}

.dong-label p {
  color: #535353;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.trusted-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  max-width: 1152px;
  width: 100%;
}

.trusted-wrapper .info {
  max-width: 466px;
}

.info p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.2px;
  margin-bottom: 32px;
}

.info .title {
  font-size: 40px;
  color: #0a0a0a;
  font-style: normal;
  font-weight: 600;
  line-height: 48px; /* 120% */
  letter-spacing: -0.799px;
  margin-bottom: 238px;
}

.info .trade-label {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(10, 10, 10, 0.16);
  background: #fff;
  box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;

  color: #0a0a0a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  width: fit-content;
}

.trusted-wrapper .blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 564px;
}

.blocks .wrapper {
  display: flex;
  gap: 10px;
}

.blocks .wrapper .item {
  width: 50%;
}

.blocks .item {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  background: #f9f9f9;
  padding: 28px;
}

.blocks .item p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.2px;
}

.blocks .wrapper .item p {
  margin-bottom: 45px;
}

.blocks .wrapper .item .num {
  color: #0a0a0a;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px; /* 120.833% */
  letter-spacing: -0.9px;

  margin-bottom: 0;
}

.trade {
  padding-bottom: 120px;
}

.trade .container {
  max-width: 1184px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.trade .wrapper {
  display: flex;
  gap: 28px;
}

.trade .wrapper .item {
  width: 50%;
  border-radius: 28px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  background: rgba(240, 241, 243, 0.48);
  padding: 11px;
}

.trade .inner {
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 15, 16, 0.02), 0 1px 1px -0.5px rgba(15, 15, 16, 0.02),
    0 3px 3px -1.5px rgba(15, 15, 16, 0.02), 0 6px 6px -3px rgba(15, 15, 16, 0.02),
    0 12px 12px -6px rgba(15, 15, 16, 0.02), 0 24px 24px -12px rgba(15, 15, 16, 0.02),
    0 32px 32px -16px rgba(15, 15, 16, 0.02), 0 44px 44px -16px rgba(15, 15, 16, 0.02),
    0 -0.5px 1px 0 rgba(15, 15, 16, 0.02) inset;
}

.trade .item .text {
  padding: 32px;
}

.trade .text p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.16px;
  min-height: 72px;
}

.trade .text .title {
  color: #0a0a0a;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px; /* 150% */
  letter-spacing: -0.18px;
  min-height: auto;
  margin-bottom: 12px;
}

.item .img-block {
  width: 100%;
  height: 267px;
  background: url("./img/worldwide.png") lightgray 50% / cover no-repeat;
  border-radius: 0 0 18px 18px;
}

.item .img-2 {
  background: url("./img/money.png") lightgray 50% / cover no-repeat;
}

.item .img-3 {
  background: url("./img/global.png") #fff 50% / cover no-repeat;
}

.item .img-4 {
  background: url("./img/globe.png") lightgray 50% / cover no-repeat;
}

.item .img-5 {
  background: url("./img/volatility.png") lightgray 50% / cover no-repeat;
}

.item .img-6 {
  background: url("./img/scale.png") lightgray 50% / cover no-repeat;
}

.note .container {
  max-width: 1472px;
}

img {
  width: 100%;
}

/* faq */

:root {
  --faq-speed: 280ms;
}

.faq {
  padding: 120px 0 140px 0;
}

.faq .container {
  max-width: 1184px;
}

.wrapper {
  display: flex;
  justify-content: space-between;
}

.faq .text {
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-label {
  padding: 2px 10px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 15, 16, 0.06), 0 1px 2px 0 rgba(15, 15, 16, 0.04),
    0 2px 4px 0 rgba(15, 15, 16, 0.04), 0 4px 8px 0 rgba(15, 15, 16, 0.06);
  width: fit-content;
}

.faq-label p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 14px;
  font-style: normal;
  line-height: 19.6px;
}

.faq p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.16px;
}

.faq .title {
  color: #0a0a0a;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px; /* 120% */
  letter-spacing: -0.799px;
}

.faq-wrapper {
  max-width: 688px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
  background: #fff;
  overflow: hidden;
}
.faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-title {
  font-family: "Albert Sans", sans-serif;
  color: #0a0a0a;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  letter-spacing: -0.16px;
}
.faq-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--faq-bd);
  border-radius: 8px;
  transition: transform var(--faq-speed) ease, background var(--faq-speed) ease;
  background: #fff;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--faq-speed) ease;
}

.faq-item[open] .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  color: #3f3f46;
}

.faq-panel-inner p {
  padding: 0px 36px 20px 0px;

  color: rgba(10, 10, 10, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.16px;
}

footer {
  padding: 80px 0;
  background: #f7f7f7;
}

footer .container {
  max-width: 1392px;
}

footer .wrapper {
  padding: 32px;
  border-radius: 16px;
  border: 1px dashed rgba(10, 10, 10, 0.16);
}

footer .wrapper div {
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

footer .copy {
  color: rgba(10, 10, 10, 0.7);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 133.333% */
}

footer .info {
  max-width: 930px;

  color: rgba(10, 10, 10, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.footer-logo {
  max-height: 42px;
  width: auto;
}

.cs {
  position: relative;
  width: 220px;
  font-family: inherit;
}
.cs-button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  background: #fff;
  cursor: pointer;
  user-select: none;
}
.cs-button img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.cs-button .cs-symbol {
  font-weight: 600;
  letter-spacing: 0.2px;
}
.cs-button .cs-caret {
  margin-left: auto;
  transform: rotate(0deg);
  transition: transform 0.15s ease;
  opacity: 0.6;
}
.cs.open .cs-button .cs-caret {
  transform: rotate(180deg);
}
.cs-list {
  position: absolute;
  z-index: 50;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 260px;
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 6px;
  width: fit-content;
  display: none;
}
.cs.open .cs-list {
  display: block;
}
.cs-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.cs-option img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.cs-option .cs-symbol {
  font-weight: 600;
}
.cs-option .cs-name {
  color: rgba(10, 10, 10, 0.55);
  font-size: 12px;
}
.cs-option:hover {
  background: #f3f4f6;
}

#crypto {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

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

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

.mobile {
  display: none;
}

.toggle-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile {
    display: block;
  }

  .desk {
    display: none;
  }

  header .menu {
    display: none;
  }

  header .menu.visible {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 46px;
    width: 100%;
    height: calc(100vh - 80px);
    justify-content: start;
    padding: 40px;
    gap: 20px;
    background: #fff;
    z-index: 5;
  }

  header .menu li a {
    font-size: 20px;
    font-weight: 500;
  }

  .start-btn {
    font-size: 20px;
  }

  header .logo {
    display: flex;
  }

  .no-scroll {
    overflow: hidden;
  }

  .toggle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(10, 10, 10, 0.16);
    background: #fff;
    box-shadow: 0 1px 2px -0.5px rgba(0, 0, 0, 0.08), 0 -0.5px 0 0 rgba(0, 0, 0, 0.12) inset;
  }

  .toggle-btn span {
    width: 20px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.2s ease;
  }

  .toggle-btn.toggled span:first-child {
    transform: rotate(-45deg);
    margin-bottom: -3px;
  }

  .toggle-btn.toggled span:nth-child(2) {
    display: none;
  }

  .toggle-btn.toggled span:nth-child(3) {
    transform: rotate(45deg);
    margin-top: -3px;
  }

  .hero {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 80px;
  }

  .hero .container {
    padding: 40px 10px;
  }

  .hero h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.9px;
    margin-bottom: 20px;
  }

  .hero .content {
    margin-bottom: 60px;
  }

  .shell-wrapper {
    padding: 8px;
    max-width: 554px;
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
  }

  .shell {
    padding: 12px;
  }

  .shell .title {
    font-size: 24px;
    line-height: 28px;
  }

  .shell .panel {
    flex-direction: column;
    padding: 28px 10px;
    gap: 10px;
  }

  .shell .amount-wrap input {
    font-size: 24px;
    line-height: 28px;
  }

  .cs {
    width: 100%;
  }

  .coin {
    display: none;
  }

  .trusted-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .trusted-wrapper .blocks {
    min-width: auto;
  }

  .info .title {
    font-size: 32px;
    color: #0a0a0a;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.799px;
    margin-bottom: 32px;
  }

  .blocks .item {
    padding: 12px;
  }

  .blocks .wrapper {
    flex-direction: column;
  }

  .blocks .wrapper .item {
    width: 100%;
  }

  .blocks .wrapper .item p {
    margin-bottom: 24px;
  }

  .blocks .wrapper .item .num {
    font-size: 24px;
    line-height: 28px;
  }

  .trade {
    padding-bottom: 80px;
  }

  .trade .wrapper {
    flex-direction: column;
  }

  .trade .wrapper .item {
    width: 100%;
  }

  .trade .item .text {
    padding: 12px;
  }

  .item .img-block {
    width: 100%;
    height: 180px;
  }

  .faq {
    padding: 60px 0 80px 0;
  }

  .faq .wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .faq .title {
    font-size: 32px;
    line-height: 38px;
  }

  footer {
    padding: 40px 0;
    background: #f7f7f7;
  }

  footer .wrapper {
    padding: 12px;
    flex-direction: column;
    gap: 40px;
  }

  footer .wrapper div {
    gap: 20px;
  }
}
