@font-face {
  font-family: Dmsans;
  src: url('../ttf/dmsans-regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dmsans;
  src: url('../ttf/dmsans-medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dmsans;
  src: url('../ttf/dmsans-bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teg;
  src: url('../ttf/teg-extralight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teg;
  src: url('../ttf/teg-light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teg;
  src: url('../ttf/teg-thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teg;
  src: url('../ttf/teg-medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teg;
  src: url('../ttf/teg-semibold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teg;
  src: url('../ttf/teg-extrabold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teg;
  src: url('../ttf/teg-black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teg;
  src: url('../ttf/teg-regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helveticaneue;
  src: url('../otf/helveticaneue-light.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --text-green: #064806;
  --medium-grey: #7a7a7a;
  --grey: #f5f5f7;
  --9c9c9c: var(--dark-grey);
  --light-pink: #f0a9a7;
  --maroon: #752522;
  --indian-red: #dd524c;
  --slate-grey: #535353;
  --medium-sea-green: #53a9ba;
  --dark-grey: #565656;
  --royal-blue: #1865ff;
  --primary-green: #045137;
  --daf1ea: #f1f9f6;
  --ocean-blue: #cee9df;
  --burnt-orange: #d05f0d;
  --dark-green: #23322d;
  --purple: #433968;
  --light-orange: #eedabe;
  --green-text: #0b5c3e;
  --opaque-dark-green: #23322d0d;
  --white: white;
  --light-grey: #767676;
  --neon-green: #0be49b;
  --light-black: #1a1a1a;
  --transparent: #0000;
  --secondary-green: #97d6c3;
  --grey-5: #727272;
  --color: white;
  --light-blue: #e0f4fe;
  --dark-black: #272727;
  --color-3: #272727;
  --grey-2: #ccc;
  --grey-3: #00000075;
  --grey-4: #545454;
  --light-purple: #4339681a;
  --light-green: #e4f4ef;
  --opaque-light-orange: #eedabe66;
  --opaque-primary-green: #04513733;
  --dark: #1e1e1e;
  --opaque-black: #000000b3;
  --text-color: #585757;
  --light-dark: #444;
  --dark-text: #1c1c1c;
  --color-2: #363636;
  --color-4: #10a97d;
  --color-5: #0e9f6f;
  --deep-maroon: #3e1d04;
  --light-gray: #43413d;
  --footer-heading: #f0f9f6;
  --green-mid: #043304;
  --dark-secondary: #111;
  --deep-green: #055137;
  --dark-slate-blue: #374151;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  color: var(--black);
  font-family: Dmsans, sans-serif;
  font-size: 14px;
  line-height: 20px;
  overflow: visible;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
  transition: all .4s;
}

img {
  max-width: 100%;
  display: inline-block;
}

.sg-container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.component-wrapper {
  z-index: 10;
  background-color: #fff;
  border-bottom: 1px solid #dadada99;
  padding: 100px 40px 20px;
  position: sticky;
  top: -80px;
}

.uc-h1 {
  color: var(--text-green);
  font-family: Teg, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 52.58px;
}

.uc-h1.cc-play {
  opacity: 1;
  transform: translate(0)perspective(1578px)rotate(0);
}

.component-inner {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  border-bottom: 1px solid #dadada99;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 40px;
  display: flex;
}

.uc-h2 {
  font-family: Teg, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1875;
}

.uc-h2.cc-alt {
  font-family: Dmsans, sans-serif;
}

.component-grid {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex: 1;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 800px;
  display: grid;
}

.component-grid_item {
  grid-column-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 200px;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.component-grid_item:hover {
  border-radius: 10px;
}

.component-preview {
  background-color: #f3f4f6;
  border: 1px solid #e2e3e5;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
  display: flex;
}

.uc-h3 {
  font-size: 30px;
  line-height: 1;
}

.sm-paragraph {
  color: var(--medium-grey);
  letter-spacing: -.32px;
  height: 36px;
  font-family: Teg, sans-serif;
  font-size: 14px;
  line-height: 18px;
}

.uc-grey-text {
  color: #6d798e;
}

.component-details {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.component-block {
  padding: 40px;
}

.component-title_wrapper {
  margin-bottom: 20px;
}

.uc-h4 {
  font-size: 24px;
  line-height: 1;
}

.component-block_inner {
  grid-row-gap: 24px;
  border: 1px solid var(--grey);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.component-block_inner.cc-alt {
  grid-column-gap: 48px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 100px 40px;
}

.component-form_block {
  margin-bottom: 0;
}

.component-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.c-input {
  color: var(--black);
  border: 1px #000;
  border-radius: 16px;
  min-width: 250px;
  min-height: 58px;
  margin-bottom: 0;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  position: relative;
}

.c-input::placeholder {
  color: var(--9c9c9c);
}

.c-input.cc-error {
  border-color: var(--light-pink);
  color: var(--maroon);
  padding-right: 40px;
}

.c-input.cc-error:focus {
  outline-color: var(--indian-red);
  border-color: #f0a9a700;
}

.c-input.cc-error::placeholder {
  color: var(--light-pink);
}

.c-input.cc-disabled {
  cursor: not-allowed;
  background-color: #f9fafb;
}

.c-input.cc-disabled::placeholder {
  color: var(--slate-grey);
}

.c-input.cc-success {
  border-color: var(--medium-sea-green);
}

.c-input.cc-success:focus {
  outline-color: var(--medium-sea-green);
  border-color: #f0a9a700;
}

.c-input.cc-leading-pad {
  padding-left: 40px;
}

.c-input.cc-trailing-pad {
  padding-right: 170px;
}

.c-input.cc-add-on {
  border-left-style: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.c-input.cc-add-on.cc-trailing {
  border-left-style: solid;
  border-right-style: none;
  border-radius: 6px 0 0 6px;
}

.c-input.cc-custom {
  padding-left: 65px;
}

.c-input.cc-inset {
  padding-top: 38px;
  padding-bottom: 18px;
}

.c-input.cc-inset.cc-top {
  border-bottom-width: .5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.c-input.cc-inset.cc-top:focus {
  z-index: 1;
}

.c-input.cc-inset.cc-bottom {
  border-top-width: .5px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.c-input.cc-top {
  border-bottom-width: .5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.c-input.cc-top:focus {
  z-index: 1;
}

.c-input.cc-bottom {
  border-top-width: .5px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.c-input.cc-bottom:focus {
  z-index: 1;
}

.c-input.cc-bottom.cc-left {
  border-right-width: .5px;
  border-bottom-right-radius: 0;
}

.c-input.cc-bottom.cc-right {
  border-left-width: .5px;
  border-bottom-left-radius: 0;
}

.c-input.cc-pill {
  border-radius: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.c-input.cc-alt {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--grey);
  background-color: #f9fafb;
  border-radius: 0;
  outline-width: 0;
}

.c-input.cc-alt:focus {
  border-bottom-color: #1865ff;
  outline-width: 0;
}

.c-label_wrapper {
  grid-column-gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.c-label_wrapper.cc-inset {
  z-index: 2;
  width: 100%;
  padding-top: 8px;
  padding-left: 12px;
  padding-right: 12px;
  position: absolute;
  inset: 0% 0% auto;
}

.c-label_wrapper.cc-overlap {
  z-index: 1;
  width: 100%;
  padding-left: 8px;
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
}

.c-label_wrapper.cc-pill {
  padding-left: 20px;
  padding-right: 20px;
}

.c-label {
  font-weight: 500;
  line-height: 1.2em;
}

.c-help {
  color: var(--slate-grey);
  align-items: center;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2em;
  display: flex;
}

.c-help.cc-error {
  color: var(--indian-red);
}

.c-input_wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.c-prompt {
  color: var(--slate-grey);
  align-items: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2em;
  display: flex;
}

.c-prompt.cc-error {
  color: var(--indian-red);
}

.c-form_icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translate(0%, -50%);
}

.c-form_icon.cc-trailing {
  left: auto;
  right: 12px;
}

.input-add-on {
  border: 1px solid var(--grey);
  color: var(--slate-grey);
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 8px 12px;
  font-weight: 300;
}

.input-add-on.cc-inline {
  z-index: 2;
  border-style: none;
  padding-right: 0;
  position: absolute;
}

.input-add-on.cc-inline.cc-trailing {
  padding-left: 0;
  padding-right: 12px;
  right: 0;
}

.input-add-on.cc-trailing {
  border-radius: 0 6px 6px 0;
}

.c-select {
  border: 1px solid var(--grey);
  background-color: #0000;
  background-image: url('../svg/down-arrow.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 0;
  padding-left: 8px;
  padding-right: 24px;
  font-weight: 300;
  position: relative;
}

.c-select:focus {
  outline-offset: 0px;
  border-color: #e2e3e500;
  outline: 2px solid #1865ff;
}

.c-select::placeholder {
  color: var(--dark-grey);
}

.c-select.cc-error {
  border-color: var(--light-pink);
  color: var(--maroon);
}

.c-select.cc-error:focus {
  outline-color: var(--indian-red);
  border-color: #f0a9a700;
}

.c-select.cc-error::placeholder {
  color: var(--light-pink);
}

.c-select.cc-disabled {
  cursor: not-allowed;
  background-color: #f9fafb;
}

.c-select.cc-disabled::placeholder {
  color: var(--slate-grey);
}

.c-select.cc-success {
  border-color: var(--medium-sea-green);
}

.c-select.cc-success:focus {
  outline-color: var(--medium-sea-green);
  border-color: #f0a9a700;
}

.c-select.cc-leading-pad {
  padding-left: 40px;
}

.c-select.cc-trailing-pad {
  padding-right: 40px;
}

.c-select.cc-add-on {
  border-left-style: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.c-select.cc-add-on.cc-trailing {
  border-left-style: solid;
  border-right-style: none;
  border-radius: 6px 0 0 6px;
}

.c-select.cc-add-on.cc-inline {
  border-left-style: solid;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding-left: 60px;
}

.c-select.cc-add-on.cc-inline.cc-trailing {
  border-right-style: solid;
  border-radius: 6px;
  padding-right: 60px;
}

.c-select.cc-no-border {
  border-style: none;
}

.c-select.cc-no-border:focus {
  outline-offset: -2px;
}

.c-select.cc-top {
  border-bottom-width: .5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.c-select.cc-top:focus {
  z-index: 1;
}

.c-select.cc-bottom {
  border-top-width: .5px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.c-select.cc-bottom:focus, .c-select_wrapper {
  z-index: 1;
}

.c-select_wrapper.cc-add-on {
  position: absolute;
}

.c-inset_label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5em;
}

.c-overlap_label {
  background-color: #fff;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5em;
}

.global-embed {
  position: fixed;
  inset: 0% 0% auto;
}

.toggle-button {
  cursor: pointer;
  background-color: #e5e7eb;
  border: 2px solid #0000;
  border-radius: 9999px;
  flex: none;
  align-items: center;
  width: 44px;
  height: 24px;
  transition: background-color .2s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.toggle-button.cc-is-on {
  background-color: var(--royal-blue);
}

.toggle-button.cc-short {
  border-style: none;
  width: 38px;
  height: 16px;
}

.toggle-thumb {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  overflow: hidden;
}

.thumb-icon_wrapper {
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 100%;
  display: flex;
  position: relative;
}

.thumb-icon {
  background-color: #fff;
  width: 12px;
  transition: opacity .1s cubic-bezier(0, 0, .2, 1);
  display: flex;
  position: absolute;
  inset: 0%;
}

.thumb-icon.cc-off {
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.4, 0, 1, 1);
}

.thumb-icon.cc-on {
  opacity: 0;
}

.c-button {
  grid-column-gap: 15px;
  border: 1px solid var(--primary-green);
  background-color: var(--primary-green);
  color: var(--daf1ea);
  text-align: center;
  letter-spacing: -.36px;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  transition: transform .5s;
  display: flex;
}

.c-button:hover {
  transform: translate(0, -7px);
}

.c-button.cc-xlg {
  grid-column-gap: 8px;
  padding: 10px 14px;
}

.c-button.cc-lg {
  padding: 8px 12px;
}

.c-button.cc-sm {
  border-radius: 4px;
  padding: 4px 8px;
}

.c-button.cc-xsm {
  padding: 4px 8px;
  font-size: 12px;
  line-height: 16px;
}

.c-button.cc-alt {
  border: 1px solid var(--ocean-blue);
  color: var(--ocean-blue);
}

.c-button.cc-soft {
  color: var(--royal-blue);
  background-color: #1865ff26;
}

.c-button.cc-soft:hover {
  background-color: #1865ff40;
}

.c-button.cc-round {
  border-radius: 50%;
  padding-left: 6px;
  padding-right: 6px;
}

.c-button.cc-round.cc-lg {
  padding-left: 8px;
  padding-right: 8px;
}

.c-button.cc-round.cc-xlg {
  padding-left: 10px;
  padding-right: 10px;
}

.c-button.cc-trailing {
  position: absolute;
  right: 3px;
}

.c-button.cc-trailing:hover {
  transform: none;
}

.c-button.cc-brown {
  border-color: var(--burnt-orange);
  background-color: var(--burnt-orange);
}

.c-button.cc-secondary {
  border-color: var(--dark-green);
  background-color: var(--dark-green);
}

.c-button.cc-blue {
  border-color: var(--ocean-blue);
  background-color: var(--ocean-blue);
  color: var(--purple);
}

.c-button.cc-blue.uc-green-text {
  color: var(--dark-green);
}

.c-button.cc-yellow {
  border-color: var(--light-orange);
  background-color: var(--light-orange);
  color: var(--burnt-orange);
}

.c-button.cc-black {
  background-color: var(--black);
}

.button-icon {
  width: 24px;
  height: 24px;
}

.c-avatar {
  color: #d2d5da;
  background-color: #f3f4f6;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.c-avatar.cc-sm {
  width: 32px;
  height: 32px;
}

.c-avatar.cc-xsm {
  width: 24px;
  height: 24px;
}

.c-avatar.cc-lg {
  width: 48px;
  height: 48px;
}

.c-avatar.cc-xlg {
  width: 56px;
  height: 56px;
}

.c-avatar.cc-xxlg {
  color: #136cff;
  width: 64px;
  height: 64px;
}

.c-avatar.cc-has-initials {
  color: #fff;
  background-color: #6c727f;
  font-size: 16px;
  line-height: 16px;
}

.c-avatar.cc-has-initials.cc-xsm {
  font-size: 12px;
  line-height: 12px;
}

.c-avatar.cc-has-initials.cc-sm {
  line-height: 14px;
}

.c-avatar.cc-has-initials.cc-lg {
  font-size: 18px;
  line-height: 18px;
}

.c-avatar.cc-has-initials.cc-xlg {
  font-size: 20px;
  line-height: 20px;
}

.c-avatar.cc-has-initials.cc-xxlg {
  font-size: 22px;
  line-height: 22px;
}

.avatar-placeholder {
  position: absolute;
  inset: 0%;
}

.c-avatar_block {
  color: #d2d5da;
  background-color: #f3f4f6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.uc-hide {
  display: none;
}

.c-img {
  object-fit: contain;
  border-radius: 0%;
  width: 100%;
  height: 100%;
  display: block;
  overflow: clip;
}

.c-img.cc-cover {
  object-fit: cover;
}

.c-img.cc-logo {
  width: auto;
  height: 18px;
  margin-bottom: 20px;
}

.c-img.cc-gude-img {
  margin-bottom: 20px;
}

.c-img.img-bg-black {
  background-image: linear-gradient(#00000080, #00000080);
}

.c-avatar_group {
  display: flex;
  overflow: hidden;
}

.c-avatar_wrapper {
  align-items: center;
  display: flex;
}

.c-avatar_cta {
  margin-left: 12px;
}

.uc-md-text {
  font-weight: 500;
}

.sm-text {
  font-size: 12px;
  line-height: 16px;
}

.c-badge {
  grid-column-gap: 6px;
  border-radius: 6px;
  align-items: center;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
  box-shadow: inset 0 0 0 1px #0000001a;
}

.c-badge.cc-red {
  color: var(--indian-red);
  background-color: #fcf2f2;
  box-shadow: inset 0 0 0 1px #f7dfde;
}

.c-badge.cc-yellow {
  color: #7d501f;
  background-color: #fefcea;
  box-shadow: inset 0 0 0 1px #f2e6c5;
}

.c-badge.cc-green {
  color: #3c7e44;
  background-color: #f2fdf5;
  box-shadow: inset 0 0 0 1px #d1ead5;
}

.c-badge.cc-blue {
  color: var(--royal-blue);
  background-color: #f0f6fe;
  box-shadow: inset 0 0 0 1px #dce5f9;
}

.c-badge.cc-grey {
  background-color: #f9fafb;
}

.badge-dot {
  flex: none;
  width: 5px;
  height: 5px;
  display: flex;
}

.badge-dot.cc-red {
  color: #dd514c;
}

.badge-dot.cc-yellow {
  color: #e2b53e;
}

.badge-dot.cc-green {
  color: #5ec269;
}

.badge-dot.cc-blue {
  color: var(--royal-blue);
}

.badge-dot.cc-grey {
  color: #9da3ae;
}

.c-badge_button {
  cursor: pointer;
  border-radius: 2px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  margin-left: -4px;
  margin-right: -4px;
  display: flex;
  overflow: hidden;
}

.c-badge_button:hover {
  background-color: #3741510d;
}

.badge-icon {
  width: 100%;
  height: 100%;
}

.c-tag {
  grid-column-gap: 6px;
  border-radius: 6px;
  align-items: center;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
}

.c-tag.cc-red {
  color: var(--indian-red);
  background-color: #f9e3e2;
}

.c-tag.cc-yellow {
  color: #7d501f;
  background-color: #fdf9c9;
}

.c-tag.cc-green {
  color: #3c7e44;
  background-color: #e2fbe8;
}

.c-tag.cc-blue {
  color: var(--royal-blue);
  background-color: #dee9fc;
}

.c-tag.cc-grey {
  background-color: #f3f4f6;
}

.tag-dot {
  flex: none;
  width: 5px;
  height: 5px;
  display: flex;
}

.tag-dot.cc-red {
  color: #dd514c;
}

.tag-dot.cc-yellow {
  color: #e2b53e;
}

.tag-dot.cc-green {
  color: #5ec269;
}

.tag-dot.cc-blue {
  color: var(--royal-blue);
}

.tag-dot.cc-grey {
  color: #9da3ae;
}

.c-tag_button {
  cursor: pointer;
  border-radius: 2px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  margin-left: -4px;
  margin-right: -4px;
  display: flex;
  overflow: hidden;
}

.c-tag_button:hover {
  background-color: #3741510d;
}

.tag-icon {
  width: 100%;
  height: 100%;
}

.c-textfield {
  border: 1px solid var(--grey);
  border-radius: 6px;
  min-width: 450px;
  min-height: 150px;
  margin-bottom: 0;
  font-weight: 300;
}

.c-textfield:focus {
  outline-color: var(--royal-blue);
  outline-offset: 0px;
  border-color: #e2e3e500;
  outline-width: 2px;
  outline-style: solid;
}

.c-textfield::placeholder {
  color: var(--dark-grey);
}

.c-textfield.cc-alt {
  border-style: none none solid;
  border-radius: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.c-textfield.cc-alt:focus {
  border-bottom-width: 2px;
  border-bottom-color: var(--royal-blue);
  outline-color: var(--royal-blue);
  outline-offset: 0px;
  outline-width: 2px;
  outline-style: none;
}

.c-textfield.cc-has-cta {
  padding-bottom: 50px;
}

.c-textfield.cc-has-counter {
  padding-bottom: 28px;
}

.c-textfield_cta {
  background-color: #fff;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  justify-content: flex-end;
  padding: 8px;
  display: flex;
}

.c-textfield_cta.cc-inner {
  position: absolute;
  inset: auto 2px 1px;
}

.c-textarea_wrapper {
  position: relative;
}

.character-counter {
  color: var(--dark-grey);
  font-size: 12px;
  line-height: 14px;
  position: absolute;
  bottom: 8px;
  right: 8px;
}

.uc-h5 {
  font-size: 20px;
  line-height: 1;
}

.paragraph {
  font-size: 20px;
  line-height: 1.38889;
}

.paragraph.cc-alt {
  font-family: Teg, sans-serif;
}

.page-wrapper {
  width: 100%;
  position: relative;
}

.page-wrapper.cc-off-white {
  background-color: #f4f8f6;
}

.c-container {
  width: 100%;
}

.casestudy-text--list {
  color: var(--green-text);
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.casestudy-text--list.cc-fullwidth, .casestudy-text--list.cc-wide {
  max-width: none;
}

.c-hero {
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.c-hero.cc-about {
  padding-top: 100px;
  padding-bottom: 170px;
}

.c-hero.cc-platform {
  background-color: var(--daf1ea);
  background-image: url('../svg/platform-hro-illustration.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20px;
  justify-content: space-between;
  width: 90.2%;
  max-width: 1920px;
  margin: 45px auto 10px;
  padding: 80px;
  display: flex;
}

.c-hero.cc-usecase {
  background-color: var(--daf1ea);
  background-image: url('../svg/usecase-hero-illustration.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20px;
  min-height: 427px;
  margin-bottom: 10px;
  padding: 80px;
}

.c-hero.cc-faq {
  background-color: var(--daf1ea);
  color: var(--dark-green);
  text-align: center;
  background-image: url('../svg/faq-illustration-left.svg'), url('../svg/faq-illustration-right.svg');
  background-position: 0%, 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 70px;
  padding: 96px 50px;
  font-family: Teg, sans-serif;
  font-size: 50px;
  line-height: 1.12;
  display: flex;
}

.c-hero.cc-casestudies {
  background-color: var(--dark-green);
  color: var(--ocean-blue);
  background-image: url('../svg/casestudy-hero_illustration.svg');
  background-position: 100% 100%;
  background-repeat: repeat-y;
  background-size: contain;
  border-radius: 30px;
  width: 90.2%;
  max-width: 1440px;
  margin: 70px auto 25px;
  padding: 120px 104px;
}

.c-hero.cc-casestudy_open {
  background-color: var(--daf1ea);
  background-image: url('../svg/casestudy-inner-illustration.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  width: 90.2%;
  max-width: 1300px;
  min-height: 374px;
  margin: 66px auto 50px;
  padding: 40px 100px 80px;
  display: flex;
}

.c-hero.cc-blog {
  background-color: var(--daf1ea);
  background-image: url('../svg/blog-illustration-left.svg'), url('../svg/blog-illustration-right.svg');
  background-position: 0%, 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  border-radius: 20px;
  margin-top: 48px;
  padding: 70px 165px 140px;
}

.c-hero.cc-legal {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--dark-green);
  text-align: center;
  background-color: #f6f5f7;
  background-image: url('../svg/legal-illustration-left.svg'), url('../svg/legal-illustration-right.svg');
  background-position: 0%, 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  border-radius: 20px;
  flex-direction: column;
  width: 90.2%;
  max-width: 1920px;
  margin: 45px auto 75px;
  padding: 75px 100px 80px;
  font-family: Teg, sans-serif;
  font-size: 50px;
  line-height: 1.12;
  display: flex;
}

.c-hero.cc-home {
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  display: flex;
  overflow: hidden;
}

.navbar {
  justify-content: space-between;
  align-items: center;
  width: 88%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.c-logo {
  background-image: url('../svg/anchor-logo-green.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 145px;
  height: 25px;
}

.c-logo.cc-hide-desktop {
  display: none;
}

.nav-btn_flex {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  letter-spacing: -.36px;
  align-items: center;
  font-size: 18px;
  line-height: 1.38889;
  display: flex;
}

.nav-dropdown_flex {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: var(--light-grey);
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1.375;
  display: flex;
}

.nav-dropdown_toggle {
  color: var(--light-grey);
  padding: 0 20px 0 0;
}

.nav-dropdown_icon {
  background-image: url('../svg/grey-arrow-down.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.hero-cta {
  text-align: center;
  max-width: 820px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
}

.hero-cta_subtext {
  color: var(--slate-grey);
  letter-spacing: -.32px;
  max-width: 560px;
  margin: 25px auto;
}

.hero-block_section {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: stretch;
  width: 100%;
  min-height: 266px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  position: relative;
  overflow: auto;
}

.hero-block_section.uc-hide {
  display: none;
}

.hero-block_section.cc-cards {
  width: 1440px;
  padding-bottom: 0;
  overflow: visible;
}

.hero-block_section.cc-hidden-overflow {
  overflow: hidden;
}

.hero-block_section.cc-overflow-visible {
  overflow: visible;
}

.hero-block_flex {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.hero-empty_block {
  background-color: var(--daf1ea);
  border-radius: 15px;
  flex: none;
  height: 82px;
  position: absolute;
}

.hero-empty_block.cc-one {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 17.9vw;
  max-width: 259px;
  margin-right: .7%;
  top: 0;
  left: 0;
}

.hero-empty_block.cc-two {
  width: 11vw;
  max-width: 166px;
  top: 0;
  right: 6%;
}

.hero-empty_block.cc-three {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 5.27vw;
  max-width: 76px;
  top: 0;
  bottom: 188px;
  right: 0;
}

.hero-empty_block.cc-four {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 28%;
  max-width: 406px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.hero-empty_block.cc-five {
  width: 32%;
  max-width: 463px;
  margin-right: .4%;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.hero-empty_block.cc-six {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 21.6%;
  max-width: 360px;
  margin-right: auto;
  bottom: 0;
  left: 0;
}

.hero-empty_block.cc-seven {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 15.5%;
  max-width: 260px;
  margin-left: auto;
  bottom: 0;
  right: 0;
}

.product-tool {
  flex-direction: column;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  width: 308px;
  min-height: 82px;
  transition-property: none;
  display: flex;
  position: relative;
}

.product-tool.cc-credit.cc-active {
  width: 448px;
  position: absolute;
  bottom: 0;
  left: 327px;
}

.product-tool.cc-credit.cc-falling {
  pointer-events: none;
  width: 29.6%;
  max-width: 448px;
  right: 73%;
  transform: translate(0%);
}

.product-tool.cc-savings.cc-active {
  width: 470px;
  position: absolute;
  bottom: 0;
  right: 185px;
}

.product-tool.cc-savings.cc-falling {
  pointer-events: none;
  width: 30.4%;
  max-width: 461px;
  margin-left: .8px;
  right: 73%;
}

.product-tool.cc-cards.cc-active {
  width: 496px;
  position: absolute;
  bottom: 106px;
  right: 480px;
  transform: rotate(3deg);
}

.product-tool.cc-cards.cc-falling {
  pointer-events: none;
  width: 34%;
  max-width: 496px;
  margin-right: 1.8%;
  left: -29%;
  transform: translate(0, -98.4px)rotate(3deg);
}

.product-tool.cc-accounts {
  transform: translate(0);
}

.product-tool.cc-accounts.cc-test {
  opacity: 0;
  transform: translate(0, -500px)rotate(-6.833deg);
}

.product-tool.cc-accounts.cc-active {
  width: 443px;
  position: absolute;
  bottom: 212px;
  left: 270px;
  transform: rotate(-6.8deg);
}

.product-tool.cc-accounts.cc-falling {
  pointer-events: none;
  width: 29.2%;
  max-width: 443px;
  left: 20%;
  transform: rotate(-6.8deg)translate(0, -205px);
}

.product-tool.cc-payments {
  color: var(--purple);
}

.product-tool.cc-payments.cc-active {
  width: 430.5px;
  position: absolute;
  bottom: 196px;
  right: 256px;
  transform: rotate(3deg);
}

.product-tool.cc-payments.cc-falling {
  pointer-events: none;
  width: 28.4%;
  max-width: 431px;
  margin-right: 1.3%;
  right: -21%;
  transform: translate(0, -196.8px)rotate(3.3deg);
}

.product-tool_icon {
  opacity: 0;
  flex: none;
  width: 22px;
  height: 22px;
}

.nav-dropdown_list {
  background-color: #fff;
  border-radius: 13px;
  min-width: 293px;
  margin-top: 30px;
  padding: 16px 14px;
  box-shadow: 0 0 8px -3px #0003;
}

.nav-dropdown_list.w--open {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
}

.nav-dropdown_link {
  color: var(--light-grey);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  text-decoration: none;
  transition: background-color .5s;
  display: flex;
}

.nav-dropdown_link:hover {
  background-color: var(--daf1ea);
}

.dropdown-link_arrow {
  opacity: 0;
  background-image: url('../svg/ep_right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 16px;
  height: 16px;
  transition: opacity .35s;
}

.dropdown-link_inner {
  align-items: center;
  display: flex;
}

.dropdown-link_icon {
  flex: none;
  width: 25px;
  height: 25px;
  margin-right: 16px;
}

.product-tool_inner {
  z-index: 2;
  letter-spacing: -.96px;
  white-space: nowrap;
  border-radius: 12px;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 21px 36px;
  font-size: 22px;
  line-height: .958333;
  display: flex;
  position: absolute;
}

.product-tool_inner.cc-active {
  bottom: 22px;
  transform: translate(0);
}

.product-tool_details {
  border-radius: 15px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.product-tool_details.cc-open {
  height: 100%;
  max-height: 1000px;
}

.product-tool_image {
  height: 288px;
}

.product-tool_text {
  margin-bottom: 10px;
  padding-top: 44px;
  padding-left: 34px;
  padding-right: 34px;
  font-family: Teg, sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.partners {
  align-items: center;
  width: 100%;
  padding-top: 74px;
  padding-bottom: 220px;
  display: flex;
  overflow: hidden;
}

.partners-inner {
  grid-column-gap: 50px;
  grid-row-gap: 18px;
  flex-wrap: wrap;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-right: 50px;
  display: flex;
}

.partner-img {
  filter: grayscale();
  max-width: 100px;
  height: 51px;
}

.business-slide_wrapper {
  padding-top: 0;
  padding-bottom: 120px;
}

.business-slide_flex {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-left: 115px;
  padding-right: 115px;
  display: flex;
}

.slide-flex_text {
  color: var(--dark-green);
  width: 70%;
  max-width: 775px;
}

.business-slide_container {
  padding-left: 115px;
  padding-right: 115px;
  overflow: hidden;
}

.business-slide_inner {
  display: flex;
}

.business-slide {
  border-radius: 24px;
  flex: none;
  justify-content: space-between;
  align-items: flex-end;
  min-width: 100%;
  padding-top: 60px;
  padding-left: 6%;
  padding-right: 8%;
  display: flex;
  overflow: hidden;
}

.business-slide.cc-blue-bg {
  background-color: var(--daf1ea);
  color: var(--dark-green);
}

.business-slide.cc-yellow-bg {
  background-color: var(--light-orange);
  color: var(--dark-green);
}

.business-slide.cc-green-bg {
  background-color: var(--dark-green);
  color: var(--daf1ea);
}

.business-slide.cc-purple-bg {
  background-color: var(--purple);
  color: var(--daf1ea);
}

.business-slide_content {
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-self: stretch;
  max-width: 700px;
  margin-right: 50px;
  padding-bottom: 50px;
  display: flex;
}

.business-slide_img {
  border-top-left-radius: 11.3px;
  border-top-right-radius: 11.3px;
  flex: none;
  width: 329px;
  height: 420px;
  margin-top: 24px;
  overflow: hidden;
}

.business-slide_header {
  max-width: 700px;
  margin-top: 20px;
  margin-bottom: 37px;
  font-family: Teg, sans-serif;
  font-size: 80px;
  font-weight: 500;
  line-height: .9375;
}

.business-slide_header.cc-small {
  max-width: 500px;
}

.business-slide_tag {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.business-slide_list {
  grid-column-gap: 30px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  max-width: 320px;
  margin-bottom: 0;
  padding-left: 25px;
  font-size: 18px;
  line-height: 1.38889;
  display: flex;
}

.business-list_item {
  padding-left: 5px;
}

.business-img_flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  padding-top: 38px;
  padding-bottom: 30px;
  display: flex;
  overflow: hidden;
}

.business-img_container {
  border-radius: 15px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 114px;
  height: 83.8px;
  display: flex;
  overflow: hidden;
}

.business-img_container.cc-blue-bg {
  background-color: var(--ocean-blue);
}

.business-img_container.cc-purple-bg {
  background-color: var(--purple);
}

.business-img_container.cc-green-bg {
  background-color: var(--neon-green);
}

.business-img_container.cc-yellow-bg {
  background-color: var(--light-orange);
}

.business-img_container.cc-white-bg {
  background-color: var(--daf1ea);
}

.business-slide_arrows {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  align-items: center;
  display: flex;
}

.business-slide_arrow {
  background-color: var(--daf1ea);
  cursor: pointer;
  border-radius: 14px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  display: flex;
}

.business-arrow_icon {
  width: 12px;
  height: 25px;
}

.compliance-block {
  background-color: var(--daf1ea);
  background-image: url('../svg/compliance.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 35% 774px;
}

.compliance-block_inner {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 98px;
  padding-right: 10%;
  display: flex;
}

.compliance-header {
  max-width: 365px;
  margin-left: auto;
}

.compliance-list {
  width: 48%;
  max-width: 700px;
  margin-bottom: 140px;
}

.compliance-list_item {
  grid-column-gap: 100px;
  grid-row-gap: 40px;
  justify-content: space-between;
}

.compliance-list_icon {
  width: 32px;
  height: 32px;
}

.compliance-list_header {
  color: var(--light-black);
  max-width: 284px;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1;
}

.compliance-list_inner {
  color: var(--light-grey);
  font-size: 16px;
  line-height: 1.4375;
}

.compliance-header_container {
  flex: 1;
  max-width: 535px;
}

.footer-wrapper {
  background-color: var(--daf1ea);
  width: 100%;
}

.footer-wrapper.cc-white-bg {
  background-color: var(--white);
}

.footer-inner {
  color: var(--light-grey);
  background-color: #051205;
  width: auto;
  max-width: none;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
  position: relative;
}

.footer-header {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  flex-flow: column;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.footer-head_top {
  background-color: var(--transparent);
  color: var(--white);
  border-bottom-left-radius: 16px;
  justify-content: space-between;
  align-items: center;
  margin-right: 78px;
  padding-top: 24px;
  padding-bottom: 27px;
  padding-left: 40px;
  font-family: Teg, sans-serif;
  font-size: 30px;
  line-height: 1;
  display: flex;
  position: relative;
}

.footer-arrow_down {
  flex: 1;
  align-self: stretch;
  max-width: 135px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.footer-header_bottom {
  background-color: var(--secondary-green);
  background-image: url('../svg/logo-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 0 7.95px 7.95px;
  width: 78px;
  height: 76px;
  margin-left: auto;
}

.footer-flex {
  grid-column-gap: 18%;
  grid-row-gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.footer-links_wrapper {
  grid-column-gap: 18%;
  grid-row-gap: 18%;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 102px;
  margin-left: 138px;
  margin-right: 123px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.footer-links {
  flex-flow: column;
  flex: none;
  grid-template-columns: 1fr;
  justify-items: start;
  font-size: 18px;
  line-height: 1.5;
  display: flex;
}

.footer-link_header {
  color: var(--dark-green);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
}

.footer-link {
  color: var(--dark-grey);
  font-size: 16px;
  transition: color .4s;
}

.footer-link:hover {
  color: var(--primary-green);
  -webkit-text-stroke-color: var(--primary-green);
}

.newsletter-form {
  min-width: 50px;
  margin-top: 21px;
  margin-bottom: 32px;
}

.footer-flex_inner {
  flex: none;
  max-width: 431px;
}

.contact-details {
  display: flex;
}

.contact-links {
  color: var(--grey-5);
  flex: none;
  grid-template-columns: 1fr;
  align-content: start;
  width: 50%;
  max-width: 212px;
  font-size: 18px;
  line-height: 1.5;
}

.contact-link {
  padding-right: 30px;
  font-size: 14px;
  transition: color .4s;
}

.contact-link:hover {
  color: var(--primary-green);
}

.contact-link.cc-no-padding {
  padding-right: 0;
}

.contact-link_header {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375;
}

.footer-inner_bottom {
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  justify-content: space-between;
  align-items: center;
  margin-top: 43px;
  margin-bottom: 25px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 18px;
  line-height: 1.5;
  display: flex;
}

.footer-legal_links {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  align-items: center;
  font-size: 14px;
  display: flex;
}

.footer-social_links {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  align-items: flex-start;
  margin-left: 0;
  padding-left: 0;
  font-size: 16px;
  display: flex;
}

.social-links_flex {
  grid-column-gap: 10.98px;
  grid-row-gap: 10.98px;
  align-items: flex-start;
  display: flex;
}

.social-link {
  color: var(--medium-grey);
  cursor: pointer;
  flex: none;
  width: 24px;
  height: 24px;
  text-decoration: none;
  transition: all .5s;
  overflow: hidden;
}

.developer-block_wrapper {
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 24px;
  display: flex;
  overflow: hidden;
}

.developer-block_inner {
  justify-content: space-between;
  width: 100%;
  padding-bottom: 30px;
  padding-left: 110px;
  padding-right: 110px;
  display: flex;
}

.developer-block_cta {
  color: var(--dark-green);
  max-width: 338px;
  padding-top: 20px;
}

.developer-cta_subtext {
  color: var(--slate-grey);
  margin-top: 24px;
  margin-bottom: 28px;
}

.developer-code_container {
  color: var(--white);
  transform-style: preserve-3d;
  background-color: #000;
  border: 3.2px solid #333;
  border-radius: 24px;
  width: 44.1vw;
  max-width: 667px;
  height: 27vw;
  min-height: 400px;
  max-height: 408px;
  position: relative;
  overflow: hidden;
  transform: rotateX(-2.117deg)rotateY(-2.117deg)rotateZ(-2.117deg);
}

.developer-code_edit {
  background-color: var(--black);
  height: 100%;
  display: block;
  position: relative;
}

.developer-block_flex {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  align-items: flex-end;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.developer-empty_block {
  background-color: var(--daf1ea);
  border-radius: 15px;
  width: 327px;
  height: 82px;
}

.developer-empty_block.cc-blk-one {
  width: 230px;
}

.developer-empty_block.cc-blk-two {
  width: 294px;
  transform: rotate(3.71deg);
}

.developer-empty_block.cc-blk-three {
  width: 496px;
}

.developer-empty_block.cc-blk-four {
  width: 350px;
  margin-left: auto;
}

.developer-empty_block.cc-blk_five {
  max-width: 32.1%;
}

.developer-empty_block.cc-blk_six {
  max-width: 21.6%;
}

.developer-empty_block.cc-blk-five {
  width: 371px;
}

.developer-empty_block.cc-blk_eight {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  max-width: 16.3%;
}

.developer-empty_block.cc-blk-seven {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 355px;
}

.developer-tool {
  letter-spacing: -.96px;
  cursor: pointer;
  border-radius: 15px;
  flex: none;
  justify-content: space-between;
  align-items: center;
  width: 495px;
  min-height: 82px;
  padding: 29px 44px 28px;
  font-size: 24px;
  line-height: 1;
  transition: transform .5s;
  position: relative;
  transform: translate(0);
}

.developer-tool:hover {
  transform: translate(0, -8px);
}

.developer-tool.cc-credit {
  flex: none;
  width: 31%;
  max-width: 448px;
}

.developer-tool.cc-savings {
  flex: none;
  width: 32%;
  max-width: 461px;
  padding-bottom: 2px;
}

.developer-tool.cc-cards {
  flex: none;
  width: 34%;
  max-width: 496px;
  margin-bottom: 20px;
  margin-left: 42px;
  margin-right: 10px;
  transform: rotate(3.033deg);
}

.developer-tool.cc-accounts {
  background-color: var(--dark-green);
  transform-origin: 0 100%;
  color: var(--daf1ea);
  transform: rotate(-11.45deg);
}

.developer-tool.cc-accounts:hover {
  transform: translate(0, -8px)rotate(-11.45deg);
}

.developer-tool.cc-payments {
  background-color: var(--ocean-blue);
  transform-origin: 100% 100%;
  color: var(--purple);
  transform: rotate(7.13deg);
}

.developer-tool.cc-payments:hover {
  transform: translate(0, -8px)rotate(7.13deg);
}

.developer-tool.cc-credit-js {
  background-color: var(--burnt-orange);
  color: var(--white);
  margin-left: 80px;
  margin-right: 65px;
}

.developer-tool.cc-exports {
  background-color: var(--light-orange);
  transform-origin: 100% 100%;
  color: var(--light-grey);
  flex: none;
  transform: rotate(3.77deg);
}

.developer-tool.cc-exports:hover {
  transform: translate(0, -8px)rotate(3.77deg);
}

.developer-tool_inner {
  letter-spacing: -.96px;
  border-radius: 15px;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  height: 82px;
  padding: 29px 36px 28px 44px;
  font-size: 24px;
  line-height: .958333;
  display: flex;
}

.developer-block_section {
  flex-direction: column;
  align-items: center;
  width: 1440px;
  padding-top: 45px;
  display: flex;
}

.uc-orange-text {
  color: var(--burnt-orange);
}

.hero-text {
  color: var(--dark-green);
  max-width: 980px;
  margin-top: 30px;
  margin-bottom: 53px;
  position: absolute;
  top: -30px;
}

.developer-code_top {
  z-index: 3;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  letter-spacing: -.4px;
  background-color: #000;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 50px;
  font-size: 20px;
  line-height: 1.445;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.developer-code_controls {
  grid-column-gap: 10.2px;
  grid-row-gap: 10.2px;
  color: var(--white);
  border-bottom: 3px solid #333;
  border-right: 3px solid #333;
  border-bottom-right-radius: 6px;
  align-items: center;
  padding: 18px 15px 15px 40px;
  display: flex;
}

.developer-code_control {
  border-radius: 50%;
  width: 16.5px;
  height: 16.5px;
}

.developer-code_control.cc-red {
  background-color: #ed6a5d;
}

.developer-code_control.cc-orange {
  background-color: #f5c04f;
}

.developer-code_control.cc-green {
  background-color: #61c654;
}

.developer-code_right {
  border-bottom: 3px solid #333;
  border-left: 3px solid #333;
  border-bottom-left-radius: 6px;
  flex: 1;
  padding-top: 18px;
  padding-bottom: 15px;
}

.developer-code_header {
  align-self: center;
}

.code-text {
  color: var(--color);
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.green-text {
  color: var(--secondary-green);
}

.code-text_inner {
  background-color: var(--black);
  word-break: break-all;
  padding-top: 22px;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 1.7;
  display: none;
}

.code-text_inner.cc-active {
  display: block;
}

.code-text_list {
  background-color: #111;
  max-width: 60px;
  height: 100%;
  margin-bottom: 0;
  padding-top: 22px;
  padding-left: 30px;
  list-style-type: none;
  position: sticky;
  top: 0;
}

.code-text_container {
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  display: flex;
  position: relative;
  overflow: auto;
}

.code-list_item {
  color: var(--dark-grey);
  padding-right: 25px;
  font-size: 18px;
  line-height: 1.45;
}

.uc-purple-text {
  color: var(--purple);
}

.about-hero_header {
  text-align: center;
  max-width: 700px;
  margin-bottom: 55px;
  margin-left: auto;
  margin-right: auto;
}

.uc-lightgreen-text {
  color: var(--secondary-green);
}

.about-hero_flex {
  justify-content: center;
  align-items: flex-end;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.about-hero_img {
  border-radius: 16.6px;
  width: 131px;
  height: 131px;
  position: relative;
  overflow: hidden;
}

.about-hero_img.cc-center {
  justify-content: center;
  align-items: center;
  max-height: 501px;
  display: flex;
}

.about-hero_img.cc-center.cc-active {
  width: 495px;
  height: 501px;
}

.about-center_image {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.about-center_image.cc-active {
  width: 100%;
  height: 220px;
  margin-bottom: 100px;
}

.about-hero_subtext {
  opacity: 0;
  position: absolute;
}

.about-hero_subtext.cc-right-align {
  color: var(--light-grey);
  width: 25%;
  max-width: 310px;
  top: 150px;
  right: 0;
}

.about-hero_subtext.cc-left-align {
  color: var(--light-grey);
  width: 30%;
  max-width: 385px;
  top: 20px;
  left: 0;
}

.about-subtext_inner {
  color: var(--dark-green);
  margin-top: 10px;
  line-height: 1.1875;
}

.tag-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--light-black);
  align-items: center;
  margin-bottom: 17px;
  display: flex;
}

.tag-flex.uc-mb-0 {
  margin-bottom: 0;
}

.tag-circle {
  border-radius: 50%;
  flex: none;
  width: 16px;
  height: 16px;
}

.tag-circle.cc-orange {
  background-color: var(--burnt-orange);
}

.tag-circle.cc-orange.cc-mt {
  margin-top: 9px;
}

.tag-circle.cc-green {
  background-color: var(--neon-green);
}

.tag-circle.cc-small {
  width: 8px;
  height: 8px;
}

.tag-circle.cc-xsm {
  width: 5px;
  height: 5px;
}

.tag-circle.cc-xsm.cc-orange {
  background-color: var(--medium-grey);
  width: 4px;
  height: 4px;
}

.mission-top_block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  width: 100%;
  padding-top: 200px;
  display: flex;
}

.mission-bottom_block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.mission-block {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.mission-left_block {
  background-color: var(--daf1ea);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  flex: 1;
  max-width: 77px;
  height: 83px;
}

.mission-left_block.cc-vertical {
  height: auto;
}

.mission-left_block.cc-vertical.cc-hide-desktop {
  display: none;
}

.mission-block_tag {
  background-color: var(--dark-green);
  color: var(--neon-green);
  border-radius: 15px;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  max-width: 333px;
  height: 83px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Teg, sans-serif;
  font-size: 30px;
  line-height: 1;
  display: flex;
}

.mission-block_tag.cc-light-green {
  background-color: var(--primary-green);
}

.margin-right_block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex: 1;
  display: flex;
}

.mission-top_flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.mission-top_left {
  background-color: var(--daf1ea);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  flex: 1;
  max-width: 192.8px;
  height: 83px;
}

.mission-top_left.cc-wide {
  max-width: 496px;
}

.mission-top_right {
  background-color: var(--daf1ea);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  flex: 1;
  max-width: 234px;
  height: 83px;
}

.mission-top_right.cc-wide {
  max-width: 496px;
}

.mission-right_inner {
  background-color: var(--daf1ea);
  border-radius: 15px;
  flex: 1;
  height: 83px;
}

.mission-right_inner.cc-right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.mission-right_inner.cc-right.cc-small {
  max-width: 77px;
}

.mission-right_inner.cc-left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.mission-inner_block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.mission-right_block {
  background-color: var(--daf1ea);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  flex: 1;
  max-width: 77px;
  height: 83px;
}

.mission-right_block.cc-vertical {
  height: auto;
}

.mission-right_block.cc-vertical.cc-hide-desktop {
  display: none;
}

.mission-left_container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  flex: 1;
  max-width: 77px;
  display: flex;
}

.mission-text_container {
  background-color: var(--daf1ea);
  letter-spacing: -.4px;
  background-image: url('../svg/mission-icon.svg');
  background-position: 98% 90%;
  background-repeat: no-repeat;
  background-size: 40px 50px;
  border-radius: 15px;
  flex: 1;
  padding: 72px 87px;
  font-size: 20px;
  line-height: 1.3;
}

.why-text_container {
  background-color: var(--daf1ea);
  letter-spacing: -.4px;
  background-image: url('../svg/why-icon.svg');
  background-position: 98%;
  background-repeat: no-repeat;
  background-size: 40px 50px;
  border-radius: 15px;
  flex: 1;
  padding: 26px 30px 27px;
  font-size: 20px;
  line-height: 1.3;
}

.c-team {
  width: 90.5%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
}

.team-top_block {
  color: var(--dark-green);
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 45px;
  display: none;
}

.team-block_flex {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  color: var(--light-grey);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  padding-left: 10px;
  font-size: 24px;
  line-height: 1.41667;
  display: none;
}

.team-flex_text {
  text-align: right;
  max-width: 250px;
}

.divider-line {
  background-color: #0000001a;
  flex: 1;
  height: 1px;
}

.team-block {
  grid-column-gap: 35px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 15px;
  display: none;
}

.team-block.cc-hide {
  display: none;
}

.team-member_image {
  border-radius: 15px;
  width: 100%;
  height: 21vw;
  max-height: 300px;
  margin-bottom: 23px;
  overflow: hidden;
}

.team-member_position {
  color: var(--dark-green);
  align-items: center;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: flex;
}

.team-position_circle {
  background-color: var(--neon-green);
  border-radius: 50%;
  flex: none;
  width: 9px;
  height: 9px;
  margin-right: 8px;
}

.section-divider {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
}

.join-team_cta {
  color: var(--dark-green);
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 687px;
  margin-bottom: 37px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.team-cta_subtext {
  color: var(--light-grey);
  margin-top: 20px;
  margin-bottom: 40px;
}

.backed-companies {
  grid-column-gap: 55px;
  grid-row-gap: 55px;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 16px;
  padding-right: 55px;
  display: flex;
}

.backed-company_image {
  filter: grayscale();
  flex: none;
  height: 42px;
}

.press-wrapper {
  padding-bottom: 50px;
  display: flex;
}

.press-wrapper.swiper-wrapper {
  grid-column-gap: 6%;
  grid-row-gap: 6%;
}

.press-block {
  flex: none;
  justify-content: center;
  width: 25%;
  min-width: 362px;
  padding-left: 23.5px;
  padding-right: 23.5px;
  display: flex;
  position: relative;
}

.press-block_inner {
  background-color: var(--ocean-blue);
  border-radius: 15px;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  min-height: 426px;
  padding: 30px 30px 120px;
  display: flex;
}

.press-logo {
  background-color: var(--white);
  border-radius: 10px;
  min-width: 120px;
  max-width: 200px;
  height: 50px;
  margin-bottom: 30px;
  padding: 10px 22px;
}

.press-logo.cc-no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.press-logo.cc-green-bg {
  background-color: var(--dark-green);
}

.press-details_flex {
  grid-column-gap: 10px;
  grid-row-gap: 5px;
  letter-spacing: -.32px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.4375;
  display: flex;
}

.tech-details_divider {
  background-color: var(--black);
  border-radius: 50%;
  flex: none;
  width: 4px;
  height: 4px;
}

.press-summary {
  max-width: 90%;
  font-family: Teg, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.press-block_button {
  background-color: var(--dark-green);
  color: var(--ocean-blue);
  letter-spacing: -.88px;
  cursor: pointer;
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  padding: 21.5px 30px 23.5px;
  font-size: 22px;
  line-height: 1;
  display: flex;
  position: absolute;
  inset: auto 0% 35px;
}

.press-button_arrow {
  background-image: url('../svg/press-arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  flex: none;
  width: 22px;
  height: 22px;
}

.c-compliance {
  width: 85%;
  max-width: 1182px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 40px;
}

.compliance-container {
  border-bottom: 1px solid #0000001a;
  justify-content: space-between;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
  display: flex;
}

.compliance-image {
  border-radius: 17.2px;
  width: 30vw;
  max-width: 450px;
  height: 40vw;
  max-height: 450px;
  position: relative;
  overflow: hidden;
}

.compliance-image.cc-blue-bg {
  background-color: var(--light-blue);
}

.compliance-image.cc-purple-bg {
  background-color: var(--purple);
}

.compliance-image.cc-grey-bg {
  background-color: #f5f5f7;
}

.compliance-inner {
  letter-spacing: -.32px;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  max-width: 550px;
  padding-top: 66px;
  padding-bottom: 66px;
  font-size: 16px;
  line-height: 1.3125;
  display: flex;
}

.compliance-tag {
  background-color: var(--primary-green);
  color: var(--white);
  letter-spacing: -.4px;
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.compliance-inner_header {
  color: var(--dark-green);
  letter-spacing: 0;
  max-width: 460px;
  margin-top: 27px;
  margin-bottom: 60px;
  font-size: 56px;
  line-height: .946429;
}

.compliance-subtext {
  color: var(--light-grey);
  max-width: 465px;
  font-size: 20px;
}

.compliance-companies {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-top: 23px;
  display: flex;
}

.compliance-company {
  max-width: 120px;
  max-height: 61px;
}

.products-hero {
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 100px;
}

.product-links {
  z-index: 2;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: flex-start;
  width: 90.2%;
  max-width: 1350px;
  margin-bottom: -420px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.products-hero_cta {
  border-radius: 30px;
  flex: 1;
  max-width: 88%;
  margin-bottom: 102px;
  margin-left: auto;
  padding-top: 110px;
  padding-bottom: 110px;
  padding-left: 120px;
  position: relative;
  overflow: hidden;
}

.products-hero_cta.cc-lightgreen-bg {
  background-color: var(--daf1ea);
  color: var(--dark-green);
}

.products-hero_cta.cc-purple-bg {
  background-color: var(--purple);
  color: var(--ocean-blue);
}

.products-hero_cta.cc-darkgreen-bg {
  background-color: var(--dark-green);
  color: var(--ocean-blue);
}

.products-hero_cta.cc-yellow-bg {
  background-color: var(--light-orange);
  color: var(--dark-black);
}

.products-hero_cta.cc-blue-bg {
  background-color: var(--light-blue);
  color: var(--dark-green);
}

.products-cta_inner {
  color: var(--dark-green);
  width: 69%;
  max-width: 707px;
  min-height: 365px;
  font-family: Teg, sans-serif;
  font-size: 50.2px;
  line-height: 1.12;
  position: relative;
}

.products-cta_inner.cc-payments {
  color: var(--ocean-blue);
  width: 51%;
  max-width: 410px;
}

.products-cta_inner.cc-cards {
  color: var(--ocean-blue);
  width: 38%;
  max-width: 500px;
}

.products-cta_inner.cc-savings {
  width: 45%;
  max-width: 400px;
}

.products-cta_inner.cc-credit {
  color: var(--color-3);
  width: 48%;
  max-width: 500px;
}

.products-cta_subtext {
  color: var(--grey-2);
  letter-spacing: -.32px;
  width: 78%;
  max-width: 546px;
  margin-top: 25px;
  margin-bottom: 35px;
  font-family: Dmsans, sans-serif;
  font-size: 16px;
  line-height: 1.41875;
}

.products-cta_subtext.cc-small {
  width: 60%;
  max-width: 400px;
}

.products-cta_subtext.cc-wide {
  width: 90%;
}

.products-cta_subtext.cc-dark-grey {
  color: var(--grey-3);
}

.products-cta_subtext.cc-credit {
  color: var(--grey-4);
}

.products-cta_subtext.cc-savings {
  color: var(--dark-green);
}

.product-link {
  color: var(--dark-green);
  background-color: #0000;
  align-items: center;
  max-width: 180px;
  max-height: 68px;
  padding: 22px 50px 22px 0;
  font-size: 16px;
  line-height: 1.375;
  display: flex;
}

.product-link.w--current {
  border-radius: 15px;
  width: 207px;
  max-width: none;
  height: 68px;
  padding-left: 25px;
  font-size: 22px;
  line-height: 1;
}

.product-link.cc-active {
  border-radius: 15px;
  width: 207px;
  height: 67px;
  padding-left: 25px;
  font-size: 22px;
  line-height: 1;
}

.product-link_icon {
  flex: none;
  width: 18px;
  height: 18px;
  margin-right: 7.6px;
}

.c-products {
  width: 90.2%;
  margin-left: auto;
  margin-right: auto;
}

.products-flex {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: flex-end;
  padding: 22px 35px 80px;
  display: flex;
}

.products-flex_header {
  color: var(--dark-green);
  max-width: 560px;
  font-family: Teg, sans-serif;
  font-size: 56px;
  line-height: .985714;
}

.products-flex_header.cc-wide {
  max-width: 611px;
}

.products-flex_header.cc-xwide {
  max-width: 850px;
}

.products-flex_subtext {
  color: var(--light-grey);
  letter-spacing: -.36px;
  max-width: 450px;
  font-size: 18px;
  line-height: 1.38889;
}

.products-flex_subtext.cc-small {
  max-width: 260px;
}

.products-flex_subtext.cc-md {
  max-width: 348px;
}

.product-list {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  padding-top: 30px;
  display: flex;
  position: relative;
}

.product-list_item {
  background-color: var(--daf1ea);
  color: var(--primary-green);
  border-radius: 20px;
  justify-content: space-between;
  padding-left: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.product-list_item.cc-consumer {
  background-color: var(--daf1ea);
}

.product-list_item.cc-business {
  background-color: var(--dark-green);
  color: var(--secondary-green);
}

.product-list_item.cc-virtual-account {
  background-color: var(--light-purple);
  color: var(--purple);
}

.product-list_item.cc-interest-bearing {
  background-color: var(--purple);
  color: var(--secondary-green);
}

.product-list_item.cc-group-accounts {
  background-color: var(--light-blue);
}

.product-list_item.cc-sub-accounts {
  background-color: var(--medium-sea-green);
  color: var(--white);
}

.product-list_item.cc-wallets {
  background-color: var(--light-green);
}

.product-list_item.cc-multi-currency {
  background-color: var(--primary-green);
  color: var(--secondary-green);
}

.product-list_item.cc-collections {
  background-color: var(--light-purple);
  color: var(--purple);
}

.product-list_item.cc-book-transfers {
  background-color: var(--purple);
  color: var(--secondary-green);
}

.product-list_item.cc-bills-payment {
  background-color: var(--dark-green);
  color: var(--secondary-green);
}

.product-list_item.cc-managed-accounts {
  background-color: var(--light-blue);
}

.product-list_item.cc-international-payments {
  background-color: var(--medium-sea-green);
  color: var(--white);
}

.product-list_item.cc-checkouts {
  background-color: var(--light-green);
}

.product-list_item.cc-bulk-transfers {
  background-color: var(--primary-green);
  color: var(--secondary-green);
}

.product-list_item.cc-naira-cards {
  background-color: var(--opaque-light-orange);
  color: var(--primary-green);
}

.product-list_item.cc-virtual-cards {
  background-color: var(--dark-green);
  color: var(--light-orange);
}

.product-list_item.cc-prepaid-cards {
  background-color: var(--light-orange);
  color: var(--dark-green);
}

.product-list_item.cc-overdraft {
  background-color: var(--opaque-light-orange);
  color: var(--primary-green);
}

.product-list_item.cc-cash-advance {
  background-color: var(--dark-green);
  color: var(--light-orange);
}

.product-list_item.cc-investment-products {
  background-color: var(--light-green);
  background-image: none;
}

.product-list_item.cc-fixed-deposits {
  background-color: var(--medium-sea-green);
  color: var(--white);
  background-image: none;
}

.product-list_item.cc-target-savings {
  background-color: var(--light-blue);
  background-image: none;
}

.product-list_index {
  font-family: Teg, sans-serif;
  font-size: 30px;
  line-height: .986667;
}

.product-list_header {
  margin-bottom: 40px;
}

.product-list_details {
  max-width: 650px;
  padding-left: 68px;
}

.product-list_subtext {
  color: var(--dark-green);
  letter-spacing: -.32px;
  -webkit-text-stroke-width: 0px;
  max-width: 566px;
  font-size: 16px;
  line-height: 1.375;
}

.product-list_subtext.uc-darkgreen_text {
  max-width: 570px;
}

.product-list_subtext.cc-small {
  max-width: 380px;
}

.product-list_subtext.cc-xsm {
  max-width: 273px;
}

.product-list_inner {
  width: 62%;
  padding-top: 40px;
  padding-bottom: 60px;
}

.product-list_img {
  width: 100%;
  max-width: 400px;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.product-list_img.cc-right-align {
  right: 0;
}

.product-list_img.cc-left-align {
  left: 0;
}

.product-list_img.cc-wide {
  height: 120%;
}

.product-list_img.cc-wide.cc-right-align {
  top: auto;
  right: -110px;
  transform: translate(0, 80px);
}

.product-list_img.cc-wide.cc-left-align {
  top: auto;
  transform: none;
}

.product-list_img.cc-wide.cc-checkout {
  top: auto;
  right: 0;
  transform: translate(80px, 20px);
}

.product-list_img.cc-left-inner {
  left: -50px;
}

.product-list_img.cc-right-inner {
  right: -50px;
}

.product-list_img.cc-xwide {
  height: 482px;
}

.product-list_img.cc-xwide.cc-right-align {
  top: -50px;
  right: -100px;
  transform: none;
}

.product-list_img.cc-xwide.cc-left-align {
  top: -50px;
  left: -100px;
  transform: none;
}

.product-list_img.cc-xwide.cc-checkout {
  top: auto;
  bottom: -80px;
  right: 34px;
  transform: none;
}

.product-list_img.cc-small {
  max-width: 230px;
}

.product-description_flex {
  justify-content: space-between;
  padding-left: 3.3%;
  padding-right: 3.3%;
  display: flex;
}

.product-description_illustration {
  width: 39.4vw;
  max-width: 568px;
  min-height: 548px;
  position: relative;
}

.product-description_bg {
  background-color: #f1f9f6;
  width: 94.2%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.product-description_img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 40px 0% 0%;
}

.product-description_img.cc-center {
  top: 0;
}

.product-description_text {
  color: var(--dark-green);
  flex-direction: column;
  flex: 1;
  margin-right: 50px;
  padding-top: 133px;
  padding-bottom: 80px;
  font-family: Teg, sans-serif;
  font-size: 56px;
  line-height: .985714;
  display: flex;
}

.product-description_header {
  max-width: 420px;
  margin-bottom: 55px;
}

.product-description_header.cc-small {
  max-width: 350px;
}

.product-description_header.cc-wide {
  max-width: 500px;
}

.product-description_subtext {
  color: var(--light-grey);
  max-width: 320px;
  margin-left: auto;
  font-family: Dmsans, sans-serif;
  font-size: 18px;
  line-height: 1.42222;
}

.product-features {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 100%;
  margin-bottom: 40px;
  padding-left: 8%;
  padding-right: 8%;
  display: flex;
  position: relative;
  overflow: auto;
}

.product-feature {
  background-color: var(--secondary-green);
  color: var(--light-black);
  border-radius: 10px;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  min-width: 423px;
  min-height: 250px;
  padding: 40px 40px 44px;
  font-size: 32px;
  line-height: .984375;
  transition: all .3s;
  display: flex;
}

.product-feature:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.product-feature_name {
  text-transform: capitalize;
  max-width: 350px;
}

.product-feature_name.cc-small {
  max-width: 280px;
}

.product-feature_name.cc-xsm {
  max-width: 150px;
}

.product-feature_flex {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.product-feature_icon {
  flex: none;
  width: 32px;
  height: 32px;
  transition: all .1s;
}

.product-feature_summary {
  color: var(--dark-green);
  text-align: right;
  max-width: 254px;
  padding-top: 3px;
  font-size: 16px;
  line-height: 1.4375;
  transition: color .3s;
}

.product-feature_summary.cc-wide {
  max-width: 286px;
}

.product-feature_summary.cc-small {
  max-width: 200px;
}

.product-features_inner {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.arrow-link {
  align-self: flex-start;
  align-items: center;
  margin-left: 8%;
  font-size: 18px;
  line-height: 1.38889;
  display: flex;
}

.arrow-link:hover {
  color: var(--light-grey);
}

.arrow-link_icon {
  flex: none;
  width: 24px;
  height: 24px;
  margin-left: 15px;
  overflow: hidden;
}

.platform-hero_inner {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: var(--dark-green);
  flex-direction: column;
  align-items: flex-start;
  width: 62%;
  max-width: 690px;
  font-family: Teg, sans-serif;
  font-size: 50px;
  line-height: 1.12;
  display: flex;
}

.platform-hero_inner.cc-small {
  width: 60%;
  max-width: 520px;
}

.platform-hero_inner.cc-xsm {
  max-width: 445px;
}

.platform-hero_subtext {
  letter-spacing: -.36px;
  max-width: 320px;
  margin-top: 16px;
  font-family: Dmsans, sans-serif;
  font-size: 16px;
  line-height: 1.41875;
}

.platform-service_list {
  width: 90.2%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 88px;
  padding-bottom: 0;
}

.platform-service_type {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  color: var(--dark-green);
  align-items: center;
  margin-bottom: 37px;
  padding-left: 50px;
  font-size: 40px;
  line-height: 1.4;
  display: flex;
}

.platform-image_container {
  padding-left: 96px;
  position: relative;
}

.platform-image {
  border-radius: 21px;
  width: 40.3vw;
  max-width: 581px;
  height: 26.67vw;
  max-height: 384px;
  overflow: hidden;
}

.platform-service_text {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.platform-service_header {
  color: var(--dark-green);
  width: 41%;
  max-width: 580px;
  margin-bottom: 57px;
  font-family: Teg, sans-serif;
  line-height: .979167;
}

.platform-service_header.cc-small {
  width: auto;
  max-width: none;
}

.platform-subtext_wrapper {
  background-color: #f4f5f4;
  border-radius: 30px;
  justify-content: flex-end;
  align-self: stretch;
  padding: 45px 30px 78px 45px;
  display: flex;
}

.platform-subtext_inner {
  flex-direction: column;
  align-items: flex-start;
  width: 41%;
  max-width: 550px;
  display: flex;
}

.platform-subtext {
  color: var(--slate-grey);
  max-width: 364px;
  margin-bottom: 33.5px;
  font-size: 16px;
  line-height: 1.4375;
}

.platform-link {
  color: var(--dark-green);
  align-items: center;
  margin-right: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  display: flex;
  position: relative;
}

.platform-link:hover {
  color: var(--grey-2);
}

.platform-link_icon {
  flex: none;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  overflow: hidden;
}

.platform-list_item {
  margin-bottom: 90px;
}

.platform-header_text {
  max-width: 92%;
}

.platform-header_text.cc-small {
  max-width: 65%;
}

.product-features_wrapper {
  flex-direction: column;
  margin-bottom: 140px;
  display: flex;
}

.usecase-wrapper {
  width: 90.2%;
  margin-bottom: 90px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 38px;
}

.usecase-tab_menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #10a97d;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
  justify-content: center;
  align-items: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 30.5px;
  display: flex;
}

.usecase-tab_link {
  color: var(--white);
  background-color: #0000;
  border-radius: 52px;
  padding: 10px 23px;
  font-size: 16px;
  line-height: 1.375;
}

.usecase-tab_link.w--current {
  background-color: var(--primary-green);
  font-weight: 500;
}

.usecase-list {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  display: flex;
}

.usecase-list_container {
  padding-top: 70px;
  padding-bottom: 100px;
}

.usecase-list_header {
  color: var(--dark-green);
  margin-bottom: 40px;
  font-family: Teg, sans-serif;
  font-size: 34px;
  line-height: 1.11765;
}

.usecase-list_item {
  background-color: #23322d08;
  border: 1px solid #efefef;
  border-radius: 20px;
  padding: 55px 60px;
  position: relative;
  overflow: hidden;
}

.usecase-list_item.cc-wallet-img {
  background-image: url('../svg/usecase-wallet.svg');
}

.usecase-list_item.cc-lock-img {
  background-image: url('../svg/usecase-lock.svg');
}

.usecase-list_item.cc-piggybank-img {
  background-image: url('../svg/usecase-piggybank-img.svg');
}

.usecase-list_item.cc-card-img {
  background-image: url('../svg/usecase-card.svg');
}

.usecase-list_text {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--dark-green);
  letter-spacing: -.48px;
  max-width: 660px;
  font-size: 24px;
  line-height: 1.41667;
  display: flex;
}

.customer-stories_header {
  color: var(--dark-green);
  font-family: Teg, sans-serif;
  font-size: 40px;
  line-height: 1;
}

.customer-stories_grid {
  grid-column-gap: 44px;
  grid-row-gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
}

.customer-story {
  color: var(--dark-green);
  border: 1px solid #efefef;
  border-radius: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 48px 35px;
  transition: all .35s;
  display: flex;
}

.customer-story:hover {
  border-color: var(--daf1ea);
  background-color: var(--daf1ea);
}

.tag {
  background-color: #97d6c333;
  border-radius: 52px;
  padding: 10px 23px;
  font-size: 16px;
  line-height: 1.375;
  transition: background-color .25s, color .25s;
  display: inline-block;
}

.tag.cc-green-bg {
  background-color: var(--transparent);
  color: var(--text-green);
  padding: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 13px;
}

.tag.cc-sm {
  letter-spacing: .36px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 12px;
}

.tag.cc-sm.cc-green-bg {
  color: var(--ocean-blue);
}

.customer-story_text {
  margin-bottom: 20px;
}

.customer-story_inner {
  letter-spacing: -.32px;
  max-width: 295px;
  margin-top: 32px;
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 1.375;
}

.customer-story_logo {
  max-width: 120px;
  height: 30px;
}

.customer-stories_flex {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 65px;
  display: flex;
}

.customer-stories_arrows {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
  display: flex;
  position: absolute;
  top: -100px;
  right: 0;
}

.customer-stories_arrow {
  cursor: pointer;
  flex: none;
  width: 32px;
  height: 32px;
  transition: all .4s;
}

.customer-stories_arrow:hover {
  color: var(--color);
}

.faq-section {
  width: 90.2%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-bottom: 118px;
}

.faq-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  width: 96.4%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-container {
  color: var(--dark-green);
  cursor: pointer;
  border: 1px solid #efefef;
  border-radius: 16px;
  padding: 24px 32px;
  transition: background-color .3s;
}

.faq-container.cc-active {
  border-color: var(--daf1ea);
  background-color: var(--daf1ea);
}

.faq-inner {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  font-family: Teg, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  display: flex;
}

.faq-icon {
  background-image: url('../svg/green-arrow-down.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 24px;
  height: 24px;
  transition: transform .5s;
}

.faq-icon.cc-active {
  transform: rotate(180deg);
}

.faq-answer {
  letter-spacing: -.36px;
  width: 90%;
  max-width: 1015px;
  max-height: 0;
  font-size: 18px;
  line-height: 1.38889;
  transition: padding .8s, max-height .4s;
  overflow: hidden;
}

.faq-answer.cc-show {
  max-height: 500px;
  padding-top: 20px;
}

.faq-cta {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  color: var(--dark-green);
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 170px;
  display: flex;
}

.casestudy-hero_cta {
  width: 42.7%;
  max-width: 556px;
  font-size: 50.2px;
  line-height: 1.11554;
}

.casestudy-hero_subtext {
  color: var(--white);
  letter-spacing: -.32px;
  width: 95%;
  max-width: 454px;
  margin-top: 16px;
  margin-bottom: 38px;
  font-size: 16px;
  line-height: 1.375;
}

.casestudy-category_list {
  width: 84%;
  max-width: 1440px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.casestudy-category_item {
  grid-column-gap: 76px;
  grid-row-gap: 76px;
  border-bottom: 1px solid #dbdbdb;
  justify-content: space-between;
  align-items: center;
  padding-top: 83px;
  padding-bottom: 98px;
  display: flex;
}

.casestudy-category {
  color: var(--dark-grey);
  letter-spacing: 1.52px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.375;
}

.casestudy-category_header {
  max-width: 400px;
  margin-bottom: 35px;
  font-family: Teg, sans-serif;
  font-size: 56px;
  line-height: .946429;
}

.casestudy-category_subtext {
  letter-spacing: -.4px;
  margin-bottom: 28px;
  font-size: 20px;
  line-height: 1.2;
}

.explore-casestudy_flex {
  letter-spacing: -.35px;
  align-items: center;
  margin-bottom: 52px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.38889;
  display: flex;
}

.casestudy-item_details {
  color: var(--dark-green);
  max-width: 445px;
  margin-bottom: 50px;
}

.explore-casestudy_icon {
  background-image: url('../svg/bi_arrow-down.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 17.8px;
  height: 17.8px;
  margin-left: 12px;
}

.casestudy-list {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  color: var(--light-grey);
  flex-direction: column;
  font-family: Teg, sans-serif;
  font-size: 42px;
  line-height: .97619;
  display: flex;
}

.casestudy {
  color: var(--color);
  cursor: pointer;
  align-items: center;
  line-height: 1.1;
  transition: color .3s;
  display: flex;
  overflow: hidden;
}

.casestudy:hover {
  color: var(--dark-green);
}

.casestudy.cc-active {
  color: var(--black);
}

.casestudy-logo {
  -webkit-backdrop-filter: grayscale();
  backdrop-filter: grayscale();
  flex: none;
  width: 60px;
  max-width: 60px;
  height: 41px;
  margin-left: -84px;
  margin-right: 24px;
  transition: all .5s;
  overflow: hidden;
}

.casestudy-logo.cc-active {
  margin-left: 0;
}

.casestudy-icon {
  opacity: 0;
  background-image: url('../svg/bi_arrow-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 30px;
  height: 30px;
  transition: opacity .3s;
}

.casestudy-item_image {
  color: var(--dark-green);
  flex-direction: column;
  flex: 1;
  max-width: 690px;
  margin-top: 30px;
  display: flex;
}

.casestudy-item_image.cc-purple_bg {
  color: var(--white);
}

.casestudy-image_details {
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 80px 11.5%;
  transition: all .4s;
  display: flex;
}

.casestudy-image_details.cc-active {
  top: -30%;
}

.casestudy-image_details.cc-green-bg {
  background-color: var(--daf1ea);
}

.casestudy-image_details.cc-yellow-bg {
  background-color: var(--light-orange);
}

.casestudy-image_details.cc-purple-bg {
  background-color: var(--purple);
  color: var(--white);
}

.casestudy-image_inner {
  flex: none;
  width: 53.6%;
  max-width: 272px;
  height: 240px;
  margin-bottom: 52px;
  margin-left: auto;
  margin-right: auto;
  transition: all .4s;
  position: relative;
}

.casestudy-image_inner.cc-active {
  height: 25%;
}

.casestudy-image_inner.cc-small {
  max-width: 50%;
}

.csimage-text_wrapper {
  letter-spacing: -.4px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 190px;
  font-size: 16px;
  line-height: 1.4;
  transition: all .4s;
  display: flex;
  position: relative;
}

.csimage-text_wrapper.cc-active {
  margin-top: 52px;
  top: 50%;
}

.casetudy-image_author {
  letter-spacing: -.32px;
  font-size: 14px;
  line-height: 1.375;
}

.casestudy-image_text {
  margin-bottom: 18px;
}

.casestudy-hero_inner {
  color: var(--dark-green);
  flex-direction: column;
  align-items: flex-start;
  width: 61%;
  max-width: 600px;
  font-family: Teg, sans-serif;
  font-size: 50px;
  line-height: 1.12;
  display: flex;
}

.casestudy-hero_inner.cc-small {
  width: 60%;
  max-width: 520px;
}

.casestudy-hero_inner.cc-xsm {
  max-width: 445px;
}

.casestudy-hero_flex {
  align-items: center;
  margin-bottom: 22px;
  display: flex;
}

.casestudy-hero_logo {
  flex: 1;
  max-width: 140px;
  height: 60px;
  margin-right: 20px;
}

.casestudy-back_btn {
  letter-spacing: -.32px;
  align-items: center;
  margin-bottom: 56px;
  font-family: Dmsans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375;
  display: flex;
}

.casestudy-back_icon {
  color: var(--text-green);
  flex: none;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 0;
  display: flex;
}

.casestudy-content {
  grid-column-gap: 54px;
  grid-row-gap: 54px;
  align-items: flex-start;
  width: 88%;
  max-width: 1273px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  display: flex;
  position: relative;
}

.casestudy-stcky_container {
  background-color: var(--daf1ea);
  border-radius: 20px;
  max-width: 350px;
  margin-bottom: 104px;
  padding: 100px 44px;
  position: sticky;
  top: -230px;
}

.casestudy-content_details {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--dark-green);
  letter-spacing: -.32px;
  border-bottom: 1px solid #e9e9e9;
  flex-direction: column;
  margin-bottom: 24px;
  padding-bottom: 24px;
  font-size: 18px;
  line-height: 1.375;
  display: flex;
}

.casestudy-content_header {
  color: var(--primary-green);
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.58333;
}

.casestudy-content_stat {
  font-family: Teg, sans-serif;
  font-size: 40px;
  line-height: 1.1;
}

.casestudy-details_flex {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.casestudy-details_inner {
  align-items: center;
  font-size: 20px;
  line-height: 1.55;
  display: flex;
}

.casestudy-details_icon {
  flex: none;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.casestudy-content_inner {
  flex: 1;
  max-width: 830px;
  margin-bottom: 70px;
}

.casestudy-inner_text {
  border-top: 1px solid #e9e9e9;
  padding-top: 30px;
  padding-bottom: 20px;
}

.casestudy-inner_text p {
  color: var(--dark-green);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5625;
}

.casestudy-inner_text h4 {
  color: var(--primary-green);
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.58333;
}

.casestudy-inner_text.cc-first-child, .casestudy-inner_text.casestudy-inner_text_quote {
  border-top-style: none;
  padding-top: 0;
}

.casestudy-author_block {
  background-color: var(--dark-green);
  color: var(--white);
  border-radius: 16px;
  margin-bottom: 40px;
  padding: 60px;
  font-size: 24px;
  line-height: 1.375;
}

.casestudy-author_inner {
  letter-spacing: -.32px;
  align-items: flex-start;
  max-width: 350px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.4375;
  display: flex;
}

.casestudy-author_img {
  object-fit: fill;
  border-radius: 50%;
  flex-flow: column;
  flex: none;
  align-items: center;
  width: 28px;
  height: 28px;
  margin-right: 0;
  display: flex;
  overflow: hidden;
}

.casestudy-author_position {
  color: var(--secondary-green);
  font-size: 14px;
  line-height: 1.42857;
}

.blog-hero {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  color: var(--dark-green);
  text-align: center;
  letter-spacing: -.32px;
  border-bottom: .3px solid #a39696;
  flex-direction: column;
  max-width: none;
  margin: 61px 0 40px;
  padding-bottom: 66px;
  font-size: 16px;
  line-height: 1.375;
  display: flex;
}

.blog {
  width: auto;
  margin-top: 55px;
  margin-left: 70px;
  margin-right: 75px;
  position: relative;
}

.blog-menu_container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-top: .2px solid #7a7a7a;
  border-bottom: 1px solid #000;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 66px;
  display: flex;
}

.blog-tab_menu {
  color: var(--dark-green);
  background-color: #f4f5f4;
  border-radius: 58px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 1.4375;
}

.blog-tab_menu.w--current {
  background-color: var(--primary-green);
  color: var(--white);
}

.featured-blog_container {
  border-top: 1px solid var(--opaque-primary-green);
  margin-bottom: 60px;
  padding-top: 50px;
}

.featured-blog_header {
  color: var(--dark);
  margin-bottom: 0;
  font-family: Teg, sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 34px;
}

.featured-blog {
  grid-column-gap: 94px;
  grid-row-gap: 94px;
  background-color: var(--daf1ea);
  color: var(--dark-green);
  border: .4px solid #ced9cc;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  min-height: 452px;
  padding: 50px;
  display: flex;
}

.featured-blog_date {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--opaque-black);
  letter-spacing: -.4px;
  align-items: center;
  font-size: 20px;
  line-height: 1.4;
  display: flex;
}

.featured-blog_details {
  letter-spacing: -.32px;
  flex: 0 auto;
  width: 500px;
  max-width: 500px;
  font-size: 16px;
  line-height: 1.4375;
}

.featured-blog_text {
  color: var(--dark);
  letter-spacing: -.96px;
  width: 284px;
  margin-top: 18px;
  margin-bottom: 20px;
  font-family: Teg, sans-serif;
  font-size: 40px;
  line-height: 36px;
}

.featured-blog_image {
  border-radius: 16px;
  flex: none;
  width: 250px;
  max-width: none;
  height: 222px;
  margin-top: auto;
  margin-bottom: auto;
  overflow: hidden;
}

.featured-blog_summary {
  color: var(--text-color);
  width: auto;
  max-width: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.blog-grid {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: stretch center;
  width: auto;
  margin-bottom: 138px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.c-blog {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #f6fdfb;
  border: .5px solid #d9d9d9;
  border-radius: 12px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
  display: flex;
}

.c-blog.cc-inner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: .18px solid #7a7a7a5e;
  border-radius: 3.53px;
  flex-flow: column;
  width: 300px;
  height: 466px;
  padding-top: 0;
  text-decoration: none;
}

.blog-image {
  border-radius: 8px;
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  margin-bottom: 0;
  overflow: hidden;
}

.blog-flex {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--opaque-black);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.blog-title {
  color: var(--dark-green);
  letter-spacing: -.4px;
  margin-bottom: 14px;
  font-family: Teg, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 21px;
  text-decoration: none;
}

.blog-duration {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.blog-duration_circle {
  background-color: var(--black);
  border-radius: 50%;
  flex: none;
  width: 4px;
  height: 4px;
}

.blog-summary {
  max-width: 310px;
}

.blog-open {
  width: auto;
  margin-left: 100px;
  margin-right: 147px;
  display: block;
}

.blog-inner_title {
  color: var(--light-dark);
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-bottom: 26px;
  font-family: Teg, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
}

.blog-open_inner {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  color: var(--dark-green);
  letter-spacing: -.32px;
  align-items: center;
  max-width: none;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.4375;
  display: flex;
}

.blog-open_flex {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--opaque-black);
  flex-flow: row;
  align-items: center;
  font-size: 14px;
  display: flex;
}

.blog-open-content {
  color: var(--dark-text);
  width: 75%;
  margin: 0 auto 40px;
  font-family: Inter, sans-serif;
  font-weight: 400;
}

.blog-open-content p {
  color: var(--medium-grey);
  letter-spacing: -.36px;
  margin-bottom: 25px;
  font-family: Helveticaneue, Times New Roman, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.blog-open-content img {
  object-fit: cover;
  border: 1px #000;
  border-radius: 0;
  max-height: 500px;
  margin-bottom: 40px;
  overflow: hidden;
}

.articles-flex {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  border-top: 1px none var(--opaque-primary-green);
  border-bottom: 0px none var(--opaque-primary-green);
  color: var(--light-grey);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.blog-back_btn {
  letter-spacing: -.32px;
  justify-content: flex-start;
  align-items: center;
  width: 25%;
  font-family: Dmsans, sans-serif;
  font-size: 16px;
  line-height: 1.375;
  text-decoration: none;
  display: flex;
}

.blog-back_btn.down-btn {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--text-green);
  justify-content: flex-start;
  align-items: center;
  width: auto;
}

.blog-bottom_block {
  background-color: #f5f5f5;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  display: flex;
}

.legal-content {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  align-items: flex-start;
  width: 90.2%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.legal-sticky_container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--light-grey);
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  max-width: 350px;
  margin-bottom: 68px;
  padding-left: 45px;
  display: flex;
  position: sticky;
  top: 50px;
}

.legal-section.w--current, .legal-section.cc-active {
  color: var(--black);
  font-weight: 700;
}

.legal-content_text {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  color: var(--color-2);
  flex-direction: column;
  flex: 1;
  max-width: 830px;
  margin-bottom: 68px;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
}

.legal-content_header {
  margin-bottom: 30px;
  font-weight: 700;
}

.uc-underline {
  text-decoration: underline;
}

.nav-link {
  color: var(--light-grey);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--primary-green);
}

.c-cookie_cta {
  z-index: 99;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--primary-green);
  color: var(--ocean-blue);
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  width: 97%;
  max-width: 1920px;
  padding: 22px 50px;
  display: none;
  position: fixed;
  bottom: 46px;
  left: 50%;
  transform: translate(-50%);
}

.c-cookie_cta.uc-hide {
  display: none;
}

.c-cookie_cta.cc-show {
  display: flex;
}

.cookie-cta_flex {
  align-items: flex-start;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
}

.cookie-cta_circle {
  background-color: var(--neon-green);
  border-radius: 50%;
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  margin-right: 16px;
}

.cookie-btn_flex {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: center;
  display: flex;
}

.about-hero_inner {
  z-index: 1;
  opacity: 0;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.about-hero_inner.cc-grey_bg {
  background-color: var(--grey);
  opacity: 1;
}

.about-hero_inner.cc-blue_bg {
  background-color: var(--ocean-blue);
}

.about-hero_inner.cc-green_bg {
  background-color: var(--neon-green);
}

.about-hero_slide {
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% -20% 0% 0%;
}

.about-slide_details {
  z-index: 4;
  background-color: var(--white);
  border-radius: 10px;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  margin-left: 30px;
  margin-right: 30px;
  padding: 14px 20px 20px;
  display: flex;
  position: relative;
  transform: translate(0, 100%);
}

.about-slide_text {
  background-color: var(--white);
  opacity: 0;
  color: var(--light-grey);
  text-align: right;
  letter-spacing: -.28px;
  align-self: flex-end;
  font-size: 14px;
  line-height: 1.35714;
  transition: opacity .2s;
  position: absolute;
  inset: 0%;
}

.about-slide_text.cc-active {
  opacity: 1;
}

.about-slide_inner {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  margin-right: 24px;
  display: flex;
}

.about-tag_flex {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  background-color: var(--white);
  opacity: 0;
  color: var(--opaque-black);
  white-space: nowrap;
  align-items: center;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.about-tag_flex.cc-active {
  opacity: 1;
}

.about-slide_pagination {
  background-color: #0000001a;
  height: 1px;
  display: flex;
}

.about-tag {
  min-height: 20px;
  position: relative;
}

.slide-text_container {
  width: 58.3%;
  max-width: 255px;
  min-height: 38px;
  position: relative;
}

.about-img_inner {
  opacity: 0;
  transition: opacity 1.5s;
  position: absolute;
  inset: 0%;
}

.about-img_inner.cc-active {
  opacity: 1;
}

.about-large_subtext {
  letter-spacing: -.96px;
}

.about-small_subtext {
  letter-spacing: -.6px;
  line-height: 1.2;
}

.uc-darkgreen_text {
  color: var(--dark-green);
}

.uc-white_text {
  color: var(--white);
}

.product-menu_container {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  align-items: center;
  margin-bottom: 44px;
  padding-left: 8%;
  padding-right: 8%;
  display: flex;
}

.product-tab_menu {
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 52px;
  flex: none;
  padding: 10px 23px;
  font-size: 16px;
  line-height: 1.375;
}

.product-tab_menu.w--current {
  border-color: var(--ocean-blue);
  color: var(--primary-green);
  background-color: #0000;
}

.product-tab {
  width: 100%;
  margin-top: -88px;
}

.swiper-pagination-bullet {
  transition: background-color .25s;
}

.hero-img_flex {
  grid-column-gap: 13.8px;
  grid-row-gap: 13.8px;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.press-slider {
  width: 100%;
  overflow: hidden;
}

.press-slide_arrows {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 85px;
  display: flex;
}

.press-slide_arrow {
  color: var(--dark-green);
  cursor: pointer;
  background-color: #23322d0d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.press-arrow_icon {
  width: 23px;
  height: 23px;
}

.product-link_text {
  max-width: 150px;
}

.content-details_container {
  border-radius: 20px;
}

.blog-social_links {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  align-items: flex-start;
  width: 25%;
  height: 242px;
  display: flex;
}

.blog-social_links.social-links {
  display: none;
}

.navbar-inner {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu_btn {
  width: 26px;
  height: 26px;
  display: none;
}

.casestudy-content_cta {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--dark-green);
  justify-content: space-between;
  align-items: center;
  font-family: Teg, sans-serif;
  font-size: 32px;
  line-height: 1;
  display: flex;
}

.casetsudy-cta_inner {
  max-width: 340px;
}

.form-success {
  text-align: left;
  background-color: #0000;
  padding-top: 0;
  padding-left: 0;
  font-size: 16px;
}

.form-error {
  color: var(--indian-red);
  background-color: #0000;
  padding-left: 0;
}

.backed-companies_container {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.csimage-text_inner {
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
}

.csimage-text_inner.cc-active {
  opacity: 1;
}

.products-hero_image {
  width: 100%;
  max-width: 542px;
  height: 100%;
  max-height: 509px;
  position: absolute;
  inset: auto 0% 0% auto;
  transform: translate(128px, 68px);
}

.products-hero_image.cc-cards {
  width: 1197px;
  max-width: none;
  height: 712px;
  max-height: none;
  transform: translate(596px, 238px);
}

.products-hero_image.cc-credit {
  max-width: 777px;
  max-height: 610px;
  transform: translate(200px, 97px);
}

.products-hero_image.cc-savings {
  width: 826px;
  max-width: none;
  height: 685px;
  max-height: none;
  transform: translate(207px, 242px);
}

.products-hero_image.cc-payment {
  max-width: 766px;
  transform: translate(102px, 50px);
}

.uc-overflow_hidden {
  overflow: hidden;
}

.hero-cards_section {
  width: 100%;
  padding-top: 105px;
  overflow: hidden;
}

.compliance-image_inner {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 0% -50%;
}

.compliance-image_inner.cc-full-width {
  max-width: 80%;
}

.compliance-image_inner.cc-centralised {
  bottom: 0%;
}

.usecase-img {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.usecase-img.cc-wallet {
  width: 226px;
  height: 170px;
  bottom: -80px;
  right: -66px;
}

.usecase-img.cc-building {
  width: 356px;
  height: 359px;
  bottom: -235px;
  right: -127px;
}

.usecase-img.cc-piggybank {
  width: 215px;
  height: 178px;
  bottom: -85px;
  right: -38px;
}

.usecase-img.cc-card {
  width: 173px;
  height: 103px;
  bottom: -30px;
  right: 27px;
}

.uc-hide_desktop {
  display: none;
}

.tab-menu_arrow {
  width: 12px;
  height: 16px;
}

.product-menu_pagination, .usecase-menu_pagination {
  background-color: #fff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.hero-tag_container {
  margin-bottom: 20px;
}

.hero {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.check-link {
  background-image: url('../svg/cd_logo_icon_black.svg');
  background-position: 50%;
  background-size: contain;
  width: 32px;
  height: 32px;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.guide-item-link {
  color: #433968;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}

.guide-container {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  color: var(--primary-green);
  flex-flow: row;
  justify-content: space-between;
  width: 90.2%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 104px 20px 100px;
  position: relative;
}

.guide-item-tiitle {
  color: #374151;
  font-family: Teg, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.guides-h1 {
  color: #212c3c;
  font-family: Teg, sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
}

.guide-title_block {
  background-color: #0000;
  border-radius: 12px;
  width: 50%;
  max-width: 500px;
  padding: 0;
  position: sticky;
  top: 100px;
}

.guide-paragraph {
  color: #43526ae3;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.guides-list-item {
  background-color: #fbefe7;
  background-image: url('../svg/guide-item-bg.svg');
  background-position: 0 0;
  background-size: cover;
  border: 1px solid #eedabe;
  border-radius: 16px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 327px;
  padding: 16px;
  display: flex;
}

.guide-block_grid {
  grid-template-areas: "Area";
  max-width: 600px;
}

.download-guide-left {
  color: var(--grey);
  background-color: #045137;
  border-radius: 12px;
  width: 50%;
  max-width: 470px;
  padding: 28px 24px 24px;
}

.download-guide-right {
  max-width: 550px;
  position: sticky;
  top: 100px;
}

.form-label {
  color: #546581;
  font-size: 12px;
  font-weight: 400;
}

.download-form_block {
  margin-top: 40px;
}

.download-form_field {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 16px;
}

.download-buttton {
  background-color: #0e9f6f;
  border-radius: 8px;
  font-weight: 500;
}

.download-header {
  color: var(--daf1ea);
  margin-bottom: 30px;
  font-family: Teg, sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 32px;
}

.form-header {
  color: var(--color-5);
  font-size: 38px;
  font-weight: 500;
  line-height: 44px;
}

.download-field_cta {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.signup-success {
  background-color: var(--neon-green);
  font-size: 14px;
  line-height: 25px;
}

.signup-error {
  color: var(--black);
}

.list-item {
  font-size: 16px;
}

.body {
  background-color: #fff;
  margin-left: 0;
}

.body.developer-body {
  background-color: #fff;
  max-width: 100vw;
  overflow: hidden;
}

.section, .section-2 {
  background-color: #1f1507;
}

.developer-hero {
  background-color: #1f1507;
  margin-left: 0;
  margin-right: 0;
}

.developer-hero-container {
  justify-content: space-between;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  display: flex;
}

.developer-hero-wrap {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 59px 125px 111px 141px;
  display: flex;
}

.div-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.developer-hero-content {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-flow: column;
  width: 50%;
  display: flex;
}

.developer-hero-title {
  color: var(--light-orange);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Teg, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 52px;
}

.paragraph-2 {
  color: var(--white);
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.developer-hero-image {
  width: 50%;
}

.developer-sections {
  max-width: 1440px;
  margin-left: 134px;
  margin-right: 141px;
}

.developer-build-anchor {
  margin-bottom: 0;
  padding: 80px 120px;
}

.developer-build-header {
  flex-flow: column;
  align-items: flex-start;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.developer-build-title {
  color: var(--dark-text);
  font-family: Teg, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
}

.developer-build-description {
  color: var(--text-color);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.developer-build-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  display: flex;
}

.build-card {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: .5px solid #9b9b9b;
  border-radius: 8px;
  flex-flow: column;
  width: 33.33%;
  max-width: none;
  height: 285px;
  padding: 24px;
  display: flex;
}

.build-card.card-one {
  background-color: #fffdfa;
  border-width: .3px;
  border-color: #c7b1a1;
  width: 375px;
  max-width: none;
  height: 285px;
}

.build-card.card-one:hover {
  background-color: #fffbf6;
  border-style: solid;
  border-color: #c7b1a1;
}

.build-card.card-two {
  background-color: #fffdfa;
  border-width: .3px;
  border-color: #c7b1a1;
  width: 375px;
  max-width: 375px;
  height: 285px;
}

.build-card.card-two:hover {
  background-color: #fffdfa;
  border-style: solid;
  border-color: #c7b1a1;
}

.build-card.card-three {
  background-color: #fffdfa;
  border-color: #c7b1a1;
  width: 375px;
  max-width: none;
  height: 285px;
}

.build-card.card-three:hover {
  background-color: #0000;
}

.icon-card {
  background-color: #fff9f1;
  border: .3px solid #d05f0d;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

.icon-card.icon-card-2, .icon-card.icon-card-3 {
  background-color: #fff9f1;
}

.build-card-title {
  color: var(--deep-maroon);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}

.build-card-description {
  color: var(--light-gray);
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.developer-test-sandbox {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 60px;
  padding-top: 35.33px;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
}

.test-sandbox-title {
  font-family: Teg, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 14.4px;
}

.developer-section-header {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  align-items: flex-start;
  margin-bottom: 32px;
  display: flex;
}

.developer-section-title {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Teg, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 14.4px;
}

.developer-section-description {
  color: var(--text-color);
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.test-sandbox-container {
  grid-column-gap: 51px;
  grid-row-gap: 51px;
  display: flex;
}

.test-sandbox-content {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-flow: column;
  width: 50%;
  display: flex;
}

.test-sandbox-image {
  background-color: #fce2cf;
  width: 588px;
  max-width: none;
  height: 366px;
  position: relative;
}

.test-content-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  max-width: none;
  height: 95px;
  display: flex;
}

.test-content-icon {
  background-color: #fff9f1;
  border: .5px solid #000;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 95px;
  display: flex;
}

.test-content-icon.test-content-icon-2 {
  background-color: #f1f9f6;
}

.test-content-icon.test-content-icon-3 {
  background-color: #edf8ff;
}

.test-content-text {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  width: 412px;
  height: 95px;
  display: flex;
}

.content-text-title {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18.2px;
}

.content-text-description {
  color: var(--text-color);
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.anchor-connect-sectiom {
  background-color: #fffcf9;
  padding: 80px 120px;
}

.anchor-connect-container {
  background-color: #f8f0e5;
  border: .3px solid #c8c2c2;
  height: 0;
  min-height: 362px;
  display: flex;
  box-shadow: 0 1px 1px #0000001a;
}

.anchor-connect-left {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: flex-start;
  width: 50%;
  padding: 48px 70px 0 48px;
  display: flex;
}

.anchor-connect-title {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: 24px;
}

.list {
  margin-bottom: 0;
  padding-left: 0;
}

.image {
  width: auto;
}

.image-2 {
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: auto 0% 0% auto;
  overflow: clip;
}

.div-block-2 {
  width: 50%;
}

.anchor-connect-right {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  width: 50%;
  height: 362px;
  position: relative;
  overflow: hidden;
}

.image-3 {
  overflow: clip;
}

.anchor-connect-image {
  background-image: url('../png/puzzle.png');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 0%;
}

.hero-button {
  mix-blend-mode: normal;
  background-color: #d05f0e;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22.82px;
}

.hero-button:hover {
  background-color: #994204;
}

.developer-build-button {
  justify-content: flex-end;
  margin-top: 40px;
  display: flex;
}

.build-button {
  background-color: #077c54;
  border-radius: 4px;
  padding: 9.17px 18.34px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 17.44px;
}

.build-button:hover {
  background-color: #045c3e;
}

.developer-test-button {
  justify-content: flex-end;
  margin-top: 8px;
  display: flex;
}

.test-button {
  background-color: #04704b;
  padding: 9.17px 18.33px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 17.44px;
}

.test-button:hover {
  background-color: #045c3e;
}

.developer-explore {
  padding: 80px 120px;
}

.developer-explore-container {
  grid-column-gap: 10.3px;
  grid-row-gap: 10.3px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.explore-card {
  border: .5px solid #c7c7c7;
  border-radius: 4px;
  flex-flow: column;
  width: 25%;
  max-width: none;
  height: auto;
  min-height: 0;
  display: flex;
}

.explore-card:hover {
  border-color: #f4a46b;
}

.explore-card-top {
  background-color: #fff9f1;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  height: 200px;
  padding-top: 45px;
  padding-bottom: 45px;
  display: flex;
}

.explore-card-bottom {
  grid-column-gap: 15.9px;
  grid-row-gap: 15.9px;
  flex-flow: column;
  min-height: 235px;
  padding: 28.58px 24px 24px;
  display: flex;
}

.explore-card-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Teg, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 17.85px;
}

.explore-card-description {
  color: var(--text-color);
  height: 72px;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 11.93px;
  line-height: 17.9px;
}

.button {
  text-align: center;
  white-space: nowrap;
  background-color: #04704b;
  border: .3px solid #04704b;
  border-radius: 4px;
  margin-top: 10px;
  padding: 9.12px 18.23px;
}

.anchor-connect-button {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: .3px solid #649e88;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  display: flex;
}

.anchor-connect-button:hover {
  box-shadow: 0 .5px .5px #00000040;
}

.connect-button {
  color: #000;
  background-color: #0000;
  padding: 0;
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 24px;
}

.slack-icon {
  text-align: center;
  vertical-align: baseline;
  width: 20px;
  height: 20px;
}

.footer-heading {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  text-align: center;
  flex-flow: column;
  align-items: center;
  width: 412px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: flex;
}

.footer-heading-title {
  color: var(--footer-heading);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Teg, sans-serif;
  font-weight: 500;
  line-height: 32px;
}

.footer-heading-text {
  opacity: .64;
  color: var(--white);
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  line-height: 24px;
}

.footer-container {
  border: 1px solid #000;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  padding: 64px 123px 20px 138px;
}

.footer-heading-button {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #055137;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  text-decoration: none;
  display: flex;
}

.heading-button {
  background-color: #0000;
}

.image-4 {
  color: var(--white);
}

.image-5 {
  max-width: none;
}

.arrow-button-icon {
  width: 13.33px;
  height: 12.96px;
}

.footer-button-text {
  color: var(--white);
  text-align: left;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.footer-links-heading {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
}

.footer-link-text {
  color: var(--medium-grey);
  text-underline-position: under;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 15;
}

.footer-link-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  max-width: 160px;
  display: flex;
}

.footer-text-link {
  color: var(--medium-grey);
  white-space: nowrap;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 13px;
  text-decoration: none;
}

.links-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.footer-address-wrapper {
  grid-column-gap: 62px;
  grid-row-gap: 62px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.address {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.footer-address-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #0000;
  flex-flow: column;
  display: flex;
}

.footer-wrapper-links {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 62px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.address-heading {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 13px;
}

.address-text {
  width: 122px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 23px;
}

.foot-notes {
  width: 350px;
}

.footer-bottom {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: flex-start;
  margin-top: 34px;
  display: flex;
}

.footer-bottom-note {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.footer-logo {
  width: 92.63px;
}

.email-address {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  margin-left: 0;
  padding-left: 0;
  display: flex;
}

.email-heading {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 13px;
}

.link {
  color: var(--light-grey);
  width: 155px;
  padding-left: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
}

.developer-option {
  border: .5px solid #c7c7c7;
  padding-left: 135px;
  padding-right: 141px;
}

.image-6 {
  width: 100%;
  max-width: none;
}

.option-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 532px;
  display: flex;
}

.option-sidebar {
  flex-flow: column;
  width: 30%;
  height: 5px;
  display: flex;
}

.sidebar-item-tab {
  grid-column-gap: 9.5px;
  grid-row-gap: 9.5px;
  color: var(--black);
  cursor: pointer;
  background-color: #0000;
  border: .5px solid #c7c7c7;
  flex-flow: column;
  justify-content: center;
  height: 120px;
  padding: 31px 24px 24px;
  font-family: Inter, sans-serif;
  display: flex;
}

.sidebar-item-tab:active {
  background-color: #04704b;
}

.sidebar-item-tab.w--current {
  color: var(--daf1ea);
  cursor: pointer;
  background-color: #033d29;
  border-style: solid;
  padding-top: 24px;
}

.sidebar-item-tab.isactive {
  color: var(--daf1ea);
  background-color: #04704b;
}

.option-tab-container {
  background-color: #000;
  max-width: none;
  overflow: hidden;
}

.tab-text {
  color: var(--white);
  white-space: nowrap;
  font-size: 14.16px;
  font-weight: 500;
  line-height: 14.16px;
}

.option-tab-menu {
  background-color: #000;
  flex-flow: row;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.option-tab {
  background-color: #000;
  width: 100%;
  max-width: none;
}

.option-tab-button {
  background-color: #585757;
  max-width: 394px;
  padding: 12px 130px;
}

.option-tab-button.w--current {
  background-color: #272928;
  padding: 12px 130px;
}

.tab-content-item {
  color: var(--daf1ea);
  width: auto;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: scroll;
}

.tab-content {
  color: var(--ocean-blue);
  background-color: #000;
  height: 555px;
  padding-left: 30px;
  overflow: scroll;
}

.sidebar-item-name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 14px;
}

.footer-newsletter-sub {
  margin-top: 60px;
  margin-bottom: 0;
}

.newletter-heading {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
}

.option-dummy {
  display: flex;
}

.sidebardummywrapper {
  flex-flow: column;
  display: flex;
}

.sidebar-details {
  display: none;
}

.sidebar-details.is-active {
  display: block;
}

.link-block {
  display: flex;
}

.learnmore-link {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  display: flex;
}

.option-tab-panel {
  display: none;
}

.option-tab-panel.active {
  display: block;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  min-height: 40px;
  display: flex;
}

.text-field {
  border: .3px solid #0b5c3e;
  border-radius: 4px;
  width: 248px;
  height: 0;
  min-height: 40px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.submit-button {
  background-color: #fff;
  padding: 8px 12px;
}

.tabs {
  flex-flow: column;
  display: flex;
}

.tabs-menu {
  flex-flow: column;
  width: 30%;
  display: flex;
}

.developer-dream-option {
  flex-flow: column;
  height: auto;
  margin-bottom: 40px;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
}

.sidebar-tabs {
  flex-flow: row;
  height: 600px;
  display: flex;
}

.tabs-menu-2 {
  flex-flow: column;
  width: 40%;
  height: 600px;
  display: flex;
}

.tabs-content {
  background-color: #000;
  width: 60%;
}

.content-tab-wrapper {
  position: relative;
}

.tab-link {
  color: var(--white);
  background-color: #272928;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.tab-link.w--current {
  color: var(--daf1ea);
  background-color: #585757;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.tab-link-2 {
  color: var(--daf1ea);
  background-color: #272928;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.tab-link-2.w--current {
  background-color: #585757;
}

.additional-details {
  color: var(--black);
  display: none;
}

.additional-details-text {
  color: var(--daf1ea);
  display: none;
}

.text-block {
  color: var(--daf1ea);
}

.text-title, .text-block-3, .text-block-4, .text-block-5 {
  line-height: 14px;
}

.text-block-6, .text-block-7 {
  white-space: nowrap;
}

.tab-pane-tab-1 {
  color: var(--daf1ea);
  background-color: #000;
}

.text-field-2 {
  border: .3px solid #0b5c3e;
  border-radius: 4px;
  width: 248px;
  height: 40px;
}

.submit-button-2 {
  color: var(--green-text);
  background-color: #fff;
  border-radius: 4px;
  height: 40px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.sidebar-heading {
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  display: flex;
}

.mobile-tabs {
  display: none;
}

.tab-pane-tab-2 {
  color: var(--daf1ea);
}

.tab-pane-tab-1-2, .tab-pane-tab-2-2 {
  color: var(--white);
}

.floating-button {
  z-index: 10;
  color: var(--white);
  background-color: #ffffff1a;
  border: 1px solid #23322d;
  padding: 9.17px 18.34px;
  font-size: 13px;
  line-height: 17.44px;
  position: absolute;
  inset: auto 2% 2% auto;
}

.code-embed-2 {
  color: var(--white);
}

.nav-dropdown_toggle-2 {
  color: #767676;
  padding: 0 20px 0 0;
}

.nav-dropdown_flex-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: #767676;
  align-items: center;
  font-size: 16px;
  line-height: 1.375;
  display: flex;
}

.navbar-2 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
}

.navbar-inner-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-dropdown_link-2 {
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  transition: background-color .5s;
  display: flex;
}

.nav-dropdown_link-2:hover {
  background-color: #f1f9f6;
}

.c-button-2 {
  grid-column-gap: 15px;
  color: #f1f9f6;
  text-align: center;
  letter-spacing: -.36px;
  background-color: #045137;
  border: 1px solid #045137;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  transition: transform .5s;
  display: flex;
}

.c-button-2:hover {
  transform: translate(0, -7px);
}

.nav-link-2:hover {
  color: #045137;
}

.tab-pane-tab-1-3, .tab-pane-tab-1-4, .tab-pane-tab-2-8, .tab-pane-tab-1-5, .tab-pane-tab-2-9 {
  color: var(--white);
}

.developer-start {
  background-color: #1f1507;
}

.hero-developer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 40px 125px 40px 141px;
  display: flex;
}

.tab-pane-tab-2-10 {
  color: var(--white);
}

.text-block-8 {
  color: var(--dark);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 20px;
}

.featured-container {
  margin-left: 70px;
  margin-right: 75px;
}

.text-block-9 {
  color: var(--text-color);
  font-size: 15px;
  line-height: 20px;
}

.tabs-2 {
  margin-top: 65px;
}

.highlight-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  width: 25%;
  display: flex;
}

.blog-sidebar {
  width: 25%;
}

.blog-header {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.blog-heading {
  width: 75%;
}

.blog-main-content {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 55px;
  display: flex;
  position: relative;
}

.highlight-title {
  color: var(--text-green);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 13px;
}

.blog-news-sub {
  background-color: #33d7a6;
  border-radius: 8px;
  width: 75%;
  height: auto;
  min-height: 242px;
  max-height: none;
}

.newletter-block {
  max-height: none;
  margin-top: 34px;
  margin-bottom: 0;
  margin-left: 43px;
}

.block-title {
  color: var(--green-mid);
  margin-bottom: 17px;
  font-family: Teg, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 34px;
}

.block-des {
  color: var(--dark-text);
  margin-bottom: 37px;
}

.form-block {
  flex-flow: row;
  display: flex;
}

.form-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  height: 40px;
  display: flex;
}

.text-field-3 {
  color: var(--white);
  text-shadow: 0 1px 70px #ffffffb3;
  background-color: #fff;
  border: 1px #000;
  border-radius: 8px;
  width: 290px;
  height: 40px;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  box-shadow: 0 1px 2px #00000040;
}

.submit-button-3 {
  color: var(--white);
  background-color: #055137;
  border-radius: 8px;
  width: 125px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.tag-container {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  display: flex;
}

.text-block-10 {
  color: var(--medium-grey);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 13px;
}

.text-block-11 {
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 13px;
}

.member-container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  margin-top: 46px;
  display: flex;
}

.member-wrapper {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  display: flex;
}

.author-name {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 13px;
}

.text-block-12 {
  color: var(--medium-grey);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 13px;
}

.related-article {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  margin: 75px 0;
  display: flex;
}

.div-block-3 {
  flex-flow: column;
  justify-content: center;
  margin-bottom: 22px;
  margin-left: 22px;
  margin-right: 22px;
  display: flex;
}

.related-down {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.collection-list-wrapper {
  flex-flow: row;
  justify-content: center;
  display: flex;
}

.collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  display: flex;
}

.back-article {
  color: var(--text-green);
  text-align: left;
  white-space: nowrap;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.collection-list-2 {
  display: flex;
}

.blog-list {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-flow: column;
  display: flex;
}

.blog-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #0000;
  border: .5px #d9d9d9;
  border-radius: 0;
  display: flex;
}

.item-image {
  width: 320px;
  height: auto;
}

.item-content {
  width: auto;
  padding-top: 12px;
  padding-bottom: 0;
  padding-right: 0;
}

.image-7 {
  box-sizing: border-box;
  object-fit: fill;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  background-attachment: scroll;
  border-radius: 12px;
  width: 100%;
  min-width: 0;
  max-width: 272%;
  height: 100%;
  min-height: 0;
  position: static;
}

.blog-wrapper {
  width: auto;
  padding-bottom: 0;
}

.blog-link {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #f6fdfb;
  border: .5px solid #d9d9d9;
  border-radius: 12px;
  width: 100%;
  height: 272px;
  min-height: auto;
  max-height: none;
  display: flex;
}

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

.tag-card {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.card-time {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  align-items: center;
  display: flex;
}

.post-category {
  color: var(--text-green);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 13px;
}

.card-tag {
  color: var(--medium-grey);
  background-color: #7a7a7a;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  display: flex;
}

.card-tag.blog-card-tag {
  background-color: #111;
  align-items: center;
}

.text-block-14 {
  color: var(--medium-grey);
  white-space: nowrap;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 13px;
}

.text-block-15 {
  color: var(--text-color);
  white-space: nowrap;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 13px;
}

.card-title {
  color: var(--light-dark);
  width: 394px;
  font-family: Teg, sans-serif;
  font-size: 26px;
  font-weight: 600;
}

.card-summary {
  box-sizing: border-box;
  aspect-ratio: auto;
  outline-offset: 0px;
  pointer-events: auto;
  color: var(--dark-text);
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-clip: border-box;
  outline: 3px #1c1c1c;
  max-width: 350px;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 18px;
}

.bottom-card {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
  display: flex;
}

.author-card {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.card-left {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 12px;
  display: flex;
}

.author-image {
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

.image-8 {
  border-radius: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
}

.card-name {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  color: var(--dark-text);
  flex-flow: column;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  display: flex;
}

.team-role {
  color: var(--medium-grey);
  margin-top: 5px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 13px;
}

.blog-main-container {
  grid-column-gap: 37px;
  grid-row-gap: 37px;
  justify-content: space-between;
  margin-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.sidebar-blog {
  background-color: #0000;
  border: .3px #d9d9d9;
  border-radius: 12px;
  width: 30%;
  padding: 0;
}

.pagination {
  height: 100px;
}

.previous {
  background-color: #00f;
}

.pagination-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: flex-start;
  margin-top: 20px;
}

.pagination-number {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 24px;
  height: 28px;
  padding: 2px 8px;
  transition: color .3s, background-color .3s, all .4s;
  display: flex;
}

.pagination-number.w--current {
  color: var(--white);
  background-color: #14ae7a;
}

.previous-2 {
  background-color: #fff;
  border-color: #e8e8e8;
  border-radius: 8px;
  width: 34px;
  height: 28px;
  margin-left: 0;
  margin-right: 0;
  padding: 4px 7px 7px;
  display: flex;
}

.next {
  background-color: #fff;
  border-color: #e8e8e8;
  border-radius: 8px;
  width: 34px;
  height: 28px;
  margin-left: 0;
  margin-right: 0;
  padding: 4px 7px;
  display: block;
}

.text-block-16 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-17 {
  justify-content: flex-start;
  align-items: flex-start;
  width: 21px;
  height: 28px;
  padding: 8px 4px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
}

.icon-2 {
  color: #045137;
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-3 {
  color: #045137;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  display: flex;
}

.page-count {
  display: none;
}

.link-2 {
  color: var(--light-grey);
  text-decoration: none;
}

.subscribe-block {
  background-color: #33d7a6;
  height: 559px;
  display: flex;
}

.subscribe-left {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  margin-left: 100px;
  padding-right: 100px;
  display: flex;
}

.anchor-blog-heading {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Teg, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 34px;
}

.subscribe-right {
  width: 50%;
  height: 559px;
}

.image-9 {
  width: 100%;
  height: 100%;
}

.text-block-18 {
  color: var(--dark);
}

.subscribe-paragraph {
  color: var(--dark);
  width: 409px;
  font-family: Inter, sans-serif;
  line-height: 21px;
}

.form-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  width: auto;
  height: 40px;
  display: flex;
}

.form-4 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  height: 40px;
  display: flex;
}

.subscribe-field {
  border-radius: 8px;
  width: 234px;
  margin-left: 11px;
}

.form-block-2 {
  width: 434px;
}

.bold-text, .bold-text-2, .bold-text-3 {
  font-weight: 400;
}

.tag-block {
  grid-column-gap: 7.5px;
  grid-row-gap: 7.5px;
  display: flex;
}

.blog-bottom {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.author-down {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.read-card {
  background-color: #caede2;
}

.text-block-19 {
  color: var(--dark);
  background-color: #caede2;
  border: .44px solid #b6cab6;
  border-radius: 17.65px;
  justify-content: center;
  align-items: center;
  padding: 3.53px 7.06px;
  font-family: Inter, sans-serif;
  font-size: 10.57px;
  font-weight: 600;
  line-height: 11.47px;
  display: flex;
}

.author-align {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  display: flex;
}

.text-block-20 {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 13px;
}

.link-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--text-green);
  align-items: center;
  margin-top: 10px;
}

.form-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  height: 40px;
  display: flex;
}

.text-sub {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: block;
}

.form-block-3 {
  width: auto;
  display: flex;
}

.submit-button-4 {
  background-color: #055137;
  border-radius: 8px;
  height: 40px;
  padding: 8px 12px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.text-field-4 {
  border-radius: 8px;
  width: 248px;
  height: 40px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tag-content {
  border-top: .2px solid #7a7a7a;
  border-bottom: .2px solid #7a7a7a;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.open-modal {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  display: flex;
}

.open-modal.mobile-sub {
  display: none;
}

.image-10 {
  width: 20px;
  max-width: none;
  height: 24px;
}

.text-block-21 {
  color: var(--text-color);
  font-family: Inter, sans-serif;
  font-size: 15px;
}

.modal {
  z-index: 999;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.modal-bg {
  background-color: #0000004d;
  width: 100%;
  height: 100%;
}

.modal-container {
  background-color: #33d7a6;
  width: 100%;
  max-width: 600px;
  height: auto;
  position: absolute;
  inset: 0%;
}

.modal-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  background-color: #33d7a6;
  flex-flow: column;
  width: 100%;
  max-width: 600px;
  padding: 86px 107px 97px 102px;
  display: flex;
  position: absolute;
}

.modal-wrap {
  z-index: 10;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-background {
  opacity: .3;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
}

.modal-title {
  color: var(--dark);
  font-family: Teg, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}

.paragraph-3 {
  font-family: Inter, sans-serif;
  line-height: 21px;
}

.submit-button-5 {
  color: var(--white);
  background-color: #055137;
  border-radius: 8px;
  width: 100%;
  padding: 8px 12px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.form-6 {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-flow: column;
  display: flex;
}

.text-field-5 {
  border-radius: 8px;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.close-modal {
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 24px;
  line-height: 24px;
}

.modal-close {
  width: 24px;
  height: 24px;
  font-size: 16px;
  position: absolute;
  inset: 20px 24px auto auto;
}

.no-scroll {
  display: block;
  overflow: visible;
}

.tag-category {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  align-items: center;
  display: flex;
}

.collection-list-3 {
  align-items: center;
  display: flex;
}

.radio-container {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 10px;
}

.radio-button {
  margin-top: 0;
  margin-left: 0;
  display: none;
}

.radio-button-label {
  margin-bottom: 0;
}

.wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  width: 70%;
  display: flex;
}

.pagination-btn {
  background-color: green;
  border-radius: 4px;
}

.page-count {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-link {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  box-shadow: 0 1px 1px #0000000f;
}

.page-link.current-page {
  color: var(--white);
  background-color: #14ae7a;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  box-shadow: 0 2px 1px #0000000f;
}

.pagination-3 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: flex-start;
  margin-top: 59px;
  display: flex;
}

.custom-pagination-numbers {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.previous-pag {
  border-color: #e8e8e8;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 4px 7px;
  display: flex;
}

.sidebar-blog-wrapper {
  background-color: #fcfdfd;
  border: .3px solid #d9d9d9;
  border-radius: 12px;
  padding: 12px;
}

.collection-list-4 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  align-items: center;
  display: flex;
}

.radio-button-2 {
  display: none;
}

.radio-button-field {
  margin-bottom: 0;
  padding-left: 0;
}

.radio-button-label-2 {
  margin-bottom: 0;
}

.side-heading {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Teg, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
}

.blog-search {
  background-color: #f8fffd;
  border: .5px solid #000;
  border-radius: 4px;
  width: 100%;
}

.year-button {
  color: var(--text-color);
  background-color: #f5f9f8;
  border-radius: 8px;
  padding: 1px 12px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

.year-button.active {
  color: var(--text-green);
  border: .3px solid #88a79d;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: 500;
  box-shadow: 0 1px 2px #0000001a;
}

.year-filter-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: none;
}

.tabs-menu-4 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.tabs-3 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.tab-link-tab-4 {
  width: 100px;
}

.year-tab-button {
  color: var(--text-color);
  background-color: #f5f9f8;
  border-radius: 8px;
  align-items: center;
  padding: 1px 12px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 24px;
  display: flex;
}

.year-tab-button.w--current {
  color: var(--text-green);
  background-color: #fff;
  border: .3px solid #88a79d;
  border-radius: 8px;
  align-items: center;
  padding: 2px 12px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  display: flex;
  box-shadow: 0 1px 2px #0000001a;
}

.text-block-22 {
  color: var(--text-green);
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.month-accordion-wrapper {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.month-item {
  cursor: pointer;
  flex-flow: column;
  display: flex;
}

.dropdown-toggle {
  border-bottom: .3px solid #969696;
  padding: 8px 0;
  display: flex;
}

.dropdown {
  width: 100%;
}

.text-block-23 {
  color: var(--text-color);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 27.47px;
}

.blog-month-list {
  background-color: #000;
  flex-flow: column;
  display: flex;
}

.blog-card {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.blog-card-title {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.dropdown-list-2 {
  display: flex;
}

.dropdown-list-2.w--open {
  background-color: #000;
}

.blog-card-summary {
  color: var(--medium-grey);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  overflow: hidden;
}

.tabs-content-3 {
  height: auto;
}

.dropdown-toggle-2 {
  padding: 8px 0;
  display: block;
}

.dropdown-toggle-2.w--open {
  border: 1px #000;
  padding: 8px 0;
}

.dropdown-2 {
  border-bottom: .3px solid #969696;
  flex-flow: column;
  width: 100%;
  display: block;
}

.dropdown-list-3 {
  background-color: #ddd;
}

.dropdown-list-3.w--open {
  background-color: #0000;
}

.month-dropdown {
  width: 100%;
}

.drop-down-month {
  border-bottom: .3px solid #969696;
  padding: 8px 0;
  display: block;
}

.drop-down-month.w--open {
  border-bottom-style: none;
}

.icon-4 {
  margin-right: 0;
  display: flex;
}

.drop-down-text {
  color: var(--text-color);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 27.47px;
}

.drop-down-list.w--open {
  background-color: #0000;
  position: static;
}

.drop-list-wrapper {
  border-bottom: 0 #000;
}

.dropdown-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border-bottom: .3px solid #969696;
  flex-flow: column;
  padding-bottom: 16px;
  padding-right: 10px;
  display: flex;
}

.collection-list-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  padding-bottom: 16px;
  display: flex;
}

.blog-card-date {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--dark-secondary);
  align-items: center;
  padding-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  display: flex;
}

.div-block-4 {
  flex-flow: row;
  align-items: center;
  width: 5px;
  height: 5px;
  display: flex;
}

.collection-list-6, .collection-list-7, .collection-list-8, .collection-list-9 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.collection-list-10 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.collection-list-11, .collection-list-12, .collection-list-13 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.collection-list-14 {
  display: flex;
}

.collection-list-15 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.list-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.filter-btn {
  color: var(--dark-text);
  font-family: Inter, sans-serif;
}

.filter-btn.is-active {
  color: var(--white);
  background-color: #085a08;
  border: 1px #000;
  border-radius: 16px;
  padding: 2px 10px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  display: flex;
}

.filter-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.year-filter {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.month-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.blog-collection {
  flex-flow: column;
  display: none;
}

.post-card {
  border-bottom: .3px solid #969696;
}

.heading {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 16px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.year-btn {
  color: var(--text-color);
  background-color: #f5f9f8;
  border-radius: 8px;
  padding: 1px 12px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 20px;
}

.year-btn.active {
  color: var(--text-green);
  border: .3px solid #88a79d;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: 500;
  box-shadow: 0 1px 2px #0000001a;
}

.pagination-controls {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.nav-btn {
  color: var(--primary-green);
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 4px 7px;
}

.page-num {
  border-radius: 8px;
  padding: 2px 8px;
  display: flex;
}

.page-num.is-active {
  color: var(--white);
  background-color: #14ae7a;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  box-shadow: 0 1px 1px #00000014;
}

.empty-state {
  background-color: #fcfdfd;
  border: .3px solid #d9d9d9;
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  margin-left: auto;
  margin-right: 0;
  display: flex;
}

.page-num-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.pag-btn {
  color: var(--primary-green);
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.pag-btn.pag-active {
  color: var(--white);
  background-color: #14ae7a;
  box-shadow: 0 2px 1px #0000000f;
}

.paragraph-4 {
  color: var(--medium-grey);
  margin-bottom: 0;
}

.read {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  padding-right: 10px;
  display: flex;
}

.text-block-24 {
  color: var(--deep-green);
  white-space: nowrap;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 13px;
}

.image-11 {
  width: 10px;
  height: 9.72px;
}

.month-header {
  color: var(--text-color);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 27.47px;
}

.page-max {
  max-width: 1600px;
}

.text-block-25 {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.text-block-26 {
  color: var(--dark-grey);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.tag-content-mobile {
  display: none;
}

.success-message {
  background-color: #0000;
}

.paragraph-5 {
  width: 416px;
  max-width: 416px;
  margin-bottom: 0;
}

.casestudy-list-img {
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

.img-author {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.highlights-list {
  padding-left: 0;
}

.dropdown-toggle-3 {
  aspect-ratio: auto;
  object-fit: fill;
  background-color: #fff;
  border-radius: 8px;
  flex-flow: row;
  width: auto;
  display: flex;
  overflow: visible;
}

.select-field {
  background-color: #fff;
  border-radius: 8px;
}

.developer-block-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.developer-hook-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.hook-card {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: #fffdfa;
  border: .3px solid #c7b1a1;
  border-radius: 8px;
  flex-flow: column;
  align-items: flex-start;
  width: 50%;
  padding: 24px;
  display: flex;
}

.casestudy-author_block-copy {
  background-color: var(--dark-green);
  color: var(--white);
  border-radius: 16px;
  margin-bottom: 40px;
  padding: 60px;
  font-size: 24px;
  line-height: 1.375;
}

@media screen and (min-width: 1920px) {
  .page-wrapper {
    background-color: #f4f8f6;
  }

  .casestudy-text--list {
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
  }

  .navbar {
    max-width: 1690px;
  }

  .hero-empty_block.cc-two {
    flex: none;
    width: 8vw;
  }

  .hero-empty_block.cc-three {
    flex: none;
  }

  .hero-empty_block.cc-five {
    width: 31%;
  }

  .compliance-header_container {
    max-width: 700px;
  }

  .footer-inner {
    max-width: 100%;
  }

  .developer-block_inner {
    max-width: 1440px;
    padding-bottom: 50px;
  }

  .developer-empty_block.cc-blk-two {
    max-width: 30%;
  }

  .developer-empty_block.cc-blk-three {
    max-width: 15%;
  }

  .developer-empty_block.cc-blk-five, .developer-empty_block.cc-blk_eight {
    max-width: 25%;
  }

  .developer-tool.cc-credit {
    max-width: 450px;
  }

  .developer-tool.cc-savings {
    max-width: 470px;
  }

  .developer-tool.cc-accounts {
    max-width: 500px;
    margin-bottom: 25px;
    transform: translate(0, -45px)rotate(-11.45deg);
  }

  .developer-tool.cc-exports {
    transform: translate(0, -5px)rotate(3.77deg);
  }

  .developer-block_section {
    width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-member_image {
    height: 22vw;
    max-height: 450px;
  }

  .products-hero_cta {
    max-width: 92%;
  }

  .platform-header_text {
    max-width: 85%;
  }

  .platform-header_text.cc-small {
    max-width: 60%;
  }

  .usecase-wrapper {
    max-width: 1500px;
  }

  .blog-open-content {
    font-family: Helveticaneue, Times New Roman, sans-serif;
    font-size: 16px;
    line-height: 24px;
  }

  .guide-container {
    width: 90.2%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }

  .guide-title_block {
    background-color: #0000;
    max-width: 470px;
  }

  .guide-block_grid {
    max-width: 573px;
  }

  .download-guide-left {
    background-color: #045137;
    max-width: 470px;
  }

  .download-guide-right {
    width: 100%;
    max-width: 430px;
    font-family: Teg, sans-serif;
  }

  .developer-hero-wrap {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    justify-content: center;
    align-items: center;
  }

  .developer-hero-content {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
  }

  .developer-hero-image {
    width: 700px;
  }

  .developer-build-anchor {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    padding-left: 120px;
    padding-right: 120px;
    display: flex;
  }

  .developer-build-card {
    justify-content: flex-start;
    align-items: center;
  }

  .build-card {
    background-color: #0000;
    border: .5px solid #9b9b9b;
    border-radius: 8px;
    flex-flow: column;
    width: 375px;
    height: auto;
    display: flex;
  }

  .build-card.card-one, .build-card.card-two, .build-card.card-three {
    width: 375px;
    max-width: none;
    height: 285px;
  }

  .icon-card {
    background-color: #fff9f1;
  }

  .developer-test-sandbox {
    justify-content: center;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    padding-left: 220px;
    padding-right: 220px;
  }

  .developer-section-header {
    align-items: flex-start;
  }

  .test-sandbox-content {
    width: auto;
  }

  .test-sandbox-image {
    width: 588px;
  }

  .anchor-connect-sectiom {
    justify-content: center;
    display: flex;
  }

  .anchor-connect-container {
    flex-flow: row;
    justify-content: center;
    width: auto;
    margin-left: 100px;
    margin-right: 220px;
  }

  .image-2 {
    height: 100%;
  }

  .developer-test-button {
    flex-flow: column;
    align-items: flex-end;
  }

  .test-button {
    border-radius: 4px;
    justify-content: center;
    display: flex;
  }

  .developer-explore {
    flex-flow: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    padding-left: 120px;
    padding-right: 120px;
    display: flex;
  }

  .developer-explore-container {
    justify-content: center;
  }

  .explore-card {
    width: 281px;
    max-width: none;
  }

  .footer-container {
    grid-column-gap: 390px;
    grid-row-gap: 390px;
  }

  .footer-bottom {
    grid-column-gap: 380px;
    grid-row-gap: 380px;
    justify-content: flex-start;
  }

  .sidebar-item-tab, .sidebar-item-tab.w--current {
    width: auto;
  }

  .developer-dream-option {
    flex-flow: column;
    align-items: flex-start;
    width: 100%;
    margin-left: 0;
    padding-left: 220px;
    padding-right: 220px;
    display: flex;
  }

  .sidebar-tabs {
    justify-content: flex-start;
    width: auto;
  }

  .tabs-menu-2 {
    width: 400px;
  }

  .tabs-content {
    width: auto;
    position: static;
  }

  .content-tab-wrapper {
    width: 750px;
    position: static;
  }

  .navbar-2 {
    max-width: 1690px;
  }

  .hero-developer {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-max {
    flex-flow: column;
    align-items: center;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .tab-pane-tab-3, .tab-pane-tab-1-6, .tab-pane-tab-2-11, .tab-pane-tab-4, .tab-pane-tab-5 {
    position: static;
  }
}

@media screen and (max-width: 991px) {
  .uc-h1 {
    font-size: 54px;
  }

  .uc-h2 {
    font-size: 40px;
  }

  .uc-h4 {
    font-size: 20px;
  }

  .c-input.cc-trailing-pad {
    padding-right: 140px;
  }

  .c-button {
    border-radius: 14px;
    flex: none;
    padding: 14px 28px;
    font-size: 16px;
  }

  .c-img {
    max-width: none;
  }

  .c-hero.cc-platform {
    padding: 50px 40px;
  }

  .c-hero.cc-usecase {
    min-height: 350px;
    padding: 50px;
  }

  .c-hero.cc-faq {
    font-size: 42px;
  }

  .c-hero.cc-casestudies {
    margin-top: 50px;
    padding: 50px;
  }

  .c-hero.cc-casestudy_open {
    margin-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .c-hero.cc-blog {
    padding-left: 120px;
    padding-right: 120px;
  }

  .c-hero.cc-legal {
    margin-bottom: 50px;
    font-size: 40px;
  }

  .navbar {
    width: 95%;
    padding-top: 40px;
  }

  .c-logo {
    width: 85px;
  }

  .nav-btn_flex {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .nav-dropdown_flex {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    font-size: 14px;
  }

  .nav-dropdown_toggle {
    font-size: 14px;
  }

  .hero-cta {
    max-width: 600px;
  }

  .hero-block_section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-block_section.uc-overflow_hidden, .hero-block_section.cc-cards {
    width: 1280px;
  }

  .hero-empty_block {
    height: 78px;
  }

  .product-tool {
    min-height: 78px;
  }

  .product-tool.cc-credit.cc-active {
    width: 290px;
  }

  .product-tool.cc-savings.cc-active {
    width: 350px;
    right: 304px;
  }

  .product-tool.cc-cards.cc-active {
    width: 390px;
  }

  .product-tool.cc-accounts.cc-active {
    width: 320px;
    bottom: 208px;
    left: 305px;
  }

  .product-tool.cc-payments.cc-active {
    width: 340px;
    right: 295px;
  }

  .nav-dropdown_list.w--open {
    min-width: 260px;
  }

  .dropdown-link_arrow {
    width: 12px;
    height: 12px;
  }

  .dropdown-link_icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .product-tool_inner {
    padding-left: 28px;
    padding-right: 26px;
    font-size: 20px;
  }

  .partners {
    padding-top: 80px;
    padding-bottom: 150px;
  }

  .business-slide_wrapper {
    padding-bottom: 60px;
  }

  .business-slide_flex, .business-slide_container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .business-slide_content {
    margin-right: 30px;
  }

  .business-slide_img {
    width: 300px;
    height: 350px;
  }

  .business-slide_header {
    max-width: 550px;
    font-size: 64px;
  }

  .business-slide_header.cc-small {
    max-width: 450px;
  }

  .business-img_container {
    width: 100px;
    height: 75px;
  }

  .business-img {
    width: 40px;
  }

  .business-slide_arrow {
    width: 54px;
    height: 54px;
  }

  .business-arrow_icon {
    width: 8px;
    height: 16px;
  }

  .compliance-block {
    background-image: none;
  }

  .compliance-block_inner {
    flex-direction: column;
    padding-top: 40px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .compliance-header {
    max-width: 600px;
    margin-left: 0;
  }

  .compliance-list {
    width: auto;
    max-width: none;
    margin-bottom: 60px;
  }

  .compliance-header_container {
    max-width: none;
    padding-left: 0;
  }

  .footer-inner {
    width: 100%;
    padding-bottom: 80px;
  }

  .footer-head_top {
    margin-right: 60px;
    font-size: 25px;
  }

  .footer-header_bottom {
    background-size: 50%;
    width: 60px;
    height: 66px;
  }

  .footer-link {
    font-size: 16px;
  }

  .contact-links {
    max-width: none;
  }

  .footer-legal_links, .footer-social_links {
    font-size: 16px;
  }

  .social-links_flex, .social-link {
    color: var(--text-green);
  }

  .social-link.footer-social-link {
    color: var(--medium-grey);
  }

  .developer-block_inner {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .developer-block_cta {
    text-align: center;
    flex-direction: column;
    align-items: center;
    max-width: 650px;
    margin-bottom: 80px;
    display: flex;
  }

  .developer-cta_subtext {
    max-width: 500px;
  }

  .developer-code_container {
    width: 100%;
    max-width: 600px;
    height: 408px;
  }

  .developer-block_flex {
    justify-content: center;
  }

  .developer-empty_block {
    height: 70px;
  }

  .developer-empty_block.cc-blk-four {
    margin-left: 9px;
  }

  .developer-tool {
    width: 350px;
    min-height: 70px;
    padding: 0 28px;
    font-size: 20px;
    display: flex;
  }

  .developer-tool.cc-payments {
    transform: translate(-10px, 10px)rotate(7.13deg);
  }

  .developer-tool.cc-credit-js {
    margin-left: 25px;
    margin-right: 20px;
  }

  .developer-tool.cc-exports {
    margin-left: 55px;
    margin-right: 55px;
  }

  .hero-text {
    max-width: 640px;
    margin-top: 0;
    padding-right: 0;
    top: 0;
  }

  .about-hero_subtext.cc-right-align {
    top: 0;
  }

  .about-hero_subtext.cc-left-align {
    top: -30px;
  }

  .tag-circle {
    width: 12px;
    height: 12px;
  }

  .mission-top_block {
    padding-top: 0;
  }

  .mission-left_block {
    align-self: stretch;
    height: auto;
  }

  .mission-block_tag {
    height: 78px;
    font-size: 28px;
  }

  .mission-top_left {
    height: 78px;
  }

  .mission-top_left.cc-wide {
    max-width: 300px;
  }

  .mission-top_right {
    height: 78px;
  }

  .mission-top_right.cc-wide {
    max-width: 300px;
  }

  .mission-right_inner {
    height: 78px;
  }

  .mission-right_block {
    align-self: stretch;
    height: auto;
  }

  .mission-text_container {
    padding: 50px;
    font-size: 18px;
  }

  .why-text_container {
    padding-right: 50px;
    font-size: 18px;
  }

  .c-team {
    padding-top: 60px;
  }

  .team-top_block {
    padding-left: 0;
  }

  .team-flex_text {
    max-width: 220px;
    font-size: 20px;
  }

  .team-block {
    grid-column-gap: 25px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .team-member_image {
    height: 45vw;
  }

  .join-team_cta {
    max-width: 550px;
  }

  .press-wrapper.swiper-wrapper {
    grid-column-gap: 2%;
    grid-row-gap: 2%;
  }

  .press-block {
    width: 50%;
    min-width: auto;
  }

  .press-block.swiper-slide {
    width: 47.5%;
  }

  .compliance-container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .compliance-image {
    width: 32vw;
  }

  .compliance-inner {
    max-width: 350px;
  }

  .compliance-tag {
    font-size: 18px;
  }

  .compliance-inner_header {
    max-width: 400px;
    margin-bottom: 40px;
    font-size: 40px;
  }

  .compliance-subtext {
    font-size: 18px;
  }

  .compliance-company {
    max-width: 100px;
  }

  .products-hero {
    padding-top: 90px;
  }

  .product-links {
    margin-bottom: -350px;
  }

  .products-hero_cta {
    background-image: none;
    max-width: 82%;
    margin-bottom: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 70px;
  }

  .products-cta_inner {
    min-height: auto;
    font-size: 34px;
  }

  .products-cta_inner.cc-payments {
    width: 80%;
  }

  .products-cta_inner.cc-cards {
    width: 70%;
  }

  .products-cta_inner.cc-savings {
    width: 80%;
  }

  .products-cta_inner.cc-credit {
    width: 80%;
    max-width: 450px;
  }

  .products-cta_subtext {
    max-width: 350px;
  }

  .product-link {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 30px;
  }

  .product-link.w--current {
    width: 180px;
    height: 62px;
    max-height: 62px;
    padding-left: 20px;
    font-size: 18px;
  }

  .product-link.cc-active {
    width: 170px;
    height: 64px;
    padding-left: 15px;
    font-size: 16px;
  }

  .products-flex {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .products-flex_header {
    font-size: 42px;
  }

  .products-flex_subtext {
    max-width: 400px;
  }

  .product-list_item {
    background-position: 100% 100%;
    background-size: 20%;
    padding-left: 30px;
  }

  .product-list_item.cc-consumer {
    background-size: 20%;
  }

  .product-list_item.cc-virtual-account {
    background-size: 30%;
  }

  .product-list_item.cc-multi-currency {
    background-size: 20%;
  }

  .product-list_index {
    font-size: 26px;
  }

  .product-list_details {
    max-width: 520px;
    padding-left: 40px;
  }

  .product-list_inner {
    padding-top: 30px;
  }

  .product-list_img {
    max-width: 200px;
  }

  .product-list_img.cc-wide.cc-right-align {
    right: -40px;
  }

  .product-list_img.cc-wide.cc-checkout {
    transform: translate(0, 20px);
  }

  .product-list_img.cc-left-inner {
    left: 0;
  }

  .product-list_img.cc-right-inner {
    right: 0;
  }

  .product-list_img.cc-xwide {
    max-width: 300px;
    height: 300px;
  }

  .product-list_img.cc-xwide.cc-right-align, .product-list_img.cc-xwide.cc-left-align {
    top: -10px;
  }

  .product-description_illustration {
    height: auto;
    max-height: none;
  }

  .product-description_text {
    margin-right: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .product-description_header {
    max-width: 300px;
    font-size: 36px;
  }

  .product-description_subtext {
    max-width: 300px;
    margin-left: 0;
    font-size: 16px;
  }

  .product-features {
    padding-left: 6%;
    padding-right: 6%;
  }

  .product-feature {
    min-height: 220px;
  }

  .platform-hero_inner {
    width: 55%;
    max-width: 450px;
    font-size: 32px;
  }

  .platform-hero_inner.cc-small {
    width: 50%;
    max-width: 320px;
  }

  .platform-service_type {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-left: 20px;
    font-size: 32px;
  }

  .platform-image_container {
    padding-left: 50px;
  }

  .platform-image {
    width: 320px;
    max-width: none;
    height: 220px;
    max-height: none;
  }

  .platform-service_header {
    margin-bottom: 30px;
  }

  .platform-subtext_wrapper {
    padding-top: 35px;
    padding-bottom: 50px;
  }

  .platform-subtext {
    font-size: 14px;
  }

  .product-features_wrapper {
    margin-bottom: 60px;
  }

  .usecase-list_container {
    padding-top: 50px;
  }

  .usecase-list_header {
    font-size: 30px;
  }

  .usecase-list_item {
    padding: 45px 40px 100px;
  }

  .usecase-list_text {
    font-size: 20px;
  }

  .customer-stories_header {
    font-size: 32px;
  }

  .customer-stories_grid {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
  }

  .customer-story {
    border-radius: 20px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .customer-story_logo {
    max-width: 100px;
  }

  .customer-stories_arrows {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    top: -95px;
  }

  .customer-stories_arrow {
    width: 28px;
    height: 28px;
    overflow: hidden;
  }

  .faq-section {
    padding-bottom: 80px;
  }

  .faq-inner {
    font-size: 20px;
  }

  .faq-answer {
    font-size: 16px;
  }

  .faq-cta {
    padding-top: 80px;
  }

  .casestudy-hero_cta {
    width: 80%;
    max-width: 350px;
    font-size: 36px;
  }

  .casestudy-category_list {
    width: 90%;
  }

  .casestudy-category_item {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .casestudy-category_header {
    margin-bottom: 30px;
    font-size: 36px;
  }

  .casestudy-category_subtext {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .casestudy-item_details {
    width: 50%;
  }

  .casestudy-list {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .casestudy {
    font-size: 30px;
  }

  .casestudy-logo {
    width: 30px;
    height: 31px;
    margin-left: -54px;
    display: none;
  }

  .casestudy-item_image {
    border-radius: 11px;
    justify-content: center;
    max-width: 350px;
  }

  .casestudy-item_image.cc-yellow_bg {
    background-color: var(--light-orange);
  }

  .casestudy-item_image.cc-purple_bg {
    background-color: var(--purple);
  }

  .casestudy-item_image.cc-green-bg {
    background-color: var(--daf1ea);
  }

  .casestudy-image_details {
    height: 100%;
    display: none;
  }

  .casestudy-image_details.cc-active {
    top: 0%;
  }

  .casestudy-image_inner {
    margin-bottom: 0;
  }

  .casestudy-image_inner.cc-active {
    height: 100%;
  }

  .casestudy-image_inner.cc-small {
    width: 40%;
  }

  .csimage-text_wrapper {
    display: none;
  }

  .casestudy-hero_inner {
    font-size: 40px;
  }

  .casestudy-hero_logo {
    max-width: 100px;
    height: 50px;
    margin-right: 15px;
  }

  .casestudy-back_btn {
    margin-bottom: 40px;
  }

  .casestudy-content {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    width: 90%;
    max-width: none;
  }

  .casestudy-stcky_container {
    max-width: 280px;
    padding: 80px 20px;
    top: -180px;
  }

  .casestudy-content_details {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
  }

  .casestudy-content_header {
    margin-bottom: 10px;
  }

  .casestudy-content_stat {
    font-size: 30px;
  }

  .casestudy-details_inner {
    font-size: 18px;
  }

  .casestudy-details_icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .casestudy-author_block {
    padding: 40px;
    font-size: 20px;
  }

  .blog-hero {
    margin-top: 50px;
  }

  .blog {
    padding-bottom: 0;
  }

  .blog-menu_container {
    margin-bottom: 50px;
  }

  .featured-blog_container {
    padding-top: 40px;
    top: 90px;
  }

  .featured-blog_header {
    font-size: 20px;
  }

  .featured-blog {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    align-items: flex-start;
    width: 100%;
    min-height: 450px;
    padding: 50px;
  }

  .featured-blog_date {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    font-size: 18px;
  }

  .featured-blog_details {
    width: 100%;
    max-width: none;
  }

  .featured-blog_text {
    font-size: 32px;
  }

  .featured-blog_image {
    height: 356px;
  }

  .featured-blog_summary {
    max-width: 270px;
  }

  .blog-grid {
    grid-column-gap: 40px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 80px;
  }

  .c-blog {
    padding-top: 25px;
  }

  .c-blog.cc-inner {
    width: 100%;
    height: 600px;
  }

  .blog-image {
    width: 100%;
    height: auto;
  }

  .blog-inner_title {
    font-size: 35px;
  }

  .blog-open-content {
    width: 100%;
  }

  .blog-open-content img {
    border-radius: 15px;
  }

  .blog-back_btn {
    width: 100%;
  }

  .blog-bottom_block {
    align-items: flex-start;
  }

  .legal-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .legal-sticky_container {
    padding-left: 0;
    top: 20px;
  }

  .nav-link {
    font-size: 16px;
  }

  .c-cookie_cta {
    padding-left: 25px;
    padding-right: 25px;
  }

  .cookie-cta_flex {
    font-size: 16px;
  }

  .cookie-cta_circle {
    width: 12px;
    height: 12px;
    margin-right: 10px;
  }

  .cookie-btn_flex {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .about-slide_details {
    transform: translate(0, 150%);
  }

  .product-menu_container {
    margin-bottom: 25px;
    padding-left: 6%;
    padding-right: 6%;
  }

  .product-tab_menu {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }

  .faq-hero_text {
    max-width: 500px;
  }

  .press-slide_arrows {
    margin-bottom: 70px;
  }

  .product-link_text {
    max-width: 100px;
  }

  .blog-social_links {
    font-size: 16px;
    display: none;
  }

  .blog-social_links.social-links {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-top: 48px;
    display: flex;
  }

  .casestudy-content_cta {
    font-size: 28px;
  }

  .casetsudy-cta_inner {
    max-width: 230px;
  }

  .products-hero_image {
    max-width: 400px;
    max-height: 350px;
    transform: translate(90px, 40px);
  }

  .products-hero_image.cc-cards {
    width: 550px;
    height: 350px;
    transform: translate(280px, 120px);
  }

  .products-hero_image.cc-credit {
    max-width: 400px;
    max-height: 600px;
    transform: translate(100px, 120px);
  }

  .products-hero_image.cc-savings {
    width: 500px;
    height: 400px;
    transform: translate(130px, 140px);
  }

  .products-hero_image.cc-payment {
    max-width: 450px;
  }

  .hero-cards_section {
    padding-top: 50px;
  }

  .check-link {
    left: 40px;
    right: auto;
  }

  .guide-container {
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .guides-h1 {
    font-size: 54px;
  }

  .guide-title_block {
    width: 35%;
    position: sticky;
    top: 40px;
  }

  .guide-block_grid {
    grid-template-rows: auto auto;
    width: 55%;
  }

  .download-guide-left {
    width: 60%;
  }

  .developer-hero-wrap {
    padding-left: 65px;
    padding-right: 36px;
  }

  .developer-hero-content {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    width: 50%;
  }

  .developer-hero-title {
    font-size: 36px;
    line-height: 39px;
  }

  .paragraph-2 {
    font-size: 14px;
    line-height: 24px;
  }

  .developer-hero-image {
    width: 50%;
  }

  .developer-build-card {
    flex-flow: column;
    align-items: center;
    width: auto;
  }

  .build-card {
    max-width: none;
  }

  .test-sandbox-container {
    flex-flow: column;
  }

  .test-sandbox-content, .test-sandbox-image {
    width: 100%;
  }

  .anchor-connect-container {
    flex-flow: column;
    height: auto;
  }

  .anchor-connect-left {
    width: 100%;
    padding-bottom: 48px;
  }

  .anchor-connect-right {
    width: 100%;
  }

  .developer-explore-container {
    flex-flow: column;
    align-items: center;
  }

  .explore-card {
    width: 100%;
    max-width: none;
  }

  .footer-container {
    padding-left: 47px;
    padding-right: 41px;
  }

  .footer-wrapper-links {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-bottom {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .sidebar-tabs {
    display: none;
  }

  .content-tab-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }

  .additional-details-text {
    display: none;
  }

  .tab-pane-tab-1 {
    color: var(--white);
  }

  .mobile-tabs {
    display: block;
  }

  .tabs-menu-3 {
    flex-flow: column;
    display: none;
  }

  .dropdown-menu {
    color: var(--white);
    background-color: #033d29;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    display: flex;
  }

  .icon {
    margin: 0;
    position: static;
  }

  .tabs-content-2 {
    padding-top: 24px;
  }

  .tab-pane-tab-2 {
    color: var(--white);
  }

  .nav-dropdown_toggle-2 {
    font-size: 14px;
  }

  .nav-dropdown_flex-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    font-size: 14px;
  }

  .navbar-2 {
    width: 95%;
    padding-top: 40px;
  }

  .c-button-2 {
    border-radius: 14px;
    flex: none;
    padding: 14px 28px;
    font-size: 16px;
  }

  .nav-link-2 {
    font-size: 16px;
  }

  .tab-pane-tab-2-3, .tab-pane-tab-2-4, .tab-pane-tab-2-5, .tab-pane-tab-2-6, .tab-pane-tab-2-7, .tab-pane-tab-1-3, .tab-pane-tab-1-4, .tab-pane-tab-2-8, .tab-pane-tab-1-5, .tab-pane-tab-2-9 {
    color: var(--white);
  }

  .highlight-block {
    display: none;
  }

  .blog-header {
    flex-flow: column;
  }

  .blog-heading, .blog-news-sub {
    width: 100%;
  }

  .newletter-block {
    margin-top: 0;
    margin-left: 0;
    padding: 20px;
  }

  .form-2 {
    flex-flow: column;
    width: 100%;
    height: auto;
  }

  .text-field-3, .submit-button-3 {
    width: 100%;
  }

  .related-article {
    align-items: flex-start;
    padding-left: 104px;
    padding-right: 147px;
  }

  .collection-list {
    flex-flow: column;
  }

  .blog-list {
    align-items: center;
  }

  .blog-item {
    background-color: #0000;
    border-style: none;
  }

  .item-image {
    width: 100%;
    height: 193px;
  }

  .item-content {
    padding-left: 12px;
  }

  .blog-link {
    border-radius: 4px;
    flex-flow: column;
    height: auto;
  }

  .bottom-card {
    padding-left: 12px;
    padding-right: 12px;
  }

  .card-left {
    width: auto;
  }

  .sidebar-blog {
    display: none;
  }

  .blog-bottom {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    width: 100%;
  }

  .open-modal {
    display: none;
  }

  .share-article {
    color: var(--text-green);
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 13px;
  }

  .wrapper {
    width: 100%;
  }

  .sidebar-blog-wrapper {
    display: none;
  }

  .casestudy-author_block-copy {
    padding: 40px;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .uc-h1 {
    font-size: 35px;
    display: block;
  }

  .uc-h2 {
    font-size: 24px;
  }

  .sm-paragraph, .uc-h4 {
    font-size: 14px;
  }

  .c-input {
    min-height: 51px;
    padding-left: 10px;
    font-size: 14px;
  }

  .c-input.cc-trailing-pad {
    padding-right: 120px;
  }

  .c-button {
    border-radius: 16px;
    padding: 16px 40px;
    font-size: 16px;
  }

  .c-button.cc-trailing {
    letter-spacing: 0;
    border-radius: 10px;
    max-height: 100%;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
    line-height: .6;
    top: 5px;
    bottom: 5px;
    right: 5px;
  }

  .c-button.cc-stretch {
    flex: 1;
  }

  .c-img {
    max-width: none;
  }

  .paragraph {
    font-size: 16px;
  }

  .c-hero.cc-about {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: visible;
  }

  .c-hero.cc-platform {
    text-align: center;
    background-image: url('../svg/platform-mobile_illustration.svg');
    background-position: 50% 100%;
    border-radius: 15px;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin-top: 24px;
    padding-top: 40px;
    padding-bottom: 58vw;
  }

  .c-hero.cc-usecase {
    text-align: center;
    background-image: url('../svg/usecase-illustration-mobile.svg');
    background-position: 50% 100%;
    border-radius: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px 70vw;
    display: flex;
  }

  .c-hero.cc-faq {
    background-position: 0%, 100%;
    background-size: contain, contain;
    border-radius: 10px;
    margin-bottom: 25px;
    margin-left: 18px;
    margin-right: 18px;
    padding-top: 48px;
    padding-bottom: 48px;
    font-size: 30px;
  }

  .c-hero.cc-casestudies {
    background-image: url('../svg/casestudy-hero-mobile.svg');
    background-position: 50% 100%;
    background-repeat: no-repeat;
    border-radius: 15px;
    width: auto;
    max-width: none;
    margin: 25px 30px 50px;
    padding-top: 57px;
    padding-bottom: 75vw;
  }

  .c-hero.cc-casestudy_open {
    background-image: url('../svg/casestudies-mobile.svg');
    background-position: 100% 100%;
    border-radius: 10px;
    width: auto;
    max-width: none;
    margin: 25px 30px 70px;
    padding: 56px 10px 65vw 18px;
  }

  .c-hero.cc-blog {
    background-color: var(--opaque-dark-green);
    background-image: none;
    border-radius: 10px;
    margin-top: 25px;
    padding: 30px 30px 60px;
  }

  .c-hero.cc-legal {
    background-image: url('../svg/legal-mobile-illustration.svg'), url('../svg/legal-mobile-illustration.svg');
    background-position: 3%, 97%;
    background-size: contain, contain;
    border-radius: 10px;
    width: 100%;
    max-width: none;
    margin-top: 24px;
    margin-bottom: 40px;
    padding: 40px 50px;
    font-size: 30px;
  }

  .navbar {
    z-index: 20;
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    min-height: 80px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: relative;
  }

  .navbar.cc-active {
    position: fixed;
  }

  .c-logo {
    width: 94px;
    height: 16px;
  }

  .c-logo.cc-hide-desktop {
    display: block;
  }

  .c-logo.cc-hide-mobile {
    display: none;
  }

  .nav-btn_flex {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
  }

  .nav-dropdown_flex {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    font-size: 16px;
  }

  .nav-dropdown_toggle {
    padding-right: 20px;
    font-size: 16px;
  }

  .nav-dropdown_icon {
    margin-top: 2px;
  }

  .hero-cta {
    max-width: 300px;
    margin-bottom: 80px;
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .hero-cta_subtext {
    margin-top: 16px;
    margin-bottom: 40px;
  }

  .hero-block_section {
    min-height: 129px;
  }

  .hero-block_section.uc-overflow_hidden, .hero-block_section.cc-cards {
    width: 900px;
    min-height: 170px;
  }

  .hero-empty_block {
    border-radius: 5.56px;
    height: 40px;
  }

  .hero-empty_block.cc-two {
    width: 0;
  }

  .hero-empty_block.cc-three {
    width: 18%;
    max-width: 110px;
  }

  .hero-empty_block.cc-four, .hero-empty_block.cc-five {
    bottom: 44px;
  }

  .hero-empty_block.cc-six {
    width: 18%;
  }

  .hero-empty_block.cc-seven {
    width: 5%;
  }

  .product-tool {
    width: 235px;
    min-height: 40px;
  }

  .product-tool.cc-credit.cc-active {
    width: 200px;
    left: 240px;
  }

  .product-tool.cc-credit.cc-falling {
    right: 77%;
  }

  .product-tool.cc-savings.cc-active {
    width: 207px;
    right: 250px;
  }

  .product-tool.cc-savings.cc-falling {
    width: 35%;
    right: 77%;
  }

  .product-tool.cc-cards.cc-active {
    width: 265px;
    bottom: 53px;
    right: 331px;
  }

  .product-tool.cc-cards.cc-falling {
    transform: translate(0, -48.4px)rotate(3deg);
  }

  .product-tool.cc-accounts.cc-active {
    width: 195px;
    bottom: 107px;
    left: 250px;
  }

  .product-tool.cc-accounts.cc-falling {
    transform: rotate(-6.8deg)translate(0, -100px);
  }

  .product-tool.cc-payments.cc-active {
    width: 190px;
    bottom: 95px;
    right: 259px;
  }

  .product-tool.cc-payments.cc-falling {
    transform: translate(0, -95px)rotate(3.3deg);
  }

  .product-tool_icon {
    width: 14px;
    height: 14px;
  }

  .nav-dropdown_list {
    position: relative;
  }

  .nav-dropdown_list.w--open {
    min-width: 265px;
    margin-top: 15px;
  }

  .nav-dropdown_link:hover {
    background-color: var(--white);
  }

  .dropdown-link_arrow {
    width: 16px;
    height: 16px;
  }

  .dropdown-link_icon {
    width: 26px;
    height: 25px;
    margin-right: 17px;
  }

  .product-tool_inner {
    letter-spacing: 0;
    border-radius: 5.56px;
    flex: 1;
    height: 40px;
    min-height: 40px;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 14px;
  }

  .product-tool_inner.cc-active {
    padding-bottom: 15px;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 400;
  }

  .product-tool_image {
    height: 214px;
  }

  .product-tool_text {
    padding-top: 32px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
    line-height: 1.5;
  }

  .partners {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .partners-inner {
    grid-column-gap: 40px;
    grid-row-gap: 18px;
    padding-right: 40px;
  }

  .partner-img {
    max-width: 75px;
    height: 56px;
  }

  .business-slide_wrapper {
    padding-top: 0;
  }

  .business-slide_flex {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .slide-flex_text {
    width: auto;
    max-width: none;
    margin-bottom: 30px;
  }

  .business-slide_container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .business-slide {
    border-radius: 12.3px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-width: auto;
    padding-top: 35px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .business-slide_content {
    max-width: none;
    margin-right: 0;
    padding-bottom: 0;
  }

  .business-slide_img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    max-width: 275px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .business-slide_header {
    max-width: 280px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 40px;
  }

  .business-slide_header.cc-small {
    max-width: 280px;
  }

  .business-slide_tag {
    font-size: 14px;
  }

  .business-slide_list {
    grid-column-gap: 20px;
    max-width: 220px;
    padding-left: 20px;
  }

  .business-list_item {
    font-size: 12px;
  }

  .business-img_flex {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .business-img_container {
    border-radius: 7.7px;
    width: 58px;
    height: 42px;
  }

  .business-img {
    width: 30px;
  }

  .business-slide_arrows {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .business-slide_arrow {
    border-radius: 10px;
    width: 50px;
    height: 50px;
  }

  .business-arrow_icon {
    width: 10px;
    height: 20px;
  }

  .compliance-block {
    background-image: url('../svg/homepage-mobile.svg');
    background-position: 100% 0;
    background-size: auto;
  }

  .compliance-block_inner {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding: 38px 30px 50px;
  }

  .compliance-header {
    max-width: 180px;
    padding-left: 5px;
  }

  .compliance-list {
    max-width: none;
    margin-bottom: 0;
  }

  .compliance-list_item {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .compliance-list_icon {
    width: 24px;
    height: 24px;
  }

  .compliance-list_header {
    max-width: 180px;
    font-size: 22px;
  }

  .compliance-list_inner {
    font-size: 14px;
  }

  .footer-inner {
    width: 100%;
    max-width: none;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-header {
    margin-bottom: 40px;
  }

  .footer-head_top {
    border-bottom-left-radius: 8px;
    margin-right: 30px;
    padding: 22px 24px;
    font-size: 16px;
  }

  .footer-header_bottom {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    width: 31px;
    height: 32px;
  }

  .footer-flex {
    grid-row-gap: 30px;
  }

  .footer-links_wrapper {
    grid-column-gap: 0%;
    grid-row-gap: 36px;
    flex-wrap: wrap;
    flex: 1;
  }

  .footer-links {
    width: 50%;
    padding-right: 50px;
  }

  .footer-link {
    font-size: 14px;
  }

  .newsletter-form {
    margin-top: 16px;
  }

  .footer-flex_inner {
    max-width: 100%;
  }

  .contact-link, .contact-link_header {
    font-size: 14px;
  }

  .footer-inner_bottom {
    flex-direction: column;
    margin-top: 40px;
    padding-top: 10px;
    padding-bottom: 18px;
  }

  .footer-legal_links {
    font-size: 14px;
  }

  .footer-social_links {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    margin-bottom: 24px;
    font-size: 14px;
  }

  .developer-block_wrapper {
    overflow: hidden;
  }

  .developer-block_inner {
    align-items: flex-start;
    margin-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .developer-block_cta {
    text-align: left;
    align-items: flex-start;
    max-width: none;
    margin-bottom: 40px;
    padding-top: 0;
  }

  .developer-cta_subtext {
    margin-top: 16px;
    margin-bottom: 32px;
  }

  .developer-code_container {
    border-bottom-width: 2px;
    border-radius: 10px;
    height: 350px;
    min-height: 230px;
  }

  .developer-block_flex {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 5px;
  }

  .developer-empty_block {
    border-radius: 6px;
    flex: none;
    width: 122px;
    height: 40px;
  }

  .developer-empty_block.cc-blk-two {
    margin-right: 0;
  }

  .developer-empty_block.cc-blk-three {
    width: 320px;
  }

  .developer-empty_block.cc-blk-four {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 185px;
  }

  .developer-empty_block.cc-blk_six {
    width: 34px;
    max-width: none;
    margin-right: 20px;
  }

  .developer-empty_block.cc-blk-five {
    flex: none;
    width: 360px;
  }

  .developer-empty_block.cc-blk-seven {
    flex: none;
    width: 150px;
  }

  .developer-tool {
    letter-spacing: 0;
    border-radius: 5.6px;
    width: 185px;
    min-height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    font-size: 12px;
    display: flex;
  }

  .developer-tool.cc-accounts {
    width: 250px;
    margin-left: 10px;
    transform: rotate(-10deg);
  }

  .developer-tool.cc-payments {
    transform: translate(-10px)rotate(7.13deg);
  }

  .developer-tool.cc-credit-js {
    width: 195px;
    margin-left: 20px;
    margin-right: 0;
  }

  .developer-tool.cc-exports {
    flex: none;
    width: 250px;
    margin-left: 0;
    margin-right: 88px;
  }

  .developer-block_section {
    width: 900px;
  }

  .hero-text {
    max-width: 95%;
    margin-right: 50px;
    top: -50px;
  }

  .developer-code_top {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    font-size: 16px;
  }

  .developer-code_controls {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    padding: 12px 10px 10px 20px;
  }

  .developer-code_control {
    width: 12px;
    height: 12px;
  }

  .developer-code_right {
    border-bottom-width: 2px;
    border-left-width: 2px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .developer-code_header {
    font-size: 13px;
  }

  .code-text_inner {
    padding-top: 14px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 10px;
    line-height: 2.2;
  }

  .code-text_list {
    max-width: 40px;
    padding-top: 16px;
    padding-left: 20px;
  }

  .code-list_item {
    font-size: 12px;
    line-height: 1.8;
  }

  .about-hero_header {
    max-width: 60%;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero_flex {
    flex-direction: column;
    align-items: center;
  }

  .about-hero_img {
    border-radius: 11px;
    width: 85px;
    height: 85px;
    position: absolute;
  }

  .about-hero_img.cc-left {
    left: 0;
  }

  .about-hero_img.cc-center {
    left: 50%;
    transform: translate(-50%);
  }

  .about-hero_img.cc-center.swiper-2 {
    align-items: flex-end;
  }

  .about-hero_img.cc-right {
    right: 0;
  }

  .about-hero_subtext.cc-right-align {
    width: auto;
    margin-right: auto;
    top: auto;
    bottom: -200px;
  }

  .about-hero_subtext.cc-left-align {
    width: auto;
    margin-right: auto;
    top: -200px;
  }

  .tag-flex {
    margin-bottom: 10px;
  }

  .tag-circle {
    width: 10px;
    height: 10px;
  }

  .tag-circle.cc-orange.cc-mt {
    margin-top: 5px;
  }

  .mission-bottom_block {
    display: none;
  }

  .mission-block {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .mission-left_block {
    border-top-right-radius: 5.4px;
    border-bottom-right-radius: 5.4px;
    max-width: 70px;
  }

  .mission-left_block.cc-vertical {
    min-height: 45px;
  }

  .mission-left_block.cc-vertical.cc-hide-desktop {
    display: block;
  }

  .mission-left_block.cc-heading {
    display: none;
  }

  .mission-block_tag {
    border-radius: 0 5.4px 5.4px 0;
    max-width: 170px;
    height: 45px;
    font-size: 16px;
  }

  .margin-right_block {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .mission-top_left {
    border-top-right-radius: 5.4px;
    border-bottom-right-radius: 5.4px;
    height: 45px;
    display: none;
  }

  .mission-top_right {
    border-top-left-radius: 5.4px;
    border-bottom-left-radius: 5.4px;
    height: 45px;
    display: none;
  }

  .mission-right_inner {
    border-radius: 5.4px;
    height: 45px;
  }

  .mission-right_inner.cc-hide-mobile {
    display: none;
  }

  .mission-inner_block {
    grid-column-gap: 5px;
  }

  .mission-right_block, .mission-right_block.cc-vertical {
    border-top-left-radius: 5.4px;
    border-bottom-left-radius: 5.4px;
  }

  .mission-right_block.cc-vertical.cc-hide-desktop {
    display: block;
  }

  .mission-left_container {
    grid-row-gap: 4px;
    max-width: 30px;
  }

  .mission-text_container {
    background-position: 98% 105%;
    background-size: 38px;
    border-radius: 4.5px;
    align-items: center;
    padding: 20px 18px 35px;
    font-size: 14px;
    display: flex;
  }

  .why-text_container {
    background-position: 98% 105%;
    background-size: 28px 35px;
    border-radius: 4.5px;
    padding: 16px 50px 16px 18px;
    font-size: 14px;
  }

  .c-team {
    width: 100%;
    max-width: none;
    padding-top: 50px;
  }

  .team-top_block {
    margin-bottom: 32px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .team-block_flex {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .team-flex_text {
    max-width: 140px;
    font-size: 12px;
  }

  .team-block {
    grid-column-gap: 18px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 88px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .team-member_image {
    border-radius: 7.5px;
    margin-bottom: 10px;
  }

  .team-member_position {
    margin-top: 0;
    font-size: 12px;
  }

  .team-position_circle {
    width: 4.5px;
    height: 4.5px;
    margin-right: 4px;
  }

  .section-divider {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .join-team_cta {
    max-width: 250px;
  }

  .team-cta_subtext {
    margin-top: 20px;
    margin-bottom: 25px;
  }

  .backed-companies {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 20px;
    padding-right: 30px;
  }

  .backed-company_image {
    max-width: 100px;
  }

  .press-wrapper {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .press-block {
    width: 90%;
    max-width: none;
  }

  .press-block.swiper-slide {
    width: 90%;
    max-width: 450px;
  }

  .press-block_inner {
    padding: 25px 25px 90px;
  }

  .press-logo {
    height: 44px;
    margin-bottom: 26px;
  }

  .press-details_flex {
    flex-wrap: wrap;
    font-size: 14px;
  }

  .press-block_button {
    border-radius: 13px;
    font-size: 16px;
    bottom: 30px;
  }

  .press-button_arrow {
    width: 20px;
    height: 20px;
  }

  .c-compliance {
    width: 100%;
    max-width: none;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .compliance-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .compliance-image {
    border-radius: 10.5px;
    width: 100%;
    max-width: none;
    height: 450px;
    max-height: none;
  }

  .compliance-inner {
    max-width: 380px;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .compliance-tag {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 14px;
  }

  .compliance-inner_header {
    max-width: 320px;
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 30px;
  }

  .compliance-subtext {
    font-size: 14px;
  }

  .compliance-company {
    max-width: 90px;
    max-height: 50px;
  }

  .products-hero {
    flex-direction: column;
    padding-top: 0;
  }

  .product-links {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    opacity: 0;
    background-color: #f1f1f1;
    border-radius: 7.5px;
    align-items: stretch;
    width: auto;
    max-width: none;
    max-height: 0;
    margin-bottom: 0;
    margin-left: 30px;
    margin-right: 30px;
    padding-top: 0;
    transition: opacity .6s, max-height .6s;
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
  }

  .product-links.cc-active {
    opacity: 1;
    height: 324px;
    max-height: 500px;
  }

  .products-hero_cta {
    border-radius: 15px;
    flex-direction: column;
    align-self: stretch;
    align-items: center;
    max-width: none;
    margin-left: 30px;
    margin-right: 30px;
    padding: 50px 30px 50vw;
    display: flex;
  }

  .products-hero_cta.cc-purple-bg {
    background-size: 80%;
    padding-bottom: 54vw;
  }

  .products-hero_cta.cc-darkgreen-bg {
    background-size: 60%;
  }

  .products-hero_cta.cc-blue-bg {
    background-size: 65%;
  }

  .products-cta_inner {
    text-align: center;
    flex-direction: column;
    align-items: center;
    max-width: none;
    font-size: 30px;
    display: flex;
  }

  .products-cta_inner.cc-payments {
    max-width: 340px;
  }

  .products-cta_inner.cc-cards {
    max-width: 260px;
  }

  .products-cta_inner.cc-savings {
    max-width: 350px;
  }

  .products-cta_inner.cc-credit {
    max-width: 380px;
  }

  .products-cta_subtext {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 32px;
    font-size: 14px;
  }

  .product-link {
    white-space: nowrap;
    border-bottom: 1px solid #e4e4e4;
    padding: 24px 12px;
    font-size: 12px;
  }

  .product-link.w--current {
    border-radius: 0;
    width: auto;
    max-width: none;
    height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 12px;
    font-size: 12px;
  }

  .product-link.cc-active {
    white-space: nowrap;
    border-radius: 7.5px;
    width: auto;
    height: 42px;
    padding-right: 14px;
    font-size: 14px;
  }

  .product-link_icon {
    width: 12px;
    height: 14px;
    margin-right: 10px;
  }

  .c-products {
    width: 100%;
  }

  .products-flex {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 30px 40px;
  }

  .products-flex_header {
    max-width: 450px;
    font-size: 30px;
  }

  .products-flex_subtext {
    max-width: 380px;
    font-size: 14px;
  }

  .product-list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .product-list_item {
    background-size: 30%;
    border-radius: 10px;
    padding-left: 24px;
    padding-right: 25px;
  }

  .product-list_item.cc-consumer, .product-list_item.cc-virtual-account {
    background-size: 40%;
  }

  .product-list_item.cc-multi-currency, .product-list_item.cc-interbank, .product-list_item.cc-checkouts, .product-list_item.cc-bulk-transfers, .product-list_item.cc-virtual-cards, .product-list_item.cc-prepaid-cards, .product-list_item.cc-cash-advance {
    background-size: 30%;
  }

  .product-list_index {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .product-list_header {
    margin-bottom: 16px;
  }

  .product-list_details {
    padding-left: 0;
  }

  .product-list_subtext {
    font-size: 14px;
  }

  .product-list_inner {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 30vw;
  }

  .product-list_inner.cc-empty {
    padding-bottom: 52px;
  }

  .product-list_img {
    max-width: 150px;
    max-height: 150px;
    top: auto;
    bottom: 0;
  }

  .product-list_img.cc-right-align, .product-list_img.cc-left-align {
    transform: translate(0);
  }

  .product-list_img.cc-wide.cc-right-align {
    transform: translate(0);
  }

  .product-list_img.cc-left-inner, .product-list_img.cc-right-inner {
    transform: translate(0);
  }

  .product-list_img.cc-xwide {
    max-width: 150px;
  }

  .product-list_img.cc-xwide.cc-right-align {
    top: auto;
    right: 0;
  }

  .product-list_img.cc-xwide.cc-left-align {
    top: auto;
    left: 0;
  }

  .product-list_img.cc-small {
    max-width: 150px;
  }

  .product-description_flex {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

  .product-description_illustration {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    min-height: auto;
    overflow: hidden;
  }

  .product-description_bg {
    width: 100%;
  }

  .product-description_img {
    height: 80%;
    top: 50%;
    transform: translate(0, -50%);
  }

  .product-description_img.cc-center {
    top: 50%;
  }

  .product-description_text {
    margin-right: 0;
    padding-top: 80px;
    padding-bottom: 32px;
  }

  .product-description_text.cc-tabs {
    padding-bottom: 93px;
  }

  .product-description_header {
    max-width: 320px;
    margin-bottom: 16px;
    font-size: 30px;
  }

  .product-description_subtext {
    max-width: 450px;
    font-size: 14px;
  }

  .product-features {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-bottom: 35px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-feature {
    min-width: 300px;
    min-height: 190px;
    padding: 24px 26px 24px 24px;
  }

  .product-feature_name {
    max-width: 240px;
    font-size: 24px;
  }

  .product-feature_name.cc-small {
    max-width: 200px;
  }

  .product-feature_name.cc-xsm {
    max-width: 120px;
  }

  .product-feature_icon {
    margin-top: -2px;
    transform: scale(.6);
  }

  .product-feature_summary {
    max-width: 180px;
    font-size: 12px;
  }

  .product-feature_summary.cc-small {
    max-width: 150px;
  }

  .arrow-link {
    margin-left: 46px;
    margin-right: 46px;
    font-size: 14px;
  }

  .arrow-link_icon {
    width: 18px;
    height: 18px;
  }

  .platform-hero_inner {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    align-items: center;
    width: auto;
    font-size: 30px;
  }

  .platform-hero_inner.cc-xsm {
    max-width: 272px;
  }

  .platform-hero_subtext {
    max-width: none;
  }

  .platform-service_list {
    width: 100%;
    max-width: none;
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .platform-service_type {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    margin-bottom: 24px;
    padding-left: 0;
    font-size: 25px;
  }

  .platform-image_container {
    padding-left: 0;
  }

  .platform-image {
    width: 100%;
    height: auto;
  }

  .platform-service_text {
    align-items: flex-start;
  }

  .platform-service_header {
    width: auto;
    max-width: 450px;
    margin-bottom: 32px;
  }

  .platform-subtext_wrapper {
    border-radius: 25px;
    justify-content: flex-start;
    padding: 30px 40px 28px 30px;
  }

  .platform-subtext_inner {
    width: auto;
    max-width: none;
  }

  .platform-subtext {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .platform-list_item {
    margin-bottom: 60px;
  }

  .platform-header_text {
    max-width: none;
  }

  .usecase-wrapper {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-top: 22px;
  }

  .usecase-tab_menu {
    z-index: 2;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    opacity: 0;
    background-color: #f1f1f1;
    border-radius: 7.5px;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    max-width: none;
    max-height: 0;
    margin-left: 30px;
    margin-right: 30px;
    padding: 0;
    transition: opacity .4s, max-height .4s;
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    overflow: hidden;
  }

  .usecase-tab_menu.cc-active {
    opacity: 1;
    max-height: 500px;
  }

  .usecase-tab_link {
    color: var(--black);
    border-bottom: 1px solid #e4e4e4;
    border-radius: 0;
    align-self: stretch;
    align-items: center;
    padding: 24px 12px;
    font-size: 14px;
    display: flex;
  }

  .usecase-tab_link.w--current {
    background-color: var(--transparent);
    border-radius: 0;
    padding: 24px 12px;
    font-weight: 400;
  }

  .usecase-list_container {
    padding: 40px 30px 80px;
  }

  .usecase-list_header {
    max-width: 300px;
    font-size: 20px;
  }

  .usecase-list_item {
    border-radius: 10px;
    min-height: 162px;
    padding: 24px 28px 140px;
  }

  .usecase-list_text {
    font-size: 16px;
  }

  .customer-stories_header {
    font-size: 30px;
  }

  .customer-stories_grid {
    grid-template-columns: 1fr;
    padding-bottom: 96px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .customer-story {
    padding: 24px 50px 24px 38px;
  }

  .tag {
    padding: 8px 18px;
    font-size: 12px;
  }

  .customer-story_text {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .customer-story_inner {
    max-width: none;
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 14px;
  }

  .customer-stories_flex {
    margin-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .customer-stories_arrows {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    inset: auto auto 32px 50%;
    transform: translate(-50%);
  }

  .customer-stories_arrow {
    width: 24px;
    height: 24px;
  }

  .faq-section {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 50px;
  }

  .faq-list {
    width: auto;
    max-width: none;
    margin-left: 30px;
    margin-right: 30px;
  }

  .faq-container {
    padding: 20px 15px;
  }

  .faq-inner {
    align-items: center;
    font-size: 16px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-answer {
    font-size: 14px;
    transition: padding-bottom .8s, padding-top .8s, max-height .5s;
  }

  .faq-answer.cc-show {
    padding-bottom: 8px;
  }

  .faq-cta {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    padding-top: 40px;
  }

  .casestudy-hero_cta {
    width: 74%;
    font-size: 30px;
  }

  .casestudy-hero_subtext {
    margin-top: 12px;
    margin-bottom: 32px;
    font-size: 14px;
  }

  .casestudy-category_list {
    width: auto;
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
  }

  .casestudy-category_item {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .casestudy-category {
    font-size: 12px;
  }

  .casestudy-category_header {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .casestudy-category_subtext, .explore-casestudy_flex {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .casestudy-item_details {
    width: 100%;
    max-width: none;
    margin-bottom: 40px;
  }

  .casestudy {
    opacity: .5;
    color: var(--black);
    justify-content: space-between;
    font-size: 20px;
  }

  .casestudy-item_image {
    border-radius: 12px;
    flex: none;
    width: 100%;
    max-width: none;
    height: 60vw;
    min-height: auto;
    margin-top: 0;
  }

  .casestudy-item_image.cc-green-bg {
    background-color: var(--daf1ea);
  }

  .casestudy-image_details {
    height: 100%;
  }

  .casestudy-image_inner {
    max-width: 40%;
    height: 80%;
  }

  .casestudy-image_inner.cc-small {
    max-width: 25%;
  }

  .csimage-text_wrapper {
    display: none;
  }

  .casestudy-hero_inner {
    width: auto;
  }

  .casestudy-back_btn {
    display: none;
  }

  .casestudy-content {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    width: 100%;
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .casestudy-stcky_container {
    align-self: stretch;
    max-width: none;
    margin-bottom: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    top: 0;
  }

  .casestudy-content_details {
    flex: none;
    margin-bottom: 0;
    font-size: 14px;
  }

  .casestudy-content_header {
    margin-bottom: 10px;
  }

  .casestudy-content_stat {
    margin-bottom: 0;
  }

  .casestudy-details_inner {
    font-size: 16px;
  }

  .casestudy-details_icon {
    width: 20px;
    height: 20px;
  }

  .casestudy-author_block {
    border-radius: 10px;
    padding: 27px 38px 70px;
  }

  .blog-hero {
    justify-content: center;
    align-items: center;
    max-width: none;
    margin-top: 78px;
    display: none;
  }

  .blog {
    flex-flow: column;
    width: auto;
    margin-left: 25px;
    margin-right: 25px;
    display: flex;
  }

  .blog-menu_container {
    justify-content: flex-start;
    margin-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
    overflow: auto;
  }

  .blog-tab_container {
    border-top-style: none;
  }

  .featured-blog_container {
    border-top-style: none;
    margin-bottom: 50px;
    padding-top: 0;
    top: 40px;
  }

  .featured-blog_header {
    clear: none;
    text-align: left;
    order: 0;
    align-self: auto;
    margin-bottom: 0;
    padding-left: 30px;
    padding-right: 30px;
    position: static;
  }

  .featured-blog {
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    min-height: auto;
    margin-right: 0;
    padding: 24px 28px 22px;
  }

  .featured-blog_date {
    display: none;
  }

  .featured-blog_details {
    max-width: none;
  }

  .featured-blog_text {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 30px;
  }

  .featured-blog_image {
    border-radius: 8px;
    flex: none;
    width: 100%;
    max-width: none;
    height: 60vw;
    max-height: none;
  }

  .featured-blog_summary {
    max-width: none;
    font-size: 14px;
  }

  .blog-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .c-blog {
    border-top-color: var(--grey);
    padding-top: 50px;
  }

  .c-blog.cc-inner {
    border-radius: 3.53px;
    width: 100%;
    height: auto;
  }

  .blog-image {
    border-radius: 3.53px;
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  .blog-flex {
    margin-bottom: 16px;
  }

  .blog-duration {
    font-size: 12px;
  }

  .blog-summary {
    max-width: 90%;
  }

  .blog-open {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 22px;
    padding-right: 22px;
  }

  .blog-inner_title {
    width: auto;
    max-width: none;
    margin-top: 10px;
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 42px;
  }

  .blog-open_flex {
    font-size: 12px;
  }

  .blog-open-content {
    width: 100%;
    margin-top: 0;
  }

  .blog-open-content p {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .blog-open-content img {
    border-radius: 8px;
    max-height: 500px;
    margin-bottom: 30px;
  }

  .articles-flex {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 44px;
    padding: 0;
  }

  .blog-back_btn {
    width: 100%;
    margin-bottom: 40px;
  }

  .blog-bottom_block {
    align-items: flex-start;
    width: 100%;
    max-width: none;
  }

  .legal-content {
    width: 100%;
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
  }

  .legal-sticky_container {
    display: none;
  }

  .legal-content_text {
    max-width: none;
    font-size: 14px;
  }

  .nav-link {
    font-size: 18px;
  }

  .c-cookie_cta {
    flex-direction: column;
    align-items: flex-start;
    width: 88%;
    max-width: none;
    padding: 24px 34px 20px 15px;
    bottom: 24px;
  }

  .cookie-btn_flex {
    grid-column-gap: 14px;
    align-self: stretch;
  }

  .slide-text_container {
    align-self: flex-end;
    min-height: 36px;
  }

  .product-menu_container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    overflow: auto;
  }

  .product-menu_container.cc-tab {
    margin-bottom: 330px;
  }

  .product-tab {
    margin-top: -375px;
  }

  .footer-top_text {
    max-width: 110px;
  }

  .foot-note {
    text-align: center;
    width: 70%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-img_flex {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: space-between;
    width: 275px;
    min-height: 85px;
  }

  .faq-hero_text {
    max-width: 300px;
  }

  .product-link_text {
    max-width: none;
  }

  .content-details_container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    padding-top: 5px;
    display: flex;
  }

  .blog-social_links {
    height: auto;
    display: none;
  }

  .navbar-inner {
    z-index: 20;
    background-color: var(--daf1ea);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    flex-direction: column;
    align-items: flex-start;
    height: 100vh;
    padding: 120px 20px 40px 30px;
    transition: transform .6s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: auto;
    transform: translate(0, -100%);
  }

  .navbar-inner.cc-show {
    background-color: var(--daf1ea);
    transform: translate(0);
  }

  .nav-menu_btn {
    display: block;
  }

  .nav-dropdown {
    margin-left: 0;
  }

  .nav-menu_mobile {
    z-index: 100;
    background-color: var(--white);
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 30px 24px;
    display: flex;
    position: absolute;
  }

  .casetsudy-cta_inner {
    max-width: 280px;
  }

  .form-success {
    font-size: 14px;
  }

  .products-hero_image {
    max-height: 300px;
  }

  .products-hero_image.cc-credit {
    max-width: 300px;
    max-height: 400px;
    transform: translate(80px, 120px);
  }

  .products-hero_image.cc-savings {
    width: 400px;
  }

  .compliance-image_inner {
    max-width: 50%;
  }

  .compliance-image_inner.cc-full-width {
    max-width: 70%;
  }

  .product-menu {
    background-color: var(--dark-green);
    color: var(--ocean-blue);
    border-radius: 7.5px;
    justify-content: space-between;
    margin-bottom: 8px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 16px 12px;
    transition: color .4s, background-color .4s;
    display: flex;
  }

  .product-menu.cc-accounts {
    background-color: var(--dark-green);
    color: var(--ocean-blue);
  }

  .uc-hide_desktop {
    display: flex;
  }

  .product-menu_current {
    align-items: center;
    font-size: 14px;
    display: flex;
  }

  .tab-menu_arrow {
    flex: none;
    margin-right: 10px;
    transition: transform .4s;
    overflow: hidden;
  }

  .tab-menu_arrow.cc-active {
    transform: rotate(90deg);
  }

  .tab-menu_paginations {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    align-items: center;
    display: flex;
  }

  .product-menu_pagination {
    transition: all .4s;
  }

  .product-menu_pagination.cc-active {
    width: 10px;
    height: 10px;
  }

  .usecase-menu {
    background-color: var(--color-4);
    color: var(--white);
    border-radius: 7.5px;
    justify-content: space-between;
    margin-bottom: 22px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 16px 12px;
    transition: color .4s, background-color .4s;
    display: flex;
  }

  .usecase-menu.cc-accounts {
    background-color: var(--dark-green);
    color: var(--ocean-blue);
  }

  .usecase-menu_current {
    align-items: center;
    font-size: 14px;
    display: flex;
  }

  .usecase-menu_pagination {
    transition: all .4s;
  }

  .usecase-menu_pagination.cc-active {
    background-color: var(--primary-green);
    width: 10px;
    height: 10px;
  }

  .hero-tag_container {
    margin-bottom: 30px;
  }

  .check-link {
    left: 50%;
    transform: translate(-50%);
  }

  .guide-container {
    padding-top: 60px;
    display: block;
  }

  .guide-container.cc-download {
    flex-flow: column-reverse;
    padding-bottom: 60px;
    display: flex;
  }

  .guides-h1 {
    font-size: 35px;
  }

  .guide-title_block {
    width: auto;
    margin-bottom: 40px;
    position: static;
  }

  .guide-block_grid {
    width: 100%;
    max-width: none;
  }

  .download-guide-left {
    width: 100%;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
  }

  .download-guide-right {
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .body.developer-body {
    max-width: none;
  }

  .developer-hero {
    width: auto;
    max-width: 100%;
  }

  .developer-hero-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    padding: 40px 0;
  }

  .developer-hero-content {
    grid-column-gap: 26px;
    grid-row-gap: 26px;
    align-items: flex-start;
    width: 100%;
    height: auto;
  }

  .developer-hero-title {
    font-size: 36px;
    line-height: 39.6px;
  }

  .developer-hero-image {
    width: 92%;
    padding: 0;
  }

  .developer-build-anchor {
    margin-top: 44px;
    padding: 0 23px;
  }

  .developer-build-header {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .developer-build-title {
    margin-top: 0;
    margin-bottom: 0;
  }

  .developer-build-card {
    flex-flow: column;
    align-items: center;
  }

  .build-card.card-one {
    width: auto;
  }

  .build-card.card-two {
    width: auto;
    max-width: none;
  }

  .developer-test-sandbox {
    margin-top: 44px;
    padding-top: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .developer-section-header {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: center;
    align-items: flex-start;
  }

  .developer-section-title {
    line-height: 28.8px;
  }

  .test-sandbox-container {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .test-sandbox-content {
    align-items: flex-start;
    width: 100%;
    padding-left: 0;
  }

  .test-sandbox-image {
    width: 100%;
    display: block;
  }

  .test-content-item {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 100%;
    height: 100px;
    padding-left: 0;
    padding-right: 0;
  }

  .test-content-text {
    justify-content: center;
    width: 100%;
    font-size: 13px;
  }

  .content-text-description {
    font-size: 13px;
    line-height: 18.2px;
  }

  .anchor-connect-sectiom {
    background-color: #0000;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .anchor-connect-container {
    flex-flow: column;
    width: 100%;
    height: auto;
  }

  .anchor-connect-left {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    width: 100%;
    padding: 33.79px 49.29px;
  }

  .image-2 {
    height: 100%;
  }

  .anchor-connect-right {
    width: 100%;
  }

  .developer-explore {
    padding: 24px;
  }

  .developer-explore-container {
    flex-flow: column;
    align-items: center;
  }

  .explore-card {
    width: 100%;
    max-width: none;
  }

  .anchor-connect-button {
    margin-top: 33px;
  }

  .footer-container {
    border-style: none;
    border-width: 0;
    padding: 40px 20px 10px;
  }

  .footer-link-block {
    width: 100%;
    max-width: none;
  }

  .footer-wrapper-links {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: start;
    margin-left: 0;
    margin-right: 0;
    display: grid;
  }

  .footer-bottom {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
  }

  .image-6 {
    width: 100%;
    max-width: none;
  }

  .footer-newsletter-sub {
    margin-top: 10px;
  }

  .developer-dream-option {
    margin-bottom: 0;
    padding: 16px 24px;
  }

  .sidebar-tabs {
    display: none;
  }

  .tabs-menu-2 {
    display: flex;
  }

  .content-tab-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }

  .content-tab-wrapper.instant-payouts-wrapper {
    display: none;
  }

  .additional-details, .additional-details-text {
    color: var(--text-color);
  }

  .tab-pane-tab-1 {
    color: var(--white);
  }

  .mobile-tabs {
    display: block;
  }

  .mobile-dropdown {
    display: inline-block;
  }

  .select-api {
    display: flex;
  }

  .dropdown-list {
    display: inline-block;
  }

  .tabs-menu-3 {
    z-index: 10;
    flex-flow: column;
    display: none;
    position: absolute;
    inset: 0% 0% auto;
  }

  .dropdown-menu {
    color: var(--white);
    cursor: pointer;
    background-color: #033d29;
    justify-content: space-between;
    align-items: center;
    padding: 18px 18.34px;
    font-family: Inter, sans-serif;
    display: flex;
  }

  .mobile-dropdown-text {
    font-weight: 600;
    line-height: 14px;
  }

  .icon {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    position: static;
  }

  .tabs-content-2 {
    padding-top: 24px;
  }

  .tab-description {
    color: var(--text-color);
    font-size: 16px;
    line-height: 24px;
  }

  .code-embed {
    color: var(--daf1ea);
  }

  .nav-dropdown_toggle-2 {
    padding-right: 20px;
    font-size: 16px;
  }

  .nav-dropdown_flex-2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    font-size: 16px;
  }

  .navbar-2 {
    z-index: 20;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    min-height: 80px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: relative;
  }

  .navbar-inner-2 {
    z-index: 20;
    background-color: #f1f9f6;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    flex-direction: column;
    align-items: flex-start;
    height: 100vh;
    padding: 120px 20px 40px 30px;
    transition: transform .6s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: auto;
    transform: translate(0, -100%);
  }

  .nav-menu_mobile-2 {
    z-index: 100;
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 30px 24px;
    display: flex;
    position: absolute;
  }

  .nav-dropdown_link-2:hover {
    background-color: #fff;
  }

  .c-button-2 {
    border-radius: 16px;
    padding: 16px 40px;
    font-size: 16px;
  }

  .nav-link-2 {
    font-size: 18px;
  }

  .code-embed-3, .tab-pane-tab-2-3, .tab-pane-tab-2-4, .tab-pane-tab-2-5, .tab-pane-tab-2-6 {
    color: var(--white);
  }

  .developer-start {
    background-color: #1f1507;
  }

  .hero-developer {
    flex-flow: column;
    align-items: flex-start;
    padding: 40px 23px;
    display: flex;
  }

  .featured-container {
    margin-top: 40px;
    margin-left: 25px;
    margin-right: 25px;
  }

  .highlight-block {
    display: none;
  }

  .blog-header {
    flex-flow: column;
  }

  .blog-heading {
    flex-flow: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .blog-news-sub {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .newletter-block {
    margin-top: 0;
    margin-left: 0;
    padding: 20px;
  }

  .block-title {
    margin-bottom: 0;
  }

  .block-des {
    margin-bottom: 0;
    padding-bottom: 22px;
  }

  .form-2 {
    flex-flow: column;
    width: 100%;
    height: auto;
  }

  .text-field-3 {
    width: auto;
  }

  .submit-button-3 {
    width: auto;
    height: 40px;
  }

  .related-article {
    align-items: flex-start;
    padding-left: 51px;
    padding-right: 53px;
  }

  .collection-list-wrapper {
    flex-flow: column;
  }

  .collection-list {
    flex-flow: column;
    align-items: flex-start;
  }

  .collection-list-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .item-image {
    width: 100%;
  }

  .image-7 {
    border-radius: 4px;
    width: 100%;
  }

  .blog-wrapper {
    width: 100%;
  }

  .blog-link {
    border-radius: 4px;
    flex-flow: column;
    width: 100%;
    height: auto;
  }

  .card-title {
    width: auto;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
  }

  .card-summary {
    max-width: none;
    line-height: 14px;
  }

  .bottom-card {
    margin-top: 18px;
  }

  .card-left {
    width: 100%;
    padding-left: 12px;
  }

  .sidebar-blog {
    display: none;
  }

  .subscribe-block {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 400px;
  }

  .subscribe-left {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .anchor-blog-heading {
    text-align: center;
  }

  .subscribe-right {
    display: none;
  }

  .subscribe-paragraph {
    text-align: center;
    width: 100%;
  }

  .blog-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .form-5 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 400px;
  }

  .form-block-3 {
    justify-content: center;
    align-items: center;
  }

  .submit-button-4, .text-field-4 {
    width: 100%;
  }

  .tag-content {
    display: none;
    overflow: auto;
  }

  .open-modal {
    display: none;
  }

  .open-modal.mobile-sub {
    display: flex;
  }

  .modal-wrap {
    display: none;
  }

  .button-2 {
    white-space: nowrap;
    overflow: visible;
  }

  .mobile-featured {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    display: flex;
  }

  .tag-category {
    width: 100%;
    display: block;
    overflow: scroll;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .tag-content-mobile {
    grid-column-gap: 37px;
    grid-row-gap: 37px;
    flex-flow: column;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .form-7, .form-block-4 {
    width: 100%;
  }

  .paragraph-5 {
    width: 100%;
    max-width: 416px;
  }

  .developer-hook-card {
    flex-flow: column;
  }

  .hook-card {
    width: auto;
  }

  .casestudy-author_block-copy {
    border-radius: 10px;
    padding: 27px 38px 70px;
  }
}

@media screen and (max-width: 479px) {
  .component-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .component-block, .component-block_inner {
    padding: 20px;
  }

  .c-form_field {
    width: 100%;
  }

  .c-input {
    min-width: 0;
  }

  .c-input.cc-trailing-pad {
    padding-right: 115px;
  }

  .c-button.cc-trailing {
    font-size: 14px;
  }

  .c-select_field {
    width: 100%;
  }

  .c-hero {
    overflow: hidden;
  }

  .c-hero.cc-faq {
    background-position: -5%, 105%;
  }

  .c-hero.cc-casestudies {
    border-radius: 10px;
    margin-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .c-hero.cc-legal {
    background-position: 5%, 95%;
  }

  .nav-btn_flex {
    grid-column-gap: 40px;
    align-self: stretch;
  }

  .hero-cta {
    margin-bottom: 70px;
  }

  .hero-block_section {
    padding-left: 15px;
  }

  .hero-empty_block.cc-one {
    width: 10vw;
    bottom: 91px;
  }

  .hero-empty_block.cc-three {
    width: 15%;
  }

  .hero-empty_block.cc-five {
    width: 20%;
  }

  .hero-empty_block.cc-six {
    width: 10%;
  }

  .hero-empty_block.cc-seven {
    max-width: 50px;
  }

  .product-tool.cc-credit.cc-active {
    width: 150px;
    left: 290px;
  }

  .product-tool.cc-credit.cc-falling {
    width: 38%;
    right: 115%;
  }

  .product-tool.cc-savings.cc-active {
    width: 185px;
    right: 270px;
  }

  .product-tool.cc-savings.cc-falling {
    width: 45%;
    max-width: 195px;
    right: 115%;
  }

  .product-tool.cc-cards.cc-active {
    width: 185px;
    bottom: 51px;
    right: 370px;
  }

  .product-tool.cc-cards.cc-falling {
    width: 45%;
    left: -42%;
  }

  .product-tool.cc-accounts.cc-active {
    width: 160px;
    left: 290px;
  }

  .product-tool.cc-accounts.cc-falling {
    width: 36%;
    left: 11%;
  }

  .product-tool.cc-payments.cc-active {
    width: 160px;
    right: 280px;
  }

  .product-tool.cc-payments.cc-falling {
    width: 35%;
    right: -10%;
  }

  .nav-dropdown_list {
    max-width: 100%;
  }

  .product-tool_inner {
    flex: none;
  }

  .partner-img {
    max-width: 75px;
    height: 51px;
  }

  .business-slide_img {
    height: 72vw;
    margin-left: auto;
    margin-right: auto;
  }

  .compliance-list_item {
    display: block;
  }

  .compliance-list_header {
    max-width: none;
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 18px;
  }

  .compliance-list_inner {
    margin-bottom: 40px;
    font-size: 13px;
  }

  .footer-inner {
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-arrow_down {
    max-width: 115px;
  }

  .footer-links {
    padding-right: 30px;
  }

  .footer-social_links {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .developer-block_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .developer-block_cta {
    padding-left: 10px;
    padding-right: 10px;
  }

  .developer-empty_block.cc-blk-one {
    width: 280px;
  }

  .developer-tool {
    font-size: 14px;
  }

  .developer-tool.cc-accounts {
    width: 171px;
    margin-left: 12px;
  }

  .developer-tool.cc-credit-js {
    margin-left: 10px;
  }

  .developer-tool.cc-exports {
    width: 195px;
    margin-right: 30px;
    transform: rotate(3deg);
  }

  .hero-text {
    max-width: 95%;
    margin-right: 20px;
    padding-left: 10px;
    top: -30px;
  }

  .developer-code_top {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .developer-code_controls {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    padding-left: 14px;
    padding-right: 6px;
  }

  .developer-code_control {
    width: 8px;
    height: 8px;
  }

  .developer-code_header {
    font-size: 12px;
  }

  .about-hero_header {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .press-wrapper {
    padding-bottom: 70px;
  }

  .press-block {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .press-block.swiper-slide {
    width: 95%;
    max-width: none;
  }

  .press-block_inner {
    min-height: 380px;
    padding-bottom: 120px;
  }

  .press-summary {
    font-size: 16px;
  }

  .compliance-image {
    height: 300px;
  }

  .products-hero_cta {
    padding-top: 32px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .products-hero_cta.cc-darkgreen-bg {
    background-size: 70%;
    padding-bottom: 60vw;
  }

  .products-hero_cta.cc-yellow-bg {
    background-size: 70%;
    padding-bottom: 65vw;
  }

  .products-cta_inner {
    width: 100%;
    max-width: 260px;
  }

  .products-cta_inner.cc-payments {
    width: 100%;
  }

  .products-cta_inner.cc-cards {
    width: 100%;
    max-width: 240px;
  }

  .products-cta_inner.cc-savings {
    width: 100%;
    max-width: 270px;
  }

  .products-cta_inner.cc-credit {
    width: 100%;
    max-width: 250px;
  }

  .products-cta_subtext, .products-cta_subtext.cc-small, .products-cta_subtext.cc-wide {
    width: 100%;
  }

  .products-flex_header {
    max-width: none;
  }

  .products-flex_subtext {
    max-width: 270px;
  }

  .product-list_item {
    background-size: 50%;
  }

  .product-list_item.cc-consumer, .product-list_item.cc-virtual-account {
    background-size: 60%;
  }

  .product-list_item.cc-multi-currency {
    background-size: 55%;
  }

  .product-list_item.cc-interbank {
    background-size: 50%;
  }

  .product-list_item.cc-checkouts {
    background-size: 40%;
  }

  .product-list_item.cc-bulk-transfers, .product-list_item.cc-virtual-cards, .product-list_item.cc-prepaid-cards {
    background-size: 50%;
  }

  .product-list_item.cc-overdraft {
    background-size: 45%;
  }

  .product-list_item.cc-cash-advance {
    background-size: 50%;
  }

  .product-list_inner {
    padding-bottom: 53vw;
  }

  .product-description_illustration {
    max-width: none;
    height: 250px;
  }

  .product-feature {
    min-width: 272px;
    min-height: 175px;
  }

  .product-feature_summary.cc-wide {
    max-width: 200px;
  }

  .platform-hero_inner {
    max-width: 262px;
  }

  .platform-hero_inner.cc-small {
    width: auto;
    max-width: 250px;
  }

  .platform-image {
    width: 100%;
  }

  .platform-service_header {
    max-width: 272px;
  }

  .platform-subtext {
    max-width: 290px;
  }

  .platform-header_text.cc-small {
    max-width: 100%;
  }

  .usecase-tab_menu {
    justify-content: flex-start;
    overflow: auto;
  }

  .usecase-tab_link {
    flex: none;
  }

  .tag.cc-green-bg {
    white-space: nowrap;
  }

  .casestudy-hero_cta {
    width: 80%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .casestudy-category_item {
    border-top: 1px solid #dbdbdb;
    border-bottom-style: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .casestudy-item_image {
    flex: none;
    width: 100%;
    height: 80vw;
  }

  .casestudy-image_inner {
    max-width: 60%;
  }

  .casestudy-image_inner.cc-small {
    max-width: 40%;
  }

  .casestudy-hero_inner {
    max-width: 280px;
    font-size: 30px;
  }

  .casestudy-hero_logo {
    max-width: 60px;
    height: 30px;
  }

  .casestudy-details_flex {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .casestudy-inner_text p {
    font-size: 14px;
  }

  .blog-hero {
    max-width: 320px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-tab_menu {
    flex: none;
  }

  .featured-blog_header {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .featured-blog_details {
    max-width: none;
  }

  .featured-blog_text {
    max-width: 300px;
  }

  .featured-blog_summary {
    max-width: none;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-image {
    height: auto;
  }

  .blog-inner_title {
    font-size: 30px;
  }

  .blog-open_inner {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }

  .blog-open-content p {
    margin-bottom: 20px;
  }

  .blog-open-content img {
    max-height: 320px;
  }

  .about-large_subtext {
    max-width: 273px;
  }

  .about-small_subtext {
    max-width: 296px;
  }

  .product-menu_container.cc-tab {
    margin-bottom: 270px;
  }

  .product-tab {
    margin-top: -320px;
  }

  .casestudy-content_cta {
    flex-wrap: wrap;
  }

  .casetsudy-cta_inner {
    max-width: none;
  }

  .products-hero_image {
    max-width: 250px;
    max-height: 200px;
    transform: translate(90px, 30px);
  }

  .products-hero_image.cc-cards {
    width: 400px;
    transform: translate(200px, 135px);
  }

  .products-hero_image.cc-savings {
    width: 300px;
    height: 300px;
    transform: translate(90px, 120px);
  }

  .products-hero_image.cc-payment {
    max-width: 300px;
    max-height: 150px;
    transform: translate(50px, 20px);
  }

  .compliance-image_inner {
    max-width: 80%;
    bottom: -200px;
  }

  .compliance-image_inner.cc-full-width {
    max-width: 100%;
  }

  .hero-tag_container.cc-casestudy {
    width: 80%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .guides-list-item {
    margin-bottom: 20px;
  }

  .guide-block_grid {
    display: block;
  }

  .developer-hero {
    justify-content: center;
    display: flex;
  }

  .developer-hero-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .developer-hero-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    width: 100%;
    height: auto;
  }

  .developer-hero-title {
    font-size: 36px;
    line-height: 39.6px;
  }

  .developer-hero-image {
    width: 100%;
    padding-left: 0;
  }

  .developer-build-anchor {
    padding: 40px 20px;
  }

  .developer-build-header {
    text-align: center;
  }

  .developer-build-card {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .build-card.card-three {
    width: auto;
  }

  .icon-card.icon-card-2, .icon-card.icon-card-3 {
    background-color: #fff4e4;
  }

  .build-card-title {
    margin-top: 0;
    margin-bottom: 0;
  }

  .build-card-description {
    margin-bottom: 0;
  }

  .developer-test-sandbox {
    padding-left: 20px;
    padding-right: 20px;
  }

  .developer-section-header {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .developer-section-title {
    line-height: 20px;
  }

  .test-sandbox-container {
    flex-flow: column;
  }

  .test-sandbox-content {
    width: 100%;
  }

  .test-sandbox-image {
    width: 100%;
    height: 200px;
  }

  .test-content-item {
    width: 100%;
    height: 100px;
    padding-left: 15px;
  }

  .content-text-description {
    font-size: 12px;
    line-height: 13px;
  }

  .anchor-connect-sectiom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .anchor-connect-container {
    width: 100%;
  }

  .anchor-connect-left {
    align-items: center;
    width: 100%;
    padding-left: 27px;
    padding-right: 10px;
  }

  .anchor-connect-right {
    width: 100%;
  }

  .developer-explore {
    padding: 40px 20px;
  }

  .developer-explore-container {
    flex-flow: column;
    align-items: center;
    width: 100%;
  }

  .explore-card {
    width: 100%;
    max-width: none;
    height: 100%;
  }

  .footer-heading {
    width: 250px;
  }

  .footer-container {
    padding: 40px 10px;
  }

  .footer-wrapper-links {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: center start;
    margin-top: 73px;
    display: grid;
  }

  .foot-notes {
    text-align: left;
    width: 300px;
  }

  .footer-bottom {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    align-items: flex-start;
  }

  .footer-bottom-note {
    align-items: flex-start;
  }

  .footer-logo {
    text-align: left;
  }

  .image-6 {
    width: 100%;
    height: auto;
    padding-left: 0;
    padding-right: 0;
    display: inline-flex;
  }

  .developer-dream-option {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tag-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .text-block-10 {
    white-space: nowrap;
  }

  .related-article {
    padding-left: 10px;
    padding-right: 10px;
  }

  .form-5 {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-search {
    overflow: clip;
  }

  .form-block-4 {
    margin-bottom: 0;
  }
}

#w-node-a9b5e4d1-2c2a-ba68-c3d7-b300dce711a4-8cd9760b, #w-node-bcf9ef9b-2e27-7634-b3b2-e6b5b84c793b-8cd9760b, #w-node-ba887a2e-668d-a0cc-ac18-edfc6c4d279e-8cd9760b, #w-node-_53e81c0d-9572-69ed-6861-811f2bbaf508-8cd9760b, #w-node-_600b3687-f210-c199-248d-0a0de3187710-8cd9760b, #w-node-_1874bc4b-13cb-c082-4e21-cd2ad08e9162-8cd9760b, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b0f-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b16-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b1d-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b36-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b44-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b4b-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b52-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b5d-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b64-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b6b-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b76-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b7d-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b84-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b8b-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7b9a-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7ba1-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7ba8-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7baf-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7bb6-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7bbd-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7bc4-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7bcb-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7bd2-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7bd9-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7be0-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7be7-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7bee-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7bf5-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7bfc-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7c0b-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7c12-8cd97683, #w-node-ba58d4e9-adc8-bbe1-0d51-60de078a7c19-8cd97683, #w-node-ff303de6-bc15-8360-6af0-26cf5fd8cc41-8cd976d0, #w-node-a8d019db-1825-35ba-1828-9b9cede1a716-8cd976d0, #w-node-_70547b71-df88-c156-9519-d2046ced25f5-8cd976d0, #w-node-df9aaa82-b6ad-5577-4f62-482b910597b8-8cd976d0, #w-node-_58bf473b-9afb-eb63-e9a9-eeb3e4991bff-8cd976d0, #w-node-acd9af21-813a-1b6c-bc2c-e977c3a3287e-8cd976d0, #w-node-_2fdb4446-2c57-b34c-fd15-e8da0866c269-8cd976d0, #w-node-_2fdb4446-2c57-b34c-fd15-e8da0866c274-8cd976d0, #w-node-_2fdb4446-2c57-b34c-fd15-e8da0866c27f-8cd976d0, #w-node-_2fdb4446-2c57-b34c-fd15-e8da0866c28a-8cd976d0, #w-node-e5a4da89-7863-6b96-1167-083f827b8887-8cd976d0, #w-node-_3ab31ae0-218d-ffd5-eb1c-a41294e784de-8cd976d0, #w-node-_23a0ffa2-ff7c-eb54-9120-3e1bca03639a-8cd976d0, #w-node-_23a0ffa2-ff7c-eb54-9120-3e1bca0363a5-8cd976d0, #w-node-_23a0ffa2-ff7c-eb54-9120-3e1bca0363b0-8cd976d0, #w-node-_23a0ffa2-ff7c-eb54-9120-3e1bca0363bb-8cd976d0, #w-node-ff426744-e754-8cf3-7c30-a7a36cbc1c9d-8cd976d0, #w-node-_01e04037-7c98-426f-bf11-f1f53715018d-8cd976d0, #w-node-e0b63535-e214-8b10-a042-b383da289f12-8cd976d0, #w-node-e0b63535-e214-8b10-a042-b383da289f1d-8cd976d0, #w-node-e0b63535-e214-8b10-a042-b383da289f28-8cd976d0, #w-node-e0b63535-e214-8b10-a042-b383da289f33-8cd976d0, #w-node-_32607dea-5f3a-b83b-88aa-b5c4966b61c3-8cd976d0, #w-node-cdfda7eb-b181-8a17-e1af-c5e309a5616a-8cd976d0, #w-node-b120e30d-6f1c-113d-628a-f61f98cb383f-8cd976d0, #w-node-b120e30d-6f1c-113d-628a-f61f98cb384a-8cd976d0, #w-node-b120e30d-6f1c-113d-628a-f61f98cb3855-8cd976d0, #w-node-b120e30d-6f1c-113d-628a-f61f98cb3860-8cd976d0, #w-node-_1f24521a-874f-58e0-7417-fb02695130bd-8cd976d0, #w-node-_7b9ecb85-492e-13db-570d-c99637d3b824-8cd976d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c433b977-f27c-b029-a357-fbd3c866915f-7d227615 {
  grid-area: Area;
}

#w-node-cabff68a-c3e8-de0f-2ca9-9111dd138c55-7d227615 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Dmsans';
  src: url('../ttf/dmsans-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dmsans';
  src: url('../ttf/dmsans-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dmsans';
  src: url('../ttf/dmsans-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teg';
  src: url('../ttf/teg-extralight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teg';
  src: url('../ttf/teg-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teg';
  src: url('../ttf/teg-thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teg';
  src: url('../ttf/teg-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teg';
  src: url('../ttf/teg-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teg';
  src: url('../ttf/teg-extrabold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teg';
  src: url('../ttf/teg-black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teg';
  src: url('../ttf/teg-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneue';
  src: url('../otf/helveticaneue-light.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}