@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.scroller {
  height: 48px;
  width: 100%;
  padding: 0 16px;
  background-color: #8544F0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.scroller__inner {
  min-width: fit-content;
  display: flex;
  align-items: center;
  animation: continuousSlide 30s linear infinite;
}
@media (min-width: 768px) {
  .scroller__inner {
    animation-duration: 45s;
  }
}
.scroller__text {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFF;
  white-space: nowrap;
}
.scroller__icon {
  max-width: none;
  width: 16px;
  height: 16px;
  margin: 0 8px;
}

.header--outer {
  background-color: #FFF;
  width: 100%;
  padding-top: 176px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.header--outer * {
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .header--outer {
    padding-top: 128px;
  }
}
.header--outer-mobile {
  padding-top: 128px;
}

.header--float-mobile {
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  position: relative;
  position: fixed;
  background-color: #FFF;
}
.header--float-mobile:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #F0EFEF;
}

.header--inner {
  height: 80px;
  align-items: center;
  flex-direction: row;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .header--inner {
    padding: 0 16px !important;
  }
}

.header--logo {
  margin-right: 36px;
  position: relative;
}
@media (max-width: 1024px) {
  .header--logo {
    margin-right: 12px;
  }
  .header--logo:after {
    display: none;
  }
}
.header--logo:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #D9D9D9;
  position: absolute;
  margin: 0;
  right: -28px;
  top: 50%;
  margin-top: -2px;
}
@media (max-width: 768px) {
  .header--logo {
    margin-right: auto;
  }
}

.header--nav {
  display: flex;
  align-items: center;
  margin-right: auto;
}
@media (max-width: 768px) {
  .header--nav {
    position: absolute;
    left: 0;
    top: 80px;
    background-color: transparent;
    width: 100vw;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    padding-top: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .burger--open .header--nav {
    height: calc(100vh - 80px);
    pointer-events: auto;
    background-color: white;
  }
}
.header--nav.header--nav-logged_in .header--logged_out_only, .header--nav.header--nav-logged_in .header--discover_promo {
  display: none;
}
.header--nav.header--nav-logged_in .header--logged_in_only {
  display: flex;
}
.header--nav.header--nav-logged_out .header--logged_in_only, .header--nav.header--nav-logged_out .header--nav-logged_in_area {
  display: none;
}
.header--nav.header--nav-logged_out .header--logged_out_only {
  display: flex;
}

.header--nav > a {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 15px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: 0.005em;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 12px;
  margin: 0 2px;
}
@media (max-width: 768px) {
  .header--nav > a {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 32px;
    padding-right: 32px;
    width: 100%;
  }
}
@media (min-width: 414px) and (max-width: 768px) {
  .header--nav > a {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 414px) {
  .header--nav > a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header--nav > a .header--nav_svg, .header--nav > a img {
  margin-right: 8px;
  pointer-events: none;
  height: 24px;
}
@media (max-width: 768px) {
  .header--nav > a .header--nav_svg, .header--nav > a img {
    display: none;
  }
}

.header--nav-call_button {
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  margin-right: 1rem;
  border-radius: 5px;
  padding: 8px 16px 8px 0;
  height: 48px;
  justify-content: center;
}
@media (max-width: 780px) {
  .header--nav-call_button {
    display: none;
  }
}
.header--nav-call_button img {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
}
.header--nav-call_button span:first-child {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
  display: block;
}
.header--nav-call_button span:last-child {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 600;
  line-height: 145%;
  color: #4D4C4C;
  line-height: 125%;
  margin-top: 4px;
}

.header--nav-book_button {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 600;
  line-height: 145%;
  background-color: #FFC887;
  text-decoration: none;
  padding: 8px 16px;
  height: 48px;
  border: 1px solid #FFC887;
  border-radius: 5px;
  display: flex;
  align-items: center;
  transition: 0.25s;
}
.header--nav-book_button:hover {
  background-color: #FFD7A8;
}
@media (max-width: 860px) {
  .header--nav-book_button {
    display: none;
  }
}

.header--nav-call_button.mobile {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.5rem 0.5rem;
  margin-right: 0.5rem;
}
.header--nav-call_button.mobile span:first-child {
  font-size: 10px;
  padding: 0;
  color: #D82B31;
}
.header--nav-call_button.mobile span:last-child {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 15px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.01em;
  line-height: 135%;
  font-size: 14px;
}
@media (max-width: 780px) {
  .header--nav-call_button.mobile {
    display: flex;
    border: 1px solid #F6BCBC;
  }
}

.header--nav-book_button.mobile {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 15px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: 0.005em;
  display: none;
  padding: 0.5rem;
}
@media (max-width: 860px) {
  .header--nav-book_button.mobile {
    display: flex;
  }
}

.header--mobile-nav {
  height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  border-top: 1px solid #F0EFEF;
  border-bottom: 1px solid #F0EFEF;
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.header--mobile-nav::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 767px) {
  .header--mobile-nav {
    display: none;
  }
}

.header--mobile-nav-button {
  height: 24px;
  padding: 0 8px;
  margin: 0 4px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  color: #312D2D;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}
.header--mobile-nav-button--active {
  background-color: #312D2D;
  color: #FFF;
}

html {
  scroll-padding-top: 176px;
}
@media screen and (min-width: 767px) {
  html {
    scroll-padding-top: 128px;
  }
}

.form-success {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #43A564;
}
@media screen and (min-width: 768px) {
  .form-success {
    height: 56px;
    padding: 0;
  }
}
.form-success--icon {
  height: 24px;
  width: 24px;
  margin-right: 16px;
}
.form-success--text {
  color: #FFF;
  font-size: 15px;
  font-weight: 15px;
}
@media screen and (max-width: 767px) {
  .form-success--text {
    margin-right: 16px;
  }
}
.form-success--close {
  height: 24px;
  width: 24px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .form-success--close {
    position: absolute;
    right: 56px;
  }
}

.hidden {
  display: none;
}

.footer--nav {
  padding-top: 63px;
  padding-bottom: 32px;
  border-top: 1px solid #E1DFDF;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .footer--nav {
    padding-top: 32px;
    padding-bottom: 24px;
  }
}
.footer--nav * {
  box-sizing: border-box;
}

.footer--nav_pane {
  background-color: #F7F7F7;
  border-radius: 10px;
  flex-direction: column;
  padding: 32px;
  display: flex;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer--nav_pane {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .footer--nav_pane:first-child {
    padding: 0;
    background-color: transparent;
  }
}
@media (max-width: 768px) {
  .footer--nav_pane:last-child a:last-child, .footer--nav_pane:last-child p:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .footer--nav_pane:last-child a, .footer--nav_pane:last-child p {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .footer--nav_pane:last-child {
    max-height: 58px;
  }
}
@media (max-width: 768px) {
  .footer--nav_pane.expanded:last-child {
    max-height: 100%;
  }
}
.footer--nav_pane.expanded h3 > img {
  transform: rotate(0deg);
}
.footer--nav_pane h3 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 145%;
  font-size: 1.25rem;
  letter-spacing: -0.001em;
  font-weight: 600;
  color: #979191;
  margin-top: 0;
  margin-bottom: 24px;
  position: relative;
  pointer-events: none;
}
@media (max-width: 768px) {
  .footer--nav_pane h3 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    font-weight: 600;
    color: #979191;
    margin-bottom: 1rem;
  }
}
.footer--nav_pane h3 > img {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  pointer-events: none;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .footer--nav_pane h3 > img {
    display: block;
  }
}
@media (max-width: 768px) {
  .footer--nav_pane:first-child > h3 {
    display: none;
  }
}
.footer--nav_pane p, .footer--nav_pane a {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 15px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: 0.005em;
  margin-top: 0;
  margin-bottom: 12px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer--nav_pane p, .footer--nav_pane a {
    margin-left: 4px;
  }
}

@media (max-width: 768px) {
  .footer--inner.grid--inner.columns {
    flex-direction: column;
    gap: 12px;
  }
}

.footer--bottom {
  border-top: 1px solid #F0EFEF;
  height: 88px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer--bottom {
    padding: 32px 0;
    height: auto;
  }
}
.footer--bottom * {
  box-sizing: border-box;
}
.footer--bottom p {
  margin: 0;
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.005em;
}
.footer--bottom p br {
  display: none;
}
@media (max-width: 768px) {
  .footer--bottom p {
    order: 2;
    margin-bottom: 1rem;
    line-height: 160%;
  }
  .footer--bottom p br {
    display: inline;
  }
}
.footer--bottom .grid--inner {
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer--bottom .grid--inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer--bottom_company {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #312D2D;
  text-decoration: none;
}
.footer--bottom_company:hover, .footer--bottom_company:focus {
  text-decoration: none;
  color: #312D2D;
}

.footer--bottom_divider {
  width: 4px;
  height: 4px;
  background-color: #BDB7B7;
  border-radius: 100%;
  margin: 0 1rem;
}
@media (max-width: 768px) {
  .footer--bottom_divider {
    display: none;
  }
}

.footer--nav-social_area {
  margin-left: auto;
  display: flex;
}
@media (max-width: 768px) {
  .footer--nav-social_area {
    margin-left: 0;
    order: 1;
    margin-bottom: 1rem;
    display: block;
  }
}
.footer--nav-social_area a {
  text-decoration: none;
  margin-left: 8px;
  height: 24px;
  display: inline-block;
}
@media (max-width: 768px) {
  .footer--nav-social_area a {
    margin-left: 0;
    margin-right: 8px;
  }
}
.footer--nav-social_area img {
  height: 24px;
}

@media (max-width: 768px) {
  .footer--bottom_powered_by {
    order: 3;
  }
}

.hero {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .hero {
    padding-top: 40px;
  }
}
.hero__trustpilot {
  height: 32px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .hero__trustpilot {
    margin-bottom: 16px;
  }
}
.hero__trustpilot-text {
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.08px;
}
@media screen and (min-width: 768px) {
  .hero__trustpilot-text {
    font-size: 18px;
  }
}
.hero__trustpilot-text--bold {
  font-weight: 700;
}
.hero__trustpilot-text--reviews {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero__trustpilot-text--reviews {
    display: block;
  }
}
.hero__trustpilot-logo {
  height: 36px;
  width: auto;
  top: -1px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero__trustpilot-logo {
    height: 40px;
  }
}
.hero__title {
  max-width: 320px;
  margin-bottom: 4px;
  font-size: 32px;
  font-weight: 800;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero__title {
    max-width: none;
    margin-bottom: 8px;
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__title {
    padding: 0 56px;
    font-size: 50px;
  }
}
@media screen and (min-width: 1728px) {
  .hero__title {
    font-size: 70px;
  }
}
.hero__subtitle {
  max-width: 244px;
  font-size: 22px;
  font-weight: 500;
  line-height: 125%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero__subtitle {
    max-width: none;
    font-size: 26px;
    line-height: 120%;
  }
}
@media screen and (min-width: 1024px) {
  .hero__subtitle {
    font-size: 36px;
    letter-spacing: -0.5px;
  }
}
@media screen and (min-width: 1728px) {
  .hero__subtitle {
    font-size: 50px;
  }
}
.hero__countdown-wrapper {
  margin-top: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero__countdown-wrapper {
    margin-top: 24px;
    display: flex;
    gap: 32px;
  }
}
.hero__cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 68px;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .hero__cta-wrapper {
    gap: 8px;
    justify-content: center;
  }
}
.hero__cta-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 125%;
}
@media screen and (min-width: 768px) {
  .hero__cta-text {
    font-size: 16px;
  }
}
.hero__cta-button {
  height: 24px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background-color: #FFE9C8;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22px;
}
.hero__countdown {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .hero__countdown {
    gap: 8px;
    position: static;
  }
}
.hero__countdown-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .hero__countdown-section {
    padding: 0;
  }
}
.hero__digit-wrapper {
  display: flex;
  gap: 4px;
}
.hero__countdown-digit {
  height: 32px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #D82B31;
  position: relative;
  font-size: 20px;
  font-weight: 800;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .hero__countdown-digit {
    height: 48px;
    width: 40px;
    border-radius: 4px;
    font-size: 36px;
  }
}
.hero__countdown-digit:after {
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  background-color: #D82B31;
}
.hero__countdown-colon {
  height: 32px;
  min-width: 8px;
  color: #979191;
  font-size: 18px;
  font-weight: 700;
  line-height: 125%;
  text-align: center;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 768px) {
  .hero__countdown-colon {
    height: 48px;
    font-size: 26px;
    font-weight: 800;
    position: static;
  }
}
.hero__countdown-label {
  font-size: 11px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.22px;
}
@media screen and (min-width: 768px) {
  .hero__countdown-label {
    font-size: 13px;
  }
}
.hero__offer-spinner {
  width: 172px;
  height: 172px;
  margin: auto;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(216, 43, 49, 0.9);
  border-radius: 100%;
  text-transform: uppercase;
  position: absolute;
  top: 48px;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  font-size: 26px;
  font-weight: 800;
  line-height: 110%;
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .hero__offer-spinner {
    display: flex;
  }
}
@media screen and (min-width: 1728px) {
  .hero__offer-spinner {
    top: initial;
    bottom: 38px;
  }
}
.hero__spinner-text {
  position: absolute;
  animation: spinnerRotate 20s infinite linear;
}
.hero__animated-tiles-wrapper {
  width: 100%;
  margin-top: 32px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hero__animated-tiles-wrapper {
    margin-top: 48px;
  }
}
.hero__animated-tiles-wrapper--no-countdown {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .hero__animated-tiles-wrapper--no-countdown {
    margin-top: 56px;
  }
}
.hero__animated-tiles {
  padding: 0 16px;
  display: flex;
  gap: 16px;
  position: relative;
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.hero__animated-tiles::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero__animated-tiles {
    padding: 0 32px;
    overflow: visible;
  }
}
@media screen and (min-width: 1024px) {
  .hero__animated-tiles {
    padding: 0 56px;
  }
}
.hero__tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .hero__tile {
    flex-basis: 25%;
  }
}
@media screen and (min-width: 768px) {
  .hero__tile--reversed {
    flex-direction: column-reverse;
  }
}
.hero__tile-text-wrapper {
  margin-bottom: 8px;
  padding: 0 4px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .hero__tile-text-wrapper {
    height: 48px;
    margin: 0;
    padding: 0 16px;
  }
}
.hero__tile-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.3px;
}
@media screen and (min-width: 768px) {
  .hero__tile-text {
    font-size: 18px;
    letter-spacing: initial;
    line-height: 135%;
  }
}
.hero__tile-text--highlight {
  font-weight: 700;
}
.hero__tile-text--hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero__tile-text--hidden {
    display: inline;
  }
}
.hero__image-wrapper {
  height: 244px;
  width: 244px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: center;
  position: relative;
  border-radius: 8px;
  background-color: #FFF3F2;
  border: 1px solid #FDE2E2;
  overflow: hidden;
  transition: background-color 0.5s;
}
@media screen and (min-width: 768px) {
  .hero__image-wrapper {
    height: 372px;
    width: 372px;
    gap: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .hero__image-wrapper {
    width: auto;
  }
}
.hero__image-wrapper:hover {
  border: none;
}
.hero__image-wrapper--1 {
  display: block;
}
.hero__image-wrapper--1 .hero__tile-image {
  width: 451px;
  min-width: 451px;
  height: 289px;
  position: absolute;
  translate: 32px 32px;
}
@media screen and (min-width: 768px) {
  .hero__image-wrapper--1 .hero__tile-image {
    width: 688px;
    min-width: 688px;
    height: 441px;
    translate: 56px 56px;
  }
}
.hero__image-wrapper--1:hover {
  background-color: #3D6DE8;
}
.hero__image-wrapper--1:hover .hero__tile-image {
  transform: rotate(-5deg);
  translate: 32px -85px;
}
@media screen and (min-width: 768px) {
  .hero__image-wrapper--1:hover .hero__tile-image {
    translate: 56px -125px;
  }
}
.hero__image-wrapper--2 .hero__tile-image {
  height: 190px;
  width: 108px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero__image-wrapper--2 .hero__tile-image {
    height: 290px;
    width: 164px;
  }
}
.hero__image-wrapper--2:hover {
  background-color: #9BD392;
}
.hero__image-wrapper--2:hover .hero__tile-image {
  transform: scale(1.5);
}
.hero__image-wrapper--3 {
  padding: 38px 16px 0;
  justify-content: flex-start;
  gap: 0;
}
.hero__image-wrapper--3:hover {
  background-color: #D82B31;
}
.hero__image-wrapper--3:hover .hero__tile-image {
  translate: 0 -54%;
}
@media screen and (min-width: 1024px) {
  .hero__image-wrapper--3:hover .hero__tile-image {
    translate: 0 -48%;
  }
}
.hero__image-wrapper--3 .hero__tile-image {
  width: 100%;
  max-width: 298px;
}
.hero__image-wrapper--4 {
  padding: 16px;
}
.hero__image-wrapper--4:hover {
  background-color: #FFA829;
}
.hero__image-wrapper--4:hover .hero__tile-image {
  transform: rotate(-2.5deg) scale(1.12);
  translate: 0 30px;
}
@media screen and (min-width: 768px) {
  .hero__image-wrapper--4:hover .hero__tile-image {
    translate: 0 50px;
  }
}
.hero__image-wrapper--4:hover .hero__ap-tile {
  translate: 0 100px;
}
@media screen and (min-width: 768px) {
  .hero__image-wrapper--4:hover .hero__ap-tile {
    translate: 20px 170%;
  }
}
.hero__image-wrapper--4 .hero__tile-image {
  max-width: 192px;
}
@media screen and (min-width: 768px) {
  .hero__image-wrapper--4 .hero__tile-image {
    max-width: 294px;
  }
}
.hero__tile-image {
  transition: 0.5s;
}
.hero__ap-tile {
  width: 192px;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  position: relative;
  background-color: #FFF;
  border: 1px solid #F6BCBC;
  border-radius: 5.247px;
  transition: 0.5s;
  font-size: 13px;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .hero__ap-tile {
    width: 100%;
    max-width: 294px;
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 145%;
  }
}
.hero__ap-tile:after {
  content: "";
  height: 6px;
  background-color: #FDE2E2;
  border: 1px solid #F6BCBC;
  border-top: none;
  border-bottom-left-radius: 5.247px;
  border-bottom-right-radius: 5.247px;
  position: absolute;
  bottom: -7px;
  left: 12px;
  right: 12px;
}
@media screen and (min-width: 768px) {
  .hero__ap-tile:after {
    height: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    bottom: -11px;
    left: 18px;
    right: 18px;
  }
}
.hero__ap-tile:before {
  content: "";
  height: 4px;
  background-color: #F6BCBC;
  border-bottom-left-radius: 5.247px;
  border-bottom-right-radius: 5.247px;
  position: absolute;
  bottom: -10px;
  left: 21px;
  right: 21px;
}
@media screen and (min-width: 768px) {
  .hero__ap-tile:before {
    height: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    bottom: -19px;
    left: 32px;
    right: 32px;
  }
}
.hero__ap-tile-text {
  max-width: 140px;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero__ap-tile-text {
    margin: 0;
    text-align: left;
  }
}
.hero__ap-tile-image {
  display: none;
  margin-left: 12px;
}
@media screen and (min-width: 768px) {
  .hero__ap-tile-image {
    display: block;
  }
}
.hero__tile-tag {
  height: 28px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.26px;
}
@media screen and (min-width: 768px) {
  .hero__tile-tag {
    height: 40px;
    padding: 8px 16px;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: initial;
  }
}
.hero__tile-tag--platforms {
  margin-bottom: 5.25px;
  background-color: #312D2D;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .hero__tile-tag--platforms {
    margin-bottom: 8px;
  }
}
.hero__tile-tag--national {
  border: 1px solid #D82B31;
  background-color: #FFF;
  color: #D82B31;
}
.hero__tile-tag-icon {
  width: 13.118px;
}
@media screen and (min-width: 768px) {
  .hero__tile-tag-icon {
    width: 20px;
  }
}

@keyframes spinnerRotate {
  to {
    transform: rotate(-360deg);
  }
}
.features--outer {
  padding: 128px 0 128px;
  overflow: hidden;
}
@media (max-width: 1728px) {
  .features--outer {
    padding: 96px 0 96px;
  }
}
@media (max-width: 1024px) {
  .features--outer {
    padding: 56px 0 56px;
  }
}
@media (max-width: 767px) {
  .features--outer {
    padding: 32px 0 32px;
  }
}

.features--inner {
  flex-direction: column;
  align-items: center;
}
.features--inner > h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 125%;
  font-size: 2.25rem;
  font-weight: 800;
  color: #312D2D;
  text-align: center;
  max-width: 809px;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .features--inner > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 125%;
    font-size: 1.625rem;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: #312D2D;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 767px) {
  .features--inner > h2 {
    max-width: 260px;
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 130%;
    font-size: 1.375rem;
    font-weight: 800;
    color: #312D2D;
  }
}
.features--inner > span {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 130%;
  font-size: 1.625rem;
  letter-spacing: -0.005em;
  font-weight: 500;
  color: #4D4C4C;
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .features--inner > span {
    margin-bottom: 32px;
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.25rem;
    letter-spacing: -0.001em;
    font-weight: 500;
    color: #4D4C4C;
  }
}
@media (max-width: 767px) {
  .features--inner > span {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    letter-spacing: -0.005em;
    font-weight: 500;
    color: #4D4C4C;
  }
}

.grid--inner.features--columns {
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .grid--inner.features--columns {
    gap: 0 !important;
    padding: 0;
  }
}
.grid--inner.features--columns .grid--inner_column {
  text-decoration: none;
  padding: 2rem 2rem 4.3rem;
  margin-bottom: 0;
  position: relative;
  width: 30%;
}
@media (max-width: 1024px) {
  .grid--inner.features--columns .grid--inner_column {
    width: 33.3333333333%;
    padding: 24px 24px 72px;
  }
}
@media screen and (min-width: 768px) {
  .grid--inner.features--columns .grid--inner_column {
    border: 1px solid #F0EFEF;
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .grid--inner.features--columns .grid--inner_column {
    width: 100%;
    border-bottom: 1px solid #F0EFEF;
  }
  .grid--inner.features--columns .grid--inner_column:first-child {
    border-top: 1px solid #F0EFEF;
  }
}
.grid--inner.features--columns .grid--inner_column h3 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 130%;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  .grid--inner.features--columns .grid--inner_column h3 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
  }
}
@media (max-width: 767px) {
  .grid--inner.features--columns .grid--inner_column h3 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    font-weight: 700;
  }
}
.grid--inner.features--columns .grid--inner_column p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 145%;
  margin: 0;
}
@media (max-width: 1024px) {
  .grid--inner.features--columns .grid--inner_column p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
  }
}
@media (max-width: 767px) {
  .grid--inner.features--columns .grid--inner_column p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.005em;
  }
}

.grid--inner .features--icons {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.5rem;
}
.grid--inner .features--icons img {
  width: 32px;
  height: 32px;
  margin-right: 2px;
}

.grid--inner .features--card-icons {
  height: 32px;
  align-items: center;
}
.grid--inner .features--card-icons img {
  height: 20px !important;
  width: auto !important;
  margin-right: 8px !important;
}

.grid--inner.features--columns {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.5rem;
}
.grid--inner.features--columns img {
  width: 32px;
  height: 32px;
  margin-right: 2px;
}

.grid--inner.features--columns .features--learn_more {
  padding-top: 13px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  bottom: 2rem;
  position: absolute;
  left: 2rem;
}
.grid--inner.features--columns .features--learn_more img {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}
.grid--inner.features--columns .features--learn_more p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 600;
  line-height: 145%;
  color: #3D6DE8;
  text-decoration: underline;
}

.hardware--outer {
  padding-bottom: 128px;
  overflow: hidden;
}
@media (max-width: 1728px) {
  .hardware--outer {
    padding-bottom: 96px;
  }
}
@media (max-width: 1024px) {
  .hardware--outer {
    padding-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .hardware--outer {
    padding-bottom: 32px;
  }
}
.hardware--outer .grid--inner.columns {
  gap: 96px;
}
@media (max-width: 1024px) {
  .hardware--outer .grid--inner.columns {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .hardware--outer .grid--inner.columns {
    flex-direction: column;
    gap: 24px;
  }
}

.hardware--columns {
  align-items: center;
}

.hardware--img {
  height: 456px;
  padding: 48px 24px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #F7F7F7;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .hardware--img {
    order: 1;
  }
}
@media (max-width: 767px) {
  .hardware--img {
    padding: 78px 1rem;
  }
}
.hardware--img img {
  max-width: 326px;
  width: 100%;
}
@media (max-width: 1024px) {
  .hardware--img img {
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .hardware--desc {
    order: 2;
  }
}
.hardware--desc * {
  max-width: 600px;
}
@media (max-width: 767px) {
  .hardware--desc * {
    max-width: 100%;
    width: 100%;
  }
}
.hardware--desc h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 125%;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .hardware--desc h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 125%;
    font-size: 1.625rem;
    letter-spacing: 0.01em;
    font-weight: 800;
  }
}
@media (max-width: 767px) {
  .hardware--desc h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 130%;
    font-size: 1.375rem;
    font-weight: 800;
  }
}
.hardware--desc p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: -0.005em;
  color: #4D4C4C;
  margin: 0;
}
@media (max-width: 1024px) {
  .hardware--desc p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
  }
}
.hardware--desc p > span {
  white-space: nowrap;
}

.hardware--icon {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 135%;
  letter-spacing: 0.01em;
  color: #312D2D;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hardware--icon img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
  margin-top: -2px;
}

@media screen and (min-width: 768px) {
  .hardware--copy {
    margin-bottom: 16px !important;
  }
}
@media screen and (min-width: 1024px) {
  .hardware--copy {
    margin-bottom: 24px !important;
    font-size: 18px !important;
  }
}

.hardware--bullet {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .hardware--bullet {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .hardware--bullet {
    margin-top: 8px;
  }
}

.hardware--bullet-text {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #FFF;
}
@media screen and (min-width: 1024px) {
  .hardware--bullet-text {
    font-size: 18px !important;
  }
}

.hardware--bullet-text-optional {
  font-weight: 400 !important;
  font-style: italic;
  color: #979191;
}

.banner-animation--outer {
  background-color: #D82B31;
  padding: 16px 0;
  overflow: hidden;
  display: flex;
}
.banner-animation--outer .animation-outer {
  display: flex;
  animation: continuousSlide 30s linear infinite;
  min-width: max-content;
}
.banner-animation--outer .animation-outer.cc img {
  width: 88px;
  height: auto;
}
.banner-animation--outer p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 130%;
  font-size: 1.625rem;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  padding: 0 0 0 8px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
@media (max-width: 1024px) {
  .banner-animation--outer p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFF;
  }
}
@media (max-width: 767px) {
  .banner-animation--outer p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFF;
  }
}
.banner-animation--outer img {
  width: 32px;
  height: 32px;
  margin-left: 8px;
}

@keyframes continuousSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.savings--outer {
  padding: 128px 0;
  overflow: hidden;
}
@media (max-width: 1728px) {
  .savings--outer {
    padding: 96px 0;
  }
}
@media (max-width: 1024px) {
  .savings--outer {
    padding: 56px 0;
  }
}
@media (max-width: 767px) {
  .savings--outer {
    padding: 32px 0;
  }
}
.savings--outer .grid--inner.columns {
  gap: 96px;
}
@media (max-width: 1024px) {
  .savings--outer .grid--inner.columns {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .savings--outer .grid--inner.columns {
    gap: 24px;
    flex-direction: column;
  }
}

.savings--columns {
  align-items: center;
}

.savings--img {
  height: 456px;
  padding: 78px 1rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: #9BD392;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .savings--img {
    padding: 86px 1rem;
  }
}
.savings--img img {
  max-width: 350px;
  width: 100%;
}
@media (max-width: 1024px) {
  .savings--img img {
    max-width: 308px;
  }
}

.savings--desc * {
  max-width: 600px;
}
.savings--desc h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 125%;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .savings--desc h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 125%;
    font-size: 1.625rem;
    letter-spacing: 0.01em;
    font-weight: 800;
  }
}
@media (max-width: 767px) {
  .savings--desc h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 130%;
    font-size: 1.375rem;
    font-weight: 800;
  }
}
.savings--desc p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: -0.005em;
  color: #4D4C4C;
}
@media (max-width: 1024px) {
  .savings--desc p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
  }
}

.savings--icon {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 135%;
  letter-spacing: 0.01em;
  color: #312D2D;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.savings--icon img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}

@media screen and (min-width: 768px) {
  .savings--copy {
    margin-bottom: 16px !important;
  }
}
@media screen and (min-width: 1024px) {
  .savings--copy {
    margin-bottom: 24px !important;
    font-size: 18px !important;
  }
}

.savings--bullet {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .savings--bullet {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .savings--bullet {
    margin-top: 8px;
  }
}

.savings--bullet-text {
  color: #43A564 !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #FFF;
}
@media screen and (min-width: 1024px) {
  .savings--bullet-text {
    font-size: 18px !important;
  }
}

.website--outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFF5E7;
}
.website--outer > .grid--container {
  max-width: initial;
}

.website--inner {
  padding-top: 128px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  display: flex;
}
@media (max-width: 1728px) {
  .website--inner {
    padding-top: 96px;
  }
}
@media (max-width: 1024px) {
  .website--inner {
    padding: 56px 0 0;
  }
}
@media (max-width: 767px) {
  .website--inner {
    padding: 32px 24px 0;
    border-radius: 0;
  }
}
.website--inner > h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #F95F09;
  line-height: 125%;
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  max-width: 809px;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .website--inner > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #F95F09;
    line-height: 125%;
    font-size: 1.625rem;
    letter-spacing: 0.01em;
    font-weight: 800;
  }
}
@media (max-width: 767px) {
  .website--inner > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #F95F09;
    line-height: 130%;
    font-size: 1.375rem;
    font-weight: 800;
  }
}
.website--inner > span {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 145%;
  color: #464141;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 700px;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .website--inner > span {
    font-family: "Inter", Helvetica, sans-serif;
    font-weight: 400;
    line-height: 145%;
    color: #464141;
    margin-bottom: 1.5rem;
    font-size: 18px;
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .website--inner > span {
    font-family: "Inter", Helvetica, sans-serif;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.005em;
    color: #464141;
    margin-bottom: 0.5rem;
    font-size: 16px;
  }
}

.website--tag {
  font-family: "Inter", Helvetica, sans-serif;
  color: #464141;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 140%;
  margin-bottom: 0.5rem;
}

.website--button-wrapper {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .website--button-wrapper {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .website--button-wrapper {
    margin-bottom: 56px;
  }
}

.website--button {
  width: 132px;
}

.website--images-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .website--images-wrapper {
    max-width: 816px;
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .website--images-wrapper {
    max-width: 1237px;
    padding: 0 56px;
  }
}

.website--images {
  width: 100%;
  height: 244px;
  background: url("/assets/images/takeaway-app.webp"), url("/assets/images/takeaway-website.webp");
  background-size: 236px, 102%;
  background-repeat: no-repeat;
  background-position: 110% 66px, 24px top;
}
@media (min-width: 768px) {
  .website--images {
    height: 300px;
    background-size: 350px, 640px;
    background-position: right bottom, left top;
  }
}
@media (min-width: 1024px) {
  .website--images {
    height: 406px;
    background-size: 524px, 85%;
    background-position: right bottom -1px, left top;
  }
}
@media (min-width: 1728px) {
  .website--images {
    height: 476px;
    background-position: right bottom -1px, left top;
  }
}

.marketing--outer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 128px 56px;
  overflow: hidden;
  display: flex;
  gap: 16px;
}
@media (max-width: 1728px) {
  .marketing--outer {
    padding: 96px 56px;
  }
}
@media (max-width: 1024px) {
  .marketing--outer {
    padding: 56px 32px;
    display: flex;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .marketing--outer {
    padding: 32px 24px;
    flex-direction: column;
    gap: 16px;
  }
}
.marketing--outer .grid--inner.columns {
  gap: 56px;
}
@media (max-width: 767px) {
  .marketing--outer .grid--inner.columns {
    gap: 24px;
    flex-direction: column;
  }
}

.marketing--columns {
  align-items: center;
}

.marketing--img {
  padding: 48px 24px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #F6F0FF;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .marketing--img {
    padding: 96px 24px;
  }
}
.marketing--img img {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 1024px) {
  .marketing--img img {
    max-width: 310px;
  }
}

.marketing--desc {
  align-self: center;
}
.marketing--desc h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 125%;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .marketing--desc h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 125%;
    font-size: 1.625rem;
    letter-spacing: 0.01em;
    font-weight: 800;
    margin-bottom: 4px;
  }
}
@media (max-width: 767px) {
  .marketing--desc h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 130%;
    font-size: 1.375rem;
    font-weight: 800;
  }
}
.marketing--desc h3 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 145%;
  font-size: 1.25rem;
  letter-spacing: -0.001em;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 145%;
}
@media (max-width: 1024px) {
  .marketing--desc h3 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    font-weight: 600;
    max-width: 290px;
    font-size: 18px;
    letter-spacing: 0.09px;
  }
}
@media (max-width: 767px) {
  .marketing--desc h3 {
    margin-bottom: 16px;
    max-width: 275px;
  }
}
.marketing--desc p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: -0.005em;
  color: #4D4C4C;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .marketing--desc p {
    max-width: 600px;
    font-size: 18px;
  }
}
.marketing--desc p:last-child {
  margin: 0;
}
.marketing--desc p > span {
  white-space: nowrap;
}

.marketing--icon {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 135%;
  letter-spacing: 0.01em;
  color: #312D2D;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .marketing--icon {
    margin-bottom: 16px;
  }
}
.marketing--icon img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.marketing--features {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #1E1A1A;
  border-radius: 8px;
  color: #FFF;
}
@media (min-width: 768px) {
  .marketing--features {
    padding: 32px;
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .marketing--features {
    max-width: 308px;
    min-height: 456px;
    justify-content: space-between;
  }
}

.marketing--features-heading {
  font-size: 22px;
  font-weight: 800;
  color: #FFF;
  line-height: 130%;
}
@media (min-width: 768px) {
  .marketing--features-heading {
    line-height: 125%;
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .marketing--features-heading {
    font-size: 36px;
  }
}

.marketing--bullet-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.marketing--bullet {
  display: flex;
  align-items: center;
  gap: 16px;
}

.marketing--bullet-text {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #FFF;
}
@media screen and (min-width: 1024px) {
  .marketing--bullet-text {
    font-size: 18px !important;
  }
}

.marketing--campaigns {
  height: 456px;
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background-color: #F7F7F7;
  border: 1px solid #F0EFEF;
  line-height: 145%;
}
@media screen and (min-width: 768px) {
  .marketing--campaigns {
    height: auto;
    flex-basis: 50%;
    padding: 32px 32px 0;
  }
}
@media screen and (min-width: 1024px) {
  .marketing--campaigns {
    max-width: 308px;
    min-height: 456px;
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  .marketing--campaigns-text {
    padding: 32px 32px 0;
  }
}

.marketing--campaigns-heading {
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 125%;
}

.marketing--campaigns-image {
  height: 100%;
  width: 100%;
  max-width: 305px;
  margin: 12px auto 0;
  background: url("/assets/images/marketing-message.webp") no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .marketing--campaigns-image {
    max-width: none;
    margin-top: 20px;
  }
}

.marketing--content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .marketing--content {
    flex-basis: 50%;
    gap: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .marketing--content {
    flex-direction: row;
    flex-basis: auto;
    justify-content: space-between;
  }
}

.improve--outer {
  background-color: #FFF3F2;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .improve--outer {
    padding: 56px 32px 0;
  }
}
@media (max-width: 767px) {
  .improve--outer {
    padding: 24px 24px 0;
  }
}

.improve--inner {
  padding: 56px 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFF3F2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .improve--inner {
    padding: 24px 24px 0;
  }
}
.improve--inner > img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
}
.improve--inner > h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 130%;
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 36px;
}
@media (max-width: 1024px) {
  .improve--inner > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    font-weight: 600;
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .improve--inner > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    font-weight: 600;
    font-size: 22px;
  }
}
.improve--inner > span {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 145%;
  color: #4D4C4C;
  text-align: center;
  margin-bottom: 24px;
  max-width: 700px;
  margin-bottom: 24px;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .improve--inner > span {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
    margin-bottom: 32px;
    max-width: 600px;
  }
}
@media (max-width: 1024px) {
  .improve--inner > span {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
    font-size: 18px;
    line-height: 145%;
  }
}
@media (max-width: 767px) {
  .improve--inner > span {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.005em;
    font-size: 16px;
    line-height: 145%;
  }
}

.improve--layer-1 {
  height: 8px;
  width: calc(100% - 176px);
  background-color: #F6BCBC;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
@media screen and (min-width: 768px) {
  .improve--layer-1 {
    height: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .improve--layer-1 {
    max-width: 784px;
  }
}

.improve--layer-2 {
  height: 16px;
  width: calc(100% - 80px);
  display: flex;
  flex-grow: 1;
  margin: 0 40px;
  background-color: #FDE2E2;
  border: 1px solid #F6BCBC;
  border-bottom: none;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
@media screen and (min-width: 768px) {
  .improve--layer-2 {
    height: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .improve--layer-2 {
    max-width: 880px;
  }
}

.improve--animated_area {
  pointer-events: none;
}
.improve--animated_area ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  margin: 0;
  border: 1px solid #F6BCBC;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .improve--animated_area ul {
    max-width: 960px;
  }
}
.improve--animated_area li {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.02em;
  width: 100%;
  height: 48px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-top: 1px solid #F6BCBC;
  border-bottom: none;
  background-color: white;
}
@media screen and (min-width: 768px) {
  .improve--animated_area li {
    width: 50%;
  }
}
.improve--animated_area li[data-scheme="2"] span {
  background-color: #FFC887;
  color: #4D4C4C;
}
.improve--animated_area li[data-scheme="3"] span {
  background-color: #FDE2E2;
  color: #D82B31;
}
.improve--animated_area li:first-child {
  height: 80px;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .improve--animated_area li:first-child {
    width: 100%;
    height: 56px;
  }
}
@media screen and (min-width: 768px) {
  .improve--animated_area li:first-child {
    height: auto;
  }
}
.improve--animated_area li:last-child {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .improve--animated_area li:nth-child(2), .improve--animated_area li:nth-child(4) {
    border-right: 1px solid #F6BCBC;
  }
}
@media screen and (min-width: 1024px) {
  .improve--animated_area li:nth-child(2), .improve--animated_area li:nth-child(3), .improve--animated_area li:nth-child(4) {
    width: 33.3333333333%;
    border-right: none;
  }
  .improve--animated_area li:nth-child(5), .improve--animated_area li:nth-child(6) {
    width: 50%;
  }
  .improve--animated_area li:nth-child(2), .improve--animated_area li:nth-child(3), .improve--animated_area li:nth-child(5) {
    border-right: 1px solid #F6BCBC;
  }
}
.improve--animated_area p {
  width: 220px;
  font-size: 18px;
  font-weight: 600;
  line-height: 135%;
  text-transform: none;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .improve--animated_area p {
    width: auto;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.2px;
  }
}
@media screen and (min-width: 1024px) {
  .improve--animated_area p {
    font-size: 26px;
    padding: 16px 0 8px;
  }
}
.improve--animated_area img {
  width: 24px;
  height: 24px;
}
.improve--animated_area span {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.02em;
  width: 74px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: white;
  background-color: #D82B31;
  border-radius: 360px;
  margin-left: auto;
  text-align: center;
}

.slideshow--outer {
  background-color: #312D2D;
  padding: 128px 0;
  overflow: hidden;
}
@media (max-width: 1728px) {
  .slideshow--outer {
    padding: 96px 0;
  }
}
@media (max-width: 1024px) {
  .slideshow--outer {
    padding: 56px 0;
  }
}
@media (max-width: 767px) {
  .slideshow--outer {
    padding: 32px 0;
  }
}

.slideshow--inner {
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 499px) {
  .slideshow--inner {
    padding: 0 24px !important;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .slideshow--inner.grid--inner {
    padding: 0;
  }
}
.slideshow--inner > h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 125%;
  font-size: 2.25rem;
  font-weight: 800;
  color: #F6BCBC;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .slideshow--inner > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 125%;
    font-size: 1.625rem;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: #F6BCBC;
  }
}
@media (max-width: 767px) {
  .slideshow--inner > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 130%;
    font-size: 1.375rem;
    font-weight: 800;
    color: #F6BCBC;
  }
}
.slideshow--inner > span {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 130%;
  font-size: 1.625rem;
  letter-spacing: -0.005em;
  font-weight: 500;
  color: white;
  text-align: center;
  margin-bottom: 24px;
  max-width: 600px;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .slideshow--inner > span {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.25rem;
    letter-spacing: -0.001em;
    font-weight: 500;
    color: white;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .slideshow--inner > span {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    letter-spacing: -0.005em;
    font-weight: 500;
    color: white;
  }
}

.slideshow--container .glide__slide {
  background-color: white;
  padding: 32px;
  overflow: hidden;
  border-radius: 8px;
  direction: ltr;
  height: auto;
}
@media (max-width: 1024px) {
  .slideshow--container .glide__slide {
    padding: 24px;
  }
}
.slideshow--container .glide__slide * {
  direction: ltr;
}
.slideshow--container .slideshow--slide {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
}
.slideshow--container .slideshow--slide * {
  box-sizing: border-box;
}
.slideshow--container .slideshow--slide > p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.005em;
  font-style: italic;
  margin-bottom: 24px;
  text-align: left;
  position: relative;
}
@media (max-width: 1024px) {
  .slideshow--container .slideshow--slide > p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 500;
    line-height: 145%;
  }
}
@media (max-width: 767px) {
  .slideshow--container .slideshow--slide > p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.005em;
  }
}
.slideshow--container .slideshow--slide > p:before {
  content: "“";
  position: absolute;
  left: -8px;
}
.slideshow--container .slideshow--slide > p:after {
  content: "”";
}
.slideshow--container .slideshow--image {
  overflow: hidden;
  border-radius: 5px;
  width: 120px;
  height: 120px;
  float: left;
  margin-bottom: 24px;
}
.slideshow--container .slideshow--image img {
  width: 120px;
  height: 120px;
}
.slideshow--container .slideshow--author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
}
.slideshow--container .slideshow--author p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 600;
  line-height: 145%;
  margin-bottom: 4px;
}
.slideshow--container .slideshow--author span {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.005em;
  margin-bottom: 0;
  color: #979191;
}
.slideshow--container div.slideshow--buttons {
  display: flex;
  padding-top: 56px;
  justify-content: center;
}
@media (min-width: 768px) {
  .slideshow--container div.slideshow--buttons {
    display: none;
  }
}
@media (max-width: 1024px) {
  .slideshow--container div.slideshow--buttons {
    padding-top: 24px;
  }
}
.slideshow--container div.slideshow--buttons button {
  border-radius: 100%;
  height: 48px;
  width: 48px;
  outline: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 16px;
}
.slideshow--container div.slideshow--buttons button:last-child img {
  transform: rotate(180deg);
}
.slideshow--container div.slideshow--buttons button img {
  width: 24px;
  height: 24px;
}

.advantage--outer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 128px 56px;
  overflow: hidden;
}
@media (max-width: 1728px) {
  .advantage--outer {
    padding: 96px 56px;
  }
}
@media (max-width: 1024px) {
  .advantage--outer {
    padding: 56px 32px;
  }
}
@media (max-width: 767px) {
  .advantage--outer {
    padding: 32px 24px;
  }
}
.advantage--outer .grid--inner.columns {
  gap: 56px;
}
@media (max-width: 767px) {
  .advantage--outer .grid--inner.columns {
    gap: 24px;
    flex-direction: column;
  }
}

.advantage--desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.advantage--desc * {
  max-width: 500px;
  width: 100%;
}
.advantage--desc > h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 125%;
  font-size: 2.25rem;
  font-weight: 800;
  color: #312D2D;
  max-width: 809px;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .advantage--desc > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 125%;
    font-size: 1.625rem;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: #312D2D;
  }
}
@media (max-width: 767px) {
  .advantage--desc > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 130%;
    font-size: 1.375rem;
    font-weight: 800;
    color: #312D2D;
  }
}
.advantage--desc p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 145%;
  margin-bottom: 1rem;
  color: #4D4C4C;
  font-size: 20px;
  max-width: 700px;
}
@media (max-width: 1024px) {
  .advantage--desc p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
    color: #4D4C4C;
    font-size: 18px;
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .advantage--desc p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.005em;
    color: #4D4C4C;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: -0.08px;
  }
}
.advantage--desc p:last-child {
  margin-bottom: 0;
}

.advantage--img {
  width: 33.3333333333%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F7F7F7;
  padding: 116px 2rem 116px;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .advantage--img {
    padding: 128px 15px;
    display: none;
  }
}
.advantage--img img {
  max-width: 350px;
  width: 100%;
}
@media (max-width: 1024px) {
  .advantage--img img {
    max-width: 312px;
  }
}

.advantage--icon {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 135%;
  letter-spacing: 0.01em;
  color: #312D2D;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 140%;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .advantage--icon {
    margin-bottom: 8px;
  }
}
.advantage--icon img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.advantage--feature-wrapper {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .advantage--feature-wrapper {
    margin-top: 32px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .advantage--feature-wrapper {
    margin-top: 56px;
  }
}
@media screen and (min-width: 1728px) {
  .advantage--feature-wrapper {
    margin-top: 96px;
  }
}

.advantage--feature {
  height: 456px;
  overflow: hidden;
  background-color: #F7F7F7;
  border: 1px solid #F0EFEF;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .advantage--feature {
    flex-basis: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .advantage--feature {
    flex-basis: 33.3333333333%;
  }
}

.advantage--feature-text {
  padding: 24px 24px 0;
}
@media screen and (min-width: 1024px) {
  .advantage--feature-text {
    padding: 32px 32px 0;
  }
}

@media screen and (min-width: 768px) {
  .advantage--feature-text-yea {
    max-width: 304px;
  }
}

.advantage--feature-heading {
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 125%;
}

.advantage--feature-image {
  height: 100%;
  margin: 24px 0 0 24px;
  box-shadow: -4px -4px 12px 5px rgba(0, 0, 0, 0.03);
  border-top-left-radius: 8px;
}
@media screen and (min-width: 768px) {
  .advantage--feature-image {
    margin: 32px 0 0 32px;
  }
}

.advantage--feature-image-1 {
  background: url("/assets/images/transactions-preview-full.webp") no-repeat;
  background-size: 263%;
}
@media screen and (min-width: 1024px) {
  .advantage--feature-image-1 {
    background-size: 229%;
  }
}

.advantage--feature-image-2 {
  background: url("/assets/images/transfer-request-full.webp") no-repeat;
  background-size: 116%;
}
@media screen and (min-width: 768px) {
  .advantage--feature-image-2 {
    background-size: 106%;
  }
}
@media screen and (min-width: 1024px) {
  .advantage--feature-image-2 {
    margin: 32px 32px 0;
    background-size: 100%;
    border-top-right-radius: 8px;
  }
}

.suppliers--outer {
  padding: 128px 0;
  overflow: hidden;
}
@media (max-width: 1728px) {
  .suppliers--outer {
    padding: 96px 0;
  }
}
@media (max-width: 1024px) {
  .suppliers--outer {
    padding: 56px 0;
  }
}
@media (max-width: 767px) {
  .suppliers--outer {
    padding: 32px 24px;
  }
}
.suppliers--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.suppliers--inner > span {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .suppliers--inner > span {
    margin-bottom: 8px;
  }
}
.suppliers--inner > span img {
  width: 32px;
  height: 32px;
}
.suppliers--inner > h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 125%;
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .suppliers--inner > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 125%;
    font-size: 1.625rem;
    letter-spacing: 0.01em;
    font-weight: 800;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .suppliers--inner > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 130%;
    font-size: 1.375rem;
    font-weight: 800;
  }
}
.suppliers--inner > p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 145%;
  color: #4D4C4C;
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin-bottom: 0;
  line-height: 145% !important;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .suppliers--inner > p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
    color: #4D4C4C;
    font-size: 18px;
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .suppliers--inner > p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.005em;
    color: #4D4C4C;
    font-size: 16px;
  }
}
.suppliers--icon {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 135%;
  letter-spacing: 0.01em;
  color: #312D2D;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 140%;
}
.suppliers--icon img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.cc--outer {
  padding: 56px 0;
  background-color: #F7F7F7;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .cc--outer {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .cc--outer {
    padding: 24px 0;
  }
}

.cc--inner {
  flex-direction: column;
  align-items: center;
}
.cc--inner h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 130%;
  font-size: 1.625rem;
  font-weight: 700;
  color: #312D2D;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .cc--inner h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.25rem;
    font-weight: 700;
    color: #312D2D;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .cc--inner h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    font-weight: 700;
    color: #312D2D;
  }
}
.cc--inner p {
  padding-top: 0.5rem;
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 600;
  line-height: 145%;
  color: #4D4C4C;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .cc--inner p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 600;
    line-height: 145%;
    letter-spacing: 0.005em;
    color: #4D4C4C;
  }
}
@media (max-width: 767px) {
  .cc--inner p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.01em;
    color: #4D4C4C;
    text-align: center;
  }
}

.cc--logos {
  display: flex;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .cc--logos {
    margin-bottom: 24px;
  }
}
.cc--logos img {
  margin: 0 1rem 1rem;
}
@media (max-width: 1024px) {
  .cc--logos img {
    margin: 0 1rem 24px;
  }
  .cc--logos img:last-child {
    margin-bottom: 0;
  }
}

.nationwide--outer {
  padding: 96px 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .nationwide--outer {
    padding: 56px 0;
  }
}
@media (max-width: 767px) {
  .nationwide--outer {
    padding: 32px 0 0;
  }
}

.nationwide--inner {
  flex-direction: column;
  align-items: center;
}
.nationwide--inner > h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 125%;
  font-size: 2.25rem;
  font-weight: 800;
  color: #312D2D;
  text-align: center;
  max-width: 809px;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .nationwide--inner > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 125%;
    font-size: 1.625rem;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: #312D2D;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 767px) {
  .nationwide--inner > h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 130%;
    font-size: 1.375rem;
    font-weight: 800;
    color: #312D2D;
    max-width: 315px;
  }
}
.nationwide--inner > span {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 130%;
  font-size: 1.625rem;
  letter-spacing: -0.005em;
  font-weight: 500;
  color: #4D4C4C;
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .nationwide--inner > span {
    margin-bottom: 32px;
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.25rem;
    letter-spacing: -0.001em;
    font-weight: 500;
    color: #4D4C4C;
  }
}
@media (max-width: 767px) {
  .nationwide--inner > span {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    letter-spacing: -0.005em;
    font-weight: 500;
    color: #4D4C4C;
  }
}

.grid--inner.nationwide--columns {
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .grid--inner.nationwide--columns {
    gap: 0 !important;
    padding: 0;
  }
}
.grid--inner.nationwide--columns .grid--inner_column {
  text-decoration: none;
  padding: 2rem 2rem 4.3rem;
  margin-bottom: 0;
  position: relative;
  width: 30%;
}
@media (max-width: 1024px) {
  .grid--inner.nationwide--columns .grid--inner_column {
    width: 33.3333333333%;
    padding: 24px 24px 72px;
  }
}
@media screen and (min-width: 768px) {
  .grid--inner.nationwide--columns .grid--inner_column {
    border: 1px solid #F0EFEF;
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .grid--inner.nationwide--columns .grid--inner_column {
    width: 100%;
    border-bottom: 1px solid #F0EFEF;
  }
  .grid--inner.nationwide--columns .grid--inner_column:first-child {
    border-top: 1px solid #F0EFEF;
  }
}
.grid--inner.nationwide--columns .grid--inner_column h3 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 130%;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  .grid--inner.nationwide--columns .grid--inner_column h3 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
  }
}
@media (max-width: 767px) {
  .grid--inner.nationwide--columns .grid--inner_column h3 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    font-weight: 700;
  }
}
.grid--inner.nationwide--columns .grid--inner_column p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 145%;
  margin: 0;
}
@media (max-width: 1024px) {
  .grid--inner.nationwide--columns .grid--inner_column p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
  }
}
@media (max-width: 767px) {
  .grid--inner.nationwide--columns .grid--inner_column p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #4D4C4C;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.005em;
  }
}

.grid--inner .nationwide--icons {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.5rem;
  height: 32px;
  align-items: center;
}
.grid--inner .nationwide--icons img {
  width: 32px;
  height: 32px;
  margin-right: 2px;
}
.grid--inner .nationwide--icons img.cc {
  width: 72px;
  height: auto;
}

.grid--inner.nationwide--columns .nationwide--learn_more {
  padding-top: 13px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  bottom: 2rem;
  position: absolute;
  left: 2rem;
}
.grid--inner.nationwide--columns .nationwide--learn_more img {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}
.grid--inner.nationwide--columns .nationwide--learn_more p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 1rem;
  font-weight: 600;
  line-height: 145%;
  color: #3D6DE8;
  text-decoration: underline;
}

.form-area--outer {
  overflow: hidden;
}
@media (max-width: 767px) {
  .form-area--outer > .grid--inner {
    padding: 0;
  }
}
.form-area--outer > .grid--inner > .grid--container {
  max-width: initial;
}
.form-area--outer .grid--inner.columns {
  gap: 56px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .form-area--outer .grid--inner.columns {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .form-area--outer .grid--inner.columns {
    gap: 24px;
  }
}
.form-area--outer > .grid--container > .grid--inner {
  width: calc(100% + 56px);
  margin-left: -28px;
}
@media (max-width: 1500px) {
  .form-area--outer > .grid--container > .grid--inner {
    margin: 0;
    width: 100%;
  }
}
.form-area--outer .form-area--inner {
  background-color: #D82B31;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .form-area--outer .form-area--inner {
    border-radius: 0;
    padding: 32px 0;
  }
}
.form-area--outer .form-area--inner .grid--inner {
  padding: 0 56px;
}
@media (max-width: 767px) {
  .form-area--outer .form-area--inner .grid--inner {
    padding: 0 24px;
  }
}
.form-area--outer .form-area--bg {
  width: calc(100% + 32px);
  height: 292px;
  position: absolute;
  bottom: -32px;
  left: -32px;
  z-index: 0;
  background-size: 365px;
  pointer-events: none;
}

.form-area--left {
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.form-area--left span {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
  font-size: 15px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: white;
  max-width: 452px;
  width: 100%;
}
.form-area--left h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 125%;
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0.5rem 0;
  color: white;
  max-width: 452px;
  width: 100%;
}
@media (max-width: 1024px) {
  .form-area--left h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 125%;
    font-size: 1.625rem;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: white;
  }
}
@media (max-width: 767px) {
  .form-area--left h2 {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 125%;
    font-size: 1.625rem;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: white;
  }
}
.form-area--left p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 130%;
  font-size: 1.625rem;
  letter-spacing: -0.005em;
  font-weight: 500;
  color: white;
  margin-bottom: 0;
  max-width: 465px;
  width: 100%;
}
@media (max-width: 1024px) {
  .form-area--left p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.25rem;
    letter-spacing: -0.001em;
    font-weight: 500;
    color: white;
  }
}
@media (max-width: 767px) {
  .form-area--left p {
    font-family: "Inter", Helvetica, sans-serif;
    color: #312D2D;
    line-height: 145%;
    font-size: 1.125rem;
    letter-spacing: -0.005em;
    font-weight: 500;
    color: white;
  }
}

.form-area--right {
  position: relative;
  z-index: 1;
  width: auto !important;
}
@media (max-width: 767px) {
  .form-area--right {
    padding: 0;
  }
}
.form-area--right form {
  height: 100%;
  width: 564px;
  background-color: white;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .form-area--right form {
    padding: 24px;
    width: auto;
  }
}
.form-area--right .form-area--input {
  font-family: "Inter", Helvetica, sans-serif;
  height: 56px;
  border: 1px solid #E1DFDF;
  color: #312D2D;
  font-size: 15px;
  font-weight: 400;
  padding-top: 30px;
  padding-left: 16px;
  border-radius: 8px;
  width: 100%;
}
.form-area--right .form-area--input:focus {
  border: #BDB7B7 2px solid;
}
.form-area--right .form-area--input-invalid {
  border-color: #F6BCBC;
}
.form-area--right input[type=submit] {
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 145%;
  color: white;
  padding: 8px 1rem;
  margin: 16px 0 16px;
  background-color: #312D2D;
  outline: 0;
  border-radius: 8px;
  border: 1px solid #312D2D;
  height: 56px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .form-area--right input[type=submit] {
    padding: 12px 1rem;
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  .form-area--right input[type=submit] {
    margin: 24px 0 8px;
    height: 48px;
  }
}
.dropdown-trigger {
  font-family: "Inter", Helvetica, sans-serif;
  height: 56px;
  border: 1px solid #E1DFDF;
  color: #979191;
  font-size: 15px;
  font-weight: 400;
  padding: 16px;
  border-radius: 8px;
  width: 100%;
  cursor:pointer;
}
.dropdown-icon{
  position: absolute;
  top: 20px;
  right: 18px;
}
.dropdown-list {
  position: absolute;
  z-index: 9999;
  background: #FFFFFF;
  border: 1px solid #E1DFDF;
  border-radius: 8px;
  margin-top:8px;
  width: 100%
}
.dropdown-option {
  font-family: "Inter", Helvetica, sans-serif;
  height: 48px;
  color: #312D2D;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  width: 100%;
  cursor: pointer;
  padding: 16px;
}
.dropdown-option:hover {
  background: #E1DFDF;
}
.dropdown-divider {
  font-family: "Inter", Helvetica, sans-serif;
  height: 1px;
  margin-left: 16px;
  margin-right: 16px;
  background: #F0EFEF;
}
.dropdown-trigger-selected {
  font-family: "Inter", Helvetica, sans-serif;
  height: 56px;
  border: 1px solid #E1DFDF;
  color: #312D2D;
  font-size: 15px;
  font-weight: 400;
  padding-top: 24px;
  padding-left: 16px;
  border-radius: 8px;
  width: 100%;
  cursor:pointer;
}
.dropdown-icon-selected{
  position: absolute;
  top: 20px;
  right: 18px;
}
.dropdown-label {
  position: absolute;
  font-size: 12px;
  top: 6px;
  font-weight: 500;
  color: #312D2D;
}
.selected-source {
  padding-top: 10px;
  color:#312D2D;
}
.form-area--right span {
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 15px;
  line-height: 145%;
  color: #979191;
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
}
.form-area--right span > a {
  color: #3D6DE8;
}
.form-area--right .form-area--error {
  color: #D82B31;
  font-size: 14px;
}
.form-area--right .hidden {
  display: none;
}

.thank-you {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thank-you {
    padding: 56px 0;
  }
}
@media screen and (min-width: 1024px) {
  .thank-you {
    padding: 96px 0;
  }
}
.thank-you__image {
  height: 164px;
  width: 100%;
  max-width: 700px;
  border-radius: 8px;
  background: #9BD392 url("/assets/images/thank-you.webp") bottom/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .thank-you__image {
    height: 300px;
    background-size: 668px;
  }
}
@media screen and (min-width: 1024px) {
  .thank-you__image {
    padding: 96px 0;
  }
}
.thank-you__tag {
  min-height: 32px;
  width: fit-content;
  padding: 8px 12px;
  margin: 24px 0 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  background-color: #FFF3F2;
  border: 1px solid #FDE2E2;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 13px;
  color: #D82B31;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.26px;
}
@media screen and (min-width: 768px) {
  .thank-you__tag {
    margin: 32px 0 24px;
    font-size: 14px;
    letter-spacing: 0.14px;
  }
}
@media screen and (min-width: 1024px) {
  .thank-you__tag {
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 0.14px;
  }
}
.thank-you__title {
  width: 244px;
  font-size: 32px;
  font-weight: 800;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .thank-you__title {
    width: auto;
    font-size: 36px;
    line-height: 140%;
  }
}
@media screen and (min-width: 1024px) {
  .thank-you__title {
    font-size: 50px;
    line-height: 120%;
  }
}
.thank-you__subtitle {
  max-width: 304px;
  margin: 4px 0 16px;
  color: #4D4C4C;
  font-size: 18px;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -0.09px;
}
@media screen and (min-width: 768px) {
  .thank-you__subtitle {
    max-width: none;
    margin: 8px 0 32px;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.2px;
  }
}
@media screen and (min-width: 1024px) {
  .thank-you__subtitle {
    margin-bottom: 24px;
    font-size: 26px;
    letter-spacing: -0.13px;
  }
}
.thank-you__button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .thank-you__button-wrapper {
    flex-direction: row;
    gap: 32px;
  }
}
.thank-you__home-button {
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border: 1px solid #F0EFEF;
  border-radius: 4px;
  text-decoration: none;
  color: #D82B31;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
}
.thank-you__spacer {
  display: none;
  color: #BDB7B7;
}
@media screen and (min-width: 768px) {
  .thank-you__spacer {
    display: block;
  }
}
.thank-you__website-button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4D4C4C;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  text-decoration: none;
}
.thank-you__button-arrow {
  width: 16px;
  height: 16px;
}

html {
  font-family: "Inter", Helvetica, sans-serif;
  background-color: #FFF;
}

.grid--container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.grid--inner {
  display: flex;
}
.grid--inner.columns {
  flex-direction: row;
  gap: 1rem;
}
.grid--inner.rows {
  flex-direction: column;
}
@media (min-width: 1024px) {
  .grid--inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .grid--inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 414px) and (max-width: 768px) {
  .grid--inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 414px) {
  .grid--inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.grid--inner > .grid--inner_column {
  flex-grow: 1;
  width: 100%;
}

h1 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  letter-spacing: -0.01em;
  line-height: 120%;
  font-size: 3.125rem;
}

h2 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 125%;
  font-size: 2.25rem;
}

h3 {
  font-family: "Inter", Helvetica, sans-serif;
  color: #312D2D;
  line-height: 130%;
  font-size: 1.625rem;
}

p {
  font-family: "Inter", Helvetica, sans-serif;
  color: #4D4C4C;
}

.testimonials__tag {
  margin-bottom: 4px;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.14px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .testimonials__tag {
    margin-bottom: 8px;
  }
}

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

/* custom enquiry form css */
.form-div {
  position: relative;
  padding-bottom: 16px;
}
.field-holder{
  position:relative;
  margin-bottom: 3.5em;
}
input{
  position: absolute;
  outline: none;
  background: transparent;
  z-index: 1111;
  transition: .3s ease-in-out;
}
input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s !important;
}
input:has([value]):focus {
  transition: background-color 0s 600000s, color 0s 600000s !important;
}
label {
  position: absolute;
  top: 0;
  left: 0;
  color: #979191;
  font-weight: 400;
  font-size:80px;
  transition: .3s ease;
}
input,label{
  font-size:15px;
  width:100%;
  padding:16px
}
input:focus + label,
input:valid + label{
  font-size: 12px;
  top: -10px;
  font-weight: 500;
  color: #312D2D;
}
.error-viewer {
  z-index: 9999;
  position: absolute;
  right: 0;
  padding: 16px;
}