@charset "UTF-8";
/*---

These are the styles for the variables. Variables can be applied
to any element, components, or pages. Refers to figma.

Index
- Base
- Gray
- Others

*/
/*-------------------------------------------*\
Base
\*-------------------------------------------*/
/*-------------------------------------------*\
Gray
\*-------------------------------------------*/
/*-------------------------------------------*\
Others
\*-------------------------------------------*/
/*---

These are the styles for the typography. Typography styles can be applied
to any element. Typically you'll want to use either
a `<p>`, `<span>`, or heading element:

​```html
<h1 class="heading-1">This is a title text</h1>
<span class="text-scale-lg">This is a text</span>
<p class="small">Some Text</p>
​```

Index
- Responsive Mixins
- Sizes
- Layouts
- Inputs

*/
/*-------------------------------------------*\
Responsive mixins
\*-------------------------------------------*/
/*-------------------------------------------*\
Sizes
\*-------------------------------------------*/
/*-------------------------------------------*\
Inputs
\*-------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
}

footer {
  margin-top: auto;
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
}

.desktop-only {
  display: none;
}
@media (min-width: 1024px) {
  .desktop-only {
    display: block;
  }
}

.bg-medium {
  background: #3d59e3;
}

.bg-lightest {
  background: #f0f4fe;
}

.bg-neutral-main {
  background: #ffffff;
}

.bg-base-dark {
  background: #1A1F51;
}

.bg-base-main {
  background-color: #2531a8;
}

/*---

These are the styles for the typography. Typography styles can be applied
to any element. Typically you'll want to use either
a `<p>`, `<span>`, or heading element:

​```html
<h1 class="heading-1">This is a title text</h1>
<span class="text-scale-lg">This is a text</span>
<p class="small">Some Text</p>
​```

Index
- Font size
- Font weight
- Text color
- Text align
- Text decoration
- Text transform
- White space

*/
/*-------------------------------------------*\
Font size
\*-------------------------------------------*/
:root {
  font-size: 100%;
}

*,
h1,
h2,
h3,
h4,
p,
div,
a,
span,
label,
li,
footer {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  line-height: 140%;
}
@media (min-width: 1024px) {
  *,
  h1,
  h2,
  h3,
  h4,
  p,
  div,
  a,
  span,
  label,
  li,
  footer {
    font-size: 1.125rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}

.heading-1 {
  font-size: 2.5rem;
  line-height: 120%;
}
@media (min-width: 1024px) {
  .heading-1 {
    font-size: 3.75rem;
  }
}

.heading-2 {
  font-size: 2.25rem;
  line-height: 120%;
}
@media (min-width: 1024px) {
  .heading-2 {
    font-size: 3rem;
  }
}

.heading-4 {
  font-size: 1.75rem;
  line-height: 120%;
}
@media (min-width: 1024px) {
  .heading-4 {
    font-size: 2rem;
  }
}

.heading-6 {
  font-size: 1.25rem;
  line-height: 120%;
}
@media (min-width: 1024px) {
  .heading-6 {
    font-size: 1.5rem;
  }
}

.small-body {
  font-size: 0.875rem;
  line-height: 120%;
}
@media (min-width: 1024px) {
  .small-body {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .small-body {
    line-height: 140%;
  }
}

.text-body-xl {
  font-size: 1.125rem;
  line-height: 120%;
}
@media (min-width: 1024px) {
  .text-body-xl {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .text-body-xl {
    line-height: 140%;
  }
}

.text-body-lg {
  font-size: 1.125rem;
  line-height: 140%;
}
@media (min-width: 1024px) {
  .text-body-lg {
    font-size: 1.125rem;
  }
}

/*-------------------------------------------*\
Font Weight
\*-------------------------------------------*/
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

/*-------------------------------------------*\
Text Align
\*-------------------------------------------*/
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/*-------------------------------------------*\
Text color
\*-------------------------------------------*/
.text-white {
  color: #ffffff;
}

.text-default {
  color: #1e1e1e;
}

.text-neutral-dark {
  color: #111111;
}

.text-neutral-medium {
  color: #262626;
}

.text-neutral-muted {
  color: #737373;
}

.text-neutral-alt {
  color: #f5f5f5;
}

.text-neutral-base {
  color: #1f2937;
}

.text-main {
  color: #2531a8;
}

.text-gray-600 {
  color: #6a778b;
}

.text-gray-700 {
  color: #42526b;
}

.text-gray-900 {
  color: #061c3d;
}

.text-error {
  color: #F71111;
}

/*-------------------------------------------*\
Text Decoration
\*-------------------------------------------*/
.underline {
  text-decoration: underline;
}

.overline {
  text-decoration: overline;
}

.line-through {
  text-decoration: line-through;
}

.none {
  text-decoration: none;
}

/*-------------------------------------------*\
White-space
\*-------------------------------------------*/
.white-space-nowrap {
  white-space: nowrap;
}

.white-space-break-spaces {
  white-space: break-spaces;
}

textarea {
  resize: none;
}

input[type=text],
input[type=password],
input[type=date],
input[type=time],
input[type=email],
input[type=number],
input[type=tel],
input[type=search],
input[type=datetime-local],
select {
  display: block;
  border: 1px solid #737373;
  border-radius: 8px;
  color: #111111;
  min-height: 2.875rem;
  padding: 12px 1rem;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

label {
  color: #1e1e1e;
}

textarea {
  border: 1px solid #737373;
  border-radius: 8px;
  color: #111111;
  padding: 0.5rem;
}
textarea:focus {
  outline: none;
}

select {
  appearance: none;
  background-position: calc(100% - 0.5rem);
  cursor: pointer;
  height: 40px;
  width: 100%;
  border-radius: 6px;
  min-width: 62px;
  font-size: 0.875rem;
  padding: 0 12px;
}
@media (min-width: 1024px) {
  select {
    font-size: 0.875rem;
  }
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input.form-control {
  outline: none;
}

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.hide-input {
  position: absolute;
  z-index: -1;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
}

.custom-radio__label {
  position: relative;
  padding-left: 1.75rem;
  cursor: pointer;
}
.custom-radio__label::before {
  content: " ";
  position: absolute;
  left: 0;
  background: #ffffff;
  box-shadow: 0 0 0 1px #737373;
}

.custom-radio__label {
  display: flex;
  align-items: center;
}

.custom-radio__label::before {
  width: 1rem;
  height: 1rem;
  border-radius: 99px;
}

.custom-radio__input {
  position: absolute;
  z-index: -1;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
}
.custom-radio__input:checked + [class*=__label]::before {
  box-shadow: 0 0 0 1px #737373, inset 0 0 0 3px #ffffff;
  background-color: #2531a8;
}

.w-min-content {
  width: min-content;
}

.w-max-content {
  width: max-content;
}

.h-max-content {
  height: max-content;
}

@media (min-width: 1024px) {
  .w-md-75 {
    width: 75%;
  }
}

@media (min-width: 1024px) {
  .w-lg-80 {
    width: 80%;
  }
}

@media (min-width: 1440px) {
  .w-lg-50 {
    width: 50%;
  }
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-75-xl {
  width: 100%;
}
@media (min-width: 1440px) {
  .w-75-xl {
    width: 75%;
  }
}

.w-50 {
  width: 50%;
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

@media (min-width: 1024px) {
  .d-md-flex {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .flex-md-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .d-md-block {
    display: block;
  }
}

.d-none {
  display: none !important;
}

.flex-grow-1 {
  flex-grow: 1;
}

@media (min-width: 1024px) {
  .section__wrapper {
    box-sizing: border-box;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
  }
}

.section__padding {
  padding: 1.5rem 5%;
}
@media (min-width: 1024px) {
  .section__padding {
    padding: 3.75rem 2.5rem;
  }
}
@media (min-width: 1440px) {
  .section__padding {
    padding: 3.75rem 4.5rem;
  }
}
@media (min-width: 1024px) {
  .section__padding--small {
    padding: 1.5rem 2.5rem;
  }
}
@media (min-width: 1440px) {
  .section__padding--small {
    padding: 1.5rem 4.5rem;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.opacity-0 {
  opacity: 0;
}

.box-sizing-border-box {
  box-sizing: border-box;
}

.position-relative {
  position: relative;
}

.box-shadow {
  box-shadow: 0px 12px 56px 0px rgba(6, 28, 61, 0.1215686275);
}

.box-shadow-form {
  box-shadow: 0px 16px 72px 0px rgba(6, 28, 61, 0.0784313725);
}

.mx-auto {
  margin-inline: auto;
}

.ml-auto {
  margin-left: auto;
}

.p-24px {
  padding: 1.5rem;
}

hr {
  color: #D4D4D4;
  margin: 0;
}

.animate-fade {
  opacity: 0;
  transform: translateY(50px);
}

.border-radius-16px {
  border-radius: 16px;
}

body.no-scroll {
  overflow: hidden;
}

nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
}
nav.hidden {
  transform: translate(-50%, -120%);
  opacity: 0;
}
nav.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
nav > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 48px;
  padding: 0rem 1rem;
  margin: auto;
  background: #ffffff;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
  box-shadow: 0px 0px 48px 0px rgba(6, 28, 61, 0.0509803922);
  border: 1px solid #ffffff;
  border-radius: 12px;
}
@media (min-width: 1024px) {
  nav > div {
    max-width: 1440px;
    padding: 0 1.5rem;
    height: 89px;
  }
}
nav .active {
  color: #3d59e3;
}
nav .nav-mobile-links__list {
  position: absolute;
  left: 0;
  top: calc(48px + 1rem);
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0px 0px 48px 0px rgba(6, 28, 61, 0.0509803922);
  border-radius: 12px;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  left: 50%;
  transform: translateX(-50%);
}
nav .nav-mobile-links__list > div a {
  padding: 0.5rem 0;
  text-align: center;
}

.accordion {
  display: grid;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}
.accordion .open {
  display: none;
}
.accordion.active {
  background-color: #faca15;
  max-height: max-content;
}
.accordion.active .accordion__content {
  max-height: max-content;
  opacity: 1;
  padding-top: 1rem;
}
.accordion.active .default {
  display: none;
}
.accordion.active .open {
  display: block;
}
.accordion__title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  width: 100%;
}
.accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

/*
Your standard form button. Typically you'll want to use either
a `<div>`, `<button>` or `<a>`, element:

​```html
<button type="button" class="usa-button">Button</button>
```

:hover       - Highlights when hovering.
:disabled    - Dims the button when disabled.
--primary    - Indicates button is the primary action.
--secondary  - Indicates button is the secondary action.

Index
- Button

*/
/*-------------------------------------------*\
Button
\*-------------------------------------------*/
button {
  border: none;
  background-color: transparent;
}

.button {
  display: flex;
  justify-content: center;
  background-color: #2531a8;
  border: 0;
  border-radius: 8px;
  width: max-content;
  padding: 8px 1.25rem;
  font-size: 1rem;
  line-height: 140%;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
}
@media (min-width: 1024px) {
  .button {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .button {
    padding: 8px 2rem;
  }
}
.button:hover {
  background-color: #3d59e3;
  color: #ffffff;
}
.button:disabled, .button[aria-disabled=true] {
  color: #ffffff;
  background-color: #98b7f8;
  cursor: not-allowed;
  opacity: 1;
}

.button--secondary {
  background-color: #ffffff;
  border: 1.5px solid #2531a8;
  color: #2531a8;
}
.button--secondary:hover, .button--secondary.button--hover {
  background-color: #f0f4fe;
  color: #2531a8;
}

.button-dynamic {
  width: 100%;
}
@media (min-width: 1024px) {
  .button-dynamic {
    width: max-content;
  }
}

.tabs__wrapper {
  display: flex;
  border-radius: 8px;
  justify-content: center;
  width: max-content;
  border: 1px solid #ffffff;
  margin: auto;
  overflow: hidden;
}
.tabs__item {
  display: flex;
  justify-content: center;
  padding: 8px 1.625rem;
  color: #f0f4fe;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .tabs__item {
    min-width: 9.375rem;
  }
}
@media (max-width: 768px) {
  .tabs__item {
    width: 100%;
  }
}
.tabs__item.active {
  background-color: #ffffff;
  color: #1f2937;
}

.form-page {
  display: grid;
  border-radius: 16px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 1.25rem;
  width: 100%;
  max-width: 62.5rem;
}
@media (min-width: 1024px) {
  .form-page {
    padding: 3rem;
  }
}
.form-page__contact {
  grid-template-areas: "context" "name" "email" "subject" "content" "picture" "submit";
}
@media (min-width: 1024px) {
  .form-page__contact {
    grid-template-areas: "context context" "name email" "subject subject" "content content" "picture picture" ". submit";
    column-gap: 1.25rem;
  }
}
.form-page__contact .context {
  grid-area: context;
}
.form-page__contact .name {
  grid-area: name;
}
.form-page__contact .email {
  grid-area: email;
}
.form-page__contact .subject {
  grid-area: subject;
}
.form-page__contact .content {
  grid-area: content;
}
.form-page__contact .picture {
  grid-area: picture;
}
.form-page__contact .submit {
  grid-area: submit;
  margin-left: auto;
}

@media (min-width: 1024px) {
  table.table--comparison-table {
    border: 1px solid #D4D4D4;
    overflow: hidden;
    border-collapse: separate;
    border-radius: 12px;
    background-color: #ffffff;
  }
}
table.table--comparison-table thead tr th {
  padding: 1rem;
  vertical-align: top;
}
@media (max-width: 768px) {
  table.table--comparison-table thead tr th {
    display: none;
  }
}
@media (min-width: 1024px) {
  table.table--comparison-table thead tr th {
    border-bottom: 1px solid #D4D4D4;
    width: 33.3%;
  }
}
@media (min-width: 1024px) {
  table.table--comparison-table thead tr {
    border: 1px solid #D4D4D4;
  }
}
@media (max-width: 768px) {
  table.table--comparison-table tbody {
    display: block;
  }
}
table.table--comparison-table tbody tr {
  background-color: #ffffff;
}
@media (max-width: 768px) {
  table.table--comparison-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) {
  table.table--comparison-table tbody tr {
    border: 1px solid #D4D4D4;
  }
}
@media (min-width: 1024px) {
  table.table--comparison-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid #D4D4D4;
  }
}
table.table--comparison-table tbody td {
  border: 1px solid #D4D4D4;
  padding: 1rem;
  color: #111111;
}
@media (max-width: 768px) {
  table.table--comparison-table tbody td {
    display: block;
    flex-basis: 100%;
    border-top-style: none;
  }
  table.table--comparison-table tbody td::before {
    content: "Collected: ";
  }
}
@media (min-width: 1024px) {
  table.table--comparison-table tbody td {
    border-right: 0;
    border-left: 0;
    border: none;
    width: 33.3%;
  }
}
table.table--comparison-table tbody td.reg:first-child {
  background-color: #f5f5f5;
}
@media (max-width: 768px) {
  table.table--comparison-table tbody td.reg:first-child {
    border-radius: 5px 5px 0 0;
    border-top-style: solid;
  }
}
@media (min-width: 1024px) {
  table.table--comparison-table tbody td.reg:first-child {
    background-color: #ffffff;
  }
}
@media (max-width: 768px) {
  table.table--comparison-table tbody td.reg:last-child {
    border-radius: 0 0 5px 5px;
  }
}

@media (min-width: 1024px) {
  .cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cols-ol {
  grid-template-columns: 25px 1fr;
}

.rg-4px {
  row-gap: 4px;
}

.rg-8px {
  row-gap: 8px;
}

.rg-12px {
  row-gap: 0.75rem;
}

.rg-16px {
  row-gap: 1rem;
}

.rg-20px {
  row-gap: 1.25rem;
}

.rg-24px {
  row-gap: 1.5rem;
}

@media (min-width: 1024px) {
  .rg-md-24px {
    row-gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .rg-md-32px {
    row-gap: 2rem;
  }
}

@media (min-width: 1440px) {
  .rg-lg-32px {
    row-gap: 2rem;
  }
}

.rg-48px {
  row-gap: 3rem;
}

@media (min-width: 1024px) {
  .rg-md-48px {
    row-gap: 3rem;
  }
}

.cg-4px {
  column-gap: 0.25rem;
}

.cg-8px {
  column-gap: 0.5rem;
}

.cg-12px {
  column-gap: 0.75rem;
}

.cg-16px {
  column-gap: 1rem;
}

.cg-24px {
  column-gap: 1.5rem;
}

.cg-32px {
  column-gap: 2rem;
}

@media (min-width: 1024px) {
  .cg-md-32px {
    column-gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .cg-md-48px {
    column-gap: 3rem;
  }
}

.input__layout {
  display: grid;
  row-gap: 4px;
}

.hero__section {
  padding: 5.625rem 5% 0;
}
@media (max-width: 768px) {
  .hero__section {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .hero__section {
    grid-template-columns: 1.25fr 1fr;
    padding: 11.375rem 2.5rem 6.625rem;
  }
}
@media (min-width: 1440px) {
  .hero__section {
    padding: 11.375rem 4.5rem 6.625rem;
  }
}
.hero__section--success {
  background-image: url(".././assets/images/success-bg.png");
  background-repeat: no-repeat;
  background-position: bottom;
  text-align: left;
}

.features__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f4fe;
}
.features__item > div {
  padding: 1.25rem;
}
@media (min-width: 1024px) {
  .features__item > div {
    padding: 2rem;
  }
}

.why-zalia__content {
  padding: 1.5rem 5%;
}
@media (min-width: 1024px) {
  .why-zalia__content {
    padding: 2rem 2.5rem;
  }
}
@media (min-width: 1440px) {
  .why-zalia__content {
    padding: 3rem 4.5rem;
  }
}
@media (min-width: 1024px) {
  .why-zalia__img {
    height: 560px;
    object-fit: cover;
  }
}
.why-zalia__item {
  background-color: #f0f4fe;
  padding: 1rem;
  border-radius: 8px;
}
.why-zalia__item img {
  height: 36px;
  width: auto;
  object-position: 0;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .why-zalia__item img {
    height: 48px;
  }
}

.preview__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
}
.preview__item {
  position: relative;
  width: 52px;
  height: 52px;
}
.preview__item > img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}
.preview__item .remove-preview {
  position: absolute;
  top: -8px;
  right: -8px;
  cursor: pointer;
}

.pt-xl__section {
  margin-top: 4.75rem;
}
.pt-xl__section *:not(.button):not(.text-error) {
  color: #1f2937;
}

@media (min-width: 1024px) {
  .verify__section div {
    width: 50%;
    margin: auto;
  }
}
@media (min-width: 1440px) {
  .verify__section div {
    width: 35%;
  }
}

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