@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap");
* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black-1);
}

h1 {
  font-size: 3.125rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  color: var(--black-2);
}

a {
  color: var(--green-1);
  text-decoration: none;
}

.tx-container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

.sign-info {
font-size: 12px;
}

@media (min-width: 1440px) {
  .tx-container {
    max-width: 1140px;
  }
}
.tx-container--grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.tx-section {
  scroll-margin-top: 80px;
  padding: 55px 0;
  background-color: var(--white);
}
.tx-section h2 {
  font-weight: 500;
}

.tx-section h2 + p {
  font-size: 1.125rem;
  line-height: 1.4;
}

.tx-section h2 + p.full {
  width: 45%;
}

@media (max-width: 768px) {
  .tx-section h2 + p.full {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .tx-section {
    padding: 40px 0;
  }
  .tx-section--image {
    height: 230px;
    width: 350px;
  }
}
@media (max-width: 992px) {
  .tx-container--grid {
    grid-template-columns: 1fr;
  }
  .tx-section h2 + p.full {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .tx-section h2 {
    margin-bottom: 30px;
  }
  .tx-section h2 + p {
    margin-bottom: 20px;
  }
  .tx-input {
    grid-template-columns: 1fr;
  }
}
.tx-button {
  cursor: pointer;
  padding: 12px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: var(--white);
  color: var(--black-1);
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  border: none;
  box-shadow: none;
  text-align: center;
  position: relative;
  top: 0;
  transition: top 0.25s ease;
}
.tx-button + .tx-button {
  margin-left: 10px;
}
.tx-button--primary {
  background-color: var(--black-1);
  color: var(--white);
}
.tx-button--primary.tx-button--outline {
  background-color: transparent;
  border: 1px solid var(--black-1);
  color: var(--black-1);
  transition: all 0.25s ease-in;
}
.tx-button--primary.tx-button--outline:hover {
  background-color: var(--black-1);
  color: var(--white);
  transition: all 0.25s ease-out;
}
.tx-button--secondary {
  background-color: var(--green-1);
  color: var(--white);
}
.tx-button--secondary.tx-button--outline {
  background-color: transparent;
  border: 1px solid var(--green-1);
  color: var(--green-1);
  transition: all 0.25s ease-in;
}
.tx-button--secondary.tx-button--outline:hover {
  background-color: var(--green-1);
  color: var(--white);
  transition: all 0.25s ease-out;
}
.tx-button--secondary.tx-button--white {
  background-color: #fff;
  color: var(--green-1);
}
.tx-button--green {
  background-color: var(--green-1);
  color: var(--white);
}
.tx-button:hover {
  top: -3px;
  transition: top 0.25s ease;
}
.tx-button.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.tx-pill {
  height: 28px;
  border-radius: 100px;
  padding: 5px 10px;
  color: var(--black-1);
  background-color: #ffffff;
  border: 1px solid #ABD0CA;
  font-weight: 600;
  font-size: 12px;
}

.tx-email--input {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 5px;
  max-width: fit-content;
  position: relative;
}
.tx-email--input.bordered {
  border: 1px solid #80B9B0;
}
.tx-email--input input {
  color: var(--black-1) !important;
  background: none;
  font-weight: 500;
  font-size: 15px;
  min-width: 250px;
  padding-left: 10px;
  border: none;
  box-shadow: none;
  outline: none;
}
.tx-email--input .tx-button.secured {
  background-color: var(--green-1);
  transition: background-color 0.35s ease-out;
  opacity: 1 !important;
}
@media (max-width: 600px) {
  .tx-email--input {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100% !important;
  }
  .tx-email--input input {
    height: 45px;
  }
}

.tx-feature--card {
  background-color: #F5F5F5;
  background-image: url("../images/feature-bg.svg");
  border-radius: 24px;
  padding: 30px 30px 12px;
  height: 330px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
}
.tx-feature--card::after {
  border-radius: 24px;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.tx-feature--card h3 {
  color: var(--black-1);
  font-size: 1.25rem;
  font-weight: 600;
}
.tx-feature--card__image {
  margin-top: 20px;
  padding: 12px;
  background: #fff;
  height: 150px;
  width: 80%;
  margin-left: auto;
  border-radius: 24px;
}
.tx-feature--card__image img {
  border-radius: 16px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.tx-feature--card.tx-feature--card__full {
  background-image: url("../images/feature-full-bg.svg") !important;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-gap: 20px;
}
.tx-feature--card.tx-feature--card__full .tx-feature--card__image {
  margin-top: 0;
  width: 100%;
  height: 270px;
}
.tx-feature--card.tx-feature--card__full .tx-feature--card__image img {
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .tx-feature--card.tx-feature--card__full {
    width: 100% !important;
  }
}
@media (max-width: 600px) {
  .tx-feature--card {
    padding: 25px 20px 8px;
  }
  .tx-feature--card .tx-feature--card__image {
    width: 100% !important;
  }
  .tx-feature--card.tx-feature--card__full .tx-feature--card__image {
    height: 200px !important;
    width: auto !important;
    margin-left: 0;
  }
}

:root {
  --black-1: #121212;
  --black-2: #414141;
  --black-3: #676767;
  --green-1: #027361;
  --green-2: #EEF6F4;
  --white: #ffffff;
}

html, body {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-primary {
  color: var(--black-1) !important;
}

.text-green {
  color: var(--green-1) !important;
}

.text-black-1 {
  color: var(--black-1) !important;
}

.text-black-2 {
  color: var(--black-2) !important;
}

.text-black-3 {
  color: var(--black-3) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-underline {
  text-decoration: underline !important;
}

/**
 * Nav
 */
nav {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  height: auto;
  min-height: 90px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
}
nav .tx-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: var(--black-1);
  padding: 20px;
  border-radius: 12px;
  height: 70px;
}
nav .nav-logo {
  height: 32px;
}
nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}
nav ul li a {
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
  position: relative;
}
nav ul li a:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background-color: var(--green-1);
  bottom: 0;
  left: 20px;
  transition: width 0.35s ease-in;
}
nav ul li a:hover:after {
  width: 40px;
  transition: width 0.35s ease-out;
}
nav ul .nav-cta--mobile {
  display: none;
}
nav .tx-mobile--nav {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  nav {
    padding: 20px 0;
  }
  nav .tx-container {
    flex-direction: column;
    align-items: flex-start;
    transition-delay: 5s;
    transition: all 0.25s ease-in;
  }
  nav ul {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px !important;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    height: 0;
    transition: height 0.25s linear;
  }
  nav ul li {
    opacity: 0;
  }
  nav ul .nav-cta--mobile {
    display: block;
  }
  nav ul.open {
    margin-top: 20px;
    height: 300px;
    visibility: visible;
    transition: all 0.25s linear;
  }
  nav ul.open li {
    opacity: 1;
    transition: opacity 0.25s linear;
    transition-delay: 0.25s;
  }
  nav ul a {
    display: inline-block;
    padding: 15px 0 !important;
  }
  nav .nav-cta {
    display: none;
  }
  nav .tx-mobile--nav {
    display: flex;
    align-items: center;
  }
}

/**
 * Header
 */
header {
  padding: 80px 0 0;
  min-height: 100vh;
  background-color: var(--white);
}

.tx-header.tx-header--home .tx-header--content {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  background-image: url("../images/header-background.svg");
}
.tx-header.tx-header--home .tx-header--content > * {
  position: relative;
  z-index: 1;
}
.tx-header.tx-header--home .tx-header--content h1 {
  font-size: 4rem;
  color: var(--green-1);
}
.tx-header.tx-header--home .tx-header--content__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 12px;
}
.tx-header.tx-header--home .tx-header--content__bg {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tx-header.tx-header--home .tx-header--mockup {
  display: flex;
  justify-content: center;
}
.tx-header.tx-header--home .tx-header--mockup img {
  height: 400px;
  width: auto;
}
@media (max-width: 600px) {
  .tx-header {
    min-height: 85vh !important;
  }
  .tx-header .tx-header--content {
    background-position: center right;
  }
  .tx-header .tx-header--content h1 {
    font-size: 2.75rem !important;
  }
  .tx-header .tx-header--mockup img {
    height: auto !important;
    width: 400px !important;
  }
}

.tx-header-small {
  min-height: 400px;
  background-color: var(--green-2);
  display: flex;
  align-items: center;
  text-align: center;
  padding-bottom: 0;
}
.tx-header-small h1 {
  line-height: 1.3;
}
.tx-header-small p {
  font-size: 1.125rem;
  line-height: 2;
}

/**
 * Features
 */
.tx-features {
  padding-top: 0;
}
.tx-features > * {
  max-width: 80%;
  margin: auto;
}
.tx-features--container {
  min-height: 600px;
  border-radius: 24px;
  padding: 70px 60px;
  background-color: var(--green-1);
  color: #fff;
  position: relative;
  z-index: 1;
}
.tx-features--container .tx-feature--cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  margin-left: 12px;
}
.tx-features--container .tx-feature--cards .tx-feature--card:nth-child(3) {
  grid-column: 1/4;
  width: calc(100% - 20px);
}
@media (max-width: 992px) {
  .tx-features > * {
    max-width: 90% !important;
  }
  .tx-features .tx-features--container {
    padding: 40px 30px;
  }
  .tx-features .tx-features--container .tx-feature--cards {
    grid-template-columns: 1fr !important;
  }
  .tx-features .tx-features--container .tx-feature--cards .tx-feature--card:nth-child(3) {
    grid-column: auto !important;
    grid-template-columns: 1fr;
    min-height: 500px !important;
  }
}

/**
 * Steps
 */
.tx-steps {
  background-color: #EEF6F4;
  position: relative;
}
.tx-steps::before {
  position: absolute;
  content: "";
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #EEF6F4;
}
.tx-steps > * {
  max-width: 80%;
  margin: auto;
}
.tx-steps--step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.tx-steps--step img {
  position: relative;
  top: 70px;
}
.tx-steps--step h4 {
  font-size: 1.25rem;
  font-weight: 500;
}
.tx-steps--step h4, .tx-steps--step p {
  position: relative;
  z-index: 2;
}
.tx-steps .tx-locations {
  max-width: fit-content;
  margin: 40px auto 20px;
  display: flex;
  border: 1px solid #80B9B0;
  border-radius: 12px;
}
.tx-steps .tx-locations--location {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tx-steps .tx-locations--location:not(:last-child) {
  border-right: 1px solid #80B9B0;
}
@media (max-width: 600px) {
  .tx-steps--step img {
    top: 40px !important;
  }
}

/**
 * Pay Later
 */
.tx-pay-later {
  padding-bottom: 0;
}
.tx-pay-later--table {
  width: 85%;
  margin: 60px auto;
}
.tx-pay-later--table table {
  border-collapse: separate;
  border-spacing: 0;
}
.tx-pay-later--table table th, .tx-pay-later--table table td {
  width: 300px;
  padding: 20px;
  border-bottom: 1px solid #C5C5C5;
  border-left: 1px solid #C5C5C5;
  align-items: center;
}
.tx-pay-later--table table th:last-child, .tx-pay-later--table table td:last-child {
  border-right: 1px solid #C5C5C5;
}
@media (max-width: 600px) {
  .tx-pay-later--table table th, .tx-pay-later--table table td {
    padding: 12px;
    width: auto !important;
  }
}
.tx-pay-later--table table thead tr:first-child th,
.tx-pay-later--table table tbody tr:first-child td {
  border-top: 1px solid #C5C5C5;
}
.tx-pay-later--table table th {
  font-weight: 500;
  font-size: 0.875rem;
}
.tx-pay-later--table table th:first-child {
  visibility: hidden;
  border: none;
}
.tx-pay-later--table table th:nth-child(2) {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.tx-pay-later--table table th.custom {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: #001713;
  position: relative;
  border-bottom: 0;
}
.tx-pay-later--table table th.custom::before {
  position: absolute;
  content: "99Fi";
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 85%;
  width: 95%;
  background-image: url("../images/table-header-bg.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.tx-pay-later--table table td:nth-child(2) {
  text-align: center;
    color: #EF1212;
}
.tx-pay-later--table table td:nth-child(2) img {
  margin: auto;

}
.tx-pay-later--table table td:last-child {
  background-color: #001713;
  color: #00DEBA;
  display: flex;
  justify-content: center;
}
.tx-pay-later--table table td:last-child img {
  margin-left: 5px;
  height: 18px;
  
}
@media (max-width: 600px) {
  .tx-pay-later--table table td:last-child {
    flex-direction: column;
    text-align: center;
  }
  .tx-pay-later--table table td:last-child img {
    margin-left: 0;
    margin-top: 5px;
  }
}
@media (max-width: 600px) {
  .tx-pay-later--table {
    width: 100%;
  }
}

/**
 * Testimonials
 */
.tx-testimonials .tx-container {
  min-height: 600px;
  border-radius: 24px;
  padding: 70px 30px;
  background-color: var(--green-1);
  color: #fff;
}
.tx-testimonials--testimonial {
  background: linear-gradient(180deg, #409d8f 0%, #029c84 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.tx-testimonials--testimonial .user {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tx-testimonials--testimonial .user img {
  height: 48px;
  width: 48px;
}
.tx-testimonials--testimonial .user h5 {
  font-weight: 500;
  font-size: 1rem;
}

/**
 * FAQs
 */
.tx-faqs {
  background-color: #012620;
}
.tx-faqs--accordion {
  margin-top: 50px;
}
.tx-faqs--accordion > ul {
  max-width: 70%;
  margin: auto;
  list-style-type: none;
}
.tx-faqs--accordion > ul > li {
  padding: 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3137254902);
}
.tx-faqs--accordion > ul > li:not(:last-child) {
  margin-bottom: 15px;
}
.tx-faqs--accordion > ul > li .accordion-trigger {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.tx-faqs--accordion > ul > li .accordion-trigger h4 {
  font-size: 1rem;
  width: 90%;
  font-weight: 500;
  color: #fff;
}
.tx-faqs--accordion > ul > li .accordion-trigger span {
  opacity: 0.4;
  transform: rotate(0deg);
  transition: transform 0.3s ease-in;
}
.tx-faqs--accordion > ul > li .accordion-content {
  margin-top: 0;
  height: 0;
  transition: all 0.3s ease-out;
}
.tx-faqs--accordion > ul > li .accordion-content ol, .tx-faqs--accordion > ul > li .accordion-content ul, .tx-faqs--accordion > ul > li .accordion-content p {
  opacity: 0;
  width: 90%;
  line-height: 2;
  transition: opacity 0.1s ease-out;
  color: #fff;
}
.tx-faqs--accordion > ul > li.open .accordion-trigger span {
  opacity: 1;
  transform: rotate(180deg);
  transition: transform 0.3s ease-in;
}
.tx-faqs--accordion > ul > li.open .accordion-content {
  margin-top: 20px;
  height: auto;
  transition: all 0.3s ease-in;
}
.tx-faqs--accordion > ul > li.open .accordion-content ol, .tx-faqs--accordion > ul > li.open .accordion-content ul, .tx-faqs--accordion > ul > li.open .accordion-content p {
  opacity: 0.74;
  transition: opacity 0.4s ease-in;
  transition-delay: 0.3s;
}
@media (max-width: 600px) {
  .tx-faqs--accordion > ul {
    max-width: 90%;
  }
}

/**
 * CTA
 */
.tx-cta--container {
  background-color: var(--green-1);
}
@media (max-width: 600px) {
  .tx-cta br {
    display: none;
  }
}

/**
 * Footer
 */
.tx-footer {
  padding: 60px 0 40px;
}
.tx-footer--sections {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  border-top: 1px solid rgba(138, 138, 138, 0.3137254902);
  border-bottom: 1px solid rgba(138, 138, 138, 0.1882352941);
  padding: 40px 0 40px;
}
.tx-footer--sections .tx-footer--section h5 {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 20px;
}
.tx-footer--sections .tx-footer--section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.tx-footer--sections .tx-footer--section ul a {
  display: inline-block;
  padding: 10px 0;
  color: var(--black-3);
}
.tx-footer--copyright p {
  font-size: 0.875rem;
  color: #505050;
}

/**
 * Terms/Data
 */
.tx-data-policy {
  padding: 40px 0;
}

aside h6 {
  margin-bottom: 20px;
}

.tx-data-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.tx-data-menu li {
  margin-bottom: 7px;
}

.tx-data-menu li a {
  color: var(--tx-black-tertiary);
  font-size: 15px;
}

.tx-data-section {
  max-width: 80%;
  margin: 0 auto 50px;
}
@media (max-width: 600px) {
  .tx-data-section {
    max-width: 100%;
  }
}

.tx-data-section h5 {
  margin-bottom: 15px;
}

.tx-data-section h6 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.tx-data-section li {
  color: var(--tx-black-tertiary);
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.tx-first-level {
  margin-bottom: 30px;
}
.tx-first-level p {
  font-size: 1.125rem;
  line-height: 1.8;
}
.tx-first-level p:not(:last-child) {
  margin-bottom: 20px;
}
.tx-first-level li {
  font-size: 1.125rem;
  color: var(--black-2);
}

.tx-second-level {
  margin-top: 20px;
}

.tx-second-level p span {
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-block;
  margin-right: 5px;
}

@media (max-width: 1024px) {
  html, body {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  .tx-footer--sections {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 40px;
  }
}
@media (max-width: 600px) {
  .tx-footer--sections {
    grid-template-columns: 1fr 1fr;
  }
  .tx-footer--sections .tx-footer--section:last-child {
    grid-column: 1/3;
    grid-row: 3;
  }
}

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