.button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 12px 24px;
  box-sizing: border-box;
  border-radius: 2px;
  border: none;
  font-family: "Roboto Mono", monospace;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
}
.button .button-divider {
  width: 1px;
  height: 24px;
  margin: 0 16px;
}
.button.transparent {
  border: 2px solid #1D263B;
  background-color: transparent;
  color: #1D263B;
}
.button.transparent .button-divider {
  background-color: #1D263B;
}
.button.transparent:hover {
  color: #fff;
  background-color: #2E374D;
}
.button.transparent:focus {
  border: 2px solid #A889FF;
}
.button.transparent:active {
  background-color: #111726;
  color: #fff;
}
.button.transparent:disabled {
  border: 2px solid #AEB1B8;
  color: #AEB1B8;
  pointer-events: none;
}
.button.gray {
  border: 2px solid #F8F8F8;
  background-color: #F8F8F8;
  color: #111726;
}
.button.gray:hover {
  color: #fff;
  background-color: #2E374D;
}
.button.gray:focus {
  border: 2px solid #A889FF;
}
.button.gray:active {
  background-color: #111726;
  color: #fff;
}
.button.gray:disabled {
  border: 2px solid #AEB1B8;
  color: #AEB1B8;
  pointer-events: none;
}
.button.black {
  border: 2px solid #111726;
  background-color: #111726;
  color: #fff;
}
.button.black img path {
  fill: #fff;
}
.button.black .button-divider {
  background-color: #F8F8F8;
}
.button.black:hover {
  color: #fff;
  background-color: #2E374D;
}
.button.black:focus {
  border: 2px solid #A889FF;
}
.button.black:active {
  background-color: #111726;
  color: #fff;
}
.button.black:disabled {
  border: 2px solid #AEB1B8;
  background-color: #AEB1B8;
  color: #fff;
  pointer-events: none;
}

#hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: none;
  margin-left: auto;
}
#hamburger-icon .line {
  display: block;
  background: #000;
  width: 24px;
  height: 3px;
  position: absolute;
  left: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}
#hamburger-icon .line.line-1 {
  top: 0;
}
#hamburger-icon .line.line-2 {
  top: 50%;
}
#hamburger-icon .line.line-3 {
  top: 100%;
}
#hamburger-icon:hover .line-1, #hamburger-icon:focus .line-1 {
  transform: translateY(-1.5px);
  -webkit-transform: translateY(-1.5px);
  -moz-transform: translateY(-1.5px);
}
#hamburger-icon:hover .line-3, #hamburger-icon:focus .line-3 {
  transform: translateY(1.5px);
  -webkit-transform: translateY(1.5px);
  -moz-transform: translateY(1.5px);
}
#hamburger-icon.active .line-1 {
  transform: translateY(9px) translateX(0) rotate(45deg);
  -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
  -moz-transform: translateY(9px) translateX(0) rotate(45deg);
}
#hamburger-icon.active .line-2 {
  opacity: 0;
}
#hamburger-icon.active .line-3 {
  transform: translateY(-9px) translateX(0) rotate(-45deg);
  -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
  -moz-transform: translateY(-9px) translateX(0) rotate(-45deg);
}

a {
  text-decoration: none;
  color: #95a5a6;
  display: inline-block;
}
a:hover, a:focus {
  color: #000;
}

body {
  font-family: Roboto, sans-serif;
  color: #1D263B;
  font-size: 14px;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

body {
  background: url("../img/background.281d46a9b9e3.svg") 0 0 no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  body {
    background: none;
  }
}

h1 {
  font-size: 72px;
  font-style: normal;
  font-weight: bold;
  margin-top: 144px;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  h1 {
    font-size: 60px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 34px;
  }
}

h3 {
  font-size: 22px;
}
@media (max-width: 575px) {
  h3 {
    font-size: 18px;
  }
}

.container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 991px) {
  .container {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.header {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
  z-index: 2;
}
.header .header-buttons {
  display: flex;
  flex-direction: row;
  margin-left: auto;
}
.header .header-buttons .button:first-child {
  margin-right: 16px;
}
@media (max-width: 767px) {
  .header {
    position: fixed;
    padding: 24px 30px;
    background-color: #fff;
    box-sizing: border-box;
    box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.05);
  }
  .header .header-buttons {
    display: none;
  }
  .header #hamburger-icon {
    display: block;
  }
}

menu {
  display: flex;
  position: fixed;
  width: 100vw;
  top: 65px;
  background-color: #fff;
  z-index: 1;
  height: calc(100vh - 68px);
  margin: 0;
  flex-direction: column;
  padding-top: 40px;
  transform: translateX(-200%);
  transition: transform 0.3s ease 0.1s, background-color 0.1s ease 0s;
}
menu > a, menu .anchor-link {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #1D263B;
  margin-bottom: 32px;
  cursor: pointer;
}
menu.active {
  transform: translateX(0);
}

.swap-buttons {
  display: flex;
  flex-direction: row;
  margin-top: 32px;
}
.swap-buttons .button svg:not(:last-child) {
  margin-right: 12px;
}
.swap-buttons .button:first-child {
  margin-right: 16px;
}
@media (max-width: 767px) {
  .swap-buttons {
    flex-direction: column;
  }
  .swap-buttons .button:first-child {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  main {
    padding-top: 68px;
  }
}
main .swap .contact-us {
  margin-top: 40px;
  font-weight: 500;
}
main .swap .contact-us a {
  color: #6A35FF;
}
main .swap .contact-us .contact-divider {
  color: #6A35FF;
}
main .metrics {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 120px;
  padding: 82px 0;
  background-color: #1D263B;
  color: #F2F6F7;
}
main .metrics .metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .metrics .metric span {
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
}
main .metrics .metric span.metric-value {
  font-weight: bold;
  font-size: 32px;
  line-height: 40px;
}
@media (max-width: 575px) {
  main .metrics {
    flex-direction: column;
    padding: 41px 0;
  }
  main .metrics .metric:not(:last-child) {
    margin-bottom: 30px;
  }
  main .metrics .metric:not(:last-child) span {
    font-size: 16px;
  }
  main .metrics .metric:not(:last-child) span.metric-value {
    font-size: 26px;
  }
}
main .description {
  display: flex;
  flex-direction: column;
  padding: 192px 15% 120px;
}
main .description .description-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
main .description .description-row:nth-child(2n) {
  flex-direction: row-reverse;
}
main .description .description-row:not(:last-child) {
  margin-bottom: 64px;
}
main .description .description-row .description-content {
  max-width: 55%;
}
main .description .description-row img {
  height: 319px;
  width: 319px;
}
@media (max-width: 1279px) {
  main .description .description-row img {
    height: 240px;
    width: 240px;
  }
}
@media (max-width: 991px) {
  main .description .description-row img {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  main .description .description-row {
    flex-direction: column-reverse !important;
    text-align: center;
  }
  main .description .description-row .description-content {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  main .description {
    padding: 10%;
  }
}
main .how-it-works {
  background: linear-gradient(-9deg, #DFE2E8 55%, #F8FAFA 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 44px 144px;
}
@media (max-width: 991px) {
  main .how-it-works {
    padding: 40px;
  }
}
main .how-it-works h2 {
  font-weight: bold;
  font-size: 48px;
  line-height: 40px;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  main .how-it-works h2 {
    font-size: 30px;
  }
}
main .how-it-works .usdc-on-stellar {
  margin-bottom: 0;
}
main .how-it-works .steps {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 144px;
}
@media (max-width: 991px) {
  main .how-it-works .steps {
    margin-bottom: 50px;
  }
}
main .how-it-works .steps .steps-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  flex: 1;
}
main .how-it-works .steps .step {
  box-sizing: border-box;
  flex: 1;
  min-width: 296px;
  height: 256px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 48px 24px;
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.05);
  margin: 0px 16px 32px;
}
main .how-it-works .steps .step h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 17px;
}
main .how-it-works .steps .step .step-description {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 28px;
}
main .how-it-works .steps .step .button {
  height: 56px;
}
main .how-it-works .how-it-works-description {
  font-size: 16px;
  line-height: 28px;
  max-width: 50%;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  main .how-it-works .how-it-works-description {
    max-width: 100%;
  }
}
main .wallets {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 44px 120px;
}
@media (max-width: 991px) {
  main .wallets {
    padding: 40px;
  }
}
main .wallets h2 {
  font-weight: bold;
  font-size: 48px;
  line-height: 40px;
}
@media (max-width: 767px) {
  main .wallets h2 {
    font-size: 30px;
  }
}
main .wallets .wallets-question {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 38px;
}
main .wallets .wallet-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 1800px;
}
main .wallets .wallet-row .wallet {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 300px;
  box-sizing: border-box;
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.05);
  padding: 56px 48px;
  margin: 0px 16px 32px;
}
main .wallets .wallet-row .wallet .wallet-logo {
  height: 40px;
  margin-bottom: 40px;
}

footer {
  background-color: #1D263B;
  padding: 82px 80px 48px;
}
@media (max-width: 991px) {
  footer {
    padding: 82px 40px 48px;
  }
}
footer .footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  footer .footer-content img {
    display: none;
  }
}
footer .footer-content .footer-links {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
@media (max-width: 767px) {
  footer .footer-content .footer-links {
    flex-direction: column;
  }
}
footer .footer-content .footer-links .footer-links-block {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  footer .footer-content .footer-links .footer-links-block {
    margin-bottom: 20px;
  }
}
footer .footer-content .footer-links .footer-links-block h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  margin-bottom: 24px;
}
footer .footer-content .footer-links .footer-links-block a {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.01em;
  color: #AEB1B8;
  text-decoration: none;
  margin-bottom: 12px;
}
footer .footer-content .footer-links .footer-links-block a:hover {
  color: #fff;
}
footer .copyrights {
  font-family: "Roboto Mono", monospace;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  color: #DEE3E5;
  opacity: 0.6;
  text-align: center;
}

/*# sourceMappingURL=index.css.map */
