@font-face {
  font-family: Ebgaramond;
  src: url('../fonts/EBGaramond-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ebgaramond;
  src: url('../fonts/EBGaramond-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Quincycf;
  src: url('../fonts/quincycf-medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Quincycf;
  src: url('../fonts/quincycf-extrabold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --white: white;
  --grey-2: #ebebeb;
  --terracota-2: #f6ebe3;
  --grey6: #121212;
  --light-grey-2: #f4f4f6;
  --blue: #0039f2;
  --grey-5: #565656;
  --grey-4: grey;
  --sea: #59b1e9;
  --terracota-1: #fdf9f7;
  --terracota-4: #cc624d;
  --olive-1: #ecf3e6;
  --olive-3: #6b8e40;
  --grey-1: #f4f4f6;
  --color: white;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.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-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #23286b;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

h1 {
  letter-spacing: -.04em;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 32px;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--black);
  margin-bottom: 10px;
  font-family: Playfair Display, sans-serif;
  font-size: 40px;
}

img {
  max-width: 160px;
  display: inline-block;
}

.section {
  background-color: var(--white);
  padding-top: 80px;
  padding-bottom: 120px;
  font-family: Playfair Display, sans-serif;
  display: none;
}

.section.hero {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 500px;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 0;
  display: none;
}

.section.footer {
  background-color: #f4f8fb;
  padding-bottom: 60px;
  display: none;
}

.grid-3-columns {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card-title {
  letter-spacing: -.02em;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.card-description {
  margin-bottom: 16px;
}

.card {
  border: 1px solid var(--grey-2);
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 16px #aaaaaa40;
}

.card.terracota {
  background-color: var(--terracota-2);
}

.bg-dark {
  color: #fff;
  background-color: #23286b;
}

.container-flex {
  align-items: center;
  display: flex;
}

.container-flex.wide {
  text-align: justify;
  object-fit: fill;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 97%;
  margin-left: 32px;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 20px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.primary-button {
  background-color: var(--grey6);
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  border-radius: 8px;
  margin-top: 0;
  margin-left: 6px;
  margin-right: 0;
  padding: 12px 32px;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: box-shadow .3s ease-in-out;
}

.primary-button:hover {
  box-shadow: 0 10px 15px #0000001a;
}

.primary-button.ios-link {
  transition-timing-function: ease;
}

.primary-button.ios-link:hover {
  box-shadow: 0 4px 15px #0000001a;
}

.featured-text {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.grid-2-columns {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 100px;
  transition: opacity .2s;
  display: grid;
}

.grid-2-columns.last {
  margin-bottom: 0;
}

.footer-menu {
  text-align: left;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 100px;
  display: flex;
}

.footer-label {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Inter, sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 30px;
}

.footer-link {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  text-decoration: none;
  display: block;
}

.footer-link.android-link, .footer-link.ios-link {
  font-family: Inter, sans-serif;
}

.navbar {
  background-color: #0000;
  min-width: 90%;
  padding-top: 16px;
  padding-bottom: 16px;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
}

.call-to-action-wrapper {
  flex: 1;
  padding-right: 100px;
}

.pill {
  color: #428cfb;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 2px solid #428cfb;
  border-radius: 20px;
  margin-bottom: 12px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
}

.nav-link {
  text-transform: none;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.nav-link:hover, .nav-link.w--current {
  color: #428cfb;
}

.brand {
  color: #23286b;
  order: -1;
  font-size: 1.2em;
  font-weight: 700;
}

.nav-menu {
  order: 1;
}

.feature-link {
  color: #428cfb;
  letter-spacing: .02em;
  text-transform: uppercase;
  border-bottom: 2px solid #428cfb;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}

.feature-link:hover {
  color: #1372ff;
  border-bottom-color: #1372ff;
}

.lightblue {
  color: #428cfb;
}

.footer-brand {
  color: #23286b;
  text-align: left;
  font-weight: 700;
  text-decoration: none;
}

.text-block {
  color: var(--black);
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: .9;
}

.cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta.bg-dark {
  background-color: #e3fcf9;
}

.subfooter {
  text-align: center;
  font-size: .8em;
}

.div-block {
  width: 80px;
  height: 1px;
}

.heading {
  color: #f1b522;
  font-size: 80px;
}

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

.heading-2 {
  color: #ffa390;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 48px;
  font-weight: 600;
}

.paragraph {
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 48px;
  margin-right: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.column {
  padding: 0 0 100px 136px;
}

.image {
  min-width: 101.4%;
  max-width: 100%;
  margin-top: 63px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  position: static;
}

.text-span {
  color: var(--white);
  font-family: Playfair Display, sans-serif;
  font-weight: 400;
}

.text-span-2 {
  color: #ffa390;
}

.image-2 {
  margin-top: 38px;
  margin-left: 16px;
}

.paragraph-2 {
  color: #5ad6c7;
  margin-top: 12px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.text-span-3 {
  color: #f25b49;
}

.button {
  color: #f25b49;
  background-color: #ffeceb;
  border-radius: 40px;
  margin-left: 16px;
  margin-right: 0;
  padding: 20px 32px;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.bold-texxxt {
  float: left;
  color: #000;
  text-align: left;
  object-fit: fill;
  margin-bottom: 0;
  margin-left: 132px;
  margin-right: auto;
  font-family: Playfair Display, sans-serif;
  font-weight: 600;
  position: static;
  top: 70px;
  bottom: 0%;
}

.sticky-nav {
  z-index: 1;
  background-color: #f4f4f4;
  padding: 20px;
  position: sticky;
  top: 0;
}

.nav-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content max-content max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
}

.nav-logo-link {
  height: 60px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: block;
}

.nav-logo {
  object-fit: contain;
  object-position: 0% 50%;
  width: auto;
  height: 100%;
}

.nav-link-2 {
  color: #444;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 0;
  text-decoration: none;
  display: block;
}

.nav-link-2:hover {
  text-decoration: underline;
}

.cards-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.centered-container {
  text-align: center;
  flex: 1;
}

.cards-grid-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cards-image-mask {
  border-radius: 0%;
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.cards-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.columns {
  background-color: #0000;
  margin-left: 136px;
  margin-right: 136px;
}

.column-2 {
  padding-left: 24px;
}

.column-3, .column-4 {
  background-color: var(--white);
  border-radius: 24px;
}

.columns-2 {
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin: 0 132px auto;
  padding-left: 0;
  position: relative;
  left: auto;
  overflow: visible;
}

.column-5 {
  background-color: #0000;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.column-6, .column-7 {
  background-color: #0000;
  border-radius: 24px;
  padding-left: 0;
  padding-right: 0;
}

.div-block-2 {
  background-color: var(--white);
  text-align: center;
  border-radius: 24px;
  height: 585px;
  margin-left: 10px;
  margin-right: auto;
  padding: 24px 0;
}

.image-3 {
  margin: 130px 0 0;
  position: static;
  top: auto;
}

.text-block-2 {
  color: gray;
  text-align: left;
  margin-bottom: 24px;
  margin-left: 31px;
  margin-right: 24px;
  padding-left: 0;
  padding-right: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  inset: 15% 0% auto;
}

.image-4 {
  text-align: left;
  margin-top: 0;
  margin-left: 0;
  display: block;
}

.text-span-4 {
  color: var(--black);
}

.section-3 {
  background-color: #e3fcf9;
}

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

.bold-text-2 {
  color: var(--black);
  text-align: left;
}

.column-8 {
  margin-top: 90px;
  margin-bottom: 90px;
  padding-left: 136px;
}

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

.image-6 {
  position: static;
  inset: auto 0% 0%;
}

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

.image-7 {
  text-align: center;
  object-fit: fill;
  margin-bottom: 20px;
  display: inline-block;
}

.container-2 {
  text-align: center;
  margin-top: 88px;
  margin-bottom: 88px;
}

.image-8 {
  margin-top: 38px;
}

.bold-text-4 {
  color: var(--white);
  text-align: left;
  font-family: Playfair Display, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.bold-text-5 {
  color: var(--black);
  text-align: center;
}

.bold-text-6 {
  color: var(--black);
}

.new1 {
  font-family: Lato, sans-serif;
  font-size: 48px;
}

.bold-text-7 {
  color: var(--white);
  font-size: 48px;
  font-weight: 600;
}

.image-2-copy {
  margin-top: 0;
  margin-left: 16px;
}

.paragraph-copy {
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 0;
  margin-right: 32px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.container-3 {
  position: sticky;
}

.container-4 {
  position: sticky;
  left: 0;
  right: 0;
}

.div-block-3 {
  text-align: center;
  background-color: #f4f4f6;
  border-radius: 24px;
  align-items: flex-start;
  min-height: 100%;
  max-height: 100%;
  margin-top: 0;
  padding-top: 24px;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: static;
}

.div-block-3-copy {
  text-align: center;
  background-color: #f4f8fb;
  border-radius: 24px;
  min-height: 320px;
  max-height: 280px;
  margin-top: 24px;
  margin-left: 0;
  padding-top: 22px;
  padding-bottom: 20px;
}

.columns-3 {
  clear: none;
  align-items: flex-start;
  margin-top: 0;
  margin-left: 132px;
  margin-right: 132px;
  display: flex;
}

.image-9 {
  max-width: 120%;
  margin-top: 58px;
  margin-bottom: 60px;
}

.image-10 {
  max-width: 90%;
  margin-top: 24px;
  margin-bottom: 24px;
}

.image-11 {
  float: none;
  object-fit: fill;
  width: auto;
  min-width: 0;
  max-width: 75%;
  margin: 30px 20px 0;
  display: inline-block;
  position: relative;
  left: 0%;
  right: 0%;
}

.text-block-3 {
  color: var(--black);
  text-align: center;
  margin-top: 10px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  line-height: 1.3;
}

.text-span-5 {
  color: #00a8ac;
  font-weight: 700;
}

.text-block-4 {
  color: var(--black);
  text-align: center;
  margin-top: 10px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  line-height: 1.3;
}

.text-block-5 {
  color: var(--black);
  text-align: center;
  margin-bottom: 0;
  margin-left: 0;
  font-family: Lato, sans-serif;
  font-size: 22px;
}

.text-span-6 {
  color: #121212;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.text-span-7 {
  color: #00a8ac;
  font-weight: 700;
}

.image4 {
  margin: 100px 0 0;
  position: static;
  top: auto;
}

.image-3-copy {
  margin: 32px 0 0;
  position: static;
  top: auto;
}

.image-3-copy._6 {
  margin-top: 100px;
  position: static;
  inset: 0%;
}

.list {
  color: var(--black);
  font-family: Lato, sans-serif;
}

.columns-4 {
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 60px;
  padding-top: 100px;
  display: flex;
}

.column-9 {
  margin-top: 40px;
  padding-left: 0;
  padding-right: 0;
  position: sticky;
  bottom: 0;
  right: 0;
}

.column-10 {
  position: sticky;
}

.div-block-2-copy {
  background-color: var(--white);
  text-align: center;
  border-radius: 24px;
  height: 585px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 0;
}

.heading-2-cpy {
  color: #121212;
  text-align: left;
  margin-bottom: 8px;
  margin-right: 32px;
  font-family: Lato, sans-serif;
  font-size: 48px;
  font-weight: 700;
  display: flex;
}

.heading-2-coy {
  color: #121212;
  text-align: left;
  margin-bottom: 0;
  margin-right: 32px;
  font-family: Playfair Display, sans-serif;
  font-size: 48px;
  font-weight: 600;
}

.column-11 {
  flex: 0 auto;
  max-height: 600px;
  padding-left: 0;
  padding-right: 16px;
  display: block;
}

.column-12 {
  object-fit: fill;
  order: 0;
  align-self: flex-start;
  max-height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: static;
}

.image-14 {
  float: none;
  clear: none;
  text-align: right;
  object-fit: fill;
  max-width: 100%;
  max-height: 550px;
  margin-top: 0;
  margin-left: 40px;
  margin-right: 40px;
  padding-left: 0;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}

.image-15 {
  display: none;
}

.bold-text-9 {
  color: var(--white);
  border: 1px solid #0000;
}

.columns-5 {
  display: none;
}

.image-16 {
  clear: left;
  position: static;
  left: 0%;
}

.container-6 {
  max-width: 70%;
  margin-top: 180px;
  margin-bottom: 60px;
  font-family: Inter, sans-serif;
  display: none;
}

.heading-4 {
  color: var(--black);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 48px;
  font-weight: 600;
}

.paragraph-3 {
  color: var(--black);
  text-align: left;
  margin-top: 64px;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.text-block-6 {
  direction: ltr;
  color: #000;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  position: static;
}

.body {
  color: var(--black);
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.body.w--current {
  color: #0000;
}

.text-block-7 {
  color: var(--black);
  text-align: left;
  margin-top: 64px;
  font-family: Playfair Display, sans-serif;
  font-size: 36px;
  font-weight: 600;
}

.paragraph-3-copy {
  color: var(--black);
  text-align: left;
  margin-top: 32px;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.text-block-2-copy {
  color: var(--black);
  text-align: left;
  margin: 0 0 24px;
  padding-left: 0;
  padding-right: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: block;
  position: static;
  inset: 15% 0% auto;
}

.image-17 {
  display: none;
}

.heading-2-copy {
  color: var(--white);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 48px;
  font-weight: 600;
}

.bold-text-copy {
  color: #000;
  margin-left: 136px;
  display: block;
}

.footer-menu-copy {
  text-align: left;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
}

.column-13 {
  color: #0000;
  padding-left: 0;
  padding-right: 0;
}

.column-14 {
  padding-left: 0;
  padding-right: 0;
}

.columns-6 {
  color: #0000;
  min-width: 50%;
  margin-left: 0;
  margin-right: 0;
}

.div-block-4 {
  background-color: var(--white);
}

.link-block {
  flex: 1;
}

.link-block.w--current {
  clear: left;
  flex: 0 auto;
  margin-top: 4px;
  margin-left: 32px;
  position: fixed;
  left: 0%;
}

.navbar-2 {
  background-color: #0000;
  margin-top: 24px;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
}

.container-7 {
  min-width: 80%;
  max-width: 100%;
  margin-left: 132px;
  margin-right: 132px;
  font-family: Lato, sans-serif;
}

.button-2-space {
  color: #f25b49;
  background-color: #ffeceb;
  border-radius: 40px;
  margin-left: 16px;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 700;
}

.button-2-space.ios-link, .button-2-space.android-link {
  color: var(--white);
  background-color: #ff7b60;
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.dropdown-toggle {
  background-color: #e7eaed;
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.icon-2 {
  margin-left: 10px;
  padding-left: 0;
}

.text-block-8 {
  color: var(--black);
  margin-right: 10px;
  font-family: Inter, sans-serif;
}

.text-span-8 {
  color: var(--white);
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.link {
  color: var(--black);
}

.container-8 {
  margin-top: 100px;
}

.image-18 {
  text-align: right;
  max-width: 70%;
  margin-top: 0;
  margin-bottom: 0;
}

.columns-7 {
  align-items: center;
  margin-top: 132px;
  margin-bottom: 40px;
  display: flex;
}

.column-15 {
  text-align: right;
  padding-right: 60px;
}

.text-span-9, .text-span-10, .text-span-11, .text-span-12 {
  color: #00a8ac;
}

.link-2, .link-3, .link-4, .link-5, .link-6, .link-7, .link-8, .link-9, .link-10, .link-11, .link-12, .link-13, .link-14, .link-15, .link-16, .link-17, .link-18, .link-19, .link-20, .link-21, .link-22, .link-23 {
  color: var(--black);
}

.text-span-copy {
  color: var(--white);
  font-family: Playfair Display, sans-serif;
  font-weight: 600;
}

.link-block-2, .link-block-3, .link-block-4 {
  color: #0000;
}

.link-block-4.w--current {
  display: block;
}

.link-block-5 {
  font-style: normal;
  text-decoration: underline;
}

.bold-text-7-copy {
  color: var(--black);
  font-size: 48px;
}

.text-block-9 {
  min-width: 100%;
  max-width: 100%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.container-9 {
  object-fit: fill;
  max-width: 100%;
  margin-top: 180px;
  display: none;
}

.image-19 {
  float: right;
  max-width: 60%;
  margin-right: 132px;
}

.heading-5 {
  color: var(--grey6);
  margin-bottom: 2px;
  margin-left: 0;
  font-family: Satoshi, sans-serif;
  font-size: 84%;
  font-style: normal;
  line-height: 1.1;
  text-decoration: none;
  position: relative;
  bottom: 0%;
}

.container-10 {
  color: #f4f8fb;
  background-color: #f4f8fb;
  max-width: 100%;
  padding-top: 140px;
  padding-bottom: 60px;
  display: none;
}

.paragraph-4 {
  color: #3d3d3d;
  margin-left: 132px;
  margin-right: 51%;
  font-family: Inter, sans-serif;
  font-size: 15px;
}

.button-2-copy {
  color: var(--white);
  background-color: #774eec;
  border-radius: 40px;
  margin-top: 16px;
  margin-left: 132px;
  padding: 16px 35px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.container-11 {
  clear: right;
  text-align: right;
  max-width: 100%;
  display: none;
}

.image-20 {
  max-width: 50%;
  margin-top: 140px;
  position: sticky;
  right: 0%;
}

.bold-text-cop {
  float: left;
  color: #000;
  text-align: left;
  object-fit: fill;
  margin: 80px auto 40px 0;
  font-family: Playfair Display, sans-serif;
  font-size: 52px;
  font-weight: 600;
  position: static;
  top: 37%;
  bottom: 0%;
}

.bold-text-coy {
  float: left;
  color: #000;
  text-align: left;
  object-fit: fill;
  margin: 230px auto 0% 132px;
  font-family: Playfair Display, sans-serif;
  font-weight: 600;
  position: static;
  top: 70px;
  bottom: 0%;
}

.image-21 {
  min-width: 22%;
  max-width: 50%;
}

.button-2-copy-copy {
  float: left;
  clear: left;
  color: #f25b49;
  text-align: left;
  background-color: #e4dcfb;
  border-radius: 0;
  margin-top: 16px;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 35px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: sticky;
  left: 0%;
  right: 0;
}

.div-block-5 {
  margin-top: 280px;
}

.column-18 {
  clear: none;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  position: static;
}

.image-22 {
  clear: left;
  text-align: left;
  margin-top: 0;
  margin-right: 50px;
}

.image-23 {
  max-width: 102%;
  margin-top: 140px;
}

.column-19 {
  margin-top: 140px;
  margin-bottom: 20px;
  padding-left: 132px;
}

.columns-8 {
  max-width: 100%;
}

.columns-9 {
  float: left;
  clear: both;
  margin-left: 0;
  display: block;
}

.text-block-6o {
  color: #774eec;
  text-align: left;
  max-width: 100%;
  margin-top: 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  text-decoration: underline;
}

.link-block-6 {
  max-width: 100%;
  display: block;
}

.columns-10 {
  float: none;
  clear: both;
  text-align: center;
  justify-content: space-between;
  align-items: flex-end;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  margin-left: 0;
  margin-right: 0;
  display: inline-block;
  position: static;
}

.section-4 {
  background-color: #e3fcf9;
  border-radius: 8px;
  max-width: 57px;
  height: 27px;
}

.text-block-6-copy2 {
  color: #00a8ac;
  margin-top: 0;
  padding-top: 2px;
  padding-left: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.bold-text-copy {
  float: left;
  color: #000;
  text-align: left;
  object-fit: fill;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: auto;
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 600;
  position: static;
  top: 70px;
  bottom: 0%;
}

.section-5 {
  margin-top: 20px;
}

.text-block-duplicate {
  direction: ltr;
  color: gray;
  margin-top: 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.text-block-6o-copy {
  color: #d0d0d0;
  margin-top: 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.container-6-copiy {
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 66%;
  margin-top: 180px;
  margin-bottom: 56px;
  font-family: Inter, sans-serif;
  display: none;
}

.text-block-10 {
  clear: both;
  color: var(--black);
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-bottom: 100px;
  margin-left: 14%;
  margin-right: 14%;
  font-family: Lato, sans-serif;
  font-size: 27px;
  font-weight: 700;
  display: block;
  position: static;
}

.section-6 {
  text-align: center;
  justify-content: center;
  align-items: center;
  min-width: 110px;
  max-width: 70%;
  display: none;
}

.text-block-6-copy {
  direction: ltr;
  color: var(--black);
  text-align: left;
  max-width: 60%;
  margin-top: 0;
  margin-left: 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.image-25 {
  max-width: 55%;
  margin-bottom: 0;
}

.column-24 {
  text-align: right;
  padding-left: 0;
  padding-right: 0;
}

.columns-11, .columns-12, .columns-13 {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.columns-14 {
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.container-12 {
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(130deg, #fffdfc, #e6f0ef);
  background-clip: border-box;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  margin-top: 100px;
  margin-bottom: 100px;
  padding-top: 100px;
  padding-bottom: 60px;
  display: none;
}

.section-7 {
  text-align: left;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  max-width: 69%;
  margin-bottom: 100px;
  display: inline-block;
}

.grid {
  float: none;
  clear: both;
  text-align: left;
  grid-template: "Area"
                 "." 1fr
                 / 1fr 1fr 1fr 1fr;
  place-items: center stretch;
  max-width: 78%;
  margin-top: 20px;
  position: static;
}

.div-block-6 {
  background-color: var(--white);
  border-radius: 24px;
  max-width: 180px;
  min-height: 180px;
}

.body-2 {
  color: var(--black);
  margin-left: 0%;
  margin-right: 0%;
}

.text-block-11 {
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.text-span-13 {
  color: gray;
}

.text-block-12, .text-block-13, .text-block-14 {
  font-size: 16px;
}

.div-block-7 {
  background-color: var(--white);
  border-radius: 16px;
  min-width: 200px;
  max-width: 200px;
  min-height: 200px;
  max-height: 200px;
  margin-bottom: 16px;
}

.text-block-15 {
  color: var(--black);
  max-width: 150px;
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.columns-15 {
  clear: both;
  text-align: left;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-bottom: 20px;
  margin-left: 0%;
  margin-right: 0;
  padding-left: 20%;
  padding-right: 20%;
  display: inline-block;
}

.column-32 {
  text-align: left;
  object-fit: fill;
  max-height: none;
  display: block;
  overflow: visible;
}

.bold-texxxt-copy {
  float: left;
  color: #000;
  text-align: left;
  object-fit: fill;
  float: left;
  text-align: left;
  object-fit: fill;
  margin-bottom: 40px;
  margin-left: 132px;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-weight: 700;
  position: static;
  top: 70px;
  bottom: 0%;
}

.container-6-copy {
  max-width: 70%;
  margin-top: 60px;
  margin-bottom: 100px;
  display: none;
}

.team-photo {
  min-height: 200px;
  max-height: 200px;
  margin-bottom: 16px;
}

.link-24, .link-25, .link-26 {
  color: var(--black);
}

.text-span-14, .text-span-15, .text-span-16, .text-span-17, .text-span-18, .text-span-19, .text-span-20, .cookie {
  color: gray;
  font-size: 14px;
}

.section-8 {
  background-color: #0000;
}

.body-3 {
  background-color: #006265;
  background-image: repeating-linear-gradient(83deg, #007175, #00595b);
}

.bold-text-11 {
  margin-left: 0;
  font-size: 18px;
  font-weight: 600;
  display: inline;
}

.bold-text-12, .bold-text-13 {
  font-weight: 600;
}

.bold-text-14 {
  color: #774eec;
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.bold-text-15, .bold-text-16, .bold-text-17 {
  font-weight: 600;
}

.link-27, .link-28, .link-29, .link-30, .link-31, .link-32 {
  color: var(--black);
}

.image-26 {
  border: 1px solid #0000;
}

.bold-text-18 {
  color: var(--white);
}

.body-5 {
  background-color: var(--light-grey-2);
}

.bold-text-19 {
  color: #774eec;
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.link-33 {
  color: var(--black);
}

.bold-text-20, .bold-text-21, .bold-text-22, .bold-text-23, .bold-text-24 {
  font-weight: 600;
}

.link-34, .link-35, .link-36, .link-37, .link-38 {
  color: var(--black);
}

.body-6 {
  background-image: linear-gradient(85deg, #007175, #00595b);
}

.bold-text-25 {
  color: #774eec;
}

.bold-text-26, .bold-text-27, .bold-text-28, .bold-text-29, .bold-text-30 {
  font-weight: 600;
}

.link-39, .link-40, .link-41, .link-42, .link-43 {
  color: var(--black);
}

.container-13 {
  background-color: #c7e9db;
  max-width: 1440px;
  max-height: 560px;
}

.section-9 {
  color: var(--white);
  max-width: 379px;
  max-height: 400px;
}

.heading-6 {
  color: var(--black);
  text-align: left;
  margin-top: 0;
  font-family: Satoshi, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 17px;
  display: block;
}

.section-10 {
  color: #c7e9db;
  background-color: #c7e9db;
  max-width: 100%;
  height: auto;
  max-height: none;
  padding-top: 56px;
  padding-bottom: 56px;
  font-family: Playfair Display, sans-serif;
  font-weight: 400;
}

.section-11 {
  background-color: var(--black);
  max-width: 100%;
  height: auto;
  max-height: none;
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-12 {
  max-width: 100%;
  height: 300px;
  max-height: 300px;
}

.section-13 {
  background-color: #ffd7c7;
  height: auto;
  max-height: none;
  margin-top: 56px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.body-7 {
  max-width: 100%;
  height: 781px;
  max-height: 781px;
}

.section-14 {
  color: var(--black);
  background-color: #c7e9db;
  width: auto;
  max-width: 100%;
  height: auto;
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-15 {
  height: auto;
}

.paragraph-5 {
  float: left;
  text-align: center;
  line-height: 1.3;
  position: static;
  overflow: scroll;
}

.bold-text-32 {
  font-family: Playfair Display, sans-serif;
  font-weight: 400;
}

.heading-8 {
  color: var(--black);
  text-align: center;
  max-width: 774px;
  margin-top: 0;
  margin-left: 333px;
  font-size: 32px;
}

.text-block-18 {
  color: var(--black);
  text-align: center;
  max-width: none;
  max-height: none;
  margin-left: 0;
}

.text-block-19 {
  color: var(--black);
  text-align: center;
  width: auto;
  margin-left: 0;
  font-family: Playfair Display, sans-serif;
  text-decoration: none;
}

.text-block-20 {
  color: var(--black);
  text-align: center;
  width: auto;
  margin-top: 0;
  margin-left: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
}

.bold-text-33 {
  font-weight: 400;
}

.heading-9 {
  color: var(--black);
  text-align: center;
  width: 808px;
  margin-top: 56px;
  margin-left: 316px;
  font-size: 32px;
}

.text-block-21 {
  color: var(--black);
  text-align: center;
  width: 774px;
  height: 72px;
  max-height: 72px;
  margin-left: 333px;
  font-family: Inter, sans-serif;
}

.bold-text-34 {
  width: 1166px;
  margin-left: 137px;
}

.bold-text-35 {
  text-align: center;
  max-width: 774px;
  margin-left: 333px;
}

.container-14 {
  color: var(--white);
  max-width: 379px;
  max-height: 400px;
}

.container-15 {
  z-index: 0;
  background-color: var(--white);
  color: var(--white);
  justify-content: center;
  align-items: stretch;
  max-width: 379px;
  height: 400px;
  max-height: 400px;
  display: block;
  position: static;
  top: 72px;
  left: 136px;
}

.container-16 {
  max-width: 379px;
  padding-top: 72px;
  position: relative;
  top: 72px;
  left: 925px;
}

.text-block-22 {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}

.container-17 {
  clear: none;
  background-color: #e4dcfb;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  max-width: none;
  padding: 32px;
  position: absolute;
  inset: auto auto 0%;
}

.text-block-23 {
  text-align: left;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: auto;
}

.image-27 {
  max-width: 75%;
}

.text-block-24 {
  color: #121212;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 17px;
}

.heading-10 {
  color: #121212;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 32px;
}

.bold-text-36 {
  line-height: 1;
}

.image-28 {
  text-align: center;
  width: 5%;
  max-width: 100%;
  margin-bottom: 20px;
  display: inline-block;
}

.bold-text-37 {
  display: block;
}

.container-18 {
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1.25fr;
  grid-auto-columns: 1fr;
  margin-top: 56px;
  margin-bottom: 56px;
  display: block;
  position: static;
}

.container-19 {
  background-color: #f4f4f6;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 32px;
  position: absolute;
  inset: auto auto 0%;
}

.div-block-8 {
  background-color: var(--white);
  color: var(--white);
  border-radius: 24px;
  height: auto;
  margin-left: 10px;
  padding: 32px 32px 8px;
}

.text-block-25 {
  color: var(--black);
  text-align: left;
  padding-bottom: 24px;
  font-size: 16px;
}

.bold-text-38 {
  opacity: 1;
  color: var(--black);
  max-width: none;
  font-size: 15px;
}

.container-20 {
  margin-bottom: 56px;
}

.image-29 {
  max-width: 90%;
}

.image-30 {
  max-width: 85%;
  margin-top: 30px;
  display: inline-block;
}

.image-31 {
  max-width: 80%;
}

.image-32 {
  max-width: 70%;
}

.bold-text-39 {
  color: #d0d0d0;
  font-weight: 600;
}

.div-block-9 {
  background-color: var(--white);
  border-radius: 24px;
  height: 390px;
  margin-left: 10px;
  padding-top: 20px;
}

.column-45 {
  background-color: var(--white);
  outline-color: var(--black);
  outline-offset: 0px;
  mix-blend-mode: normal;
  border-radius: 1px;
  outline-width: 3px;
  outline-style: none;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.column-46 {
  border: 1px #000;
  border-style: none solid;
  border-radius: 1px;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.columns-16 {
  border: 1px solid #000;
  border-radius: 1px;
  width: 100%;
}

.column-47 {
  border: 1px #000;
  border-radius: 1px;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  overflow: visible;
}

.column-48 {
  text-align: left;
  border: 1px #000;
  border-style: none solid;
  border-radius: 0;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.column-49 {
  text-align: left;
  border: 1px #000;
  border-style: none solid;
  border-radius: 1px;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.column-50 {
  text-align: left;
  border: 1px #000;
  border-style: none solid;
  border-radius: 1px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.ta {
  color: var(--black);
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 17px;
}

.table {
  color: var(--black);
  text-align: left;
  margin-bottom: 16px;
  font-size: 17px;
}

.table-text {
  color: var(--black);
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.text-block-29 {
  color: var(--grey6);
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.bold-text-40 {
  color: var(--black);
  text-align: left;
  font-size: 17px;
}

.text-block-30 {
  color: var(--black);
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.columns-17 {
  border: 1px solid #000;
  border-top-style: none;
  width: 100%;
}

.text-block-31 {
  color: var(--grey6);
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.link-block-7 {
  text-align: left;
}

.bold-text-41 {
  font-family: Playfair Display, sans-serif;
}

.text-block-34 {
  color: var(--black);
  text-align: left;
  background-color: #ffd7cf;
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.text-block-35 {
  color: var(--black);
  background-color: #e4dcfb;
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.text-block-36 {
  color: var(--black);
  background-color: #e3fcf9;
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.header {
  background-color: var(--white);
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 84px;
  display: flex;
  box-shadow: 0 1px 1px #12121214;
}

.nav-link-3, .nav-link-4, .nav-link-5 {
  display: none;
}

.secondary-button {
  background-color: var(--blue);
  color: var(--white);
  background-image: linear-gradient(45deg, #412cff, #6e4aff);
  border-radius: 8px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 32px;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: box-shadow .3s ease-in-out;
  display: flex;
}

.secondary-button:hover {
  box-shadow: 0 10px 15px #0000001a;
}

.secondary-button.android-link {
  transition-timing-function: ease;
}

.secondary-button.android-link:hover {
  box-shadow: 0 4px 15px #0000001a;
}

.container-21 {
  background-color: #a28080;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.brand-2 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: block;
}

.image-33 {
  margin-top: 0;
}

.section-17 {
  justify-content: space-between;
  display: flex;
}

.div-block-10 {
  width: 20%;
}

.div-block-11 {
  width: 80%;
}

.container-22 {
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.logo {
  width: 20%;
}

.buttons-container {
  object-fit: fill;
  flex: 1;
  justify-content: flex-end;
  width: 80%;
}

.nav-menu-4 {
  justify-content: space-between;
  width: 55%;
  display: flex;
}

.grid-2 {
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  height: 200px;
  display: block;
}

.image-34 {
  width: 50%;
}

.footer {
  height: 280px;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -1px #12121214;
}

.list-item {
  color: var(--grey-5);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.list-item-2, .list-item-3, .list-item-4, .list-item-5, .list-item-6, .list-item-7, .list-item-8 {
  color: var(--grey-5);
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.image-36 {
  order: -1;
  width: 100%;
  max-width: 100%;
  padding-right: 6px;
}

.normal-link-container {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.normal-link {
  color: var(--grey-5);
  margin-right: 16px;
  padding-bottom: 4px;
  font-family: Satoshi, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.normal-link:hover {
  color: var(--grey-4);
}

.text-block-38 {
  color: var(--grey-4);
  margin-right: 2%;
  font-family: Inter, sans-serif;
  font-size: 13px;
  position: static;
}

.container-23 {
  justify-content: flex-start;
  margin-top: 24px;
  display: block;
}

.div-block-18 {
  justify-content: space-between;
  width: 62%;
  display: flex;
}

.h2-heading {
  color: var(--grey6);
  text-align: center;
  letter-spacing: 0;
  font-family: Ebgaramond, sans-serif;
  font-size: 48px;
  font-weight: 500;
}

.h2-heading.head {
  text-align: left;
  align-self: flex-end;
  margin-bottom: 2%;
  font-family: Satoshi, sans-serif;
  font-size: 170%;
}

.h4-subtitle {
  color: var(--grey6);
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0%;
  font-family: Satoshi, sans-serif;
  font-size: 120%;
  font-weight: 500;
  line-height: 34px;
}

.text-section {
  margin-top: 5%;
  margin-bottom: 0%;
  display: block;
}

.small-title {
  color: var(--grey6);
  margin-top: 2%;
  margin-bottom: 3%;
  font-family: Satoshi, sans-serif;
  font-size: 90%;
  font-weight: 600;
  line-height: 24px;
  display: block;
}

.small-title.hidden {
  display: none;
}

.basic-text {
  color: var(--grey6);
  text-align: left;
  -webkit-text-stroke-color: var(--black);
  margin-bottom: 0;
  margin-left: 0%;
  margin-right: 0%;
  font-family: Satoshi, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.basic-text.bold {
  text-align: center;
  font-weight: 600;
}

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

.basic-text.hidden {
  display: none;
}

.legal-notice {
  margin-bottom: 72px;
  margin-left: 4%;
  margin-right: 4%;
  display: block;
}

.faq-sub-category {
  margin-bottom: 40px;
  display: block;
}

.blue-link {
  color: var(--sea);
  font-weight: 600;
}

.list-2 {
  padding-left: 16px;
}

.div-block-19 {
  background-color: #12121214;
  height: 1px;
}

.container-24 {
  max-width: 100%;
}

.container-25 {
  display: block;
}

.grid-3 {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.image-37 {
  padding-right: 8px;
}

.image-38 {
  margin-bottom: 0;
  padding-bottom: 16px;
}

.container-26 {
  display: block;
}

.div-block-20, .div-block-21, .div-block-22 {
  flex-direction: column;
  display: flex;
}

.image-40 {
  object-fit: cover;
  width: 20%;
  position: absolute;
  inset: -50% 1% 0% auto;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.div-block-23 {
  flex-direction: column;
  display: flex;
}

.image-41 {
  padding-right: 6px;
}

.div-block-24, .div-block-25 {
  flex-direction: column;
  display: flex;
}

.column-51 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.section-19 {
  height: 280px;
  padding-top: 40px;
  display: none;
  overflow: hidden;
}

.image-43 {
  margin-bottom: 8px;
}

.cgu-category {
  margin-bottom: 56px;
}

.cgu-category.hidden {
  display: block;
}

.container-27 {
  max-width: 770px;
}

.section-20 {
  margin-top: 96px;
  margin-bottom: 24px;
}

.section-21 {
  display: block;
}

.grid-5 {
  grid-template-columns: 1fr 1fr 1fr;
}

.text-block-39, .table-header {
  color: var(--grey6);
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.column-52 {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 16px;
  padding-bottom: 16px;
}

.columns-19 {
  border: 1px solid #000;
  height: auto;
}

.grid-6 {
  border: 1px solid #000;
  grid-template-areas: "Area Area-2"
                       "Area-3 Area-4";
}

.column-53 {
  border: 1px solid #000;
  border-style: solid solid none none;
  padding-top: 16px;
  padding-bottom: 16px;
}

.column-54 {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  padding-top: 16px;
  padding-bottom: 16px;
}

.column-55 {
  border-top: 1px solid #000;
  border-left: 1px #000;
  border-right: 1px #000;
}

.columns-20 {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.column-56 {
  border: 1px solid #000;
  border-bottom-style: none;
}

.column-57 {
  border-top: 1px solid #000;
}

.container-28 {
  max-width: 100%;
  padding-left: 4%;
  padding-right: 4%;
}

.container-29 {
  max-width: 770px;
}

.text-block-40 {
  color: var(--grey6);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.h5-heading {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Ebgaramond, sans-serif;
  font-size: 24px;
}

.image-44, .image-45, .image-46, .image-47 {
  width: 100%;
  margin-bottom: 16px;
}

.section-22 {
  background-color: var(--terracota-1);
  padding-top: 96px;
  padding-bottom: 96px;
}

.container-30 {
  max-width: 770px;
}

.h3-heading {
  color: var(--grey6);
  text-align: center;
  margin-top: 0;
  margin-bottom: 56px;
  font-family: Ebgaramond, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
}

.div-block-27 {
  margin-top: 32px;
  margin-bottom: 24px;
}

.grid-8 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.name {
  color: var(--grey6);
  text-align: center;
  margin-bottom: 0;
  font-family: Ebgaramond, sans-serif;
  font-size: 18px;
}

.role {
  color: var(--grey-4);
  text-align: center;
  font-size: 14px;
}

.div-block-28 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.image-48 {
  width: 100%;
  margin-bottom: 16px;
}

.div-block-29 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.image-49, .image-50 {
  width: 100%;
  margin-bottom: 16px;
}

.div-block-30, .div-block-31 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.image-51, .image-52, .image-53, .image-54, .image-55, .image-56, .image-57, .image-58, .image-59, .image-60, .image-61, .image-62, .image-63, .image-64, .image-65, .image-66, .image-67 {
  width: 100%;
  margin-bottom: 16px;
}

.container-31 {
  max-width: 770px;
}

.section-23 {
  padding-top: 96px;
  padding-bottom: 96px;
}

.div-block-32 {
  margin-top: 32px;
}

.image-68, .image-69, .image-70, .image-71 {
  width: 100%;
  margin-bottom: 16px;
}

.container-32 {
  max-width: 770px;
}

.section-24 {
  margin-top: 96px;
  margin-bottom: 96px;
}

.container-33 {
  display: none;
}

.grid-9 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 80px;
  display: none;
}

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

.section-25 {
  background-color: var(--terracota-1);
  padding-top: 96px;
  padding-bottom: 48px;
}

.tag {
  background-color: var(--terracota-4);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 32px;
  margin-bottom: 16px;
  display: flex;
}

.text-block-41 {
  color: var(--white);
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.text-subtitle {
  color: var(--grey6);
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.text-block-42 {
  color: var(--grey-4);
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.product-title {
  color: var(--grey6);
  margin-bottom: 24px;
  font-family: Ebgaramond, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 34px;
}

.text-tag {
  color: var(--terracota-1);
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.product {
  margin-bottom: 48px;
}

.container-34 {
  max-width: 770px;
}

.line-divider {
  background-color: var(--grey-2);
  width: 100%;
  height: 2px;
  margin-bottom: 48px;
}

.container-35 {
  max-width: 770px;
}

.section-26 {
  margin-top: 96px;
  margin-bottom: 96px;
}

.grid-10 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 2fr;
  height: 500px;
}

.section-27 {
  margin-top: 128px;
}

.image-72 {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.grid-11 {
  grid-column-gap: 24px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.image-73 {
  width: 50%;
}

.section-28 {
  display: flex;
}

.div-block-34 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 32px;
  padding-right: 136px;
  display: flex;
}

.grid-12 {
  grid-template-rows: auto;
}

.container-37 {
  max-width: 1168px;
}

.section-29 {
  background-color: var(--olive-1);
  padding-top: 96px;
  padding-bottom: 96px;
  display: none;
}

.heading-11 {
  color: var(--grey6);
  width: 90%;
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-weight: 500;
}

.div-block-36 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.image-76 {
  width: 20%;
  margin-right: 32px;
}

.div-block-37 {
  flex-direction: column;
  display: flex;
}

.image-77 {
  padding-left: 8px;
}

.section-30 {
  background-color: var(--terracota-1);
  padding-top: 96px;
  padding-bottom: 96px;
  display: block;
}

.container-38 {
  max-width: 770px;
}

.text-span-23, .text-span-24 {
  font-family: Inter, sans-serif;
}

.div-block-39, .div-block-40 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.table-container {
  margin-top: 40px;
}

.div-block-41, .div-block-42 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-43 {
  margin-top: 16px;
}

.section-31, .section-32 {
  display: none;
}

.container-39 {
  align-items: flex-start;
  display: flex;
}

.section-33 {
  margin-top: 100px;
}

.section-34 {
  background-color: var(--olive-1);
  padding-top: 80px;
  padding-bottom: 80px;
  display: none;
}

.grid-13 {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  display: block;
}

.h1-heading {
  color: var(--grey6);
  margin-top: 0;
  margin-bottom: 7%;
  margin-left: 0;
  padding-left: 0;
  font-family: Satoshi, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}

.text-span-25 {
  color: var(--olive-3);
}

.text-span-26 {
  color: var(--grey6);
}

.section-35 {
  background-color: var(--grey-1);
  flex-direction: row;
  align-items: center;
  height: 80vh;
  display: flex;
}

.div-block-44 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.image-79 {
  width: 25%;
  margin-bottom: 22px;
}

.div-block-45 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

.text-block-43 {
  color: var(--grey6);
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.grid-14 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.text-block-44 {
  color: var(--grey6);
  text-align: center;
  font-family: Quincycf, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.div-block-46 {
  background-color: #0000;
  padding: 16px;
}

.card-title {
  color: var(--grey6);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.card-title.left {
  text-align: left;
}

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

.text-span-27 {
  color: var(--terracota-4);
}

.image-80 {
  margin-bottom: 24px;
}

.div-block-47 {
  border: 1px solid var(--grey-2);
  border-radius: 16px;
}

.div-block-48 {
  padding-left: 16px;
  padding-right: 16px;
}

.section-36 {
  padding-top: 112px;
  padding-bottom: 112px;
  display: block;
}

.text-span-28 {
  color: var(--terracota-4);
}

.div-block-49 {
  background-color: #0000;
  padding: 16px;
}

.image-81 {
  margin-bottom: 24px;
}

.div-block-50 {
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
}

.text-span-29 {
  color: var(--terracota-4);
}

.div-block-51 {
  background-color: #0000;
  padding: 16px;
}

.image-82 {
  margin-bottom: 24px;
}

.div-block-52 {
  padding-left: 16px;
  padding-right: 16px;
}

.image-85, .image-86, .image-87, .image-88 {
  width: 100%;
  margin-bottom: 16px;
}

.div-block-53 {
  flex-direction: column;
  align-items: center;
  max-width: 770px;
  margin-bottom: 64px;
  display: flex;
}

.text-block-45 {
  color: var(--grey-5);
  text-align: center;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.container-43 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.grid-15, .grid-16 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-54 {
  background-color: var(--white);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 24px 16px;
}

.div-block-55 {
  background-color: var(--white);
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.image-89 {
  margin-bottom: 24px;
}

.div-block-56 {
  background-color: var(--white);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 24px 16px;
}

.div-block-57 {
  padding: 16px 16px 8px;
}

.image-90 {
  margin-bottom: 24px;
}

.div-block-58 {
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.image-91 {
  margin-bottom: 24px;
}

.div-block-59 {
  background-color: var(--white);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 11px 16px 8px;
}

.section-37 {
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
}

.grid-17 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-60 {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
}

.div-block-61 {
  padding-left: 16px;
  padding-right: 16px;
}

.div-block-62 {
  margin-bottom: 24px;
  padding-top: 24px;
  padding-left: 16px;
}

.div-block-63 {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
}

.div-block-64 {
  padding-left: 16px;
  padding-right: 16px;
}

.div-block-65 {
  margin-bottom: 16px;
  padding-top: 24px;
  padding-left: 16px;
}

.link-44 {
  color: var(--grey-4);
  font-family: Inter, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.div-block-66 {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
}

.div-block-67 {
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
}

.div-block-68 {
  padding-top: 24px;
  padding-left: 16px;
}

.text-block-46 {
  color: var(--grey-4);
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.section-38 {
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
}

.grid-18 {
  grid-template-rows: auto;
  align-items: center;
}

.text-span-30 {
  text-align: center;
  padding-left: 32px;
  padding-right: 32px;
  font-weight: 500;
}

.section-39 {
  background-color: var(--light-grey-2);
  padding-top: 0;
  padding-bottom: 96px;
  display: block;
}

.image-93 {
  width: 380px;
}

.section-40 {
  background-color: var(--olive-1);
  padding-top: 56px;
  padding-bottom: 56px;
  display: block;
}

.grid-19 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 4fr;
  align-items: center;
}

.text-block-47 {
  color: var(--grey6);
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.grid-20 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 4fr;
}

.section-41 {
  background-color: var(--terracota-2);
  padding-top: 56px;
  padding-bottom: 56px;
  display: block;
}

.section-42 {
  background-color: var(--olive-1);
  flex-direction: row;
  align-items: center;
  height: 560px;
  display: none;
}

.image-94 {
  object-fit: cover;
  height: 100%;
  max-height: 560px;
  position: absolute;
}

.div-block-69 {
  background-color: var(--white);
  text-align: center;
  border-radius: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
}

.text-block-48 {
  color: var(--grey6);
  margin-left: 100px;
  margin-right: 100px;
  font-family: Inter, sans-serif;
  font-size: 20px;
}

.div-block-70 {
  margin-top: 40px;
  display: flex;
}

.grid-21 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: 32px;
  margin-right: 32px;
}

.circle {
  background-color: var(--blue);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 8px;
  display: flex;
}

.text-block-49 {
  font-family: Ebgaramond, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.div-block-71 {
  align-items: center;
}

.text-block-50 {
  color: var(--grey6);
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.div-block-72 {
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.text-block-51 {
  color: var(--grey-5);
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.div-block-73 {
  background-color: var(--terracota-2);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
}

.div-block-74 {
  background-color: #0000;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding-top: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
}

.div-block-75 {
  background-color: #0000;
  padding-top: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
}

.div-block-76 {
  padding-top: 32px;
}

.div-block-77 {
  flex-direction: column;
  align-items: center;
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
}

.div-block-78 {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 96px;
  display: flex;
}

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

.header-page {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-color: #fff;
  flex-wrap: wrap;
  place-content: flex-end space-between;
  align-items: flex-end;
  height: auto;
  margin-top: 4%;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
  position: relative;
}

.image-97 {
  object-fit: cover;
  margin-left: 88px;
}

.image-98 {
  object-fit: cover;
}

.image-99 {
  margin-right: 88px;
}

.section-43 {
  background-color: var(--olive-1);
  height: 80vh;
  padding-right: 136px;
  display: none;
}

.image-106 {
  height: 80vh;
  margin-right: 0;
  display: block;
}

.div-block-79 {
  align-items: center;
  display: flex;
  position: absolute;
  left: -115px;
}

.div-block-80 {
  margin-left: 112px;
  margin-right: 136px;
}

.div-block-81 {
  align-items: center;
  display: flex;
}

.image-107, .image-108 {
  height: 72px;
}

.link-block-9 {
  margin-left: 24px;
}

.text-block-53 {
  color: var(--olive-3);
  margin-top: 24px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  display: none;
}

.image-110 {
  height: 80vh;
}

.div-block-82, .div-block-83 {
  display: none;
}

.text-block-54 {
  color: var(--olive-3);
  margin-top: 24px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.text-span-32 {
  color: var(--grey6);
}

.image-113 {
  border-radius: 0;
}

.div-block-84 {
  background-color: #0000;
  padding-top: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
}

.text-span-33, .text-span-34, .text-span-35 {
  font-weight: 600;
}

.div-block-85 {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  display: flex;
}

.text-span-36, .text-span-37, .text-span-38 {
  font-family: Ebgaramond, sans-serif;
  font-size: 20px;
}

.image-115 {
  width: 40%;
  max-width: 30%;
  margin-bottom: 5%;
}

.container-50 {
  flex-direction: row;
  justify-content: flex-start;
  display: flex;
}

.image-116 {
  height: 550px;
  position: relative;
  left: -195px;
}

.section-44 {
  height: 550px;
  display: none;
}

.div-block-86 {
  overflow: visible;
}

.div-block-87 {
  justify-content: space-between;
  display: flex;
}

.image-117, .image-118 {
  height: 50px;
}

.new-home-section {
  clear: none;
  aspect-ratio: auto;
  background-color: var(--white);
  object-fit: fill;
  object-position: 50% 45%;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  max-height: none;
  margin-bottom: 0;
  padding-top: 6%;
  padding-bottom: 3%;
  display: flex;
  position: static;
  inset: 0%;
  overflow: visible;
}

.image-119 {
  height: 400px;
  position: static;
  left: -119px;
}

.container-51 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.div-block-88 {
  margin-left: 6%;
  position: static;
}

.div-block-89 {
  justify-content: center;
  align-items: center;
  padding-right: 0;
  display: flex;
}

.image-120, .image-121 {
  height: 50px;
}

.link-block-13 {
  margin-right: 8px;
}

.text-block-56 {
  color: var(--olive-3);
  margin-top: 24px;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.container-52 {
  display: flex;
}

.section-46, .section-47 {
  display: none;
}

.section-48 {
  height: 84px;
}

.nav-menu-5 {
  flex-direction: row;
  justify-content: flex-end;
  display: flex;
}

.navbar-3 {
  justify-content: space-between;
  align-items: center;
  height: 84px;
  display: flex;
}

.container-53 {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.nav-menu-6 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: space-between;
  width: auto;
  display: flex;
}

.image-122, .image-123 {
  min-width: auto;
  max-width: 140px;
  height: auto;
}

.header-english {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 1px #0003;
}

.grid-22 {
  clear: none;
  grid-column-gap: 20%;
  grid-row-gap: 20%;
  object-fit: contain;
  grid-template: "."
  / 1fr 1fr 1.25fr;
  justify-content: stretch;
  justify-items: stretch;
  margin-bottom: 1%;
  line-height: 1;
  display: flex;
}

.div-block-91, .div-block-92, .div-block-93 {
  flex-direction: column;
  display: flex;
}

.image-124 {
  object-fit: cover;
  width: 20%;
  position: absolute;
  top: -50%;
  right: 1%;
}

.footer-english {
  z-index: auto;
  float: none;
  clear: none;
  background-color: #fff;
  height: auto;
  padding-top: 1%;
  padding-bottom: 4%;
  display: block;
  position: relative;
  inset: auto 0%;
  overflow: hidden;
  box-shadow: 0 -1px #12121214;
}

.footer-english.web {
  display: block;
}

.div-block-94 {
  flex-flow: column;
  justify-content: flex-start;
  display: flex;
}

.container-54 {
  margin-top: 0%;
}

.dropdown-list {
  background-color: var(--blue);
}

.dropdown-list.w--open {
  border-radius: 16px;
  margin-top: 8px;
}

.dropdown-link {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  transition: color .2s;
}

.dropdown-link:hover {
  color: var(--grey-4);
}

.dropdown-link-2 {
  font-family: Inter, sans-serif;
}

.tertiary-button {
  border: 2.5px solid var(--blue);
  background-color: var(--white);
  border-radius: 40px;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  padding: 8px 12px 8px 16px;
  transition: box-shadow .2s;
  display: flex;
  position: static;
}

.tertiary-button:hover {
  box-shadow: 0 4px 15px #0000001a;
}

.icon-3 {
  margin: 0 0 0 8px;
  position: static;
}

.text-block-57 {
  color: var(--grey6);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.link-block-14, .link-block-14.w--current {
  padding-bottom: 24px;
}

.dropdown-list-2 {
  background-color: var(--white);
}

.dropdown-list-2.w--open {
  border: 2.5px solid var(--blue);
  border-radius: 16px;
  margin-top: 4px;
  box-shadow: 0 10px 15px #0000001a;
}

.dropdown-link-3 {
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.dropdown-toggle-2 {
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.link-block-15 {
  margin-bottom: 2%;
}

.div-block-95 {
  font-family: Satoshi, sans-serif;
}

.text-span-39 {
  color: var(--olive-3);
}

.text-span-40, .text-span-41, .text-span-42, .text-span-43 {
  font-weight: 600;
}

.image-125 {
  margin-bottom: 16px;
}

.grid-23 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-content: start;
  place-items: start;
  margin-top: 80px;
}

.image-126 {
  width: 100%;
}

.heading-12 {
  color: var(--black);
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.heading-13, .heading-14, .heading-15, .heading-16, .heading-17, .heading-18, .heading-19, .heading-20 {
  color: var(--black);
}

.image-127, .image-128 {
  width: 100%;
  margin-bottom: 16px;
}

.image-129 {
  width: 40%;
  min-width: auto;
  max-width: 100%;
  max-height: 100%;
}

.image-130 {
  max-width: 20%;
  margin-top: 3%;
  margin-bottom: 3%;
  display: block;
}

.image-131 {
  max-width: 130px;
}

.footer-english-phone {
  z-index: auto;
  float: none;
  clear: none;
  background-color: #fff;
  height: auto;
  padding-top: 1%;
  padding-bottom: 4%;
  display: block;
  position: relative;
  inset: auto 0%;
  overflow: hidden;
  box-shadow: 0 -1px #12121214;
}

.image-132 {
  align-self: stretch;
}

.image-133, .image-134 {
  max-width: 12%;
}

.div-block-98 {
  display: none;
}

.basic-text-copy {
  color: var(--grey-5);
  text-align: center;
  margin-bottom: 5%;
  margin-left: 15%;
  margin-right: 15%;
  font-family: Satoshi, sans-serif;
  font-size: 78%;
  font-weight: 400;
}

.column-58 {
  text-align: left;
  border: 1px #000;
  border-left-style: solid;
  border-radius: 1px;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.columns-21 {
  border: 1px solid #000;
  width: 100%;
}

.column-59 {
  outline-offset: 0px;
  mix-blend-mode: normal;
  background-color: #fff;
  border-radius: 1px;
  outline: 3px #000;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.table-header-2 {
  color: #121212;
  font-family: Satoshi, sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

.columns-22 {
  border: 1px solid #000;
  border-radius: 1px;
  width: 100%;
}

.column-60 {
  text-align: left;
  border: 1px #000;
  border-right-style: solid;
  border-radius: 0;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.column-61 {
  border: 1px #000;
  border-style: none solid;
  border-radius: 1px;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.table-text-2 {
  color: #000;
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.text-block-58 {
  color: #000;
  background-color: #e3fcf9;
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.column-62 {
  border: 1px #000;
  border-radius: 1px;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  overflow: visible;
}

.table-2 {
  color: #000;
  text-align: left;
  margin-bottom: 16px;
  font-size: 17px;
}

.text-block-59 {
  color: #000;
  background-color: #e4dcfb;
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.text-block-60 {
  color: #000;
  text-align: left;
  background-color: #ffd7cf;
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.column-63 {
  text-align: left;
  border: 1px #000;
  border-style: none solid;
  border-radius: 1px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.column-64 {
  text-align: left;
  object-fit: fill;
  border: 1px #000;
  border-right-style: solid;
  border-radius: 1px;
  height: 100%;
  min-height: 100%;
  max-height: none;
  padding-top: 12px;
  padding-bottom: 12px;
}

.columns-23 {
  border: 1px solid #000;
  border-top-style: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.column-65 {
  outline-offset: 0px;
  mix-blend-mode: normal;
  background-color: #fff;
  border-radius: 1px;
  outline: 3px #000;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.columns-24 {
  border: 1px solid #000;
  border-radius: 1px;
  width: 100%;
}

.column-66 {
  text-align: left;
  border: 1px #000;
  border-style: none solid;
  border-radius: 0;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.column-67 {
  border: 1px #000;
  border-style: none solid;
  border-radius: 1px;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.text-block-61 {
  color: #000;
  background-color: #e3fcf9;
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.column-68 {
  border: 1px #000;
  border-right-style: solid;
  border-radius: 1px;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  overflow: visible;
}

.table-3 {
  color: #000;
  text-align: left;
  margin-bottom: 6%;
  font-size: 17px;
}

.text-block-62 {
  color: #000;
  background-color: #e4dcfb;
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.text-block-63 {
  color: #000;
  text-align: left;
  background-color: #ffd7cf;
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.column-69 {
  text-align: left;
  border: 1px #000;
  border-style: none solid;
  border-radius: 1px;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}

.column-70 {
  height: auto;
  max-height: none;
}

.bold-text-42, .bold-text-43 {
  -webkit-text-stroke-color: var(--grey6);
}

.columns-25 {
  border: 1px solid #000;
}

.text-block-61-copy {
  color: #000;
  background-color: #dfe7ff;
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.footer-french {
  background-color: #fff;
  padding-top: 2%;
  padding-bottom: 3%;
  position: relative;
}

.text-span-44 {
  font-size: 100%;
}

.basic-text-copy {
  color: var(--grey6);
  text-align: left;
  -webkit-text-stroke-color: var(--black);
  margin-bottom: 0;
  margin-left: 0%;
  margin-right: 0%;
  font-family: Satoshi, sans-serif;
  font-size: 78%;
  font-weight: 500;
}

.basic-text-copy.bold {
  text-align: center;
  font-weight: 600;
}

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

.basic-text-copy.hidden {
  display: none;
}

.section-49 {
  background-color: #edf0fd;
  margin-top: 7%;
}

.quick-stack {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  padding: 0 5%;
}

.image-135 {
  max-width: 100%;
  margin-top: 13%;
  margin-bottom: 0%;
  margin-left: 0%;
  padding-top: 0%;
}

.text-hiw {
  color: #505460;
  width: auto;
  padding-bottom: 4%;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.bold-text--hiw {
  color: #412cff;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.cell {
  justify-content: center;
  align-items: flex-start;
  padding-right: 10%;
}

.stack2hiw {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  padding: 0 5%;
}

.section1hiw {
  background-color: #edf0fd;
  margin-top: 7%;
}

.stack1hiw {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  padding: 0% 5% 0;
}

.section2hiw {
  background-color: var(--white);
  margin-top: 0%;
}

.h1-heading-hiw {
  color: var(--grey6);
  margin-top: 0;
  margin-bottom: 7%;
  margin-left: 0;
  padding-left: 0;
  font-family: Satoshi, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

.cell-2 {
  justify-content: center;
  align-items: flex-start;
  padding-left: 10%;
}

.image-135-copy {
  max-width: 100%;
  margin-top: 15%;
  margin-bottom: 15%;
  padding-top: 0%;
}

.section3hiw-copy {
  background-color: #edf0fd;
  background-image: linear-gradient(#1900cd, #6310ff);
  margin-top: 0%;
}

.h3-heading-hiw {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 7%;
  margin-left: 0;
  padding-left: 0;
  font-family: Satoshi, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

.text-hiw-3 {
  color: #ccd9ff;
  -webkit-text-stroke-color: #c4d3ff;
  width: auto;
  padding-bottom: 4%;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.bold-text--hiw-3 {
  color: #fff;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.image-135-copy2 {
  width: auto;
  min-width: auto;
  max-width: 100%;
  max-height: 90%;
  margin-top: 0%;
  margin-bottom: 0%;
  padding-top: 0%;
  padding-bottom: 0%;
}

.cell-3 {
  justify-content: center;
  align-items: center;
  padding-top: 2%;
  padding-bottom: 2%;
}

.cell-3-copy {
  justify-content: center;
  align-items: center;
  padding-top: 3%;
  padding-bottom: 2%;
  padding-left: 10%;
}

.section1hiw-copy {
  background-color: #edf0fd;
  margin-top: 7%;
}

.stack1hiw-copy {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  padding: 0% 5% 0;
}

.cell-4-copy {
  padding-left: 10%;
}

.cell-copy {
  justify-content: center;
  align-items: flex-start;
  padding-right: 10%;
}

.section1hiw-copy-copy {
  background-color: #edf0fd;
  margin-top: 76px;
}

.container-56 {
  justify-content: space-between;
  align-items: center;
  max-width: 76%;
  padding-top: 10%;
  padding-bottom: 5%;
  display: flex;
}

.heading-21 {
  text-align: center;
  font-family: Satoshi, sans-serif;
  font-size: 40px;
}

.container-58 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  aspect-ratio: auto;
  background-image: linear-gradient(153deg, #5d00e8, #1b4df5);
  border-radius: 16px;
  flex-flow: column;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: none;
  margin-left: 4%;
  margin-right: 4%;
  padding-top: 4.5%;
  display: flex;
}

.image-137 {
  vertical-align: baseline;
  align-self: center;
  max-width: 20%;
  padding-top: 2%;
  padding-right: 0%;
}

.image-138 {
  align-self: center;
  max-width: 11%;
  margin-bottom: 1%;
}

.paragraph-7 {
  color: var(--white);
  text-align: center;
  font-family: Satoshi, sans-serif;
  font-size: 11px;
  line-height: 1.3;
}

.section-50 {
  background-color: #000297;
  padding-top: 5%;
  padding-bottom: 5%;
}

.paragraph-8 {
  color: var(--grey-5);
  text-align: center;
  margin-bottom: 4%;
  font-family: Satoshi, sans-serif;
  font-size: 12.5px;
  line-height: 1.3;
}

.text-block-64 {
  color: #121212;
  text-align: center;
  padding-bottom: 1%;
  font-family: Satoshi, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.section-51 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.container-59 {
  flex: 0 auto;
  max-width: 100%;
  margin-right: 4%;
  display: flex;
}

.container-60 {
  margin-left: 4%;
}

.container-61 {
  max-width: 100%;
  margin-left: 4%;
  margin-right: 4%;
}

.section-52, .section-53 {
  margin-left: 4%;
  margin-right: 4%;
}

.body-11 {
  background-color: #f3f4fc;
}

.image-139 {
  max-width: 26%;
}

.container-62 {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  max-width: 100%;
  margin-bottom: 0%;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0%;
  display: flex;
}

.body-12, .body-13, .body-14, .body-15 {
  background-color: #f3f4fc;
}

.column-71 {
  object-fit: contain;
  background-color: #edf0fd00;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 0;
  padding-right: 6px;
  display: flex;
}

.container-63 {
  display: block;
}

.column-72 {
  background-color: #edf0fd00;
  flex-flow: column;
  padding-left: 0;
  padding-right: 6px;
  display: flex;
}

.div-block-101 {
  object-fit: fill;
  background-color: #4700ec;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 320px;
  min-height: 100%;
  margin-right: 0;
  display: flex;
}

.columns-26 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #fff0;
  flex-flow: row;
  flex: 1;
  align-items: stretch;
  margin-top: 0%;
  margin-left: 4%;
  margin-right: 4%;
  display: block;
}

.image-149 {
  max-width: 32%;
  display: block;
}

.section-54 {
  aspect-ratio: auto;
  object-fit: fill;
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100%;
  padding-top: 4%;
  padding-bottom: 5%;
  display: flex;
}

.column-73 {
  background-color: #edf0fd00;
  flex-flow: column;
  padding-left: 0;
  padding-right: 6px;
  display: flex;
}

.div-block-102 {
  background-color: #edf0fd;
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 120px;
  padding: 6% 9% 4%;
  display: flex;
}

.text-block-65 {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.section-50-copy {
  background-color: #f3f4fc;
  padding-top: 5%;
  padding-bottom: 2%;
}

.new {
  border: 1px none var(--grey6);
  color: #121212;
  text-align: center;
  margin-bottom: 1%;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.bold-text-44 {
  padding-bottom: 4px;
  font-size: 15px;
  line-height: 1.3;
  display: block;
}

.image-140-copy {
  max-width: 68%;
}

.image-149-copy {
  max-width: 29%;
  display: block;
}

.text-block-64-copy {
  color: #121212;
  text-align: center;
  padding-bottom: 3%;
  font-family: Satoshi, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.section-54-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  object-fit: fill;
  background-color: #f3f4fc;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100%;
  padding-top: 0%;
  padding-bottom: 0%;
  display: block;
}

.column-74 {
  padding-left: 0;
  padding-right: 0;
}

.div-block-102-copy {
  background-color: #fff;
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 230px;
  padding: 6% 9% 4%;
  display: flex;
}

.image-150 {
  max-width: 70%;
  height: 10%;
}

.image-150-copy {
  max-width: 70%;
  height: 8%;
  margin-bottom: 8%;
}

.image-150-copy-copy {
  max-width: 70%;
  height: 11%;
  margin-bottom: 8%;
}

.bold-text-45 {
  color: #fff;
}

.dropdown-toggle-3 {
  object-fit: fill;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: static;
}

.container-58-copy {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-image: linear-gradient(153deg, #7898ff, #958bff);
  border-radius: 16px;
  flex-flow: column;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  max-width: none;
  margin-left: 28%;
  margin-right: 4%;
  padding-top: 4.5%;
  display: flex;
}

.new-home-section-copy {
  clear: none;
  aspect-ratio: auto;
  background-color: var(--white);
  object-fit: fill;
  object-position: 50% 45%;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  max-height: none;
  margin-bottom: 0;
  padding-top: 6.5%;
  padding-bottom: 0%;
  display: flex;
  position: static;
  inset: 0%;
  overflow: visible;
}

.image-137-copy {
  vertical-align: baseline;
  align-self: flex-end;
  max-width: 20%;
  margin-right: 3%;
  padding-top: 2%;
  padding-right: 0%;
}

.section-54-copy {
  aspect-ratio: auto;
  object-fit: fill;
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100%;
  padding-top: 4%;
  padding-bottom: 4%;
  display: flex;
}

.section-55 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-align: center;
  background-color: #fff0;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 4%;
  margin-left: 0%;
  margin-right: 0%;
  padding-top: 5%;
  padding-bottom: 0%;
  padding-left: 8%;
  display: flex;
}

.text-block-66 {
  color: var(--black);
  text-align: center;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  margin-bottom: 0%;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
}

.text-block-64-copy-copy {
  color: #121212;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 1.7%;
  font-family: Satoshi, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  display: flex;
}

.bold-text-46 {
  font-size: 20px;
}

.section-56 {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0%;
  padding-top: 5%;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
}

.image-151 {
  max-width: 100%;
  display: block;
}

.bold-text-46-copy {
  font-size: 15px;
  line-height: 1.1;
}

.paragraph-8-copy {
  color: var(--grey-5);
  text-align: center;
  margin-bottom: 2%;
  font-family: Satoshi, sans-serif;
  font-size: 12.5px;
  line-height: 1.3;
}

.section-57 {
  background-color: #f3f4fc;
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2%;
  margin-left: 4%;
  margin-right: 4%;
  padding-top: 2%;
  padding-bottom: 2%;
  padding-left: 0%;
  display: flex;
}

.link-46 {
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.link-block-17 {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-152 {
  width: 1.2%;
  max-width: 100%;
}

.link-47 {
  color: #121212;
  -webkit-text-stroke-color: #412cff;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
}

.link-47.w--current {
  color: #121212;
  -webkit-text-stroke-color: #121212;
  font-family: Satoshi, sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.section-56-copy {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4%;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
}

.section-56-copy-copy {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4%;
  padding-top: 3%;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
}

.support {
  background-color: #f3f4fc;
  flex-flow: column;
  padding-bottom: 3%;
  display: flex;
}

.section-57-copy {
  background-color: var(--white);
  text-align: center;
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 1%;
  margin-left: 4%;
  margin-right: 4%;
  padding-top: 2%;
  padding-bottom: 2%;
  padding-left: 0%;
  display: block;
}

.paragraph-8-copy-copy-copy {
  color: var(--black);
  text-align: center;
  margin-bottom: .3%;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.text-block-64-copy-copy-copy {
  color: #121212;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2%;
  padding-bottom: 2%;
  font-family: Satoshi, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  display: flex;
}

.link-47-copy {
  color: #412cff;
  -webkit-text-stroke-color: #412cff;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
}

.link-47-copy.w--current {
  color: #121212;
  -webkit-text-stroke-color: #121212;
  font-family: Satoshi, sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.link-block-18 {
  margin-left: 4%;
}

.paragraph-8-copy-copy {
  color: var(--white);
  text-align: center;
  margin-bottom: 3%;
  font-family: Satoshi, sans-serif;
  font-size: 12px;
  line-height: 1.2;
}

.section-54-copy-copy {
  aspect-ratio: auto;
  object-fit: fill;
  background-color: #f3f4fc;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100%;
  padding-top: 4%;
  padding-bottom: 4%;
  display: flex;
}

.section-58 {
  z-index: 50;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: sticky;
}

.container-64 {
  z-index: 60;
  aspect-ratio: auto;
  object-fit: fill;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  position: sticky;
}

.section-54-copy-copy {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  object-fit: fill;
  background-color: #f3f4fc;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 25%;
  max-width: 100%;
  min-height: 100%;
  padding-top: 5.5%;
  padding-bottom: 0%;
  display: block;
  position: fixed;
  inset: 0% auto 0% 0%;
}

.text-block-64-copy-copy-copy {
  color: #121212;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5%;
  padding-bottom: 1%;
  padding-left: 0%;
  font-family: Satoshi, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  display: flex;
}

.container-65 {
  padding-top: 5%;
  padding-bottom: 5%;
}

.text-block-64-copy-copy-copy-copy {
  color: #121212;
  text-align: center;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 5%;
  padding-bottom: 1%;
  padding-left: 8%;
  font-family: Satoshi, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  display: flex;
}

.image-153 {
  max-width: 12%;
}

.h2-heading-2 {
  color: #121212;
  text-align: center;
  letter-spacing: 0;
  font-family: Ebgaramond, sans-serif;
  font-size: 48px;
  font-weight: 500;
}

.h2-heading-2.head {
  text-align: center;
  align-self: flex-end;
  margin-bottom: 2%;
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.image-154 {
  max-width: 12%;
}

.container-66 {
  text-align: center;
  justify-content: center;
  align-items: stretch;
  display: block;
  position: relative;
  top: auto;
}

.section-59 {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  position: fixed;
}

.section-60 {
  height: 78px;
}

.paragraph-9 {
  color: var(--grey-5);
  font-family: DM Sans, sans-serif;
  font-size: 1.125rem;
}

.search {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.search-input {
  aspect-ratio: auto;
  color: var(--black);
  background-image: url('../images/search-icon.svg');
  background-position: 15px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #d1d5dc;
  border-radius: 10px;
  width: 670px;
  max-width: 90%;
  height: 58px;
  padding-left: 45px;
}

.section-62 {
  padding-top: 5rem;
}

.text-block-67 {
  color: #101828;
  font-size: 16px;
  font-weight: 700;
}

.flex-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  pointer-events: auto;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  min-width: 217px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-103 {
  background-color: #dbeafe;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  position: relative;
}

.section-63 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  display: block;
}

.collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.collection-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: flex-start start;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  display: block;
  position: relative;
  overflow: visible;
}

.collection-list.categories-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  display: flex;
}

.collection-item {
  box-sizing: border-box;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  aspect-ratio: auto;
  cursor: pointer;
  object-fit: fill;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  flex-flow: column;
  align-items: center;
  max-width: 220px;
  margin: 0;
  padding: 20px 0;
  display: flex;
}

.heading-22 {
  text-align: left;
}

.div-block-104 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-68 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}

.collection-item-2 {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  margin-bottom: 50px;
  padding: 33px;
  display: block;
  position: relative;
}

.collection-item-2.category-content {
  display: block;
}

.collection-list-wrapper-2 {
  margin-top: 30px;
  position: relative;
}

.collection-list-2 {
  flex-flow: wrap;
  width: 100%;
  display: block;
}

.collection-item-3 {
  text-align: left;
  justify-content: center;
  align-items: center;
  display: block;
  position: relative;
}

.dropdown-2 {
  border: 1px #000;
  border-bottom: 1px solid #0000001a;
  justify-content: flex-start;
  align-items: center;
  display: block;
}

.dropdown-toggle-4 {
  padding-left: 0;
  padding-right: 20px;
  display: flex;
}

.collection-list-wrapper-3 {
  margin-top: 32px;
}

.text-block-69 {
  font-size: 14px;
  font-weight: 500;
}

.icon-4 {
  color: #717182;
  margin-right: 0;
}

.dropdown-list-3 {
  background-color: var(--white);
  color: #4a5565;
  padding-bottom: 15px;
  font-size: 14px;
  display: none;
  position: static;
}

.dropdown-link-4 {
  color: #4a5565;
  padding-left: 0;
}

.empty-state {
  background-color: var(--white);
  text-align: left;
  font-size: 14px;
}

.text-block-70 {
  color: #000;
}

.div-block-105 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #f9fafb;
  background-color: #f9fafb;
  border-radius: 14px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
}

.text-block-71 {
  color: #4a5565;
  font-size: 16px;
}

.link-48, .link-49 {
  color: #155dfc;
  font-size: 16px;
}

.text-block-72 {
  font-size: 14px;
}

.dropdown-3 {
  display: block;
  position: relative;
}

.dropdown-toggle-5 {
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.dropdown-toggle-6 {
  padding: 15px 0;
  display: block;
}

.dropdown-4 {
  border-bottom: 1px solid #0000001a;
  display: block;
}

.text-block-73 {
  color: #000;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
}

.collection-item-4 {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  margin-bottom: 0;
  padding: 33px;
}

.collection-item-4.category-content {
  display: none;
}

.collection-list-wrapper-4 {
  margin-top: 32px;
}

.text-block-74 {
  color: #0a0a0a;
  font-size: 14px;
}

.icon-5 {
  color: #717182;
}

.collection-list-wrapper-5 {
  margin-top: 30px;
}

.empty-state-2 {
  color: #000;
  text-align: left;
  background-color: #fff;
  font-size: 14px;
}

.dropdown-list-4 {
  color: #4a5565;
  background-color: #fff;
  padding-bottom: 15px;
  font-size: 14px;
  display: none;
  position: relative;
}

.text-block-75 {
  font-weight: 400;
  position: relative;
}

.div-block-106 {
  display: flex;
}

.section-64 {
  margin-top: 30px;
}

.section-65 {
  background-color: #f3f4fc;
  margin-top: 4%;
  margin-bottom: 4%;
}

.cgu-category-copy {
  margin-bottom: 30px;
}

.cgu-category-copy.hidden {
  display: block;
}

.small-title-copy {
  color: var(--grey6);
  margin-top: 2%;
  margin-bottom: 1%;
  font-family: Satoshi, sans-serif;
  font-size: 90%;
  font-weight: 600;
  line-height: 24px;
  display: block;
}

.small-title-copy.hidden {
  display: none;
}

.container-28-copy {
  max-width: 100%;
  padding-left: 4%;
  padding-right: 4%;
}

.text-section-copy {
  margin-top: 3%;
  margin-bottom: 0%;
  display: block;
}

.container-58-copy-copy {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-image: linear-gradient(153deg, #7898ff, #958bff);
  border-radius: 16px;
  flex-flow: column;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  max-width: none;
  margin-left: 4%;
  margin-right: 4%;
  padding-top: 4.5%;
  display: flex;
}

.new-home-section-copy-copy {
  clear: none;
  aspect-ratio: auto;
  background-color: var(--white);
  object-fit: fill;
  object-position: 50% 45%;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  max-height: none;
  margin-bottom: 0;
  padding-top: 6.5%;
  padding-bottom: 0%;
  display: flex;
  position: static;
  inset: 0%;
  overflow: visible;
}

.section-54-copy-copy-copy {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  object-fit: fill;
  background-color: #f3f4fc;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 25%;
  max-width: 100%;
  min-height: 100%;
  padding-top: 5.5%;
  padding-bottom: 0%;
  display: block;
  position: fixed;
  inset: 0% auto 0% 0%;
}

.footer-french-copy, .footer-french-copy-copy {
  background-color: #fff;
  margin-left: 25%;
  padding-top: 2%;
  padding-bottom: 3%;
  position: relative;
}

@media screen and (max-width: 991px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.hero {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .card.last-card {
    max-width: 50%;
  }

  .container-flex.wide {
    min-width: 96%;
  }

  .container-flex.call-to-action {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-button {
    text-align: center;
    flex-direction: column;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 30%;
    margin-top: 0;
    margin-left: 0;
    display: flex;
  }

  .footer-label {
    font-size: 1.1em;
  }

  .footer-link {
    font-size: 12px;
  }

  .call-to-action-wrapper {
    align-self: center;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .text-block {
    font-size: 29px;
  }

  .menu-button {
    order: 1;
    transform: translate(18px);
  }

  .heading {
    font-size: 55px;
  }

  .heading-2 {
    letter-spacing: -.03em;
    min-width: 100%;
    max-width: 100%;
    margin-right: 0;
    font-size: 42px;
    line-height: 1.1;
  }

  .paragraph {
    margin-top: 24px;
    margin-right: 0;
    font-size: 18px;
  }

  .column {
    flex: 1;
    padding: 0;
    display: block;
  }

  .text-span {
    font-size: 42px;
    line-height: 0;
  }

  .paragraph-2 {
    font-size: 18px;
  }

  .bold-texxxt {
    margin-left: 32px;
    font-size: 36px;
  }

  .cards-grid-container {
    grid-column-gap: 20px;
  }

  .columns-2 {
    margin-top: 40px;
    margin-left: 32px;
    margin-right: 32px;
  }

  .div-block-2 {
    height: 380px;
    padding: 16px 0;
  }

  .text-block-2 {
    margin-bottom: 16px;
    margin-left: 24px;
    margin-right: 16px;
    font-size: 16px;
  }

  .text-span-4 {
    font-size: 14px;
    line-height: .8;
  }

  .bold-text-2 {
    font-size: 37px;
    line-height: 0;
  }

  .column-8 {
    margin-top: 32px;
    margin-bottom: 32px;
    padding-left: 32px;
  }

  .container-2 {
    max-width: 92%;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .bold-text-4 {
    font-size: 42px;
    line-height: .9;
  }

  .new1 {
    margin-top: 10px;
    font-size: 36px;
    line-height: 1.1;
  }

  .bold-text-7 {
    font-size: 36px;
    line-height: 1;
  }

  .paragraph-copy {
    margin-top: 20px;
    font-size: 13px;
  }

  .div-block-3 {
    min-height: 160px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-3-copy {
    min-height: 220px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .columns-3 {
    margin: 32px 32px 20px;
  }

  .image-9 {
    max-width: 100%;
    margin-top: 46px;
    margin-bottom: 46px;
  }

  .image-10 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .text-block-3, .text-block-4 {
    font-size: 18px;
    line-height: 1.2;
  }

  .text-block-5 {
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1.2;
  }

  .columns-4 {
    flex-wrap: nowrap;
    place-content: center flex-start;
    align-items: flex-end;
    margin-top: 120px;
    margin-bottom: 40px;
    padding: 20px 110px 20px 32px;
    display: flex;
  }

  .column-9 {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 0;
    padding-left: 20px;
    display: none;
    bottom: 40px;
  }

  .column-10 {
    clear: right;
    min-height: 100%;
    max-height: 100%;
    padding-left: 0;
    padding-right: 0;
    position: sticky;
  }

  .div-block-2-copy {
    height: 450px;
    padding: 16px 0;
  }

  .image-13 {
    object-fit: fill;
    max-width: 100%;
    height: 280px;
    min-height: 100%;
    max-height: 100%;
  }

  .column-11 {
    padding-left: 0;
  }

  .column-12 {
    padding-right: 0;
  }

  .image-14 {
    max-width: 100.3%;
    margin-left: 0;
    margin-right: 0;
    display: none;
  }

  .image-15 {
    display: none;
  }

  .bold-text-8 {
    letter-spacing: -.02em;
    font-size: 42px;
  }

  .bold-text-9 {
    font-size: 42px;
  }

  .bold-text-10 {
    letter-spacing: -.02em;
    font-size: 42px;
  }

  .columns-5 {
    padding-top: 0;
    display: none;
  }

  .container-6 {
    max-width: 90%;
  }

  .heading-4 {
    margin-right: 20px;
    font-size: 34px;
  }

  .text-block-6 {
    font-size: 14px;
  }

  .text-block-2-copy {
    margin-bottom: 16px;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
    line-height: 1.1;
  }

  .image-17 {
    max-width: 100.5%;
    display: none;
  }

  .heading-2-copy {
    min-width: 100%;
    max-width: 100%;
    margin-right: 0;
    font-size: 36px;
    line-height: 1;
  }

  .container-7 {
    min-width: 80%;
    max-width: 90%;
    margin-left: 4%;
    margin-right: 0;
  }

  .image-18 {
    max-width: 80%;
  }

  .columns-7 {
    display: flex;
  }

  .column-15 {
    padding-right: 30px;
  }

  .text-span-copy {
    font-size: 42px;
    line-height: 0;
  }

  .bold-text-7-copy {
    font-size: 36px;
    line-height: 1;
  }

  .container-9 {
    clear: none;
    align-items: flex-end;
    margin-top: 130px;
    margin-bottom: 0%;
    display: none;
    position: static;
  }

  .image-19 {
    float: right;
    clear: right;
    max-width: 70%;
    margin-bottom: 0%;
    margin-right: 0;
    display: block;
    position: sticky;
    inset: auto 0% 0% auto;
    overflow: visible;
  }

  .container-10 {
    padding-top: 100px;
  }

  .paragraph-4 {
    margin-left: 20px;
    margin-right: 140px;
  }

  .button-2-copy {
    margin-left: 20px;
  }

  .container-11 {
    display: none;
  }

  .bold-text-cop {
    margin-left: 20px;
    font-size: 36px;
  }

  .bold-text-coy {
    margin-bottom: 20px;
    margin-left: 20px;
    font-size: 36px;
  }

  .image-23 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    position: sticky;
    bottom: 0%;
    overflow: visible;
  }

  .columns-8 {
    float: none;
    clear: none;
    object-fit: fill;
    justify-content: flex-end;
    align-items: flex-end;
    max-width: 101.4%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    position: static;
  }

  .column-21 {
    clear: right;
    align-items: flex-end;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: sticky;
  }

  .columns-9 {
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 20px;
  }

  .bold-text-copy {
    margin-left: 0;
    font-size: 36px;
  }

  .container-6-copiy {
    max-width: 90%;
    margin-top: 130px;
  }

  .text-block-6-copy {
    max-width: 80%;
  }

  .image-25 {
    max-width: 70%;
  }

  .div-block-7 {
    min-width: 0;
    max-width: 120px;
    min-height: 120px;
    max-height: 120px;
  }

  .text-block-15 {
    font-size: 14px;
  }

  .columns-15 {
    min-width: 80%;
    max-width: 100%;
    padding-left: 0%;
    padding-right: 0%;
    display: inline-block;
  }

  .column-32 {
    padding-left: 0;
    padding-right: 0;
  }

  .bold-texxxt-copy {
    margin-left: 32px;
    font-size: 36px;
  }

  .container-6-copy {
    max-width: 90%;
  }

  .nav-menu-2 {
    background-color: var(--white);
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .bold-text-11 {
    font-size: 14px;
  }

  .heading-6 {
    font-size: 88%;
  }

  .section-11 {
    height: 620px;
    max-height: 620px;
    padding-top: 20px;
  }

  .section-14 {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .text-block-22 {
    line-height: 1.3;
  }

  .container-17 {
    padding: 20px;
    position: relative;
  }

  .text-block-23 {
    margin-bottom: 10px;
  }

  .image-27 {
    margin-bottom: 20px;
  }

  .text-block-24 {
    font-size: 14px;
  }

  .image-28 {
    width: 8%;
  }

  .bold-text-37 {
    font-size: 28px;
  }

  .container-19 {
    padding: 20px;
  }

  .div-block-8 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-25 {
    line-height: 1;
  }

  .bold-text-38 {
    font-size: 14px;
  }

  .image-30 {
    margin-top: 10px;
    padding-bottom: 20px;
  }

  .div-block-9 {
    height: 335px;
  }

  .header {
    display: flex;
  }

  .secondary-button {
    flex-direction: row;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    display: flex;
  }

  .nav-menu-3 {
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: block;
  }

  .div-block-12, .div-block-13 {
    width: 100%;
  }

  .div-block-14 {
    flex-flow: row;
    align-content: center;
    align-items: center;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
    padding-left: 24px;
    display: flex;
  }

  .div-block-15 {
    width: 100%;
    padding-left: 24px;
    display: flex;
  }

  .nav-menu-4 {
    background-color: var(--white);
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 140px;
  }

  .div-block-16 {
    width: 100%;
    margin-top: 16px;
    margin-left: 24px;
    display: flex;
  }

  .div-block-17 {
    margin-top: 16px;
    margin-left: 24px;
    display: flex;
  }

  .menu-button-3.w--open {
    background-color: var(--grey6);
  }

  .image-34 {
    width: 70%;
  }

  .normal-link, .text-block-38 {
    font-size: 65%;
  }

  .div-block-18 {
    width: 80%;
  }

  .h2-heading {
    margin-bottom: 64px;
  }

  .h2-heading.head {
    margin-bottom: 8%;
  }

  .text-section {
    margin-top: 72px;
    margin-left: 5%;
    padding-right: 5%;
  }

  .legal-notice {
    margin-bottom: 64px;
  }

  .container-24, .container-27, .container-28, .container-29, .container-30, .container-31, .container-32, .container-34, .container-35, .container-36 {
    max-width: 720px;
  }

  .div-block-34 {
    padding-right: 16px;
  }

  .container-37 {
    max-width: 720px;
  }

  .heading-11 {
    width: 100%;
    font-size: 32px;
  }

  .div-block-36 {
    flex-direction: row;
    align-items: center;
  }

  .image-76 {
    width: 22%;
    margin-right: 24px;
  }

  .div-block-37 {
    margin-left: 16px;
    margin-right: 24px;
  }

  .image-78 {
    display: block;
  }

  .div-block-38 {
    width: 100%;
  }

  .container-38 {
    max-width: 720px;
  }

  .h1-heading {
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 150%;
    line-height: 1.4;
  }

  .grid-14 {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .section-36 {
    display: block;
  }

  .div-block-52 {
    padding-bottom: 8px;
  }

  .grid-16 {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .div-block-58 {
    padding-bottom: 16px;
  }

  .grid-17 {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .div-block-60 {
    padding-bottom: 24px;
  }

  .div-block-62 {
    padding-right: 16px;
  }

  .div-block-63 {
    padding-bottom: 24px;
  }

  .div-block-65 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .div-block-66 {
    padding-bottom: 24px;
  }

  .div-block-68 {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .section-39 {
    padding-bottom: 56px;
  }

  .text-block-47 {
    font-size: 20px;
  }

  .text-block-48 {
    margin-left: 50px;
    margin-right: 50px;
  }

  .text-block-50 {
    text-align: left;
    font-size: 16px;
  }

  .header-page {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: nowrap;
    justify-content: space-around;
    height: 200px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .image-97 {
    object-fit: fill;
    height: 200px;
    margin-left: 40px;
  }

  .image-98 {
    height: 200px;
  }

  .image-99 {
    height: 200px;
    margin-right: 40px;
  }

  .image-100, .image-101, .image-102, .image-103, .image-104, .image-105 {
    height: 200px;
  }

  .section-43, .image-106 {
    height: 80vh;
  }

  .div-block-79 {
    left: -240px;
  }

  .div-block-80 {
    margin-left: 40px;
    margin-right: 16px;
  }

  .image-107, .image-108 {
    height: 50px;
  }

  .text-block-55 {
    text-align: left;
  }

  .new-home-section {
    aspect-ratio: auto;
    object-fit: contain;
    flex-flow: column wrap;
    height: auto;
    padding-top: 12%;
    padding-bottom: 5%;
  }

  .image-119 {
    height: 380px;
  }

  .container-51 {
    flex-direction: column;
    padding-top: 2%;
  }

  .div-block-88 {
    margin-left: 0;
  }

  .div-block-89 {
    justify-content: center;
    margin-bottom: 2%;
  }

  .image-120, .image-121 {
    height: 46px;
  }

  .text-block-56 {
    font-size: 20px;
  }

  .navbar-3 {
    display: flex;
  }

  .nav-menu-6 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-color: var(--white);
    object-fit: contain;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 0;
    display: flex;
  }

  .menu-button-4 {
    background-color: #0000;
  }

  .menu-button-4.w--open {
    background-color: var(--grey6);
  }

  .image-122, .image-123 {
    max-width: 130px;
  }

  .header-english {
    align-items: center;
    display: flex;
  }

  .grid-22 {
    grid-column-gap: 14%;
    grid-row-gap: 14%;
    grid-template-columns: 1fr 1.25fr 1.5fr 1.5fr .5fr;
  }

  .footer-english.web {
    padding-left: 5%;
  }

  .image-133, .image-134 {
    max-width: 18%;
  }

  .div-block-98 {
    display: none;
  }

  .h1-heading-hiw {
    text-align: left;
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 150%;
    line-height: 1.4;
  }

  .cell-2 {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .image-135-copy {
    margin-top: 0%;
    margin-bottom: 0%;
  }

  .h3-heading-hiw {
    text-align: left;
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 150%;
    line-height: 1.4;
  }

  .cell-copy {
    padding-top: 5%;
    padding-bottom: 15%;
  }

  .cell-4-copy {
    justify-content: flex-end;
    align-items: center;
  }

  .cell-copy {
    padding-bottom: 10%;
  }

  .section1hiw-copy-copy {
    margin-top: 8%;
  }

  .new-home-section-copy {
    aspect-ratio: auto;
    object-fit: contain;
    flex-flow: column wrap;
    height: auto;
    padding-top: 12%;
    padding-bottom: 5%;
  }

  .image-153 {
    max-width: 18%;
  }

  .h2-heading-2 {
    margin-bottom: 64px;
  }

  .h2-heading-2.head {
    margin-bottom: 8%;
  }

  .image-154 {
    max-width: 18%;
  }

  .section-62 {
    padding-top: 2rem;
  }

  .container-28-copy {
    max-width: 720px;
  }

  .text-section-copy {
    margin-top: 72px;
    margin-left: 5%;
    padding-right: 5%;
  }

  .new-home-section-copy-copy {
    aspect-ratio: auto;
    object-fit: contain;
    flex-flow: column wrap;
    height: auto;
    padding-top: 12%;
    padding-bottom: 5%;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding: 40px 24px;
  }

  .section.hero {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 0;
  }

  .container-flex {
    padding-left: 24px;
    padding-right: 24px;
  }

  .container-flex.wide {
    margin-left: 0;
    padding-left: 24px;
  }

  .primary-button {
    text-align: center;
    width: auto;
    margin-left: 5%;
    margin-right: 5%;
  }

  .featured-text {
    margin-bottom: 40px;
  }

  .grid-2-columns {
    flex-direction: column;
    display: flex;
  }

  .grid-2-columns.mobile-inverted {
    flex-direction: column-reverse;
  }

  .footer-menu {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .brand {
    padding-left: 0;
  }

  .footer-brand {
    flex: 0 100%;
    align-self: flex-start;
    margin-bottom: 20px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .subfooter {
    text-align: left;
  }

  .heading-2 {
    margin-right: 0;
  }

  .paragraph {
    margin-top: 24px;
    margin-bottom: 32px;
    font-size: 16px;
  }

  .column {
    margin-top: 0;
    padding: 0;
    display: block;
  }

  .text-span {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    display: block;
  }

  .paragraph-2 {
    font-size: 16px;
  }

  .bold-texxxt {
    margin-left: 0;
    font-size: 42px;
  }

  .sticky-nav {
    position: relative;
  }

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

  .cards-section {
    padding: 40px 20px;
  }

  .cards-grid-container {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    align-self: stretch;
    max-width: none;
  }

  .columns-2 {
    margin-top: 20px;
    margin-left: 24px;
    margin-right: 24px;
  }

  .column-5 {
    padding-right: 0;
  }

  .column-6 {
    padding-left: 0;
  }

  .column-7 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-2 {
    height: 420px;
    margin-top: 24px;
    margin-left: auto;
  }

  .image-3 {
    margin-top: 20px;
  }

  .text-block-2 {
    margin-left: 24px;
    font-size: 18px;
  }

  .bold-text-2 {
    font-size: 42px;
  }

  .column-8, .container-2 {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .bold-text-4, .bold-text-7 {
    font-size: 42px;
  }

  .paragraph-copy {
    margin-top: 20px;
    font-size: 16px;
  }

  .div-block-3 {
    min-height: 200px;
    margin-top: 24px;
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .div-block-3-copy {
    min-height: 270px;
  }

  .columns-3 {
    margin-top: 32px;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .image-9 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .text-block-3 {
    line-height: 1.2;
  }

  .text-block-5 {
    margin-left: 0;
  }

  .image4 {
    margin-top: 25px;
  }

  .image-3-copy._6 {
    margin-top: 50px;
  }

  .columns-4 {
    padding-top: 40px;
  }

  .image-12 {
    max-width: 570px;
    position: static;
  }

  .column-9 {
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
    display: none;
  }

  .div-block-2-copy {
    height: 360px;
  }

  .heading-2-cpy {
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    margin-left: 24px;
    margin-right: 0;
    display: block;
  }

  .column-11, .column-12 {
    padding-left: 0;
    padding-right: 0;
  }

  .image-14 {
    display: none;
  }

  .image-15 {
    margin-bottom: 60px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 24px;
    display: block;
  }

  .bold-text-8, .bold-text-9, .bold-text-10 {
    font-size: 42px;
  }

  .container-6 {
    max-width: 90%;
    margin-top: 60px;
    margin-bottom: 100px;
  }

  .heading-4 {
    margin-right: 40px;
    font-size: 32px;
  }

  .paragraph-3 {
    font-size: 20px;
  }

  .text-block-6 {
    font-size: 14px;
  }

  .paragraph-3-copy {
    font-size: 20px;
  }

  .text-block-2-copy {
    margin-left: 0;
    font-size: 18px;
  }

  .heading-2-copy {
    margin-right: 0;
  }

  .footer-menu-copy {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .container-7 {
    min-width: 70%;
    max-width: 100%;
    margin-left: 3%;
    margin-right: 3%;
  }

  .image-18 {
    max-width: 90%;
  }

  .columns-7 {
    margin-bottom: 0;
  }

  .column-15 {
    text-align: center;
    padding-left: 20px;
    padding-right: 10px;
  }

  .column-16 {
    text-align: left;
    padding-left: 30px;
  }

  .bold-text-7-copy {
    font-size: 42px;
  }

  .container-9 {
    align-items: flex-end;
    margin-top: 0;
    display: none;
  }

  .image-19 {
    max-width: 70%;
    margin-bottom: 0%;
    margin-right: 0;
    display: block;
  }

  .heading-5 {
    font-size: 78%;
  }

  .container-10 {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .paragraph-4 {
    margin-left: 20px;
    margin-right: 120px;
  }

  .button-2-copy {
    margin-left: 20px;
  }

  .container-11 {
    display: none;
  }

  .bold-text-cop {
    float: left;
    clear: left;
    margin-top: 60px;
    margin-bottom: 0;
    margin-left: 0;
    font-size: 42px;
    position: static;
  }

  .bold-text-coy {
    margin-bottom: 20px;
    margin-left: 20px;
    font-size: 38px;
    display: flex;
  }

  .button-2-copy-copy {
    margin-left: 60px;
  }

  .column-18 {
    clear: left;
    padding-left: 0;
  }

  .image-22 {
    float: left;
    max-width: 100%;
    margin-top: 30px;
  }

  .image-23 {
    max-width: 100%;
    margin-top: 60px;
  }

  .column-19 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 20px;
    position: static;
  }

  .columns-8 {
    display: block;
  }

  .column-20 {
    clear: left;
    position: static;
  }

  .column-21 {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-6o {
    font-size: 14px;
  }

  .columns-10 {
    min-width: 100%;
    max-width: 100%;
    margin-left: 0;
    display: flex;
  }

  .text-block-6-copy2 {
    font-size: 14px;
  }

  .bold-text-copy {
    margin-left: 0;
    font-size: 42px;
  }

  .text-block-duplicate, .text-block-6o-copy {
    font-size: 14px;
  }

  .container-6-copiy {
    max-width: 90%;
    margin-top: 140px;
    margin-bottom: 40px;
  }

  .column-22 {
    text-align: right;
    flex: 0 auto;
  }

  .column-23 {
    text-align: left;
  }

  .text-block-10 {
    margin-left: 8%;
    margin-right: 8%;
  }

  .text-block-6-copy {
    max-width: 80%;
    margin-left: 0;
    font-size: 14px;
  }

  .image-25 {
    max-width: 80%;
    padding-right: 20px;
  }

  .container-12 {
    border-radius: 0;
    max-width: 100%;
  }

  .div-block-7 {
    max-width: 110px;
    min-height: 110px;
    max-height: 110px;
  }

  .columns-15 {
    clear: both;
    text-align: center;
    min-width: 80%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .column-25, .column-26 {
    padding-left: 10px;
  }

  .column-29 {
    align-self: flex-start;
    display: block;
  }

  .column-30 {
    flex: 0 auto;
    align-self: flex-start;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: static;
  }

  .column-31, .column-32, .column-34, .column-35, .column-36, .column-37, .column-38, .column-39, .column-40, .column-41, .column-42, .column-43, .column-44 {
    align-self: flex-start;
  }

  .bold-texxxt-copy {
    margin-left: 0;
    font-size: 42px;
  }

  .container-6-copy {
    max-width: 90%;
    margin-top: 60px;
    margin-bottom: 100px;
  }

  .team-photo {
    min-height: 150px;
    max-height: 150px;
  }

  .nav-menu-2 {
    background-color: var(--white);
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .heading-6 {
    font-size: 78%;
    line-height: 1;
  }

  .section-10 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-11 {
    height: auto;
    max-height: none;
    padding-bottom: 130px;
  }

  .section-13 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .image-27 {
    max-width: 70%;
  }

  .container-18 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-8 {
    margin-top: 10px;
  }

  .container-20 {
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-30 {
    max-width: 70%;
  }

  .div-block-9 {
    margin-top: 10px;
    margin-left: auto;
  }

  .section-16 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .secondary-button {
    justify-content: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .secondary-button.android-link {
    width: 38%;
  }

  .brand-3 {
    padding-left: 0;
  }

  .container-22 {
    margin-left: 24px;
    margin-right: 8px;
  }

  .logo {
    width: 25%;
  }

  .grid-2 {
    grid-row-gap: 16px;
    grid-template-rows: auto 1fr;
  }

  .footer {
    height: 620px;
    padding-bottom: 150px;
  }

  .normal-link {
    font-size: 65%;
  }

  .text-block-38 {
    order: 1;
    font-size: 65%;
    line-height: 1;
  }

  .container-23 {
    display: block;
  }

  .div-block-18 {
    flex-direction: column;
    width: 94%;
    margin-top: 16px;
    padding-left: 16px;
  }

  .h2-heading {
    margin-bottom: 56px;
    font-size: 40px;
  }

  .h2-heading.head {
    align-self: flex-end;
    margin: 5% auto 7%;
    font-size: 28px;
  }

  .h4-subtitle {
    margin-top: 0;
    margin-bottom: 5%;
  }

  .text-section {
    margin-top: 56px;
  }

  .basic-text {
    margin-bottom: 5%;
    font-size: 14px;
  }

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

  .legal-notice {
    object-fit: contain;
    margin-bottom: 10%;
  }

  .container-24 {
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
  }

  .container-25 {
    padding-left: 16px;
  }

  .grid-3 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 4.5fr;
    place-items: start;
  }

  .image-37 {
    padding-right: 6px;
  }

  .image-38 {
    margin-bottom: 16px;
  }

  .container-26 {
    padding-left: 16px;
  }

  .div-block-20 {
    flex-direction: column;
    display: flex;
  }

  .image-40 {
    width: 40%;
    top: 2%;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section-19 {
    height: 540px;
  }

  .container-27 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .grid-5 {
    grid-template-columns: 1fr;
  }

  .container-28 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .container-29 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-block-40, .h5-heading {
    font-size: 20px;
  }

  .grid-7 {
    grid-template-columns: 1fr 1fr;
  }

  .div-block-26 {
    flex-direction: column;
    display: block;
  }

  .section-22 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .container-30 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .h3-heading {
    margin-bottom: 40px;
    font-size: 32px;
  }

  .grid-8 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .container-31 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-23 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .container-32 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-24 {
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .grid-9 {
    grid-template-columns: 1fr 1fr;
    margin-top: 56px;
  }

  .section-25 {
    padding-top: 56px;
    padding-bottom: 8px;
  }

  .container-34, .container-35 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-27 {
    margin-top: 56px;
  }

  .container-36 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .grid-11 {
    grid-column-gap: 16px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .image-74 {
    margin-top: -40px;
  }

  .grid-12 {
    grid-template-columns: 1fr;
  }

  .container-37 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .image-75 {
    object-fit: cover;
    width: 100%;
  }

  .div-block-36 {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .image-76 {
    width: 20%;
  }

  .div-block-37 {
    width: 50%;
    margin-right: 16px;
  }

  .section-30 {
    flex-direction: column;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .image-78 {
    object-fit: fill;
  }

  .div-block-38, .container-38 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-34 {
    padding-top: 64px;
    padding-bottom: 48px;
    display: none;
  }

  .grid-13 {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .h1-heading {
    text-align: center;
    margin-top: 0%;
    margin-bottom: 0;
    padding-left: 5%;
    padding-right: 5%;
    font-size: 30px;
    line-height: 1.1;
  }

  .text-block-43 {
    font-size: 16px;
  }

  .container-40 {
    max-width: 90vw;
  }

  .div-block-46 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .card-title {
    font-size: 16px;
  }

  .section-36 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .div-block-49, .div-block-51 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .container-41, .container-42 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .image-83 {
    width: 70%;
    margin-bottom: 24px;
  }

  .div-block-53 {
    margin-bottom: 48px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .div-block-56 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .container-44 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-37 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .div-block-60 {
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 24px;
  }

  .div-block-62 {
    margin-bottom: 0;
    padding-top: 0;
  }

  .div-block-63 {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 16px;
  }

  .div-block-66 {
    padding-top: 24px;
    padding-bottom: 16px;
    padding-right: 16px;
  }

  .section-38 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .container-45 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .grid-18 {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .section-39 {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 48px;
    display: flex;
    overflow: hidden;
  }

  .container-46 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .image-92 {
    width: 70%;
  }

  .image-93 {
    width: 330px;
    margin-bottom: 24px;
  }

  .text-block-47 {
    font-size: 18px;
  }

  .container-47, .container-48 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-42 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 800px;
  }

  .image-94 {
    object-fit: cover;
    height: 800px;
    max-height: 110%;
  }

  .div-block-69 {
    max-width: 90%;
  }

  .text-block-48 {
    margin-left: 24px;
    margin-right: 24px;
    font-size: 18px;
  }

  .div-block-70 {
    margin-top: 32px;
  }

  .grid-21 {
    grid-template-columns: 1fr;
  }

  .container-49 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-95 {
    object-fit: fill;
    max-width: 130%;
  }

  .div-block-77 {
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .header-page {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    object-fit: contain;
    flex-wrap: nowrap;
    height: auto;
    margin-top: 10%;
    padding-top: 2%;
    padding-bottom: 0%;
  }

  .image-97 {
    height: 150px;
    margin-left: 24px;
  }

  .image-98 {
    height: 150px;
  }

  .image-99 {
    height: 150px;
    margin-right: 24px;
  }

  .image-100, .image-101, .image-102, .image-103, .image-104, .image-105 {
    height: 150px;
  }

  .section-43 {
    height: 490px;
    padding-right: 0;
  }

  .image-106 {
    height: 200px;
  }

  .div-block-79 {
    flex-direction: column;
    width: 100vw;
    position: static;
    left: 0;
  }

  .div-block-80 {
    margin-left: 0;
    display: none;
    position: static;
  }

  .text-block-53 {
    text-align: center;
    width: 100vw;
    display: block;
  }

  .image-109 {
    object-fit: cover;
    width: 100%;
    height: 200px;
  }

  .image-110 {
    object-fit: cover;
    width: 100vw;
    height: 320px;
  }

  .div-block-82 {
    background-color: var(--white);
    border-radius: 24px;
    flex-direction: column;
    justify-content: center;
    align-self: auto;
    align-items: center;
    margin-left: 16px;
    margin-right: 16px;
    display: block;
    position: absolute;
    top: 150px;
  }

  .text-span-31 {
    font-size: 38px;
  }

  .div-block-83 {
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin-top: 24px;
    display: flex;
  }

  .link-block-11 {
    margin-left: 16px;
  }

  .image-111, .image-112 {
    height: 50px;
  }

  .text-span-36, .text-span-37, .text-span-38 {
    font-size: 18px;
  }

  .image-115 {
    width: 30%;
  }

  .new-home-section {
    aspect-ratio: auto;
    object-fit: contain;
    height: auto;
    padding-top: 20%;
    padding-bottom: 6%;
    display: block;
  }

  .image-119 {
    height: 280px;
  }

  .container-51 {
    aspect-ratio: auto;
    object-fit: contain;
    flex-direction: column;
    justify-content: center;
    display: flex;
    position: static;
  }

  .div-block-88 {
    margin-left: 0;
  }

  .div-block-89 {
    justify-content: center;
    margin-top: 7%;
    padding-right: 0;
  }

  .image-120, .image-121 {
    height: 36px;
  }

  .text-block-56 {
    font-size: 18px;
  }

  .container-52 {
    justify-content: space-between;
    align-items: center;
  }

  .div-block-90 {
    width: 50%;
  }

  .nav-menu-6 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    display: flex;
  }

  .brand-4 {
    padding-left: 0;
  }

  .grid-22 {
    grid-column-gap: 10%;
    grid-row-gap: 10%;
    grid-template-columns: 1fr;
    justify-content: flex-start;
  }

  .image-124 {
    width: 40%;
    top: 2%;
  }

  .footer-english {
    height: 620px;
  }

  .footer-english.web {
    object-fit: contain;
    height: auto;
    padding-top: 4%;
    padding-bottom: 5%;
    position: static;
    overflow: visible;
  }

  .div-block-94 {
    flex-direction: column;
    margin-top: 16px;
  }

  .container-54 {
    margin-top: 0;
    padding-left: 5%;
  }

  .container-55 {
    padding-left: 5%;
  }

  .link-block-14.w--current {
    padding-bottom: 16px;
  }

  .link-block-15 {
    margin-bottom: 4%;
  }

  .div-block-95 {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .dropdown {
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-96 {
    flex-direction: column;
    display: flex;
  }

  .image-129 {
    object-fit: fill;
    min-width: auto;
    max-width: none;
    margin-bottom: 5%;
    display: block;
  }

  .footer-english-phone {
    height: 620px;
  }

  .image-133, .image-134 {
    max-width: 18%;
  }

  .div-block-98 {
    display: none;
  }

  .basic-text-copy {
    font-size: 14px;
  }

  .basic-text-copy {
    margin-bottom: 5%;
    font-size: 14px;
  }

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

  .image-135 {
    margin-top: 0%;
  }

  .cell {
    padding-right: 0%;
  }

  .stack2hiw {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .stack1hiw {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .h1-heading-hiw {
    text-align: left;
    margin-top: 0%;
    margin-bottom: 0;
    padding-left: 0%;
    padding-right: 0%;
    font-size: 30px;
    line-height: 1.1;
  }

  .cell-2 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 0%;
  }

  .image-135-copy {
    margin-top: 0%;
    margin-bottom: 0%;
  }

  .h3-heading-hiw {
    text-align: left;
    margin-top: 0%;
    margin-bottom: 0;
    padding-left: 0%;
    padding-right: 0%;
    font-size: 30px;
    line-height: 1.1;
  }

  .cell-3-copy {
    padding-top: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
  }

  .stack1hiw-copy {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 0%;
  }

  .cell-4-copy {
    justify-content: flex-end;
    align-items: center;
    padding-left: 0%;
  }

  .cell-copy {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-top: 15%;
    padding-bottom: 15%;
    padding-right: 0%;
  }

  .section1hiw-copy-copy {
    margin-top: 13%;
  }

  .new-home-section-copy {
    aspect-ratio: auto;
    object-fit: contain;
    height: auto;
    padding-top: 20%;
    padding-bottom: 6%;
    display: block;
  }

  .image-153 {
    max-width: 18%;
  }

  .h2-heading-2 {
    margin-bottom: 56px;
    font-size: 40px;
  }

  .h2-heading-2.head {
    align-self: flex-end;
    margin: 5% auto 7%;
    font-size: 28px;
  }

  .image-154 {
    max-width: 18%;
  }

  .container-28-copy {
    padding-left: 5%;
    padding-right: 5%;
  }

  .text-section-copy {
    margin-top: 56px;
  }

  .new-home-section-copy-copy {
    aspect-ratio: auto;
    object-fit: contain;
    height: auto;
    padding-top: 20%;
    padding-bottom: 6%;
    display: block;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.4em;
  }

  .section {
    padding: 40px 10px;
  }

  .section.hero {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 0;
  }

  .section.footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-3-columns {
    grid-column-gap: 20px;
  }

  .card.last-card {
    max-width: 100%;
  }

  .container-flex.wide {
    margin-left: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .primary-button {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: auto;
    margin: 3% 5% 2%;
  }

  .primary-button.ios-link {
    margin-left: 16px;
  }

  .footer-menu {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .footer-label {
    margin-top: 15px;
  }

  .navbar {
    min-width: 90%;
  }

  .feature-heading {
    font-size: 2em;
    line-height: 1;
  }

  .footer-brand, .footer-column {
    margin-bottom: 20px;
  }

  .heading-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 39px;
    line-height: 1.1;
  }

  .paragraph {
    margin-right: 0;
    font-size: 16px;
  }

  .column {
    margin-top: 0;
    padding: 24px 0 10px;
  }

  .image {
    min-width: auto;
    margin-top: 0;
    padding-left: 0;
  }

  .text-span {
    margin-top: 0;
    margin-left: 0;
    line-height: .8;
  }

  .image-2 {
    margin-left: 10px;
  }

  .paragraph-2 {
    font-size: 16px;
  }

  .bold-texxxt {
    margin-bottom: 0;
    margin-left: 0;
    line-height: 1.2;
  }

  .sticky-nav {
    padding: 0;
  }

  .nav-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: 100px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .nav-logo-link {
    border-top: 1px solid #c4c4c4;
  }

  .nav-link-2 {
    border-top: 1px solid #c4c4c4;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .centered-container {
    text-align: left;
  }

  .cards-grid-container {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .columns-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .column-5 {
    padding-right: 0;
  }

  .column-6 {
    margin-top: 0;
    padding-left: 0;
  }

  .column-7 {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-2 {
    height: 460px;
    margin-left: 24px;
    margin-right: 24px;
    padding: 18px 0 0;
  }

  .image-3 {
    margin-top: 105px;
    margin-bottom: 0;
  }

  .text-block-2 {
    margin-top: 0;
    margin-left: 42px;
    margin-right: 40px;
    padding-top: 0;
    font-size: 16px;
    top: 22%;
  }

  .column-8 {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .container-2 {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .bold-text-4 {
    font-size: 38px;
  }

  .new1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bold-text-7 {
    text-align: center;
    font-size: 41px;
  }

  .image-2-copy {
    margin-left: 10px;
  }

  .paragraph-copy {
    margin-right: 0;
    font-size: 16px;
  }

  .div-block-3 {
    min-height: 180px;
    margin-top: 24px;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-3-copy {
    min-height: 220px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .columns-3 {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .image-9 {
    max-width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .text-block-3, .text-block-4 {
    line-height: 1.2;
  }

  .text-block-5 {
    margin-left: 20px;
    margin-right: 20px;
    line-height: 1.2;
  }

  .image4 {
    margin-top: 85px;
  }

  .image-3-copy._6 {
    margin-top: 110px;
  }

  .columns-4 {
    margin-top: 60px;
    margin-bottom: 0;
    padding-top: 20px;
    padding-right: 24px;
  }

  .image-12 {
    float: none;
    clear: none;
    position: sticky;
    left: 0;
    right: 0;
  }

  .column-9 {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    display: none;
  }

  .column-10 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-2-copy {
    border-radius: 24px;
    height: 430px;
    margin-left: 24px;
    margin-right: 24px;
    padding: 18px 0 0;
  }

  .heading-2-cpy {
    min-width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    font-size: 41px;
  }

  .heading-2-coy {
    margin-top: 0;
    margin-left: 24px;
    margin-right: 0;
    font-size: 41px;
  }

  .image-13 {
    height: 240px;
    position: sticky;
    left: 0;
    right: 0;
  }

  .image-14 {
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    display: none;
  }

  .image-15 {
    margin-bottom: 60px;
    padding-left: 24px;
    padding-right: 24px;
    display: block;
  }

  .container-5 {
    display: block;
  }

  .image-16 {
    max-width: 80%;
  }

  .container-6 {
    max-width: 90%;
    margin-top: 40px;
    margin-bottom: 100px;
  }

  .heading-4 {
    margin-right: 0;
    font-size: 32px;
  }

  .paragraph-3 {
    font-size: 20px;
  }

  .text-block-6 {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
  }

  .body {
    overflow: visible;
  }

  .paragraph-3-copy {
    font-size: 20px;
  }

  .text-block-2-copy {
    margin-top: 0;
    margin-left: 0;
    margin-right: 40px;
    padding-top: 0;
    font-size: 16px;
    line-height: 1.5;
    top: 25%;
  }

  .heading-2-copy {
    min-width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    font-size: 41px;
  }

  .footer-menu-copy {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .link-block.w--current {
    margin-top: 16px;
    margin-left: 16px;
  }

  .icon {
    color: var(--black);
  }

  .container-7 {
    min-width: 90%;
    max-width: 100%;
    margin-left: 7%;
    margin-right: 3px;
  }

  .button-2-space {
    margin-top: 10px;
  }

  .image-18 {
    max-width: 100%;
  }

  .columns-7 {
    display: block;
  }

  .column-15 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column-16, .column-17 {
    padding-left: 24px;
    padding-right: 20px;
  }

  .text-span-copy {
    margin-left: 0;
    font-size: 39px;
    line-height: 1.1;
  }

  .bold-text-7-copy {
    text-align: center;
    font-size: 41px;
  }

  .container-9 {
    margin-top: 140px;
    display: none;
  }

  .image-19 {
    max-width: 88%;
    margin-left: 20px;
    margin-right: 20px;
  }

  .heading-5 {
    color: #000;
    margin-top: 0;
    margin-bottom: 5%;
    margin-left: 0;
    font-family: Satoshi, sans-serif;
    font-size: 76%;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    position: static;
  }

  .container-10 {
    padding-top: 60px;
  }

  .paragraph-4 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .button-2-copy {
    margin-left: 20px;
  }

  .bold-text-cop {
    margin-top: 60px;
    margin-bottom: 20px;
    margin-left: 0;
    line-height: 1.2;
  }

  .bold-text-coy {
    margin-top: 0;
    margin-bottom: 40px;
    margin-left: 20px;
    line-height: 1.2;
  }

  .button-2-copy-copy {
    float: right;
    clear: right;
    margin-right: 15px;
  }

  .div-block-5 {
    margin-top: 60px;
  }

  .column-18 {
    padding-right: 0;
  }

  .image-22 {
    float: left;
    min-width: 0%;
    max-width: 80%;
    margin-top: 10px;
    margin-left: 14px;
  }

  .image-23 {
    max-width: 100%;
    margin-top: 40px;
  }

  .column-19 {
    margin-top: 0;
  }

  .columns-8, .column-20 {
    display: block;
  }

  .column-21 {
    padding-left: 0;
    padding-right: 0;
  }

  .columns-9 {
    margin-left: 0;
  }

  .text-block-6o, .text-block-6-copy2 {
    font-size: 14px;
  }

  .bold-text-copy {
    margin-left: 0;
    line-height: 1.2;
  }

  .text-block-duplicate, .text-block-6o-copy {
    font-size: 14px;
  }

  .container-6-copiy {
    max-width: 80%;
    margin-top: 140px;
    margin-bottom: 60px;
  }

  .image-24 {
    margin-top: 20px;
  }

  .text-block-10 {
    margin-left: 7%;
    margin-right: 7%;
  }

  .section-6 {
    max-width: 90%;
  }

  .text-block-6-copy {
    text-align: center;
    margin-left: 0;
    font-size: 14px;
    display: block;
  }

  .column-24 {
    clear: none;
    text-align: left;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
  }

  .columns-11, .columns-12, .columns-13, .columns-14 {
    display: block;
  }

  .container-12 {
    max-width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .section-7 {
    max-width: 80%;
  }

  .div-block-7 {
    min-width: 100px;
    max-width: 100px;
    min-height: 100px;
    max-height: 100px;
    margin-bottom: 12px;
    margin-right: 16px;
  }

  .text-block-15 {
    text-align: left;
    max-width: 150px;
    font-size: 14px;
  }

  .columns-15 {
    max-width: 100%;
    margin-bottom: 0;
    display: block;
  }

  .column-25 {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .column-26, .column-27, .column-28 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .column-29 {
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
    display: flex;
    position: static;
  }

  .column-30, .column-31, .column-32, .column-33, .column-34, .column-35, .column-36, .column-37, .column-38, .column-39, .column-40, .column-41, .column-42, .column-43, .column-44 {
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
    display: flex;
  }

  .bold-texxxt-copy {
    margin-bottom: 0;
    margin-left: 0;
    line-height: 1.2;
  }

  .container-6-copy {
    max-width: 90%;
    margin-top: 40px;
    margin-bottom: 100px;
  }

  .team-photo {
    max-width: 45%;
    min-height: 150px;
    max-height: 150px;
    margin-right: 20px;
  }

  .nav-menu-2 {
    background-color: var(--white);
    opacity: 1;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .menu-button-2 {
    background-color: var(--white);
  }

  .menu-button-2.w--open {
    color: #f4f8fb;
    background-color: #f4f8fb;
    border: 1px solid #0000;
  }

  .body-3 {
    background-image: repeating-linear-gradient(to right, #007175, #00595b);
  }

  .bold-text-11, .bold-text-12, .bold-text-13 {
    font-size: 16px;
  }

  .heading-6 {
    text-align: left;
    font-size: 80%;
    font-weight: 700;
    line-height: 1.1;
    display: block;
  }

  .section-10 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-11 {
    height: auto;
    max-height: none;
    padding-bottom: 30px;
  }

  .section-13 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-14 {
    color: var(--black);
    max-width: 1440px;
    height: auto;
    max-height: none;
    margin-top: 0;
    margin-right: 0;
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 20px;
  }

  .section-15 {
    max-width: 1440px;
    height: auto;
    max-height: none;
  }

  .bold-text-31 {
    font-weight: 600;
  }

  .heading-7 {
    color: var(--black);
    text-align: center;
    font-family: Playfair Display, sans-serif;
    font-size: 32px;
    font-weight: 400;
  }

  .text-block-16 {
    color: var(--black);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 14px;
  }

  .text-block-17 {
    color: var(--black);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
  }

  .container-17 {
    clear: both;
    max-width: 85%;
    display: block;
    position: absolute;
    inset: auto auto 0%;
  }

  .image-27 {
    max-width: 80%;
  }

  .image-28 {
    width: 20%;
  }

  .container-18 {
    height: 159%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-19 {
    height: auto;
    inset: auto 0% 0% auto;
  }

  .div-block-8 {
    margin-top: 10px;
    padding-top: 32px;
  }

  .container-20 {
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-30, .image-32 {
    max-width: 80%;
  }

  .bold-text-39 {
    color: var(--black);
  }

  .div-block-9 {
    height: 320px;
    margin-top: 10px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .section-16 {
    margin-left: 0;
    margin-right: 0;
  }

  .column-46 {
    border-style: solid none;
  }

  .column-48 {
    border-left-style: none;
    border-right-style: none;
  }

  .column-49 {
    border-style: solid none;
  }

  .column-50 {
    border-left-style: none;
    border-right-style: none;
  }

  .ta, .table {
    font-size: 16px;
  }

  .text-span-21, .text-span-22 {
    font-family: Inter, sans-serif;
    font-weight: 300;
    line-height: 1.5;
  }

  .secondary-button {
    width: auto;
    margin: 0 5% 5%;
  }

  .secondary-button.android-link {
    width: 65%;
    margin-left: 16px;
  }

  .container-22 {
    margin-right: 8px;
  }

  .logo {
    width: 50%;
  }

  .nav-menu-4 {
    height: 135px;
  }

  .footer {
    height: 630px;
  }

  .normal-link {
    color: var(--grey-5);
    -webkit-text-stroke-color: var(--grey6);
    font-size: 64%;
    font-weight: 500;
  }

  .text-block-38 {
    order: 1;
    margin-top: 2%;
    margin-right: 0%;
    font-size: 64%;
  }

  .container-23 {
    flex-direction: row;
    display: block;
  }

  .div-block-18 {
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
    padding-left: 16px;
  }

  .h2-heading {
    margin-bottom: 40px;
    font-size: 32px;
  }

  .h2-heading.head {
    text-align: left;
    max-width: 55%;
    margin-top: 7%;
    margin-bottom: 5%;
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    line-height: 1.2;
  }

  .h4-subtitle {
    text-align: left;
    margin-top: 0%;
    margin-bottom: 3%;
    font-size: 100%;
  }

  .text-section {
    margin-top: 40px;
  }

  .small-title {
    margin-bottom: 3%;
    font-size: 84%;
  }

  .basic-text {
    text-align: left;
    margin-bottom: 0%;
    font-size: 70%;
  }

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

  .legal-notice {
    margin-bottom: 48px;
  }

  .container-24 {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    place-items: start;
  }

  .image-40 {
    width: 65%;
    top: 0%;
    right: -33%;
  }

  .grid-4, .grid-5 {
    grid-template-columns: 1fr;
  }

  .text-block-40 {
    font-size: 18px;
  }

  .h5-heading {
    font-size: 20px;
  }

  .grid-7 {
    grid-template-columns: 1fr;
  }

  .section-22 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .h3-heading {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 40px;
  }

  .h3-heading.centered {
    text-align: center;
  }

  .grid-8 {
    grid-column-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .name {
    font-size: 16px;
  }

  .role {
    font-size: 12px;
  }

  .section-23 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-24 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .grid-9 {
    margin-top: 40px;
  }

  .section-25 {
    padding-top: 40px;
    padding-bottom: 8px;
  }

  .text-subtitle {
    font-size: 18px;
  }

  .text-block-42 {
    font-size: 16px;
  }

  .product, .line-divider {
    margin-bottom: 40px;
  }

  .section-27 {
    margin-top: 40px;
  }

  .grid-11 {
    grid-template-rows: auto auto;
    height: 100%;
  }

  .section-29 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .heading-11 {
    width: 82%;
    font-size: 32px;
  }

  .image-76 {
    width: 20%;
  }

  .div-block-37 {
    width: 100%;
    margin-bottom: 24px;
  }

  .section-30 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-34 {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .h1-heading {
    text-align: center;
    margin-bottom: 0;
    padding: 5% 0 10% 0%;
    font-size: 140%;
    line-height: 1.1;
  }

  .section-35 {
    height: 60vh;
  }

  .image-79 {
    width: 40%;
  }

  .div-block-45 {
    margin-top: 0;
  }

  .text-block-43 {
    font-size: 14px;
  }

  .grid-14 {
    grid-template-columns: 1fr;
  }

  .div-block-48 {
    padding-bottom: 8px;
  }

  .section-36 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .image-83 {
    width: 100%;
    margin-bottom: 24px;
  }

  .div-block-53 {
    margin-bottom: 24px;
  }

  .grid-16 {
    grid-template-columns: 1fr;
  }

  .div-block-55 {
    padding-bottom: 8px;
  }

  .div-block-56 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .div-block-57, .div-block-58 {
    padding-bottom: 8px;
  }

  .section-37 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .grid-17 {
    grid-template-columns: 1fr;
  }

  .div-block-60 {
    padding-left: 16px;
  }

  .div-block-62 {
    margin-bottom: 24px;
    padding-right: 16px;
  }

  .div-block-63 {
    padding-top: 24px;
    padding-bottom: 16px;
    padding-right: 16px;
  }

  .div-block-65 {
    padding-top: 0;
    padding-bottom: 8px;
    padding-right: 16px;
  }

  .div-block-66 {
    padding-top: 24px;
    padding-bottom: 16px;
    padding-right: 16px;
  }

  .section-38 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-39 {
    padding-top: 0;
    padding-bottom: 48px;
  }

  .image-92 {
    width: 100%;
  }

  .image-93 {
    width: 85%;
  }

  .section-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-19 {
    grid-template-columns: 1fr;
  }

  .text-block-47 {
    text-align: center;
    font-size: 16px;
  }

  .grid-20 {
    grid-template-columns: 1fr;
  }

  .section-41 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-42 {
    height: 900px;
  }

  .image-94 {
    object-fit: cover;
    height: 900px;
    max-height: 900px;
  }

  .div-block-69 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .text-block-48 {
    font-size: 16px;
  }

  .div-block-70 {
    margin-top: 24px;
  }

  .grid-21 {
    margin-left: 16px;
    margin-right: 16px;
  }

  .circle {
    width: 30px;
    height: 30px;
  }

  .text-block-49 {
    font-size: 22px;
  }

  .text-block-51 {
    font-size: 15px;
  }

  .image-95 {
    max-width: 140%;
  }

  .div-block-77 {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .header-page {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: contain;
    justify-content: flex-end;
    align-items: flex-start;
    height: auto;
    min-height: auto;
    max-height: none;
    margin-top: 10%;
    padding: 0% 0% 0% 4%;
    display: flex;
    overflow: hidden;
  }

  .image-97 {
    margin-left: 0;
  }

  .image-99 {
    margin-right: 0;
  }

  .section-43 {
    height: 430px;
    padding-right: 0;
  }

  .image-110 {
    height: 280px;
  }

  .div-block-82 {
    top: 149px;
  }

  .text-span-31 {
    font-size: 24px;
    line-height: 1;
  }

  .div-block-83 {
    flex-direction: row;
    justify-content: center;
  }

  .link-block-11 {
    margin-left: 8px;
  }

  .image-111, .image-112 {
    height: 42px;
  }

  .image-115 {
    width: 60%;
    max-width: 90%;
    margin-bottom: 10%;
  }

  .new-home-section {
    aspect-ratio: auto;
    flex-wrap: wrap;
    align-items: flex-start;
    height: auto;
    margin-bottom: auto;
    padding-top: 20%;
    padding-bottom: 8%;
    position: static;
    overflow: auto;
  }

  .image-119 {
    object-fit: cover;
    width: 100vw;
    height: 200px;
  }

  .container-51 {
    flex-direction: column;
  }

  .div-block-88 {
    margin-left: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .div-block-89 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    justify-content: space-between;
    margin-top: 0;
    padding-right: 0;
  }

  .image-120, .image-121 {
    height: 38px;
  }

  .link-block-13 {
    object-fit: contain;
    object-position: 50% 45%;
    flex: 0 auto;
    justify-content: flex-end;
    min-width: 50%;
    max-width: 50%;
    margin-right: 0;
    display: flex;
  }

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

  .container-52 {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }

  .div-block-90 {
    width: 100%;
  }

  .body-8, .body-9, .body-10 {
    overflow: visible;
  }

  .nav-menu-6 {
    grid-column-gap: 6%;
    grid-row-gap: 6%;
    aspect-ratio: auto;
    border-bottom: 0px none var(--white);
    background-color: var(--white);
    object-fit: contain;
    flex-wrap: nowrap;
    justify-content: space-around;
    width: auto;
    margin-bottom: 0;
    display: block;
    position: absolute;
    overflow: visible;
  }

  .menu-button-4.w--open {
    background-color: var(--grey6);
  }

  .image-122, .image-123 {
    min-width: 20%;
    max-width: 80%;
  }

  .header-english {
    padding-top: 4%;
    padding-bottom: 4%;
    display: block;
  }

  .grid-22 {
    grid-column-gap: 40px;
    grid-row-gap: 16px;
    object-fit: contain;
    flex-wrap: wrap;
    grid-template-areas: ". . Area-2";
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    display: block;
  }

  .image-124 {
    width: 65%;
    top: 0%;
    right: -33%;
  }

  .footer-english {
    pointer-events: auto;
    object-fit: contain;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    bottom: 0;
  }

  .footer-english.web {
    clear: none;
    object-fit: contain;
    height: auto;
    padding-top: 7%;
    padding-bottom: 7%;
    position: relative;
    inset: auto 0% 0%;
  }

  .div-block-94 {
    width: 70%;
  }

  .container-54 {
    margin-top: 0%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .link-block-15 {
    margin-bottom: 9%;
  }

  .grid-23 {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    width: 90vw;
  }

  .image-126 {
    object-fit: cover;
    border-radius: 10px;
    height: 300px;
  }

  .image-129 {
    min-width: 60%;
    max-width: 93%;
    margin-left: 5%;
    margin-right: 5%;
    display: block;
  }

  .image-130 {
    max-width: 120px;
  }

  .image-131 {
    min-width: 30%;
    max-width: 42%;
  }

  .footer-english-phone {
    object-fit: contain;
    height: auto;
    position: relative;
    bottom: 0;
  }

  .link-block-16 {
    object-fit: contain;
    justify-content: flex-start;
    display: flex;
  }

  .image-133, .image-134 {
    align-self: flex-end;
    max-width: 20%;
  }

  .div-block-97 {
    margin-bottom: 10%;
    margin-right: 0%;
  }

  .div-block-98 {
    padding-right: 50%;
    display: block;
  }

  .div-block-99 {
    margin-bottom: 10%;
  }

  .div-block-100 {
    margin-bottom: 5%;
  }

  .basic-text-copy {
    text-align: center;
    margin-bottom: 0%;
    margin-left: 5%;
    margin-right: 5%;
    font-size: 70%;
  }

  .column-58 {
    border-style: solid none;
  }

  .column-60 {
    border-bottom-style: solid;
    border-left-style: none;
    border-right-style: none;
  }

  .column-61 {
    border-style: solid none;
  }

  .table-2 {
    font-size: 16px;
  }

  .column-63 {
    border-left-style: none;
    border-right-style: none;
  }

  .column-64 {
    border-style: solid none;
  }

  .column-66 {
    border-left-style: none;
    border-right-style: none;
  }

  .column-67 {
    border-style: solid none;
  }

  .table-3 {
    font-size: 16px;
  }

  .column-69 {
    border-left-style: none;
    border-right-style: none;
  }

  .footer-french {
    padding-top: 3%;
  }

  .basic-text-copy {
    text-align: left;
    margin-bottom: 0%;
    font-size: 70%;
  }

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

  .image-135 {
    vertical-align: baseline;
  }

  .text-hiw, .bold-text--hiw {
    text-align: center;
  }

  .cell {
    justify-content: center;
    align-items: center;
    padding: 5% 6% 10%;
  }

  .stack2hiw {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .section1hiw {
    margin-top: 21%;
  }

  .stack1hiw {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-bottom: 15%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .h1-heading-hiw {
    text-align: center;
    margin-bottom: 0;
    padding: 5% 0 10% 0%;
    font-size: 140%;
    line-height: 1.1;
  }

  .cell-2 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    padding-top: 7%;
    padding-bottom: 0%;
    padding-left: 0%;
  }

  .h3-heading-hiw {
    text-align: center;
    margin-bottom: 0;
    padding: 5% 0 10% 0%;
    font-size: 140%;
    line-height: 1.1;
  }

  .text-hiw-3, .bold-text--hiw-3 {
    text-align: center;
  }

  .cell-3 {
    padding-top: 0%;
    padding-bottom: 0%;
  }

  .cell-4 {
    justify-content: flex-end;
    align-items: center;
    padding-top: 7%;
    padding-left: 6%;
    padding-right: 6%;
  }

  .cell-copy {
    justify-content: center;
    align-items: center;
    padding: 0% 6% 10%;
  }

  .cell-3-copy {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .section1hiw-copy {
    margin-top: 21%;
  }

  .stack1hiw-copy {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .cell-4-copy {
    justify-content: flex-end;
    align-items: center;
    padding-top: 7%;
    padding-left: 6%;
    padding-right: 6%;
  }

  .cell-copy {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 10% 6% 0%;
  }

  .section1hiw-copy-copy {
    margin-top: 21%;
  }

  .container-56 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    min-height: 70%;
    padding-top: 35%;
    padding-bottom: 15%;
    display: flex;
  }

  .image-136 {
    max-width: 120px;
  }

  .heading-21 {
    color: #212121;
    text-align: center;
    font-family: Satoshi, sans-serif;
    font-size: 28px;
    line-height: 1.1;
  }

  .text-span-45 {
    color: #fa4b60;
  }

  .container-57 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-left: 7%;
    padding-right: 7%;
    display: flex;
  }

  .paragraph-6 {
    color: var(--grey-4);
    text-align: center;
    font-family: Satoshi, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
  }

  .container-58 {
    padding-top: 9%;
  }

  .image-137 {
    max-width: 63%;
    padding-top: 5%;
  }

  .image-138 {
    max-width: 30%;
    margin-bottom: 6%;
  }

  .section-50 {
    margin-top: 8%;
    padding-top: 9%;
    padding-bottom: 9%;
  }

  .paragraph-8 {
    margin-bottom: 6%;
  }

  .text-block-64 {
    margin-left: 5%;
    margin-right: 5%;
    padding-bottom: 5%;
  }

  .image-139 {
    vertical-align: baseline;
    max-width: 80%;
    display: block;
  }

  .container-62 {
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    padding-top: 0%;
  }

  .column-71 {
    margin-bottom: 4%;
    padding-right: 0;
  }

  .column-72 {
    padding-right: 0;
  }

  .div-block-101 {
    height: 130px;
  }

  .section-54 {
    padding-top: 8%;
    padding-bottom: 8%;
  }

  .column-73 {
    margin-bottom: 4%;
    padding-right: 0;
  }

  .div-block-102 {
    padding-top: 7%;
  }

  .section-50-copy {
    padding-top: 8%;
    padding-bottom: 3%;
  }

  .text-block-64-copy {
    padding-top: 5%;
    padding-bottom: 6%;
  }

  .div-block-102-copy {
    height: 200px;
    margin-top: 0%;
    padding-top: 4%;
    padding-bottom: 2%;
  }

  .new-home-section-copy {
    aspect-ratio: auto;
    flex-wrap: wrap;
    align-items: flex-start;
    height: auto;
    margin-bottom: auto;
    padding-top: 32%;
    padding-bottom: 12%;
    position: static;
    overflow: auto;
  }

  .image-137-copy {
    max-width: 40%;
    padding-top: 0%;
  }

  .section-56 {
    margin-bottom: 2%;
    padding-top: 7%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-57 {
    margin-top: 6%;
    margin-left: 4%;
    padding: 6% 4%;
  }

  .section-56-copy-copy {
    margin-bottom: 6%;
    padding-top: 6%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .paragraph-8-copy-copy {
    margin-left: 5%;
    margin-right: 5%;
  }

  .section-54-copy-copy {
    min-width: 100%;
    min-height: auto;
    position: static;
  }

  .image-153 {
    align-self: flex-end;
    max-width: 20%;
  }

  .h2-heading-2 {
    margin-bottom: 40px;
    font-size: 32px;
  }

  .h2-heading-2.head {
    text-align: center;
    max-width: 55%;
    margin-top: 7%;
    margin-bottom: 5%;
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    line-height: 1.2;
  }

  .image-154 {
    align-self: flex-end;
    max-width: 20%;
  }

  .paragraph-9 {
    font-size: .9rem;
  }

  .section-62 {
    padding-top: 1rem;
  }

  .collection-list-wrapper, .collection-list.categories-list {
    display: block;
  }

  .collection-item.category-button {
    flex-flow: row;
    max-width: 100%;
    margin-bottom: 20px;
    display: flex;
  }

  .small-title-copy {
    margin-bottom: 3%;
    font-size: 84%;
  }

  .text-section-copy {
    margin-top: 40px;
  }

  .container-58-copy-copy {
    margin-left: 4%;
    margin-right: 4%;
    padding-top: 7%;
  }

  .new-home-section-copy-copy {
    aspect-ratio: auto;
    flex-wrap: wrap;
    align-items: flex-start;
    height: auto;
    margin-bottom: auto;
    padding-top: 20%;
    padding-bottom: 6%;
    position: static;
    overflow: auto;
  }

  .section-54-copy-copy-copy {
    min-width: 100%;
    min-height: auto;
    padding-top: 2%;
    padding-bottom: 8%;
    position: static;
  }

  .footer-french-copy {
    padding-top: 3%;
  }

  .footer-french-copy-copy {
    margin-left: 0%;
    padding-top: 3%;
    padding-bottom: 10%;
  }

  .section-66 {
    padding-top: 5%;
  }
}

#w-node-cd6a1c68-143b-8410-dc1f-33093edc34b3-137bb04c, #w-node-cd6a1c68-143b-8410-dc1f-33093edc34b6-137bb04c, #w-node-cd6a1c68-143b-8410-dc1f-33093edc34b7-137bb04c, #w-node-cd6a1c68-143b-8410-dc1f-33093edc34b9-137bb04c, #w-node-cd6a1c68-143b-8410-dc1f-33093edc34bb-137bb04c, #w-node-cd6a1c68-143b-8410-dc1f-33093edc34c3-137bb04c, #w-node-cd6a1c68-143b-8410-dc1f-33093edc34c6-137bb04c, #w-node-_3cbe5117-2b30-d27f-5573-484dad65f963-ad65f95d, #w-node-_3cbe5117-2b30-d27f-5573-484dad65f966-ad65f95d, #w-node-_3cbe5117-2b30-d27f-5573-484dad65f967-ad65f95d, #w-node-_3cbe5117-2b30-d27f-5573-484dad65f969-ad65f95d, #w-node-_3cbe5117-2b30-d27f-5573-484dad65f96b-ad65f95d, #w-node-_3cbe5117-2b30-d27f-5573-484dad65f973-ad65f95d, #w-node-_3cbe5117-2b30-d27f-5573-484dad65f976-ad65f95d, #w-node-ee557720-eb96-4738-a657-561a8463a71b-8463a715, #w-node-ee557720-eb96-4738-a657-561a8463a71e-8463a715, #w-node-ee557720-eb96-4738-a657-561a8463a71f-8463a715, #w-node-ee557720-eb96-4738-a657-561a8463a721-8463a715, #w-node-ee557720-eb96-4738-a657-561a8463a723-8463a715, #w-node-ee557720-eb96-4738-a657-561a8463a72b-8463a715, #w-node-ee557720-eb96-4738-a657-561a8463a72e-8463a715 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9c1f443f-1493-0ed2-96d4-8d13afeee3f1-917dc960, #w-node-f6e10cf6-fdd0-1a58-462f-0b00a4769d54-917dc960, #w-node-dc71cfd3-f7df-8583-a986-5e3544971b78-917dc960, #w-node-_9c1f443f-1493-0ed2-96d4-8d13afeee3f1-5ed844d8, #w-node-f6e10cf6-fdd0-1a58-462f-0b00a4769d54-5ed844d8, #w-node-dc71cfd3-f7df-8583-a986-5e3544971b78-5ed844d8, #w-node-_9c1f443f-1493-0ed2-96d4-8d13afeee3f1-3a9ca32b, #w-node-f6e10cf6-fdd0-1a58-462f-0b00a4769d54-3a9ca32b, #w-node-dc71cfd3-f7df-8583-a986-5e3544971b78-3a9ca32b {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 479px) {
  #w-node-_9c1f443f-1493-0ed2-96d4-8d13afeee3f1-917dc960 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_9c1f443f-1493-0ed2-96d4-8d13afeee3f4-917dc960 {
    order: -9999;
  }

  #w-node-f6e10cf6-fdd0-1a58-462f-0b00a4769d54-917dc960, #w-node-dc71cfd3-f7df-8583-a986-5e3544971b78-917dc960, #w-node-_9c1f443f-1493-0ed2-96d4-8d13afeee3f1-5ed844d8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_9c1f443f-1493-0ed2-96d4-8d13afeee3f4-5ed844d8 {
    order: -9999;
  }

  #w-node-f6e10cf6-fdd0-1a58-462f-0b00a4769d54-5ed844d8, #w-node-dc71cfd3-f7df-8583-a986-5e3544971b78-5ed844d8, #w-node-_9c1f443f-1493-0ed2-96d4-8d13afeee3f1-3a9ca32b {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_9c1f443f-1493-0ed2-96d4-8d13afeee3f4-3a9ca32b {
    order: -9999;
  }

  #w-node-f6e10cf6-fdd0-1a58-462f-0b00a4769d54-3a9ca32b, #w-node-dc71cfd3-f7df-8583-a986-5e3544971b78-3a9ca32b {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Ebgaramond';
  src: url('../fonts/EBGaramond-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ebgaramond';
  src: url('../fonts/EBGaramond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quincycf';
  src: url('../fonts/quincycf-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quincycf';
  src: url('../fonts/quincycf-extrabold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}