/** 
* Estilos usados para o rebranding da Home.
**/
/* Modern Reset: https://dev.to/hankchizljaw/a-modern-css-reset-6p3 */
/* Box sizing rules */
/* line 4, /usr/src/app/app/assets/stylesheets/home/_reset.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* line 11, /usr/src/app/app/assets/stylesheets/home/_reset.scss */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* line 17, /usr/src/app/app/assets/stylesheets/home/_reset.scss */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* line 35, /usr/src/app/app/assets/stylesheets/home/_reset.scss */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizespeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* line 43, /usr/src/app/app/assets/stylesheets/home/_reset.scss */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* line 49, /usr/src/app/app/assets/stylesheets/home/_reset.scss */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* line 54, /usr/src/app/app/assets/stylesheets/home/_reset.scss */
img {
  display: block;
  max-width: 100%;
}

/* Natural flow and rhythm in articles by default */
/* line 60, /usr/src/app/app/assets/stylesheets/home/_reset.scss */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
/* line 65, /usr/src/app/app/assets/stylesheets/home/_reset.scss */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  /* line 74, /usr/src/app/app/assets/stylesheets/home/_reset.scss */
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/* line 49, /usr/src/app/app/assets/stylesheets/home/_variables.scss */
:root {
  --primary: #02a97f;
  --primary-2: #35ba99;
  --primary-3: #e0fdf6;
  --primary-4: #5bcb9d;
  --secondary: #4b39ff;
  --secondary-2: #6f61ff;
  --secondary-3: #a9a1f9;
  --secondary-4: #1073c0;
  --secondary-5: #2a17ec;
  --tertiary: #1c1b25;
  --tertiary-2: #2c343e;
  --tertiary-3: #596573;
  --tertiary-4: #8c95a1;
  --tertiary-5: #c4c9cf;
  --tertiary-6: #eaedf0;
  --tertiary-7: #8c8c8c;
  --box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  --border: #c4c9cf;
  --text: #1c1b25;
  --white: #fff;
  --light-background: #eff0f1;
  --white-transparent: rgba(255, 255, 255, 0.2);
  --base-font: 16px;
  --bold: 700;
  --semi-bold: 600;
  --medium: 500;
  --regular: 400;
  --layer-1: 1;
  --layer-2: 400;
  --layer-3: 500;
  --layer-4: 600;
  --layer-5: 700;
  --layer-6: 800;
  --layer-7: 900;
  --layer-8: 1000;
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/_utils.scss */
.active-tab {
  display: grid !important;
  opacity: 1;
  transition: opacity 0.4s linear;
}

/* line 7, /usr/src/app/app/assets/stylesheets/home/_utils.scss */
.container,
.company,
.copyright,
.footer__container,
.frequent-searches__container,
.main-navigation__container,
.opportunity,
.search-banner__container,
.store,
.support__container,
.testimony,
.tips,
.top-navigation__container,
.faq__container,
.pre-footer__container {
  max-width: calc(1222px + 15px);
  margin: auto;
  padding: 0 0.75rem;
}

/* line 14, /usr/src/app/app/assets/stylesheets/home/_utils.scss */
.image,
.support__image {
  width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  /* line 21, /usr/src/app/app/assets/stylesheets/home/_utils.scss */
  .hide--mobile {
    display: none !important;
  }
}
@media (min-width: 960px) {
  /* line 27, /usr/src/app/app/assets/stylesheets/home/_utils.scss */
  .hide--desktop {
    display: none !important;
  }
}

@media (max-width: 960px) {
  /* line 35, /usr/src/app/app/assets/stylesheets/home/_utils.scss */
  .show--mobile {
    display: block !important;
  }
}
@media (min-width: 960px) {
  /* line 41, /usr/src/app/app/assets/stylesheets/home/_utils.scss */
  .show--desktop {
    display: block !important;
  }
}

/* line 48, /usr/src/app/app/assets/stylesheets/home/_utils.scss */
.fixed {
  position: fixed !important;
}

/* line 52, /usr/src/app/app/assets/stylesheets/home/_utils.scss */
.flex {
  display: flex !important;
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.html,
body {
  font-size: 16px;
  font-family: Epilogue, sans-serif;
}

/* line 7, /usr/src/app/app/assets/stylesheets/home/_base.scss */
h1,
.h1 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 140%;
}
@media (min-width: 960px) {
  /* line 7, /usr/src/app/app/assets/stylesheets/home/_base.scss */
  h1,
  .h1 {
    font-size: 3rem;
  }
}

/* line 19, /usr/src/app/app/assets/stylesheets/home/_base.scss */
h2,
.h2 {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 140%;
}
@media (min-width: 960px) {
  /* line 19, /usr/src/app/app/assets/stylesheets/home/_base.scss */
  h2,
  .h2 {
    font-weight: 600;
    font-size: 2rem;
  }
}

/* line 32, /usr/src/app/app/assets/stylesheets/home/_base.scss */
h3,
.h3,
.testimony__text {
  font-weight: var(--bold);
  font-size: 0.875rem;
  line-height: 140%;
}
@media (min-width: 960px) {
  /* line 32, /usr/src/app/app/assets/stylesheets/home/_base.scss */
  h3,
  .h3,
  .testimony__text {
    font-weight: var(--semi-bold);
    font-size: 1.375rem;
  }
}

/* line 45, /usr/src/app/app/assets/stylesheets/home/_base.scss */
h4,
.h4,
.frequent-searches__panel li a,
.frequent-searches__panel--active li a {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 140%;
}

/* line 53, /usr/src/app/app/assets/stylesheets/home/_base.scss */
h5,
.h5,
.testimony__name {
  font-weight: 600;
  font-size: 1rem;
  line-height: 160%;
}

/* line 61, /usr/src/app/app/assets/stylesheets/home/_base.scss */
h6,
.h6 {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 160%;
}

/* line 71, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.text--p1,
.main-navigation__input,
.main-navigation .main-navigation__input--mobile,
.search-banner__input,
.store__subtitle {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 160%;
}
/* line 77, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.text--p2,
.footer__link-title,
.footer__link-collapsible,
.support__item p,
.signup-box__link,
.signup-box__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 160%;
}
/* line 83, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.text--p3,
.copyright,
.footer__link,
.footer__link-title,
.footer__link-collapsible,
.side-menu__link,
.top-navigation__link,
.top-navigation__link--active {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 160%;
}
/* line 89, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.text--hat,
.frequent-searches__subtitle,
.search-banner__subtitle {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 120%;
  letter-spacing: 160%;
}

/* line 97, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.flag {
  display: inline-block;
  vertical-align: middle;
  background-image: url(/assets/home/spritesheet-79509e0db39643f6bce8d335f979c526f9708ab18bdacde3b946af9ec4192b5e.png);
  background-repeat: no-repeat;
}
/* line 103, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.flag.pt-BR {
  width: 24px;
  height: 15px;
  background-position: -5px -5px;
}
/* line 109, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.flag.es {
  width: 24px;
  height: 15px;
  background-position: -5px -30px;
}
/* line 115, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.flag.en {
  width: 24px;
  height: 15px;
  background-position: -5px -55px;
}

/* line 122, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.mobile-ad {
  text-align: center;
}

/* line 128, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.blue-arrow::after,
.faq__item::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 32px;
  background-image: url(/assets/home/big-arrow-blue-8f2da9613515431bebc3d4ce597bb22259a2e07c4ce67ca88b3f7435e6ffdbf6.svg);
  background-repeat: no-repeat;
  background-position: right;
  transform: translateY(-50%);
  content: " ";
  pointer-events: none;
}

/* line 144, /usr/src/app/app/assets/stylesheets/home/_base.scss */
.tips__article-wrapper {
  border: 2px solid transparent;
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button,
.button__small,
.button__medium,
.button__large {
  color: var(--white);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 2px;
  cursor: pointer;
}
/* line 13, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button:active, .button:hover, .button:focus,
.button__small:active,
.button__medium:active,
.button__large:active,
.button__small:hover,
.button__medium:hover,
.button__large:hover,
.button__small:focus,
.button__medium:focus,
.button__large:focus {
  background-color: var(--secondary-5);
}
/* line 19, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button--icon {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
/* line 24, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button--icon svg path {
  fill: white;
}
/* line 29, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button--outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
/* line 33, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button--outline:active, .button--outline:hover, .button--outline:focus {
  color: var(--tertiary);
  background-color: var(--white);
}
/* line 40, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button--outline:active svg path, .button--outline:hover svg path, .button--outline:focus svg path {
  fill: var(--tertiary);
}
/* line 46, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button--outline-primary {
  color: var(--secondary);
  background-color: transparent;
  border: 1px solid var(--secondary);
}
/* line 51, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button--outline-primary:active, .button--outline-primary:hover, .button--outline-primary:focus {
  background-color: transparent;
}
/* line 58, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button__small {
  padding: 0.7rem 1.0625rem;
  font-size: 0.875rem;
}
/* line 65, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button__medium {
  font-size: 1rem;
}
/* line 71, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
.button__large {
  padding: 1.5rem 1.125rem;
  font-size: 1rem;
}
@media (min-width: 960px) {
  /* line 71, /usr/src/app/app/assets/stylesheets/home/components/_button.scss */
  .button__large {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
  }
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
.company {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 960px) {
  /* line 1, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
  .company {
    padding-top: 5.3125rem;
    padding-bottom: 7rem;
  }
}
/* line 16, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
.company__item a {
  display: inline-block;
}
/* line 21, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
.company img {
  filter: grayscale(1);
}
@media (max-width: 960px) {
  /* line 21, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
  .company img {
    width: 94px;
    height: auto;
  }
}
/* line 30, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
.company__title {
  text-align: center;
}
/* line 34, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
.company__list {
  display: grid;
  grid-auto-flow: dense;
  grid-template: "a b c" auto;
  gap: 2rem 0;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 0.125rem;
}
@media (max-width: 960px) {
  /* line 44, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
  .company__list figure:nth-child(n + 4) {
    display: none;
  }
}
@media (min-width: 960px) {
  /* line 34, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
  .company__list {
    grid-template: "a b c d" auto "e f g g" auto;
    gap: 1rem;
  }
}
@media (min-width: calc(1222px + 15px)) {
  /* line 34, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
  .company__list {
    display: flex;
    justify-content: space-between;
  }
}
/* line 62, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
.company__icon {
  width: 24px;
  height: 24px;
}
/* line 67, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
.company__button {
  display: flex;
  justify-content: center;
}
/* line 71, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
.company__button .button__large {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
@media (max-width: 540px) {
  /* line 71, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
  .company__button .button__large {
    flex: 1;
    justify-content: center;
    font-size: 0.9rem;
    text-align: center;
  }
}
@media (min-width: 540px) {
  /* line 71, /usr/src/app/app/assets/stylesheets/home/components/_company.scss */
  .company__button .button__large {
    gap: 0.5rem;
  }
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_copyright.scss */
.copyright {
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: var(--tertiary-7);
}
/* line 9, /usr/src/app/app/assets/stylesheets/home/components/_copyright.scss */
.copyright a {
  color: var(--secondary-4);
  text-decoration: none;
}
/* line 13, /usr/src/app/app/assets/stylesheets/home/components/_copyright.scss */
.copyright a:hover {
  text-decoration: underline;
}
/* line 18, /usr/src/app/app/assets/stylesheets/home/components/_copyright.scss */
.copyright .privacy-policy {
  margin-left: 4px;
}

/* line 3, /usr/src/app/app/assets/stylesheets/home/components/_divider.scss */
.divider--light {
  width: 100%;
  margin: 0;
  color: white;
  opacity: 0.5;
}
/* line 10, /usr/src/app/app/assets/stylesheets/home/components/_divider.scss */
.divider--dark,
.side-menu__divider {
  width: 100%;
  margin: 0;
  color: #c4c9cf;
  opacity: 0.5;
}

/* stylelint-disable scss/at-extend-no-missing-placeholder */
/* line 2, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer {
  background-color: var(--white);
}
@media (min-width: 960px) {
  /* line 2, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
  .footer {
    background-color: var(--white);
  }
}
/* line 9, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 960px) {
  /* line 9, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
  .footer__container {
    padding: 0;
  }
}
@media (min-width: 960px) {
  /* line 9, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
  .footer__container {
    display: flex;
    flex-direction: row;
    padding-top: 2.625rem;
    padding-bottom: 3rem;
  }
}
/* line 30, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__language {
  color: var(--tertiary-7);
  text-transform: capitalize;
}
/* line 34, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__language:active {
  text-decoration: none;
}
/* line 38, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__language .flag {
  margin-right: 0.75rem;
}
/* line 42, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__language span {
  color: var(--tertiary-7) !important;
}
/* line 47, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__row, .footer__row--main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.125rem;
  padding-bottom: 0.75rem;
  background-color: var(--light-background);
}
/* line 55, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__row--main {
  gap: 1rem;
}
@media (max-width: 960px) {
  /* line 55, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
  .footer__row--main {
    padding: 1rem;
  }
}
/* line 65, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__row--language--social {
  display: flex;
}
/* line 70, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__link-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
/* line 76, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__link-collapsible {
  width: 100%;
  color: var(--primary);
  font-weight: var(--regular);
}
/* line 79, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__link-collapsible.has-flags {
  text-decoration: none !important;
}
/* line 87, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__link-collapsible:hover {
  text-decoration: none;
}
/* line 91, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__link-collapsible::after {
  position: absolute;
  right: 1rem;
  width: 1.5rem;
  height: auto;
  content: url(/assets/home/arrow-green-96fe8fa209556b4b9abdcb0066ea713502b8aea985c27b17875de81152f59cad.svg);
}
/* line 100, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__link-collapsible--active ~ .footer__link-list {
  display: flex !important;
}
/* line 106, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__column, .footer__column--main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
/* line 111, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__column .footer__link-list:not(.footer__social-media > li), .footer__column--main .footer__link-list:not(.footer__social-media > li) {
  display: none;
}
@media (min-width: 960px) {
  /* line 111, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
  .footer__column .footer__link-list:not(.footer__social-media > li), .footer__column--main .footer__link-list:not(.footer__social-media > li) {
    display: flex;
  }
}
@media (max-width: 960px) {
  /* line 106, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
  .footer__column, .footer__column--main {
    padding: 1rem;
  }
}
/* line 123, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__column--main {
  gap: 1rem;
}
@media (max-width: 960px) {
  /* line 123, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
  .footer__column--main {
    padding: 1rem;
  }
}
/* line 134, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__link-store {
  align-self: center;
}
/* line 138, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__social-media {
  display: flex;
  gap: 1rem;
  align-items: center;
}
/* line 143, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__social-media svg {
  width: 1.5rem;
  height: auto;
}
@media (max-width: 960px) {
  /* line 138, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
  .footer__social-media {
    gap: 1rem;
    justify-content: center;
    padding: 1.25rem;
    background-color: var(--light-background);
  }
}
/* line 156, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__link, .footer__link-title, .footer__link-collapsible {
  color: var(--tertiary-7);
  text-decoration: none;
}
/* line 162, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__link:hover, .footer__link-title:hover, .footer__link-collapsible:hover {
  text-decoration: underline;
}
/* line 166, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__link:visited, .footer__link-title:visited, .footer__link-collapsible:visited {
  color: none;
}
/* line 171, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__link-title, .footer__link-collapsible {
  color: var(--primary-4);
  font-weight: 600;
}
/* line 179, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer--dark-background {
  background-color: var(--light-background);
}
/* line 183, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__mobile-copyright {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  color: var(--tertiary-7);
}
/* line 189, /usr/src/app/app/assets/stylesheets/home/components/_footer.scss */
.footer__mobile-copyright a {
  color: var(--secondary-4);
  text-decoration: none;
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches {
  padding-top: 4.25rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: var(--primary);
}
@media (min-width: 960px) {
  /* line 1, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
  .frequent-searches {
    padding-top: 7.8125rem;
    padding-bottom: 6rem;
  }
}
/* line 13, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__container {
  position: relative;
}
/* line 18, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__bg {
  position: absolute;
  bottom: -4%;
  left: 0;
}
@media (min-width: 960px) {
  /* line 18, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
  .frequent-searches__bg {
    bottom: -10%;
    left: -5%;
    width: 575px;
    height: auto;
  }
}
/* line 31, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-items: center;
  color: var(--white);
}
@media (min-width: 960px) {
  /* line 31, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
  .frequent-searches__header {
    align-items: flex-start;
  }
}
/* line 43, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__title {
  max-width: 55%;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 960px) {
  /* line 43, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
  .frequent-searches__title {
    max-width: 100%;
  }
}
/* line 53, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__subtitle {
  max-width: 55%;
  margin-bottom: 1.5rem;
  line-height: 100%;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}
/* line 63, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__subtitle svg {
  position: relative;
  top: 7px;
  width: auto;
  height: 28px;
  margin-left: 1rem;
}
/* line 72, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__tabs-container {
  position: relative;
  display: flex;
  margin-bottom: 20px;
}
/* line 78, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__tabs {
  display: flex;
  flex: 1;
  overflow-x: auto;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 1px;
  scrollbar-width: none;
}
/* line 91, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__tabs::-webkit-scrollbar {
  display: none;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 78, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
  .frequent-searches__tabs {
    flex: 1;
    background-size: 60% 1px;
  }
}
/* line 101, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__tab {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 1px;
}
/* line 108, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches--active-tab {
  background-image: linear-gradient(white, white);
  background-repeat: no-repeat;
  background-position: 24px 79px;
  background-size: 100% 3px;
}
/* line 118, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__panel-wrapper {
  min-height: 50rem;
}
/* line 122, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__panel,
.frequent-searches__panel--active {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
  gap: 1rem;
}
@media (min-width: 960px) {
  /* line 122, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
  .frequent-searches__panel,
  .frequent-searches__panel--active {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.5rem;
  }
}
/* line 132, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__panel li,
.frequent-searches__panel--active li {
  position: relative;
  display: flex;
  align-items: center;
  background-color: white;
  cursor: pointer;
}
/* line 139, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__panel li a,
.frequent-searches__panel--active li a {
  display: flex;
  flex: 1;
  align-items: center;
  height: 100%;
  padding: 1.25rem;
  padding-right: 2.3rem;
  color: #2d2a2b;
  text-decoration: none;
}
/* line 151, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__panel li a:hover, .frequent-searches__panel li a:focus, .frequent-searches__panel li a:active,
.frequent-searches__panel--active li a:hover,
.frequent-searches__panel--active li a:focus,
.frequent-searches__panel--active li a:active {
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 14px 28px rgba(12, 11, 81, 0.3);
}
@media (min-width: 960px) {
  /* line 132, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
  .frequent-searches__panel li,
  .frequent-searches__panel--active li {
    grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
    gap: 1rem;
  }
}
@media (min-width: calc(1222px + 15px)) {
  /* line 165, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
  .frequent-searches__panel li::after,
  .frequent-searches__panel--active li::after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 100%;
    height: 1.375rem;
    background-image: url(/assets/home/big-arrow-blue-8f2da9613515431bebc3d4ce597bb22259a2e07c4ce67ca88b3f7435e6ffdbf6.svg);
    background-repeat: no-repeat;
    background-position: right;
    transform: translateY(-50%);
    content: " ";
    pointer-events: none;
  }
}
/* line 187, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__link {
  display: flex;
  gap: 0.5rem;
  padding: 1.75rem;
  color: white;
  white-space: nowrap;
  text-decoration: none;
  list-style: none;
}
/* line 196, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__link:visited {
  color: white;
}
/* line 200, /usr/src/app/app/assets/stylesheets/home/components/_frequent-searches.scss */
.frequent-searches__link:hover, .frequent-searches__link:focus, .frequent-searches__link:active {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  background-repeat: no-repeat;
  background-position: 24px 79px;
  background-size: 100% 3px;
  outline: none;
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language {
  position: relative;
  display: flex;
  padding: 15px;
  border: 1px solid transparent;
  cursor: pointer;
}
/* line 8, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language:hover, .language:active, .language:focus-within {
  background-color: #c4c9cf;
}
/* line 14, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language.active {
  border: 1px solid var(--border);
  border-bottom: 1px solid transparent;
}
/* line 19, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language__selection {
  position: relative;
  display: flex;
  gap: 0.5rem;
  text-transform: capitalize;
  user-select: none;
}
/* line 26, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language__selection::after {
  display: flex;
  flex: 1;
  min-width: 1rem;
  background-image: url(/assets/home/arrow-f22c5ba46003a6c5fc51ac267874282ab9732f48439db5f004c2e390aa1aee6a.svg);
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: 12px;
  content: " ";
}
/* line 38, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language__selected {
  display: none;
  align-self: center;
  min-width: 108px;
}
/* line 43, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language__selected--active {
  display: block !important;
}
/* line 48, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language__dropdown {
  position: absolute;
  top: 104%;
  left: -1px;
  display: none;
  flex-direction: column;
  width: 101.5%;
  text-transform: capitalize;
  background-color: var(--light-background);
  border: 1px solid var(--border);
}
/* line 59, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language__dropdown:focus-within {
  outline: 1px dotted var(--tertiary-2);
  outline: 5px auto -webkit-focus-ring-color;
}
/* line 65, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language__dropdown li:focus-within {
  background-color: #c4c9cf;
}
/* line 69, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language__dropdown li:hover {
  background-color: #c4c9cf;
}
/* line 74, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language__dropdown a {
  display: block;
  width: 100%;
  padding: 7.5px 15px;
  color: var(--tertiary-7);
  text-decoration: none;
  outline: none;
}
/* line 82, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language__dropdown a:visited {
  color: var(--tertiary-7);
}
/* line 88, /usr/src/app/app/assets/stylesheets/home/components/_language.scss */
.language__selected-text {
  position: relative;
  top: 2px;
  color: var(--tertiary-7);
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation {
  position: relative;
  top: -100%;
  z-index: var(--layer-6);
  width: 100%;
  background-color: var(--primary);
  transition: ease all 0.7s;
  transition-property: top;
}
/* line 11, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__container {
  display: flex;
  justify-content: space-between;
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
  background-image: linear-gradient(45deg, var(--white-transparent), var(--white-transparent));
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: calc(100% - 30px) 1px;
}
/* line 28, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation--fixed {
  position: fixed;
  top: 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  transition: ease all 0.7s;
  transition-property: top;
}
/* line 35, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation--fixed .main-navigation__container {
  background-image: none;
}
/* line 39, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation--fixed .main-navigation__logo {
  margin-bottom: 0;
}
/* line 43, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation--fixed .button__large {
  padding: 0 0.5rem;
}
/* line 48, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__button-group,
.main-navigation__button-group--mobile,
.main-navigation__button-group--desktop {
  display: none;
  gap: 1rem;
  align-items: center;
  justify-items: center;
}
@media (max-width: 960px) {
  /* line 54, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
  .main-navigation__button-group--mobile {
    display: flex;
  }
}
@media (min-width: 960px) {
  /* line 62, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
  .main-navigation__button-group--desktop {
    display: flex;
  }
}
/* line 70, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__mobile-toggle, .main-navigation__search-toggle {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
}
/* line 77, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__mobile-toggle svg path, .main-navigation__search-toggle svg path {
  fill: var(--white);
}
/* line 82, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__logo {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-top: 2px;
}
/* line 88, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__logo svg {
  width: 105px;
  height: 41px;
}
/* line 96, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__search--desktop {
  position: relative;
  display: none;
  flex: 0.8;
  align-items: center;
  justify-items: center;
  width: 100%;
}
/* line 104, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__search--desktop .button__large {
  display: flex;
  align-items: center;
  height: 90%;
}
/* line 111, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__search--mobile {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--layer-2);
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem 0.5rem;
}
/* line 123, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__search--mobile .button__large {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 1.2rem 0.5rem;
}
@media (min-width: 960px) {
  /* line 131, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
  .main-navigation__search--show-mobile {
    display: flex;
  }
}
@media (min-width: 960px) {
  /* line 137, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
  .main-navigation__search--show-desktop {
    display: flex;
  }
}
/* line 143, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__search--show-input {
  display: flex;
}
/* line 148, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__input,
.main-navigation .main-navigation__input--mobile {
  width: 100%;
  padding: 0.5rem;
  color: var(--text);
  border: none;
  outline: none;
}
/* line 158, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__input::placeholder,
.main-navigation .main-navigation__input--mobile::placeholder {
  color: var(--tertiary-2);
}
/* line 162, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__input--mobile {
  height: 100%;
  padding: 0.5rem 1rem;
}
/* line 170, /usr/src/app/app/assets/stylesheets/home/components/_main-navigation.scss */
.main-navigation__close {
  background-color: var(--tertiary);
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_oportunity.scss */
.opportunity {
  position: relative;
  padding-top: 70px;
  padding-bottom: 5.375rem;
}
/* line 8, /usr/src/app/app/assets/stylesheets/home/components/_oportunity.scss */
.opportunity__title {
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 8, /usr/src/app/app/assets/stylesheets/home/components/_oportunity.scss */
  .opportunity__title {
    margin-bottom: 2.3125rem;
  }
}
/* line 17, /usr/src/app/app/assets/stylesheets/home/components/_oportunity.scss */
.opportunity__arrow {
  display: none;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 17, /usr/src/app/app/assets/stylesheets/home/components/_oportunity.scss */
  .opportunity__arrow {
    position: absolute;
    top: -15%;
    left: -8%;
    display: block;
  }
}
/* line 28, /usr/src/app/app/assets/stylesheets/home/components/_oportunity.scss */
.opportunity__apostrophe {
  display: none;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 28, /usr/src/app/app/assets/stylesheets/home/components/_oportunity.scss */
  .opportunity__apostrophe {
    position: absolute;
    top: -18%;
    right: 8%;
    display: block;
  }
}
/* line 39, /usr/src/app/app/assets/stylesheets/home/components/_oportunity.scss */
.opportunity__slider-wrapper {
  position: relative;
}
/* line 43, /usr/src/app/app/assets/stylesheets/home/components/_oportunity.scss */
.opportunity__slider {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 250px;
  overflow-x: auto;
}
@media (max-width: 960px) {
  /* line 53, /usr/src/app/app/assets/stylesheets/home/components/_oportunity.scss */
  .opportunity__item {
    position: absolute;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    pointer-events: none;
  }
}
/* line 63, /usr/src/app/app/assets/stylesheets/home/components/_oportunity.scss */
.opportunity__item--active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-out;
  pointer-events: all;
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_overlay.scss */
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: var(--layer-7);
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
/* line 12, /usr/src/app/app/assets/stylesheets/home/components/_overlay.scss */
.overlay--show {
  display: block;
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--primary);
}
/* line 7, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner abbr {
  text-decoration: none;
}
/* line 11, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner__container {
  position: relative;
  padding-top: 3.25rem;
  padding-bottom: 3.875rem;
  text-align: center;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
@media (min-width: 1120px) {
  /* line 11, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
  .search-banner__container {
    padding-top: 5.625rem;
    padding-bottom: 5.875rem;
    text-align: left;
  }
}
/* line 29, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner__title {
  color: var(--white);
}
/* line 33, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner__subtitle {
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
/* line 43, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner__form {
  position: relative;
  z-index: var(--layer-5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin-top: 3rem;
  box-shadow: 0;
  transition: box-shadow 300ms ease-in;
}
/* line 56, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner__form:focus-within {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 1120px) {
  /* line 43, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
  .search-banner__form {
    flex-direction: row;
    gap: 0;
    max-width: 70%;
    background-color: var(--white);
  }
}
/* line 68, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner__arrow-bg {
  position: absolute;
  top: 55%;
  right: -313%;
  z-index: var(--layer-4);
  display: none;
  max-width: initial;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 1120px) {
  /* line 68, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
  .search-banner__arrow-bg {
    display: block;
  }
}
/* line 83, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner__search-bg {
  position: absolute;
  right: -9%;
  bottom: 0;
  z-index: var(--layer-3);
  display: none;
}
@media (min-width: 1120px) {
  /* line 83, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
  .search-banner__search-bg {
    display: block;
  }
}
/* line 95, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner__input {
  width: 100%;
  padding: 1.375rem;
  border: none;
}
/* line 102, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner__input::placeholder {
  color: var(--tertiary-3);
}
/* line 107, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner .button__large {
  position: relative;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}
@media (min-width: 1120px) {
  /* line 107, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
  .search-banner .button__large {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    width: auto;
    padding: 1rem 28px;
    transform: translateY(-50%);
  }
}
/* line 123, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner__shortcuts {
  display: flex;
  gap: 0.5rem;
  justify-content: space-around;
  padding-top: 1.5rem;
}
@media (min-width: 1120px) {
  /* line 123, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
  .search-banner__shortcuts {
    gap: 1rem;
    justify-content: flex-start;
  }
}
/* line 134, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
.search-banner__shortcuts .button__small {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1120px) {
  /* line 134, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
  .search-banner__shortcuts .button__small {
    flex: 1;
  }
}
@media (min-width: 1120px) {
  /* line 134, /usr/src/app/app/assets/stylesheets/home/components/_search-banner.scss */
  .search-banner__shortcuts .button__small {
    flex-direction: row;
    padding: 0.625rem 1.5rem;
  }
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_side-menu.scss */
.side-menu {
  position: fixed;
  top: 0;
  z-index: var(--layer-8);
  width: 80%;
  height: 100%;
  background-color: var(--white);
  transform: translateX(200%);
  transition: transform 300ms cubic-bezier(0.4, 0, 1, 1);
}
@media (min-width: calc(1222px + 15px)) {
  /* line 1, /usr/src/app/app/assets/stylesheets/home/components/_side-menu.scss */
  .side-menu {
    display: none !important;
  }
}
/* line 15, /usr/src/app/app/assets/stylesheets/home/components/_side-menu.scss */
.side-menu__buttons-wrapper {
  margin-bottom: 1rem;
  padding: 1rem 0;
  background-color: var(--primary);
}
/* line 20, /usr/src/app/app/assets/stylesheets/home/components/_side-menu.scss */
.side-menu__buttons-wrapper .button--outline-primary {
  color: var(--white);
  border-color: var(--white);
}
/* line 26, /usr/src/app/app/assets/stylesheets/home/components/_side-menu.scss */
.side-menu__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
}
/* line 33, /usr/src/app/app/assets/stylesheets/home/components/_side-menu.scss */
.side-menu--open {
  transform: translateX(25%);
}
/* line 37, /usr/src/app/app/assets/stylesheets/home/components/_side-menu.scss */
.side-menu__divider {
  margin: 1rem 0;
}
/* line 43, /usr/src/app/app/assets/stylesheets/home/components/_side-menu.scss */
.side-menu__link {
  color: var(--tertiary-7);
  text-decoration: none;
}
/* line 49, /usr/src/app/app/assets/stylesheets/home/components/_side-menu.scss */
.side-menu__link:hover {
  text-decoration: underline;
}
/* line 53, /usr/src/app/app/assets/stylesheets/home/components/_side-menu.scss */
.side-menu__link:visited {
  color: none;
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store {
  display: none;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 1, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
  .store {
    display: block;
  }
}
/* line 12, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__container {
  position: relative;
  display: grid;
  grid-template: "header image" auto;
  min-height: 320px;
  color: white;
  background-color: transparent;
  background-color: var(--tertiary);
}
@media (min-width: calc(1222px + 15px)) {
  /* line 12, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
  .store__container {
    background-image: url(/assets/home/blue-shape-17775ee3a902a1824d83e7943b77001bb8629a6067901d6c10ab2d8f3267a160.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
  }
}
/* line 29, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__content {
  z-index: var(--layer-1);
  display: flex;
  flex-direction: column;
  grid-area: header;
  justify-content: center;
  padding: 4rem 4.8125rem;
}
/* line 38, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__title {
  position: relative;
  margin-bottom: 2rem;
}
/* line 43, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__arrow {
  position: absolute;
  top: 62%;
  left: -21%;
  display: none;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 43, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
  .store__arrow {
    display: block;
  }
}
/* line 54, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__subtitle {
  grid-area: subtitle;
  max-width: 70%;
  margin-bottom: 1.6875rem;
  opacity: 0.75;
}
/* line 63, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__underline {
  position: absolute;
  top: 100%;
  left: 23%;
  display: none;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 63, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
  .store__underline {
    display: block;
  }
}
/* line 74, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__links {
  display: flex;
  gap: 1rem;
}
/* line 78, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__links img {
  width: 100%;
  height: auto;
}
/* line 84, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__image-bg {
  position: absolute;
  top: -20%;
  display: none;
  width: 100%;
  height: 120%;
  pointer-events: none;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 84, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
  .store__image-bg {
    display: block;
  }
}
/* line 97, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__image {
  grid-area: image;
}
/* line 100, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__image img {
  max-width: initial;
}
/* line 105, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
.store__screen-mock {
  display: none;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 105, /usr/src/app/app/assets/stylesheets/home/components/_store.scss */
  .store__screen-mock {
    position: absolute;
    right: 40px;
    bottom: 0;
    display: block;
    width: auto;
    height: 90%;
  }
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (min-width: 960px) {
  /* line 1, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
  .support {
    padding-top: 5.125rem;
    padding-bottom: 48px;
  }
}
/* line 10, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support__container {
  display: grid;
  grid-template: "title" auto "image" auto "list" auto;
  gap: 32px;
}
@media (min-width: 960px) {
  /* line 10, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
  .support__container {
    grid-template: "title list" 18% "image list" auto/45%;
  }
}
/* line 27, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
/* line 33, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support__arrow {
  position: absolute;
  top: 52%;
  left: -20%;
  display: none;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 33, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
  .support__arrow {
    display: block;
  }
}
/* line 44, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support__title {
  grid-area: title;
}
@media (max-width: calc(1222px + 15px)) {
  /* line 44, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
  .support__title {
    text-align: center;
  }
}
@media (min-width: calc(1222px + 15px)) {
  /* line 44, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
  .support__title {
    max-width: 74%;
  }
}
/* line 56, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support__image {
  grid-area: image;
  justify-self: center;
  max-width: 420px;
}
@media (min-width: 960px) and (max-width: calc(1222px + 15px)) {
  /* line 56, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
  .support__image {
    width: auto;
    height: 400px;
  }
}
@media (min-width: calc(1222px + 15px)) {
  /* line 56, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
  .support__image {
    max-width: 567px;
    max-height: 502px;
  }
}
/* line 75, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support__list {
  display: grid;
  grid-area: list;
  grid-gap: 56px;
  grid-template-columns: repeat(2, 1fr);
  height: min-content;
  text-align: center;
  list-style: none;
}
@media (min-width: 960px) {
  /* line 75, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
  .support__list {
    grid-template-columns: 1fr;
    padding: 1rem 0 1rem 4.25rem;
    text-align: left;
  }
}
/* line 91, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support__icon {
  display: flex;
  justify-self: center;
  padding: 12px;
  background-color: var(--primary-3);
}
/* line 98, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support__item {
  display: grid;
  grid-template: "icon" auto "title" auto;
  gap: 16px;
  align-items: start;
  line-height: 1.25;
}
@media (min-width: 960px) {
  /* line 98, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
  .support__item {
    gap: 16px 36px;
  }
}
/* line 111, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support__item h3 {
  grid-area: title;
  margin-bottom: 8px;
}
/* line 116, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support__item p {
  grid-area: content;
  color: var(--tertiary-3);
}
/* line 123, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
.support__item img {
  grid-row: span 2;
}
@media (min-width: 960px) {
  /* line 98, /usr/src/app/app/assets/stylesheets/home/components/_support.scss */
  .support__item {
    grid-template: "icon title" auto "icon content" auto;
    justify-items: flex-start;
  }
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
.testimony {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.25rem;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 1, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
  .testimony {
    flex-direction: row;
    margin-bottom: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
/* line 15, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
.testimony__image-wrapper {
  display: flex;
  flex: 100%;
  justify-content: center;
  order: 2;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 15, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
  .testimony__image-wrapper {
    flex: 1;
    justify-content: flex-start;
    order: 1;
  }
}
/* line 28, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
.testimony__image {
  width: 100%;
  height: auto;
}
@media (max-width: calc(1222px + 15px)) {
  /* line 28, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
  .testimony__image {
    max-width: 500px;
  }
}
/* line 37, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
.testimony__content {
  order: 1;
  text-align: center;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 37, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
  .testimony__content {
    flex: 0.8;
    order: 2;
    padding-top: 3.5625rem;
    padding-left: 6rem;
    text-align: left;
  }
}
/* line 50, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
.testimony__title {
  margin-bottom: 1.1875rem;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 50, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
  .testimony__title {
    margin-bottom: 4.9375rem;
  }
}
/* line 58, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
.testimony__apostrophe {
  margin-bottom: 1.1875rem;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 58, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
  .testimony__apostrophe {
    margin-bottom: 1.6875rem;
  }
}
/* line 66, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
.testimony__text {
  color: var(--tertiary-3);
}
/* line 72, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
.testimony__content-margin {
  margin-bottom: 1.5rem;
}
/* line 76, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
.testimony__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 76, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
  .testimony__body {
    align-items: flex-start;
  }
}
/* line 87, /usr/src/app/app/assets/stylesheets/home/components/_testimony.scss */
.testimony__name {
  margin-bottom: 1rem;
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips {
  padding-top: 3.3125rem;
  padding-bottom: 3.3125rem;
}
@media (min-width: 960px) {
  /* line 1, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
  .tips {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
  }
}
@media (min-width: 960px) {
  /* line 12, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
  .tips__header {
    margin-bottom: 3.4375rem;
  }
}
@media (max-width: calc(1222px + 15px)) {
  /* line 18, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
  .tips__list-wrapper {
    overflow: auto;
  }
}
/* line 24, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  overflow-x: auto;
}
@media (min-width: 540px) {
  /* line 24, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
  .tips__list {
    flex-direction: row;
  }
}
@media (min-width: 960px) {
  /* line 24, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
  .tips__list {
    justify-content: space-between;
    overflow: visible;
  }
}
/* line 40, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__see-more {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--secondary);
  text-decoration: none;
}
/* line 47, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__see-more svg path {
  fill: var(--secondary);
}
/* line 51, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__see-more:hover, .tips__see-more:focus {
  text-decoration: underline;
  cursor: pointer;
}
/* line 57, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__item-link {
  display: inline-block;
  text-decoration: none;
}
/* line 61, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__item-link:hover, .tips__item-link:active, .tips__item-link:focus {
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 14px 28px rgba(12, 11, 81, 0.3);
}
/* line 70, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__subtitle {
  color: var(--primary);
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 540px) {
  /* line 70, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
  .tips__subtitle {
    text-align: left;
  }
}
/* line 81, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__title-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 700px) {
  /* line 81, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
  .tips__title-content {
    justify-content: space-between;
    text-align: left;
  }
}
/* line 97, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__article {
  position: relative;
  display: flex;
  min-width: 276px;
}
/* line 105, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__image {
  flex: 1;
  width: 100%;
  min-width: 30%;
  height: auto;
}
@media (max-width: 540px) {
  /* line 105, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
  .tips__image {
    max-width: 30%;
  }
}
/* line 116, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__content {
  bottom: 0;
  display: flex;
  align-items: center;
  min-height: 132px;
  max-height: 200px;
  margin: 0;
  padding: 1.5rem 1rem;
  color: var(--tertiary);
  text-decoration: none;
  background-color: var(--white);
}
@media (min-width: 540px) {
  /* line 116, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
  .tips__content {
    position: absolute;
    margin: 20px;
    padding: 1rem;
  }
}
/* line 135, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__text {
  text-decoration: none;
}
@media (min-width: 540px) {
  /* line 135, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
  .tips__text {
    font-weight: 600;
    font-size: 1rem;
  }
}
/* line 144, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__icon {
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
}
/* line 151, /usr/src/app/app/assets/stylesheets/home/components/_tips.scss */
.tips__line-break {
  margin: 1rem 0;
}

/* line 3, /usr/src/app/app/assets/stylesheets/home/components/_top-navigation.scss */
.top-navigation__container {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  height: 2.875rem;
}
@media (max-width: 960px) {
  /* line 3, /usr/src/app/app/assets/stylesheets/home/components/_top-navigation.scss */
  .top-navigation__container {
    display: none;
  }
}
/* line 16, /usr/src/app/app/assets/stylesheets/home/components/_top-navigation.scss */
.top-navigation__link,
.top-navigation__link--active {
  height: 100%;
  padding: 0 1rem;
  color: var(--tertiary-2);
  text-decoration: none;
  opacity: 0.5;
  transition: all 0.3s ease 0s;
}
/* line 26, /usr/src/app/app/assets/stylesheets/home/components/_top-navigation.scss */
.top-navigation__link:hover, .top-navigation__link:focus,
.top-navigation__link--active:hover,
.top-navigation__link--active:focus {
  opacity: 1;
}
/* line 30, /usr/src/app/app/assets/stylesheets/home/components/_top-navigation.scss */
.top-navigation__link--active {
  color: var(--primary);
  background-image: linear-gradient(45deg, var(--primary), var(--primary));
  background-repeat: no-repeat;
  background-position: left 103%;
  background-size: 100% 3px;
}
/* line 42, /usr/src/app/app/assets/stylesheets/home/components/_top-navigation.scss */
.top-navigation__input::placeholder {
  color: var(--tertiary-3);
}
/* line 47, /usr/src/app/app/assets/stylesheets/home/components/_top-navigation.scss */
.top-navigation__link-content {
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: .125rem;
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq {
  overflow: hidden;
}
/* line 4, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  justify-content: space-between;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 960px) {
  /* line 4, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
  .faq__container {
    flex-direction: row;
    padding-top: 6rem;
  }
}
/* line 21, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__break {
  margin: 20px 0;
}
/* line 25, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__header {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-self: center;
}
/* line 33, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__header img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  /* line 25, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
  .faq__header {
    align-items: flex-start;
  }
}
/* line 43, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__link {
  color: var(--secondary);
  text-decoration: none;
}
/* line 47, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__link:hover {
  text-decoration: underline;
}
/* line 52, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__pre-title {
  color: var(--primary);
}
/* line 56, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__subtitle {
  max-width: 80%;
  color: var(--tertiary-2);
  text-align: center;
}
@media screen and (min-width: 960px) {
  /* line 56, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
  .faq__subtitle {
    max-width: 100%;
    margin-top: 1.6875rem;
    margin-bottom: 3.125rem;
  }
}
/* line 68, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__list {
  flex: 1;
  align-self: center;
  width: 100%;
}
/* line 74, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__item {
  position: relative;
  display: flex;
  align-items: center;
}
/* line 81, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__item::after {
  width: 22px;
  height: 100%;
}
/* line 87, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__item-link {
  display: inline-block;
  width: 100%;
  max-width: 80%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--tertiary-2);
  text-decoration: none;
}
/* line 96, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__item-link:visited {
  color: var(--tertiary-2);
}
/* line 100, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__item-link:hover {
  text-decoration: underline;
}
@media screen and (min-width: calc(1222px + 15px)) {
  /* line 87, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
  .faq__item-link {
    max-width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
/* line 111, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__list-wrapper {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
}
/* line 118, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
.faq__arrow {
  position: absolute;
  right: -6%;
  bottom: 78%;
  display: none;
}
@media (min-width: calc(1222px + 15px)) {
  /* line 118, /usr/src/app/app/assets/stylesheets/home/components/_faq.scss */
  .faq__arrow {
    display: block;
  }
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_signup-box.scss */
.signup-box {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
  flex: 0.2;
  max-width: 284px;
  padding: 1rem;
  padding-top: 54px;
  background: white;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 960px) {
  /* line 1, /usr/src/app/app/assets/stylesheets/home/components/_signup-box.scss */
  .signup-box {
    display: block;
  }
}
@media (min-width: 960px) and (max-width: calc(1222px + 15px)) {
  /* line 1, /usr/src/app/app/assets/stylesheets/home/components/_signup-box.scss */
  .signup-box {
    bottom: 84px;
  }
}
/* line 21, /usr/src/app/app/assets/stylesheets/home/components/_signup-box.scss */
.signup-box__icon {
  position: absolute;
  top: -40px;
  display: flex;
  padding: 1rem;
  background: var(--secondary);
}
/* line 29, /usr/src/app/app/assets/stylesheets/home/components/_signup-box.scss */
.signup-box__link {
  color: var(--secondary);
  text-decoration: none;
}
/* line 34, /usr/src/app/app/assets/stylesheets/home/components/_signup-box.scss */
.signup-box__link:hover {
  text-decoration: underline;
}
/* line 39, /usr/src/app/app/assets/stylesheets/home/components/_signup-box.scss */
.signup-box__text {
  color: var(--tertiary-2);
}
/* line 45, /usr/src/app/app/assets/stylesheets/home/components/_signup-box.scss */
.signup-box__scribble-bg {
  position: absolute;
  top: -20%;
  right: -24%;
}
/* line 51, /usr/src/app/app/assets/stylesheets/home/components/_signup-box.scss */
.signup-box__arrow-bg {
  position: absolute;
  top: -78%;
  right: -26%;
  width: 197px;
  height: auto;
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_pre-footer.scss */
.pre-footer {
  background-color: var(--light-background);
}
/* line 4, /usr/src/app/app/assets/stylesheets/home/components/_pre-footer.scss */
.pre-footer__row {
  display: flex;
  gap: 1rem;
}
/* line 9, /usr/src/app/app/assets/stylesheets/home/components/_pre-footer.scss */
.pre-footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 960px) {
  /* line 9, /usr/src/app/app/assets/stylesheets/home/components/_pre-footer.scss */
  .pre-footer__container {
    display: none;
  }
}
/* line 21, /usr/src/app/app/assets/stylesheets/home/components/_pre-footer.scss */
.pre-footer__logo {
  display: flex;
  align-self: center;
  margin-top: 0.25rem;
}
/* line 27, /usr/src/app/app/assets/stylesheets/home/components/_pre-footer.scss */
.pre-footer__logo svg path {
  fill: var(--primary);
}

/* line 1, /usr/src/app/app/assets/stylesheets/home/components/_social-media.scss */
.social-media {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 15px 0;
}
/* line 7, /usr/src/app/app/assets/stylesheets/home/components/_social-media.scss */
.social-media svg {
  width: 28px;
  height: auto;
}
@media (max-width: 960px) {
  /* line 1, /usr/src/app/app/assets/stylesheets/home/components/_social-media.scss */
  .social-media {
    gap: 1rem;
    justify-content: center;
    padding: 1.25rem;
  }
}
/* line 18, /usr/src/app/app/assets/stylesheets/home/components/_social-media.scss */
.social-media__icon {
  display: flex;
}
