@charset "UTF-8";
/* copy this :
@include button-color($color, $bgColor, $bgColor-hover, $color-hover)
*/
/* copy this :
@include link-color($color, $color-hover)
*/
/* put that inside .pricing-card selector */
/* copy this :
@include fade-down($offset, $duration, $delay)
*/
/* copy this :
@include keyframes--vertical-fade-in
*/
/**
 * ––––––––––––––––––––––––
 * Marquee
 * Infinite auto scroll loop
 * A marquee-element need at least two marquee-element-inner 
 *
 * Expected HTML structure :
 *
 *  <div class="marquee">
 *    <div class="marquee-wrapper">
 *      <div class="marquee-element">
 *        <div class="marquee-element-inner">item1, item2, item3...</div>
 *        <div class="marquee-element-inner">item1, item2, item3...</div> // clone
 *      </div>
 *    </div>
 *  </div>

 * Add as many ".marquee-element-inner" as needed
 * to cover twice the width of the visible area.
 * Add "overflow-x : hidden" to the marquee element or
 * to one of the marquee parents.
 * ––––––––––––––––––––––––
 * @param $inner-element-length - the number total of ".marquee-element-inner"
 * @param $duration - the duration of the loop
 * @param $animation-name - the unique name to define for the created keyframe
 * @param $vertical - set the direction of the marquee
 * @param $in-viewport - if true, marquee will run only if he has the ".in-viewport" class (js IntersectClassInViewport)
*/
/* copy this :
@include marquee($inner-element-length, $duration, $animation-name, $vertical, $in-viewport)
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
}

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

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.36em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

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

body {
  overflow: hidden auto;
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  color: #111827;
}

#page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#et-main-area {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

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

ol,
ul {
  list-style-type: none;
}

ol,
ul,
li,
dl,
dt,
dd,
hgroup,
blockquote,
figure,
form,
input,
legend,
pre,
abbr,
button,
p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}

@media (max-width: 999px) {
  .upper-nav,
  .desktop-nav {
    display: none;
  }
}

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

.site-header {
  z-index: 99999;
  position: relative;
}

ion-icon {
  pointer-events: none;
  flex-shrink: 0;
}

svg {
  display: block;
  flex-shrink: 0;
}

/**
 * Basic typography style for copy text
 */
body {
  color: #111827;
  font: 500 16px/1.4 "Inter", -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "case", "calt", "ccmp", "kern";
  -webkit-font-feature-settings: "case", "calt", "ccmp", "kern";
  -moz-font-feature-settings: "case", "calt", "ccmp", "kern";
}

.mano {
  font-family: "Caveat", monospace;
}

/**
 * Content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges
 */
.root-container {
  display: block;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
  width: 100%;
}
@media (max-width: 999px) {
  .root-container {
    padding-inline: 16px;
  }
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**
 * Make element untargeted by click event
 */
.click--disabled {
  pointer-events: none;
}

/**
 * Suppresses line breaks (text wrapping)
 */
.no-wrap {
  white-space: nowrap;
}

.max-1line {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.max-3line {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-max {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

/**
* Discard price line through
* (need relative parent)
*/
.red-line {
  position: relative;
}

.red-line:after {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  top: -1px;
  right: -3px;
  bottom: -1px;
  background: linear-gradient(to top left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) calc(50% - 1px), #E9323D 50%, rgba(0, 0, 0, 0) calc(50% + 1px), rgba(0, 0, 0, 0) 100%);
}

button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  border: none;
  letter-spacing: inherit;
  background: transparent;
  padding: 0;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  font-weight: 500;
  transition: background 200ms ease 0s;
  cursor: pointer !important;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.02em;
  border-radius: 12px;
  color: #FFFFFF;
  background: #1B62F1;
}

.cta-button:hover {
  background: #1D4ED8;
}

.cta-button:active {
  background: #1B62F1;
}

.cta-button--s {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.01em;
}

.cta-button--icon-left {
  align-items: center;
  gap: 8px;
  padding: 14px 24px 14px 14px;
}
.cta-button--icon-left ion-icon {
  font-size: 1.38em;
}

.Cta_button {
  display: inline-block;
  text-align: center;
  background: #1B62F1;
  border-radius: 12px;
  color: #FFFFFF;
  position: relative;
  text-decoration: none;
  cursor: pointer !important;
  white-space: nowrap;
  transition: background 200ms ease 0s;
}

.Cta_button.small {
  padding: 12px 18px;
  font: 500 15px/24px "Inter", -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.Cta_button:hover {
  background: #056BF1;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
}