.btn {
  display: inline-block;
  /* background: #2066e6; */
  background: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.08s ease-in-out;
  outline: none;
  border-radius: 6px;
  font-weight: 400;
  font-family: 'PT Root UI Bold';
  border: 1px solid transparent;
}


.btn:active {
  transform: scale(0.98);
}

.btn:hover {
  background-color: #2d2d2d;
  border: 1px solid white;
}

.btn-outline,
.btn-trans {
  background: none;
  border: 1px solid #000;
  color: #000;
}
.btn-trans:hover {
  background: #fff;
}

.btn-white-outline {
  background: none;
  border: 1px solid #fff;
  color: #fff;
}
.btn-white-outline:hover {
  background: #fff;
  color: #000;
}

.btn-white {
  background: #fff;
  color: #000;
}
.btn-white:hover {
  background: #000;
  color: #fff;
}

.showcase-top .buttons .btn.open-account-btn {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.showcase-top .buttons .btn.open-account-btn .icon-right {
  height: 12px;
  margin-left: 0.5rem;
}

.showcase-content h1 {
  font-family: 'PT Root UI Bold';
  color: var(--primary-color);
  margin-top: 3rem;
  /* font-size: 4rem; */
  font-weight: 500;
  font-style: normal;
  line-height: 1.0625;
}

.showcase-content h3 {
  margin-top: 3rem;
  font-weight: 400;
  /* font-size: 1.5rem; */
  line-height: 1.25;
  color: var(--primary-color);
}