@font-face {
  font-family: "Atyp Display";
  src: url("../fonts/AtypDisplay-Light.eot");
  src: local("Atyp Display Light"), local("AtypDisplay-Light"), url("../fonts/AtypDisplay-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/AtypDisplay-Light.woff2") format("woff2"), url("../fonts/AtypDisplay-Light.woff") format("woff"), url("../fonts/AtypDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Atyp Display";
  src: url("../fonts/AtypDisplay-Regular.eot");
  src: local("Atyp Display"), local("AtypDisplay-Regular"), url("../fonts/AtypDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/AtypDisplay-Regular.woff2") format("woff2"), url("../fonts/AtypDisplay-Regular.woff") format("woff"), url("../fonts/AtypDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Atyp Display";
  src: url("../fonts/AtypDisplay-Semibold.eot");
  src: local("Atyp Display Semibold"), local("AtypDisplay-Semibold"), url("../fonts/AtypDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/AtypDisplay-Semibold.woff2") format("woff2"), url("../fonts/AtypDisplay-Semibold.woff") format("woff"), url("../fonts/AtypDisplay-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Atyp Display";
  src: url("../fonts/AtypDisplay-Bold.eot");
  src: local("Atyp Display Bold"), local("AtypDisplay-Bold"), url("../fonts/AtypDisplay-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/AtypDisplay-Bold.woff2") format("woff2"), url("../fonts/AtypDisplay-Bold.woff") format("woff"), url("../fonts/AtypDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
:root {
  --color-primary: #cefd54;
  --color-dark: #121212;
  --font-family: "Atyp Display";
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-base: 1.5;
  --line-height-heading: 1.2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family), sans-serif;
  font-size: 16px;
  line-height: var(--line-height-base);
  color: #000;
}

.grid {
  padding-right: 24px;
  padding-left: 24px;
}
@media (min-width: 1024px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 1280px) {
  .grid {
    padding-right: 80px;
    padding-left: 80px;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.header__logo {
  display: block;
  height: 32px;
}
.header__actions {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.header__btn {
  position: relative;
  display: inline-block;
  height: 32px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 32px;
  color: #000;
  text-decoration: none;
  background-color: var(--color-primary);
  border-radius: 20px;
  transition: 0.15s;
}
.header__btn:hover {
  color: #fff;
  background-color: var(--color-dark);
}
.header__btn--dark {
  color: #fff;
  background-color: var(--color-dark);
}
.header__btn--dark:hover {
  color: #000;
  background-color: var(--color-primary);
}
@media (min-width: 640px) {
  .header {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header--static {
    position: sticky;
    background-color: #fff;
  }
}
@media (min-width: 1280px) {
  .header {
    padding: 40px;
  }
  .header__logo {
    height: 40px;
  }
  .header__btn {
    height: 40px;
    padding: 0 32px;
    line-height: 40px;
  }
}

.intro {
  position: relative;
  padding: 40px 24px;
}
.intro__content {
  margin-bottom: 56px;
}
.intro__title {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-heading);
}
.intro__title-highlight {
  display: inline-block;
  padding: 4px 8px;
  background-color: var(--color-primary);
}
.intro__subtitle {
  margin: 0 0 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: var(--line-height-heading);
  letter-spacing: 1px;
}
.intro__btn {
  display: inline-block;
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: 48px;
  text-decoration: none;
  color: #fff;
  background-color: var(--color-dark);
  border-radius: 24px;
  transition: color 0.15s, background-color 0.15s;
}
.intro__btn:hover {
  color: #000;
  background-color: var(--color-primary);
}
.intro__media {
  position: relative;
}
.intro__img {
  width: 100%;
  height: 80vw;
  object-fit: cover;
  object-position: right bottom;
  border-radius: 32px;
}
.intro__bubble {
  position: absolute;
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding: 16px 48px 16px 16px;
  line-height: var(--line-height-heading);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 42px;
  zoom: 0.8;
}
.intro__bubble--send {
  top: 24px;
  right: 24px;
}
.intro__bubble--receive {
  bottom: 120px;
  left: 24px;
}
.intro__bubble-type {
  margin-bottom: 4px;
  font-size: 14px;
}
.intro__bubble-amount {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
}
@media (min-width: 640px) {
  .intro {
    display: flex;
    padding: 0;
  }
  .intro__content {
    flex-grow: 1;
    align-self: center;
    margin-bottom: 0;
    padding: 64px 24px 0;
  }
  .intro__media {
    flex-shrink: 0;
    width: 50%;
  }
  .intro__img {
    height: 100%;
    border-radius: 0 0 0 64px;
  }
  .intro__bubble--send {
    top: 20%;
  }
  .intro__bubble--receive {
    bottom: 30%;
  }
}
@media (min-width: 1024px) {
  .intro {
    height: 100vh;
  }
  .intro__title {
    font-size: 40px;
  }
}
@media (min-width: 1280px) {
  .intro__content {
    padding: 120px 80px 0;
  }
  .intro__title {
    margin-bottom: 56px;
    font-size: 56px;
  }
  .intro__subtitle {
    margin-bottom: 72px;
    font-size: 24px;
  }
  .intro__btn {
    height: 64px;
    padding: 0 48px;
    font-size: 18px;
    line-height: 64px;
    border-radius: 32px;
  }
  .intro__bubble {
    zoom: 1;
  }
  .intro__bubble--send {
    right: 72px;
  }
  .intro__bubble--receive {
    bottom: 40%;
    left: 56px;
  }
}

.embedded {
  padding: 40px 0;
  overflow: hidden;
}
.embedded__header {
  margin-bottom: 24px;
}
.embedded__title {
  margin: 0;
  font-size: 28px;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
}
.embedded__body {
  margin-bottom: 56px;
}
.embedded__text {
  color: #333;
}
.embedded__text + .embedded__text {
  margin-top: 16px;
}
.embedded__running-line {
  display: flex;
  padding-left: 24px;
}
.embedded__slogan {
  padding-right: 24px;
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .embedded {
    padding: 80px 0;
  }
}
@media (min-width: 1024px) {
  .embedded__title {
    grid-column: span 5;
    font-size: 40px;
  }
  .embedded__text {
    grid-column: span 5;
    font-size: 18px;
  }
  .embedded__text + .embedded__text {
    margin-top: 0;
    grid-column: 7/12;
  }
  .embedded__slogan {
    font-size: 48px;
  }
}
@media (min-width: 1280px) {
  .embedded {
    padding: 144px 0 72px;
  }
  .embedded__header {
    margin-bottom: 72px;
  }
  .embedded__title {
    font-size: 56px;
  }
  .embedded__body {
    margin-bottom: 96px;
  }
  .embedded__text {
    font-size: 24px;
  }
  .embedded__running-line {
    padding-left: 80px;
  }
  .embedded__slogan {
    padding-right: 80px;
    font-size: 72px;
  }
}

.fit {
  padding-bottom: 64px;
}
.fit__img {
  max-width: 100%;
}
.fit__title {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
}
.fit__text {
  color: #333;
}
.fit__text + .fit__text {
  margin-top: 16px;
}
.fit__btn {
  display: inline-block;
  height: 48px;
  margin-top: 32px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: 48px;
  text-decoration: none;
  color: #fff;
  background-color: var(--color-dark);
  border-radius: 24px;
  transition: color 0.15s, background-color 0.15s;
}
.fit__btn:hover {
  color: #000;
  background-color: var(--color-primary);
}
.fit__media {
  display: none;
}
@media (min-width: 1024px) {
  .fit__img {
    display: none;
  }
  .fit__grid {
    align-items: center;
    padding-right: 0;
  }
  .fit__body {
    grid-column: span 5;
  }
  .fit__title {
    font-size: 40px;
  }
  .fit__text {
    font-size: 18px;
  }
  .fit__media {
    position: relative;
    display: block;
    grid-column: 7/13;
  }
  .fit__piece {
    position: absolute;
    top: 36%;
    left: 12.5%;
  }
  .fit__puzzle {
    max-width: 100%;
  }
}
@media (min-width: 1280px) {
  .fit {
    padding-bottom: 96px;
  }
  .fit__title {
    margin-bottom: 72px;
    font-size: 56px;
  }
  .fit__text {
    font-size: 20px;
  }
  .fit__text + .fit__text {
    margin-top: 48px;
  }
  .fit__btn {
    height: 64px;
    margin-top: 56px;
    padding: 0 48px;
    font-size: 18px;
    line-height: 64px;
    border-radius: 32px;
  }
}

.globally {
  padding: 64px 24px;
  background: var(--color-dark) url("../img/globally.png") center no-repeat;
  background-size: cover;
}
.globally__title {
  margin: 0;
  font-size: 28px;
  font-weight: var(--font-weight-regular);
  color: #fff;
}
.globally__line {
  margin: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.globally__grid {
  padding: 0;
}
.globally__counters {
  display: flex;
  column-gap: 80px;
  margin-bottom: 56px;
}
.globally__counter-amount {
  font-size: 64px;
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-base);
  color: var(--color-primary);
}
.globally__counter-label {
  font-weight: var(--font-weight-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.globally__text {
  color: #fff;
}
.globally__text + .globally__text {
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .globally {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .globally__title {
    font-size: 40px;
  }
  .globally__counters {
    grid-column: span 6;
    margin-bottom: 0;
  }
  .globally__body {
    grid-column: span 6;
  }
  .globally__text {
    font-size: 18px;
  }
  .globally__text + .globally__text {
    margin-top: 24px;
  }
}
@media (min-width: 1280px) {
  .globally {
    padding: 120px 80px;
  }
  .globally__title {
    font-size: 64px;
  }
  .globally__line {
    margin: 80px 0;
  }
  .globally__grid {
    padding: 0;
  }
  .globally__counter-amount {
    font-size: 96px;
  }
  .globally__counter-label {
    font-size: 20px;
  }
  .globally__body {
    grid-column: span 5;
  }
  .globally__text {
    font-size: 20px;
  }
  .globally__text + .globally__text {
    margin-top: 48px;
  }
}

.compliance {
  padding: 64px 24px;
}
.compliance__title {
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-base);
}
.compliance__tabs {
  position: relative;
  margin: 0 -24px 40px;
}
.compliance__tabs::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  border-bottom: 1px solid #ddd;
}
.compliance__tabs-scroll {
  display: flex;
  column-gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.compliance__tabs-scroll::-webkit-scrollbar {
  display: none;
}
.compliance__tabs-btn {
  padding: 0 0 24px;
  font: inherit;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  white-space: nowrap;
  background: 0;
  border: solid transparent;
  border-width: 0 0 9px;
  cursor: pointer;
  outline: 0;
  transition: border-color 0.15s;
}
.compliance__tabs-btn:hover {
  border-color: #eee;
}
.compliance__tabs-btn:first-child {
  margin-left: 24px;
}
.compliance__tabs-btn:last-child {
  margin-right: 24px;
}
.compliance__tabs-btn--active {
  border-bottom-color: var(--color-primary);
  pointer-events: none;
}
.compliance__item {
  display: none;
  padding: 0;
}
.compliance__item--active {
  display: grid;
}
.compliance__text {
  margin-bottom: 40px;
  font-size: 18px;
}
.compliance__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vw;
  max-height: 400px;
  background-color: #fafafa;
  border-radius: 8px;
  overflow: hidden;
}
.compliance__risk {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .compliance {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .compliance__tabs {
    margin-bottom: 64px;
  }
  .compliance__item {
    align-items: center;
  }
  .compliance__text {
    grid-column: span 4;
    margin-bottom: 0;
  }
  .compliance__media {
    height: 540px;
    max-height: none;
    grid-column: 6/13;
  }
}
@media (min-width: 1280px) {
  .compliance {
    padding: 120px 80px;
  }
  .compliance__title {
    margin-bottom: 96px;
    font-size: 56px;
  }
  .compliance__tabs {
    margin: 0 0 80px;
  }
  .compliance__tabs-scroll {
    column-gap: 80px;
  }
  .compliance__tabs-btn {
    padding-bottom: 40px;
    font-size: 18px;
  }
  .compliance__tabs-btn:first-child {
    margin: 0;
  }
  .compliance__tabs-btn:last-child {
    margin: 0;
  }
  .compliance__text {
    font-size: 28px;
    font-weight: var(--font-weight-light);
  }
}

.cerberus {
  padding: 64px 0;
  background-color: var(--color-primary);
  overflow: hidden;
}
.cerberus__title {
  margin: 0 0 32px;
  font-size: 72px;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  text-align: center;
  text-transform: uppercase;
}
.cerberus__subtitle {
  font-size: 22px;
}
.cerberus__text {
  margin-top: 24px;
  font-size: 18px;
}
@media (min-width: 1024px) {
  .cerberus {
    padding: 80px 0;
  }
  .cerberus__title {
    font-size: 192px;
  }
  .cerberus__subtitle, .cerberus__text {
    grid-column: 6/12;
  }
}
@media (min-width: 1280px) {
  .cerberus {
    padding: 120px 0;
  }
  .cerberus__title {
    margin-bottom: 56px;
    font-size: 232px;
  }
  .cerberus__subtitle {
    font-size: 28px;
    font-weight: var(--font-weight-light);
  }
  .cerberus__text {
    margin-top: 48px;
    font-size: 24px;
    font-weight: var(--font-weight-light);
  }
}

.cta {
  position: relative;
  padding: 320px 0 80px;
  background: url("../img/cta.jpg") top 40% center no-repeat;
  background-size: cover;
}
.cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 70%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.cta__body {
  position: relative;
  z-index: 1;
}
.cta__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  text-transform: uppercase;
  color: #fff;
}
.cta__text {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: var(--font-weight-light);
  color: #fff;
}
.cta__btn {
  display: inline-block;
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: 48px;
  text-decoration: none;
  color: #000;
  background-color: var(--color-primary);
  border-radius: 24px;
  transition: color 0.15s, background-color 0.15s;
}
.cta__btn:hover {
  color: #fff;
  background-color: var(--color-dark);
}
@media (min-width: 1024px) {
  .cta__body {
    grid-column: span 7;
  }
}
@media (min-width: 1280px) {
  .cta {
    padding: 360px 0 120px;
  }
  .cta__title {
    margin-bottom: 32px;
    font-size: 64px;
  }
  .cta__text {
    margin-bottom: 56px;
    font-size: 40px;
    line-height: var(--line-height-heading);
  }
  .cta__btn {
    height: 64px;
    padding: 0 48px;
    font-size: 18px;
    line-height: 64px;
    border-radius: 32px;
  }
}

.footer {
  padding: 40px 24px;
}
.footer__logo {
  display: flex;
  align-items: center;
  column-gap: 32px;
  margin-bottom: 32px;
}
.footer__logo-img {
  display: block;
}
.footer__logo-line {
  height: 40px;
  border-right: 1px solid #ddd;
}
.footer__logo-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__links {
  display: flex;
  column-gap: 24px;
}
.footer__link {
  color: #333;
  text-decoration: none;
}
.footer__link:hover {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 80px;
    padding-left: 80px;
  }
  .footer__logo {
    margin-bottom: 0;
  }
  .footer__links {
    column-gap: 40px;
  }
}

.text-container {
  padding: 24px;
}
.text-container h1,
.text-container h2,
.text-container h3,
.text-container h4,
.text-container h5,
.text-container h6 {
  margin: 1em 0 0.5em;
  font-weight: var(--font-weight-semibold);
}
.text-container h1 {
  margin-top: 0;
}
.text-container a {
  color: inherit;
  text-decoration: underline;
}
.text-container a:hover {
  text-decoration: none;
}
.text-container b {
  font-weight: var(--font-weight-semibold);
}
.text-container ol {
  list-style-type: none;
  counter-reset: item;
  padding: 0;
}
.text-container ol > li {
  counter-increment: item;
}
.text-container ol > li ol {
  padding-left: 1rem;
}
.text-container ol > li ol > li {
  position: relative;
  padding-left: 2rem;
}
.text-container ol > li ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counters(item, ".") " ";
}
.text-container ol ul {
  padding-left: 1rem;
  list-style: disc;
}
@media (min-width: 1280px) {
  .text-container {
    padding: 24px 80px 40px;
  }
}

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