@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-LightItalic.woff2') format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.woff2') format("woff2"), url('../fonts/Satoshi-VariableItalic.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BlackItalic.woff2') format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi Variable;
  src: url('../fonts/Satoshi-Variable.woff2') format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.woff2') format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BoldItalic.woff2') format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --color--background-color: #efefef;
  --color--font-color: #151515;
  --text-size--regular: 1rem;
  --heading-style--h2: 5rem;
  --text-size--tiny: .75rem;
  --text-size--medium: 1.125rem;
  --text-size--small: .875rem;
  --secondary-button--gap: 1rem;
  --text-size--huge: 2rem;
  --heading-style--h1: 7.75rem;
  --heading-style--h5: 3.5rem;
  --heading-style--h6: 2.5rem;
  --text-size--large: 1.5rem;
  --heading-style--h3: 4.875rem;
  --color--black: black;
  --color--white: white;
  --color--primary-color: #e28e2a;
  --heading-style--h4: 4rem;
  --untitled-ui--gray600: #475467;
  --untitled-ui--primary700: #6941c6;
  --untitled-ui--primary600: #7f56d9;
  --untitled-ui--primary100: #f4ebff;
  --untitled-ui--gray900: #101828;
  --untitled-ui--gray50: #f9fafb;
  --untitled-ui--white: white;
  --untitled-ui--gray800: #1d2939;
  --untitled-ui--gray100: #f2f4f7;
  --untitled-ui--gray700: #344054;
  --untitled-ui--primary50: #f9f5ff;
  --untitled-ui--gray300: #d0d5dd;
  --font-montserrat: "DM Sans", sans-serif;
  --font-family--satoshi-variable: "Satoshi Variable", sans-serif;
  --color--stroke: #9b8f7e;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

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

body {
  background-color: var(--color--background-color);
  color: var(--color--font-color);
  font-size: var(--text-size--regular);
  font-family: DM Sans, sans-serif;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--color--font-color);
  text-decoration: none;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

.heading-2 {
  font-family: Montserrat, sans-serif;
  font-size: var(--heading-style--h2);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 800;
  line-height: .95;
}

.container {
  width: 100%;
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
}

.container.small {
  max-width: 90rem;
}

.container.medium {
  max-width: 100rem;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-global.small {
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-box {
  max-width: 27rem;
}

.text-box.large {
  max-width: 60rem;
}

.hero-style-guide-content {
  grid-row-gap: 1.5rem;
  color: #f3f3f3;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-size-regular {
  font-size: var(--text-size--regular);
  line-height: 1.5;
}

.hero-style-guide-wrapper {
  background-image: linear-gradient(0deg, #12121263, #12121200);
  border-radius: 1rem;
  width: 100%;
  margin-top: 1rem;
  padding: 13rem 2rem 2rem;
  overflow: hidden;
}

.button-text {
  flex-direction: column;
  display: flex;
  position: relative;
}

.text-size-tiny {
  font-size: var(--text-size--tiny);
}

.section-style-guide {
  margin-top: 5.75rem;
}

.style-guide-header {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 4.5rem;
  display: flex;
}

.text-size-medium {
  font-size: var(--text-size--medium);
}

.button {
  grid-row-gap: .25rem;
  color: #3f3f3f;
  flex-direction: column;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.button-line {
  background-color: #3f3f3f;
  width: 100%;
  height: 1px;
}

.button-text-absolute {
  position: absolute;
  bottom: -2rem;
}

.class-name-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.class-name-wrapper.margin-bottom-0 {
  margin-bottom: 0;
}

.color-palette-text {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.text-size-small {
  font-size: var(--text-size--small);
}

.text-weight-light {
  font-weight: 300;
}

.text-size-xsmall {
  font-size: 1rem;
}

.text-size-xsmall.text-style-caps {
  text-transform: uppercase;
}

.text-size-xsmall.text-weight-light.text-color-grey {
  font-size: var(--secondary-button--gap);
  font-weight: 700;
}

.style-gudie-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-gudie-content.grid {
  grid-column-gap: 3rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-size: 2rem;
  display: grid;
}

.style-gudie-content.horizontal {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: row;
}

.color-palette {
  border-radius: 1rem;
  width: 100%;
  height: 10rem;
}

.color-palette.black {
  background-color: #121212;
}

.color-palette.white {
  background-color: #f3f3f3;
  border: 1px solid #bbb;
}

.color-palette-card {
  grid-row-gap: 2rem;
  border: 1px solid #dfddda;
  border-radius: 1rem;
  flex-direction: column;
  padding: .5rem .5rem 2rem;
  display: flex;
}

.text-size-huge {
  font-size: var(--text-size--huge);
  font-weight: 300;
  line-height: 1.3;
}

.heading-1 {
  font-size: var(--heading-style--h1);
  letter-spacing: -.025em;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  line-height: .95;
}

.text-weight-regular {
  font-weight: 400;
}

.text-weight-bold {
  font-weight: 700;
}

.typography-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.style-guide-menu {
  grid-row-gap: 1.5rem;
  color: #121212;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.heading-5 {
  font-size: var(--heading-style--h5);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.text-weight-medium {
  font-weight: 500;
}

.text-weight-medium.caps.regular-vw-small {
  font-size: .8vw;
}

.style-guide-content {
  margin-bottom: 6rem;
}

.style-guide-menu-links {
  grid-row-gap: 1.5rem;
  opacity: .5;
  color: #121212;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.style-guide-menu-links:hover, .style-guide-menu-links.w--current {
  opacity: 1;
}

.sticky-menu {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 4rem;
}

.heading-6 {
  font-size: var(--heading-style--h6);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.text-size-large {
  font-size: var(--text-size--large);
  line-height: 1.3;
}

.style-guide-menu-wrapper {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
}

.heading-3 {
  font-family: Montserrat, sans-serif;
  font-size: var(--heading-style--h3);
  letter-spacing: -.02em;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  font-size: var(--heading-style--h3);
  letter-spacing: -.02em;
  border-bottom: 2px solid #0f766e;
  padding-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.05;
  display: inline-block;
}

.heading-3.text-weight-light {
  font-size: var(--heading-style--h5);
  padding-left: 0;
  padding-right: 81px;
  font-weight: 700;
}

.style-tag {
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #0000001f;
  border-radius: 10rem;
  padding: .625rem 1.5rem;
  font-weight: 500;
}

.typography-content {
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-guide-component {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

.divider-line {
  background-color: #dfddda;
  height: 1px;
}

.caps {
  text-transform: uppercase;
}

.speakers-card {
  width: 100%;
  height: 100%;
  padding: 1.5rem 1.5rem 2rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.pricing-button {
  background-color: var(--color--black);
  color: var(--color--white);
  text-align: center;
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  padding: .8rem 1rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-button.w--current {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-button.password {
  margin-top: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.opacity-50 {
  opacity: .5;
}

.faq-component {
  grid-column-gap: 0px;
  grid-row-gap: 4.8125rem;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.faq-list {
  grid-row-gap: .5rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
  position: relative;
}

.faq-item {
  cursor: pointer;
  border-radius: .5rem;
  flex-flow: column;
  padding: 1.5rem;
  display: flex;
  position: relative;
}

.faq-item:hover {
  background-color: var(--color--white);
}

.empty-state {
  text-align: center;
  background-color: #0000;
}

.faq-top {
  z-index: 1;
  cursor: pointer;
  position: relative;
}

.faq-title-wrapper {
  z-index: 10;
  height: 100%;
  padding-right: 5rem;
  position: relative;
}

.faq-action-wrapper {
  z-index: 25;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0 0% auto;
}

.arrow {
  width: auto;
  height: auto;
}

.arrow.second {
  position: relative;
  top: 1rem;
}

.faq-bottom {
  z-index: 10;
  margin-right: 12rem;
  position: relative;
  overflow: hidden;
}

.faq-bottom-content {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  opacity: .8;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  display: grid;
}

.team-member-component {
  flex-direction: column;
  margin-top: 15vh;
  padding-left: 6rem;
  padding-right: 6rem;
  display: flex;
}

.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6 {
  margin-bottom: 15px;
  line-height: 1.2;
}

.rich-text p {
  margin-bottom: 1rem;
}

.event-item {
  cursor: pointer;
  flex-flow: column;
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
}

.event-button {
  background-color: var(--color--primary-color);
  color: var(--color--white);
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  padding: .7rem 1.4rem;
  font-family: Cabinetgrotesk;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.event-button.w--current {
  font-family: Cabinetgrotesk;
}

.button-hover {
  background-color: var(--color--black);
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  position: absolute;
}

.relative {
  z-index: 5;
  position: relative;
}

.button-submit-hover {
  background-color: var(--color--primary-color);
  border-radius: 50%;
  width: 35rem;
  height: 35rem;
  position: absolute;
}

.button-submit-hover.small {
  width: 16rem;
  height: 16rem;
}

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

.utility-page-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.not-fount-text-size {
  font-size: 22rem;
  font-weight: 300;
  line-height: 1;
}

.button-home {
  background-color: var(--color--black);
  color: var(--color--white);
  text-align: center;
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  padding: .6rem 3.5rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-home.w--current {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-field-contact {
  color: var(--color--black);
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #15151526;
  border-radius: 0;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 1rem;
  font-size: 1rem;
  transition: all .4s;
}

.text-field-contact:hover {
  border-width: 1px;
  border-color: transparent transparent var(--color--primary-color);
  padding-left: 1.2rem;
}

.text-field-contact:active {
  color: #212121;
}

.text-field-contact:focus {
  border-color: var(--color--primary-color);
  color: var(--color--black);
  border-radius: .5rem;
}

.submit-button {
  z-index: 3;
  color: #0000;
  background-color: #0000;
  position: absolute;
  inset: 0%;
}

.max-width-70ch {
  max-width: 70ch;
}

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

.divider-line-instructions {
  background-color: var(--color--black);
  opacity: .1;
  width: 100%;
  height: 1px;
}

.instruction-content-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  margin-top: 15vh;
  display: flex;
}

.heading-2-instruction {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
}

.heading-2-instruction.text-weight-bold {
  font-weight: 700;
}

.instruction-heading {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.margin-top-description {
  margin-top: 2rem;
}

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

.align-middle {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.max-width-50ch {
  max-width: 50ch;
}

.instructions-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.instructions {
  grid-column-gap: 1.3125rem;
  grid-row-gap: 1.3125rem;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.double-button-component {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.hero-changelog-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: 1rem;
  flex-flow: column;
  width: 100%;
  margin-top: 1rem;
  padding-top: 12rem;
  padding-bottom: 3rem;
  padding-right: 3rem;
  display: flex;
  overflow: hidden;
}

.style-guide-heading {
  font-size: 6.125vw;
  font-weight: 300;
  line-height: 1;
}

.changelog-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(auto, 82%);
  width: 100%;
}

.style-guide-text {
  font-size: 2.75rem;
  line-height: 1.55;
}

.opacity-85 {
  opacity: .8;
}

.style-guide-button {
  grid-row-gap: .25rem;
  color: var(--color--black);
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
  overflow: hidden;
}

.style-guide-button:hover {
  opacity: .5;
}

.license-content {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.heading-4 {
  font-size: var(--heading-style--h4);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.font-color {
  background-color: var(--color--font-color);
  color: var(--color--font-color);
}

.primary-color {
  background-color: var(--color--primary-color);
  color: var(--color--primary-color);
}

.background-color {
  background-color: var(--color--background-color);
}

.bento-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  align-items: center;
  margin-top: 7rem;
  margin-bottom: -108px;
  display: flex;
}

.bento-header {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.tag-marquee {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  white-space: nowrap;
  align-items: center;
  max-width: 15rem;
  display: flex;
  overflow: hidden;
}

.tag {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  align-items: center;
  display: flex;
}

.elipse {
  background-color: var(--color--primary-color);
  border-radius: 50%;
  width: .35rem;
  height: .35rem;
}

.heading-component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.max-width-45ch {
  max-width: 45ch;
}

.bento-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
}

.card-small {
  border: .1px solid #9b8f7e66;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 50vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-big {
  border: .1px solid #9b8f7e66;
  border-radius: .5rem;
  align-items: flex-start;
  width: 65%;
  height: 50vh;
  padding: 2.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-image {
  position: absolute;
  inset: 0%;
}

.card-big-content {
  z-index: 2;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.secondary-button {
  grid-column-gap: var(--secondary-button--gap);
  grid-row-gap: var(--secondary-button--gap);
  align-items: center;
  display: flex;
}

.arrow-wrapper {
  display: flex;
}

.bento-component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.card-overlay {
  z-index: 1;
  background-color: #272727e6;
  width: 100%;
  height: 100%;
  position: absolute;
}

.max-width-40ch {
  max-width: 40ch;
}

.max-width-60ch {
  max-width: 60ch;
}

.primary-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--color--primary-color);
  background-color: var(--color--white);
  border-radius: .25rem;
  align-items: center;
  padding: 1rem 1.5rem;
  transition: all .25s;
  display: flex;
  position: relative;
}

.primary-button:hover {
  border-bottom-width: 4px;
}

.sticky-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  margin-top: 12rem;
  display: flex;
  position: relative;
}

.sticky-component {
  width: 50%;
  height: 90vh;
  position: sticky;
  top: 5vh;
  bottom: 5vh;
  overflow: hidden;
}

.sticky-content {
  flex-flow: column;
  align-items: flex-start;
  width: 50%;
  padding-bottom: 20vh;
  display: flex;
  position: relative;
}

.sticky-big-image {
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.sticky-text {
  grid-column-gap: 2.8vw;
  grid-row-gap: 2.8vw;
  flex-flow: column;
  align-items: flex-start;
  margin-top: 10vw;
  margin-left: 4vw;
  margin-right: 2rem;
  display: flex;
}

.content {
  grid-column-gap: 1.667vw;
  grid-row-gap: 1.667vw;
  flex-flow: column;
  align-items: flex-start;
  max-width: 36vw;
  display: flex;
}

.content.max-width-34vw {
  max-width: 34vw;
}

.sticky-paragraph {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  flex-flow: column;
  align-items: flex-start;
  max-width: 30vw;
  display: flex;
}

.sticky-small-image {
  flex: none;
  align-self: flex-end;
  width: 12vw;
  height: 12vw;
  margin-top: 7.5vw;
  margin-right: 10vw;
  overflow: hidden;
}

.sticky-medium-image {
  flex: none;
  align-self: flex-end;
  width: 60%;
  height: 60vh;
  margin-top: 13.5vh;
  position: relative;
  overflow: hidden;
}

.products-wrapper {
  grid-column-gap: 2.8rem;
  grid-row-gap: 2.8rem;
  flex-flow: column;
  margin-top: 10rem;
  display: flex;
}

.products-header {
  justify-content: space-between;
  display: flex;
}

.products-heading {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.flex-horizontal {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  align-items: center;
  display: flex;
}

.icon-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.opacity-60 {
  opacity: .6;
}

.button-wrapper {
  z-index: 4;
  align-self: center;
  position: relative;
}

.black-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--color--black);
  color: var(--color--white);
  border-radius: .25rem;
  align-items: center;
  padding: 1rem 2rem;
  transition: all .25s;
  display: flex;
}

.black-button:hover {
  border-bottom-width: 4px;
  transform: translate(0, 3px);
}

.products-cards {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.product-link {
  background-color: var(--color--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
  display: flex;
  position: relative;
}

.product-card-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-card-info {
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  margin-left: 1rem;
  margin-right: 1.5rem;
  display: flex;
}

.info {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.mask-frame {
  background-color: #e5e5e5;
  position: absolute;
  inset: auto 0% 0%;
}

.faq-wrapper {
  grid-column-gap: 3.25rem;
  grid-row-gap: 3.25rem;
  flex-flow: column;
  align-items: center;
  margin-top: 15vh;
  display: flex;
}

.faq-heading {
  text-align: center;
  max-width: 50ch;
}

.faq-hover {
  border-radius: .5rem;
  transition: background-color .45s;
}

.faq-hover:hover {
  background-color: var(--color--white);
}

.products-main-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.max-width-85ch {
  max-width: 85ch;
}

.products-component {
  grid-column-gap: 4.8rem;
  grid-row-gap: 4.8rem;
  flex-flow: column;
  margin-top: 15vh;
  display: flex;
}

.text-size-medium-vw {
  font-size: 1vw;
  font-weight: 400;
}

.text-size-medium-contact {
  font-size: 1.125rem;
}

.form-content {
  width: 100%;
}

.contact-button {
  background-color: #1d1d1f;
  border-radius: .3rem;
  transition: all .25s;
}

.contact-button.align-center {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.max-width-60ch-2 {
  max-width: 60ch;
}

.contact-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  align-items: center;
  margin-top: 15vh;
  display: flex;
}

.error-message {
  text-align: center;
  background-color: #e54e4e;
  border-radius: .5rem;
}

.hero-component {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.text-size-contact {
  font-size: 1.375rem;
}

.form-wrapper {
  width: 50%;
  margin-bottom: 0;
}

.name-wrapper-contact {
  width: 100%;
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.success-message {
  color: #000;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: .6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.brand {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  max-width: 8rem;
  display: flex;
}

.brand.w--current {
  justify-content: flex-start;
  align-items: center;
  transition: transform .25s, opacity .25s;
}

.brand.w--current:hover {
  opacity: .8;
  transform: translate(0, 1px);
}

.navbar {
  z-index: 50;
  background-color: #fff0;
  position: fixed;
  inset: 0% 0% auto;
}

.links-navbar {
  border-radius: .5rem .5rem .5rem .5px;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: .5rem 1rem;
  transition: background-color .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.links-navbar:hover {
  color: #283849;
  background-color: #f6f9fc;
}

.links-navbar.w--current {
  border: 1px solid #f6f9fc;
}

.nav-menu {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.right-navbar-content {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  align-items: center;
  display: flex;
}

.nav-menu-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.nav-link {
  padding-left: .5rem;
  padding-right: .5rem;
  transition: all .25s;
}

.nav-link:hover {
  opacity: .6;
  transform: translate(0, 1px);
}

.navbar-component {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #ffffff38;
  border-radius: 1.375rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem 2.2rem 1rem 2.25rem;
  display: flex;
}

.overlay-navbar {
  z-index: 1;
  opacity: 0;
  background-color: #040404;
  width: 100%;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0%;
}

.image-parallax {
  height: 110%;
}

.hero-heading {
  z-index: 5;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  z-index: 5;
  grid-column-gap: 1.125rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 63ch;
  margin-bottom: 3rem;
  margin-left: 3.5rem;
  display: flex;
  position: relative;
}

.hero-grid {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 100%;
  margin-left: 4.375rem;
  margin-right: 4.375rem;
  display: grid;
  position: absolute;
  inset: 0%;
}

.hero-wrapper {
  flex-flow: column;
  justify-content: flex-end;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0%;
}

.circle-hover {
  background-color: #0000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.circle-hero {
  background-color: #15616d;
  border-radius: 50%;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  box-shadow: 0 0 0 4px #15616d40;
}

.hero-hover {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  border-bottom: 1px solid var(--color--primary-color);
  background-color: var(--color--white);
  white-space: nowrap;
  border-radius: .25rem .3125rem .3125rem;
  align-items: flex-start;
  padding: .4rem .75rem;
  font-size: .78rem;
  position: absolute;
  overflow: hidden;
}

.hover-content {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.hover-relative {
  position: absolute;
}

.hover-relative.pos-c6r4 {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-100%, -50%);
}

.hover-relative.pos-c8r2 {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-100%, -50%);
}

.hover-relative.pos-c9r5 {
  position: absolute;
  top: 48%;
  left: 63%;
  transform: translate(-100%, -50%);
}

.hover-relative.pos-c11r4 {
  position: absolute;
  top: 45%;
  left: 85%;
  transform: translate(-100%, -50%);
}

.arrow-hero {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  align-items: stretch;
  width: 1rem;
  height: .9rem;
  margin-top: .4rem;
  display: flex;
  overflow: hidden;
}

.button-hero {
  z-index: 5;
  z-index: 5;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: auto;
  box-shadow: 0 0 #0f766e80, 0 12px 32px #0f766e40;
}

.button-hero:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px #0f766e2e, 0 18px 44px #0f766e59;
}

.button-image {
  position: relative;
  inset: 0%;
}

.circular-text {
  padding: .5rem;
  position: absolute;
}

.button-arrow {
  position: absolute;
}

.hero-arrow-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 1.5rem;
  height: 2rem;
  display: flex;
  overflow: hidden;
}

.read-more-tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--color--black);
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #efefef;
  background-image: radial-gradient(4px at .6rem, #0f766e 100%, #0000 100%);
  background-repeat: no-repeat;
  border-radius: 2.3125rem;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .75rem .5rem 1.5rem;
  text-decoration: none;
  display: flex;
}

.vertical-line-tag {
  background-color: var(--color--black);
  opacity: .5;
  color: #fff;
  width: 1px;
  height: 1rem;
}

.read-more-button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  transition: all .25s;
  display: flex;
}

.read-more-button:hover {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
}

.product-title {
  max-width: 70ch;
}

.product-info {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 6rem;
  display: flex;
}

.product-component {
  grid-column-gap: 4.5rem;
  grid-row-gap: 4.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: start center;
  margin-bottom: 4rem;
  display: grid;
}

.product-image {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  width: 40vw;
  max-width: 50rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.product-description {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 50ch;
  display: flex;
}

.product-wrapper {
  width: 100%;
  margin-top: 15vh;
}

.price-tag {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--color--white);
  border: .5px solid #bebebe;
  border-radius: 2px;
  align-items: center;
  padding: .625rem;
  display: flex;
}

.info-tag {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  align-items: center;
  display: flex;
}

.multi-images {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  border-radius: .5rem;
  width: 100%;
  height: 15vh;
  display: flex;
  overflow: hidden;
}

.lightbox-link {
  border-radius: .5rem;
  height: 38vh;
  overflow: hidden;
}

.product-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--color--black);
  color: var(--color--white);
  border-radius: 20rem;
  align-items: center;
  margin-top: 2.1rem;
  padding: 1.6rem 3.1rem 1.6rem 3.6rem;
  display: flex;
}

.lightbox-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  display: flex;
}

.footer-grid-wrap {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.credits-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-grid {
  grid-column-gap: 5rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.footer-heading {
  justify-content: flex-start;
  align-items: flex-start;
  height: 3rem;
  margin-bottom: 5rem;
  display: flex;
  position: relative;
}

.text-color-black {
  color: #151515;
}

.footer-component {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 3rem;
  display: flex;
}

.footer-social {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: .7rem;
  transition: all .3s;
  display: flex;
}

.footer-social:hover {
  background-color: var(--color--primary-color);
  color: #c9d4d8;
  transform: translate(0, -2px);
}

.icon-embed {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.credits {
  text-decoration: none;
  transition: opacity .2s;
}

.credits:hover {
  opacity: .8;
}

.vertical-line {
  background-color: #8e8c87;
  width: 1px;
  height: .8rem;
}

.footer-links {
  grid-column-gap: 1.1rem;
  grid-row-gap: 1.1rem;
  align-items: center;
  display: flex;
}

.footer-links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-link {
  color: #8e8c87;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .25s;
}

.footer-link:hover {
  color: #151515;
  transform: translate(0, -2px);
}

.footer-social-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 4.8rem;
  margin-bottom: 11rem;
  display: flex;
}

.paragraph {
  color: #00000080;
}

.footer-text-size {
  font-size: 1.5rem;
}

.max-width-80ch {
  max-width: 80ch;
}

.button-navbar {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--color--primary-color);
  background-color: var(--color--white);
  border-radius: .25rem;
  align-items: center;
  padding: 1rem 1.5rem;
  transition: all .25s;
  display: flex;
  position: relative;
}

.button-navbar:hover {
  border-bottom-width: 2px;
}

.button-navbar.margin-left {
  margin-left: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.button-border {
  border-radius: .25rem;
  justify-content: center;
  align-items: flex-end;
  max-height: 2.3rem;
  display: flex;
  overflow: hidden;
}

.heading-vw {
  letter-spacing: -.025em;
  font-family: Montserrat, sans-serif;
  font-size: 4.8vw;
  font-weight: 900;
  line-height: 1;
}

.regular-vw {
  font-size: 1.1vw;
}

.modal-text {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  flex-flow: column;
  display: flex;
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

.modal-content {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.modal-button {
  color: #fbfbfb;
  text-align: center;
  cursor: pointer;
  background-color: #101011;
  border-radius: .5rem;
  width: 100%;
  padding: .8rem 1rem;
  text-decoration: none;
  transition: all .25s;
}

.modal-button:hover {
  background-color: #101011cc;
  transform: scale(.98);
}

.modal-embed {
  display: flex;
}

.delete-this {
  z-index: 20;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fbfbfb;
  border-radius: .75rem;
  flex-flow: column;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
}

.webflix-link {
  color: #101828;
}

.opacity-80 {
  opacity: .8;
}

.modal-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.max-width-37ch {
  max-width: 37ch;
}

.logo-footer {
  width: 11rem;
  height: auto;
}

.logo-navbar {
  width: 8rem;
}

.modal-buttons {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.exit {
  z-index: 5;
  background-color: var(--color--background-color);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
  bottom: 1rem;
  left: .5rem;
}

.code-embed {
  width: .8rem;
  height: .8rem;
  display: flex;
}

.best-seller-badge {
  z-index: 3;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  background-color: #15616d;
  border-radius: 999px;
  padding: .3rem .7rem;
  font-family: Montserrat, sans-serif;
  font-size: .68rem;
  font-weight: 800;
  position: absolute;
  top: .75rem;
  right: .75rem;
  box-shadow: 0 4px 12px #15616d59;
}

.buy-now-button {
  color: #fff;
  text-align: center;
  letter-spacing: .02em;
  background-color: #0a0a0a;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  padding: .75rem 1.4rem;
  font-family: DM Sans, sans-serif;
  font-size: .85rem;
  font-weight: 600;
  transition-property: background-color, transform;
  transition-duration: .18s;
  transition-timing-function: ease;
  display: inline-flex;
}

.where-section {
  background-color: #f7f7f5;
  padding: 6rem 4rem;
}

.where-eyebrow {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #1a1a1a;
  letter-spacing: .15em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 1rem;
  font-family: DM Sans, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
}

.where-dot {
  background-color: #15616d;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: inline-block;
}

.where-heading {
  letter-spacing: -.025em;
  max-width: 36rem;
  margin: 0 0 1rem;
  font-family: Montserrat, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.05;
}

.where-sub {
  opacity: .7;
  max-width: 38rem;
  margin: 0 0 3.5rem;
  font-family: DM Sans, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

.where-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.where-tile {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #fff;
  border-radius: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  transition: transform .2s, box-shadow .2s;
  display: flex;
}

.where-tile-icon {
  margin-bottom: .5rem;
  font-size: 2.25rem;
  line-height: 1;
}

.where-tile-title {
  color: #1a1a1a;
  letter-spacing: -.015em;
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
}

.where-tile-desc {
  opacity: .7;
  color: #1a1a1a;
  margin: 0;
  font-family: DM Sans, sans-serif;
  font-size: .95rem;
  line-height: 1.55;
}

.wis-section {
  background-color: #fff;
  padding: 6rem 4rem;
}

.wis-wrap {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
}

.wis-eyebrow {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #1a1a1a;
  letter-spacing: .15em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 1rem;
  font-family: DM Sans, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
}

.wis-dot {
  background-color: #15616d;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: inline-block;
}

.wis-heading {
  color: #1a1a1a;
  letter-spacing: -.025em;
  margin: 0 0 1.5rem;
  font-family: Montserrat, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
}

.wis-lead {
  color: #1a1a1a;
  margin: 0 0 1.25rem;
  font-family: DM Sans, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

.wis-sub {
  opacity: .72;
  color: #1a1a1a;
  margin: 0;
  font-family: DM Sans, sans-serif;
  font-size: .95rem;
  line-height: 1.65;
}

.wis-table-wrap {
  background-color: #f7f7f5;
  border-radius: 1.25rem;
  overflow: hidden;
}

.wis-table {
  border-collapse: collapse;
  width: 100%;
  font-family: DM Sans, sans-serif;
}

.wis-th-brand {
  color: #fff;
  background-color: #1a1a1a;
}

.wis-td-label {
  color: #6b6b6b;
  font-weight: 600;
}

.wis-td-brand {
  color: #1a1a1a;
  background-color: #fff9f0;
  font-weight: 600;
}

.htu-section {
  background-color: #faf9f6;
  padding: 6rem 4rem;
}

.htu-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.htu-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 4rem;
}

.htu-eyebrow {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #1a1a1a;
  letter-spacing: .15em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 1rem;
  font-family: DM Sans, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
}

.htu-dot {
  background-color: #15616d;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: inline-block;
}

.htu-heading {
  color: #1a1a1a;
  letter-spacing: -.025em;
  margin: 0 0 1rem;
  font-family: Montserrat, sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.1;
}

.htu-sub {
  opacity: .72;
  color: #1a1a1a;
  margin: 0;
  font-family: DM Sans, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

.htu-steps {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
}

.htu-step {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
  transition: transform .18s, box-shadow .18s;
  display: flex;
}

.htu-num {
  color: #fff;
  background-color: #15616d;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 2.75rem;
  height: 2.75rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  box-shadow: 0 6px 18px #15616d59;
}

.htu-step-content {
  flex: 1;
  padding-top: .25rem;
}

.htu-step-title {
  color: #1a1a1a;
  letter-spacing: -.01em;
  margin: 0 0 .4rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.htu-step-desc {
  opacity: .72;
  color: #1a1a1a;
  margin: 0;
  font-family: DM Sans, sans-serif;
  font-size: .95rem;
  line-height: 1.55;
}

.htu-callout {
  color: #1a1a1a;
  background-color: #15616d14;
  border-left: 3px solid #15616d;
  border-radius: .5rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
  padding: 1.1rem 1.5rem;
  font-family: DM Sans, sans-serif;
  font-size: .92rem;
  line-height: 1.55;
}

.uui-text-size-medium {
  color: var(--untitled-ui--gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.uui-container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.uui-page-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.uui-button {
  grid-column-gap: .5rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0a0a0a;
  border: 1px solid #0a0a0a;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: DM Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button:hover {
  border-color: var(--untitled-ui--primary700);
  background-color: var(--untitled-ui--primary700);
}

.uui-button:focus {
  background-color: var(--untitled-ui--primary600);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--primary100);
}

.uui-heading-xsmall {
  color: var(--untitled-ui--gray900);
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.uui-lightbox_play-icon {
  z-index: 2;
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  color: #fff;
  background-color: #ffffff1a;
  border-radius: 100%;
  width: 8rem;
  height: 8rem;
  position: absolute;
}

.lightbox_video-overlay-layer {
  z-index: 1;
  background-color: #1d29391a;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.uui-button-row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.uui-icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.uui-layout18_lightbox {
  background-color: var(--untitled-ui--gray50);
  width: 100%;
  height: 100%;
  position: relative;
}

.uui-layout18_lightbox-image {
  object-fit: cover;
  width: 100%;
}

.uui-layout18_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.uui-layout18_item {
  display: flex;
}

.uui-layout18_item-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}

.uui-layout18_item-text-wrapper {
  padding-top: .5rem;
}

.uui-layout18_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.uui-button-secondary-gray {
  grid-column-gap: .5rem;
  background-color: var(--untitled-ui--white);
  color: #001524;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #001524;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: DM Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button-secondary-gray:hover {
  background-color: var(--untitled-ui--gray50);
  color: var(--untitled-ui--gray800);
}

.uui-button-secondary-gray:focus {
  background-color: var(--untitled-ui--white);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--gray100);
}

.uui-icon-featured-outline-large {
  color: #15616d;
  background-color: #d9ebed;
  border: .5rem solid #ecf5f6;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
}

.uui-space-xxsmall {
  width: 100%;
  min-height: .5rem;
}

.uui-padding-vertical-xhuge {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-cta {
  transition: background-color .2s ease, transform undefined undefined, box-shadow undefined undefined;
  color: #fff;
  text-align: center;
  letter-spacing: .01em;
  text-align: center;
  letter-spacing: .16em;
  text-transform: uppercase;
  background-color: #0f0f0f;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-top: .5rem;
  padding: 15px 28px;
  font-family: DM Sans, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  display: inline-flex;
  box-shadow: 0 8px 22px #00000040;
}

.hero-cta:hover {
  background-color: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px #0f766e52;
}

.htu-step-desktop-only {
  display: flex;
}

.htu-cta-wrap {
  grid-column-gap: .85rem;
  grid-row-gap: .85rem;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
}

.htu-cta {
  color: #fff;
  letter-spacing: .01em;
  white-space: nowrap;
  background-color: #0a0a0a;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 1.05rem 2.25rem;
  font-family: DM Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s;
  display: inline-flex;
  box-shadow: 0 10px 26px #0000002e;
}

.htu-cta-note {
  color: #5d6678;
  text-align: center;
  letter-spacing: .01em;
  margin: 0;
  font-family: DM Sans, sans-serif;
  font-size: .85rem;
}

.edit-section {
  background-color: #faf9f5;
  padding: 6rem 2rem;
}

.edit-container {
  max-width: 1180px;
  margin: 0 auto;
}

.edit-header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 5rem;
}

.edit-eyebrow {
  color: #15616d;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: DM Sans, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

.edit-h2 {
  color: #1a1a1a;
  letter-spacing: -.025em;
  margin: 0 0 1rem;
  font-family: Montserrat, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.edit-tagline {
  color: #6b6b6b;
  margin: 0;
  font-family: DM Sans, sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
}

.edit-vibe {
  border-bottom: 1px solid #1a1a1a14;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.edit-bg-type {
  z-index: 0;
  pointer-events: none;
  color: #15616d0f;
  letter-spacing: -.04em;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  font-family: Montserrat, sans-serif;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  line-height: .85;
  position: absolute;
  top: 50%;
  left: -2vw;
  transform: translateY(-50%);
}

.edit-grid {
  z-index: 1;
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  display: grid;
  position: relative;
}

.edit-num {
  color: #15616d;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: DM Sans, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  display: inline-block;
}

.edit-name {
  color: #1a1a1a;
  letter-spacing: -.02em;
  margin: 0 0 1.25rem;
  font-family: Montserrat, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

.edit-body {
  color: #2a2a2a;
  max-width: 28rem;
  margin: 0 0 1.75rem;
  font-family: DM Sans, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

.edit-quote {
  color: #15616d;
  border-left: 2px solid #15616d;
  max-width: 26rem;
  margin: 0 0 2rem;
  padding-left: 1.25rem;
  font-family: DM Sans, sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.edit-link {
  color: #1a1a1a;
  text-underline-offset: .35em;
  font-family: DM Sans, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  transition: color .18s;
}

.edit-photo {
  aspect-ratio: 1 / 1.05;
  background-color: #efefea;
  border-radius: .75rem;
  position: relative;
  overflow: hidden;
}

.edit-section-1 {
  background-color: #faf9f5;
  padding: 6rem 2rem;
}

.edit-header-1 {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 5rem;
}

.edit-tagline-1 {
  color: #6b6b6b;
  margin: 0;
  font-family: DM Sans, sans-serif;
  font-size: 1.05rem;
  font-style: italic;
}

.edit-vibe-1 {
  border-bottom: 1px solid #1a1a1a14;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.edit-bg-type-1 {
  z-index: 0;
  pointer-events: none;
  color: #15616d0f;
  letter-spacing: -.04em;
  white-space: nowrap;
  font-family: Montserrat, sans-serif;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  line-height: .85;
  position: absolute;
  top: 50%;
  left: -2vw;
  transform: translateY(-50%);
}

.edit-quote-1 {
  color: #15616d;
  border-left: 2px solid #15616d;
  max-width: 26rem;
  margin: 0 0 2rem;
  padding-left: 1.25rem;
  font-family: DM Sans, sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.45;
}

.edit-link-1 {
  color: #1a1a1a;
  text-underline-offset: .35em;
  font-family: DM Sans, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: underline;
}

.glass-section {
  background-image: linear-gradient(#0a0a0a 0%, #1a1a24 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.glass-container {
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.glass-header {
  color: #fff;
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 4rem;
}

.glass-eyebrow {
  color: #15616d;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: DM Sans, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

.glass-h2 {
  color: #fff;
  letter-spacing: -.025em;
  margin: 0 0 1rem;
  font-family: Montserrat, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.glass-tagline {
  color: #ffffffa6;
  margin: 0;
  font-family: DM Sans, sans-serif;
  font-size: 1.05rem;
}

.glass-grid {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.glass-card {
  aspect-ratio: 3 / 4;
  background-color: #1a1a24;
  background-size: cover;
  border-radius: 1.25rem;
  transition: transform .3s;
  position: relative;
  overflow: hidden;
}

.glass-bg-cherry {
  background-image: url('../images/black-cherry-scent-bomb-spray---air-freshener.webp');
}

.glass-bg-cotton {
  background-image: url('../images/scent-bomb-clean-cotton---anti-odor-spray.webp');
}

.glass-bg-mango {
  background-image: url('../images/scent-bomb-mango-tropical---bomb-scents-air-fresheners.webp');
}

.glass-bg-tangerine {
  background-image: url('../images/scent-bomb-tangerine-blast---bomb-scent-air-fresheners---air-refreshing-spray.webp');
}

.glass-bg-blue {
  background-image: url('../images/scent-bomb-hawaiian-blue---bomb-scents-air-fresheners.webp');
}

.glass-bg-vanilla {
  background-image: url('../images/scent-bomb-vanilla---bomb-scent-air-fresheners---air-refreshing-spray.webp');
}

.glass-blur {
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  color: #fff;
  background-color: #ffffff2e;
  border: 1px solid #ffffff40;
  border-radius: .85rem;
  padding: 1.25rem 1.4rem;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  box-shadow: 0 12px 32px #00000040;
}

.glass-num {
  color: #ffffffb3;
  letter-spacing: .2em;
  margin-bottom: .4rem;
  font-family: DM Sans, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  display: inline-block;
}

.glass-name {
  color: #fff;
  letter-spacing: -.01em;
  margin: 0 0 .4rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
}

.glass-desc {
  color: #ffffffbf;
  margin: 0 0 .9rem;
  font-family: DM Sans, sans-serif;
  font-size: .85rem;
  line-height: 1.4;
}

.glass-cta {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  color: #fff;
  border-bottom: 1px solid #ffffff80;
  align-items: center;
  padding-bottom: 2px;
  font-family: DM Sans, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .18s;
  display: inline-flex;
}

.hover-relative-2 {
  position: relative;
}

.hover-relative-2.pos-bottle-1 {
  position: absolute;
  top: 57%;
  left: 50%;
}

.hover-relative-2.pos-bottle-2 {
  position: absolute;
  top: 22%;
  left: 65%;
}

.hover-relative-2.pos-bottle-3 {
  position: absolute;
  top: 55%;
  left: 73%;
}

.hover-relative-2.pos-bottle-4 {
  position: absolute;
  top: 45%;
  left: 92%;
}

.hover-content-2 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.circle-hover-2 {
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
  background-color: #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.circle-hero-2 {
  background-color: #fff;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
}

.hero-hover-2 {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  white-space: nowrap;
  background-color: #fff;
  border-bottom: 1px solid #e28e2a;
  border-radius: .0625rem .3125rem .3125rem;
  align-items: flex-start;
  padding: .75rem 1rem;
  display: flex;
  position: absolute;
  left: .5rem;
  overflow: hidden;
}

.hero-background-2 {
  position: absolute;
  inset: 0%;
}

.text-size-small-2 {
  font-size: .875rem;
}

.vertical-line-tag-2 {
  opacity: .5;
  color: #fff;
  background-color: #000;
  width: 1px;
  height: 1rem;
}

.hero-grid-2 {
  z-index: 3;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 100%;
  margin-left: 4.375rem;
  margin-right: 4.375rem;
  display: grid;
  position: absolute;
  inset: 0%;
}

.hero-wrapper-2 {
  flex-flow: column;
  justify-content: center;
  height: 100vh;
  padding-top: 8rem;
  padding-bottom: 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.read-more-tag-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #000;
  background-color: #efefef;
  border-radius: 2.3125rem;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .75rem;
  text-decoration: none;
  display: flex;
}

.heading-7 {
  letter-spacing: -.02em;
  font-family: Montserrat, sans-serif;
  font-size: 4.875rem;
  font-weight: 800;
  line-height: 1.05;
}

.heading-7.text-weight-light {
  border-bottom: 2px solid #0f766e;
  align-self: flex-start;
  padding-bottom: 1.5rem;
  font-weight: 800;
  display: inline-block;
}

.hero-heading-2 {
  z-index: 5;
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  z-index: 5;
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-style: none;
  border-left-width: 0;
  border-left-color: #0000;
  flex-flow: column;
  align-items: flex-start;
  max-width: 63ch;
  margin-bottom: 3rem;
  margin-left: 3.5rem;
  display: flex;
  position: relative;
}

.hero-h2 {
  color: #3a3a3a;
  letter-spacing: -.01em;
  letter-spacing: .005em;
  max-width: 34ch;
  margin-top: 1rem;
  margin-bottom: .5rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.hero-subtitle {
  opacity: .85;
  color: #6b6b73;
  letter-spacing: .01em;
  font-family: Montserrat, sans-serif;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.4;
}

.sb-01-filigree {
  z-index: 0;
  opacity: .08;
  pointer-events: none;
  color: #0f766e;
  letter-spacing: -.05em;
  -webkit-user-select: none;
  user-select: none;
  font-family: Montserrat, sans-serif;
  font-size: 12rem;
  font-weight: 200;
  line-height: 1;
  position: absolute;
  top: -3rem;
  left: -1rem;
}

.sb-scents-link {
  color: #0f766e;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-underline-offset: 4px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-underline-offset: 4px;
  background-color: #0000;
  border: 1.5px solid;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  margin-top: 1.25rem;
  padding: .85rem 1.8rem;
  font-family: Montserrat, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  display: none;
}

.sb-scents-link:hover {
  color: #f5f1e8;
  background-color: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px #0f766e52;
}

.sb-trust-strip {
  color: #f5f1e8eb;
  text-align: center;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px #000000b3;
  margin-top: .25rem;
  margin-bottom: .5rem;
  font-family: Montserrat, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  display: none;
}

.sb-wtb-section {
  background-image: linear-gradient(#0f766e0a, #0f766e12);
  margin: 2rem -50vw 0;
  padding: 3.5rem 50vw;
  position: relative;
  overflow: hidden;
}

.sb-wtb-inner {
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.sb-wtb-eyebrow {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #0f766e;
  letter-spacing: .18em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 1.25rem;
  font-family: Montserrat, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  display: inline-flex;
}

.sb-wtb-heading {
  color: #0f0f0f;
  letter-spacing: -.025em;
  margin: 0 0 1.5rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.15;
}

.sb-wtb-body {
  color: #0f0f0fc7;
  max-width: 60ch;
  margin: 0 auto 1rem;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.sb-wtb-trust {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #134e4a;
  letter-spacing: .08em;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  font-family: Montserrat, sans-serif;
  font-size: .65rem;
  font-weight: 600;
  display: flex;
}

.sb-wtb-dot {
  background-color: #0f766e80;
  border-radius: 50%;
  width: 4px;
  height: 4px;
}

.sb-wtb-cta {
  color: #f5f1e8;
  letter-spacing: .14em;
  text-transform: uppercase;
  background-color: #0f766e;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1.25rem;
  padding: 1rem 1.5rem;
  font-family: Montserrat, sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  display: inline-flex;
  box-shadow: 0 10px 32px #0f766e4d;
}

.sb-final-cta {
  background-image: linear-gradient(135deg, #134e4a 0%, #0f766e 60%, #134e4a 100%);
  margin: 2.5rem -50vw 0;
  padding: 3.5rem 50vw;
  position: relative;
  overflow: hidden;
}

.sb-final-cta-glow {
  filter: blur(40px);
  pointer-events: none;
  background-image: radial-gradient(circle, #f5f1e81a, #0000 65%);
  border-radius: 50%;
  width: 400px;
  height: 400px;
  animation: 8s ease-in-out infinite sb-final-cta-pulse;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sb-final-cta-inner {
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.sb-final-cta-eyebrow {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #f5f1e8d9;
  letter-spacing: .22em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 1.75rem;
  font-family: Montserrat, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  display: inline-flex;
}

.sb-final-cta-dot {
  background-color: #f5f1e8;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2.4s ease-out infinite sb-final-cta-dot;
  box-shadow: 0 0 #f5f1e88c;
}

.sb-final-cta-heading {
  color: #f5f1e8;
  letter-spacing: -.035em;
  margin: 0 0 1.25rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.1;
}

.sb-final-cta-sub {
  color: #f5f1e8c7;
  max-width: 50ch;
  margin: 0 auto 1.75rem;
  font-family: Montserrat, sans-serif;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.6;
}

.sb-final-cta-button {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  color: #134e4a;
  letter-spacing: .14em;
  text-transform: uppercase;
  background-color: #f5f1e8;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  padding: 1rem 1.75rem;
  font-family: Montserrat, sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  display: inline-flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 44px #00000059, inset 0 0 0 1px #f5f1e833;
}

.sb-final-cta-arrow {
  font-weight: 600;
  transition: transform .3s;
}

.sb-final-cta-trust {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #f5f1e88c;
  letter-spacing: .14em;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  font-family: Montserrat, sans-serif;
  font-size: .6rem;
  font-weight: 600;
  display: flex;
}

.sb-final-cta-sep {
  background-color: #f5f1e866;
  border-radius: 50%;
  width: 3px;
  height: 3px;
}

@media screen and (max-width: 991px) {
  .heading-2 {
    font-size: 3.5rem;
  }

  .container {
    max-width: 90vw;
  }

  .section-style-guide {
    margin-top: 4rem;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
  }

  .heading-1 {
    font-size: 4rem;
  }

  .heading-5 {
    font-size: 2.5rem;
  }

  .text-weight-medium.caps.regular-vw-small {
    font-size: 1rem;
  }

  .heading-6 {
    font-size: 2rem;
  }

  .heading-3 {
    font-size: 3rem;
  }

  .style-guide-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .speakers-card {
    padding: 1rem 1rem 2rem;
  }

  .faq-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .faq-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .faq-title-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 3rem;
    display: flex;
  }

  .faq-action-wrapper {
    justify-content: center;
    align-items: center;
    height: 1.5rem;
    right: 0;
  }

  .faq-bottom {
    margin-right: 0;
  }

  .faq-bottom-content {
    grid-template-columns: 1fr;
  }

  .team-member-component {
    grid-row-gap: 4rem;
    padding-left: 0;
    padding-right: 0;
  }

  .event-item {
    padding-left: 0;
    padding-right: 0;
  }

  .button-submit-hover {
    width: 52rem;
    height: 52rem;
  }

  .heading-2-instruction {
    font-size: 4.5rem;
  }

  .max-width-50ch {
    max-width: none;
  }

  .style-guide-heading {
    font-size: 7rem;
  }

  .changelog-component {
    flex-flow: column;
    display: flex;
  }

  .style-guide-text {
    font-size: 2rem;
  }

  .license-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 5.3rem;
    margin-bottom: 6rem;
  }

  .heading-4 {
    font-size: 2.7rem;
  }

  .bento-header {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .bento-row {
    flex-flow: column;
  }

  .card-small {
    order: 1;
    width: 100%;
  }

  .card-big {
    width: 100%;
  }

  .sticky-wrapper {
    margin-top: 8rem;
  }

  .content, .content.max-width-34vw {
    max-width: none;
  }

  .sticky-paragraph {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    max-width: none;
  }

  .products-wrapper {
    margin-top: 8rem;
  }

  .faq-wrapper, .products-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .text-size-medium-vw {
    font-size: 1.125rem;
  }

  .max-width-60ch-2 {
    max-width: 70%;
  }

  .contact-wrapper {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .form-wrapper {
    width: 100%;
  }

  .form {
    justify-content: flex-start;
    align-items: center;
  }

  .menu-icon {
    color: #1e3251;
  }

  .menu-button {
    border-radius: 4px;
    overflow: hidden;
  }

  .menu-button.w--open {
    background-color: #fff9;
  }

  .links-navbar {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nav-menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    background-color: #fffc;
    border-radius: 1.375rem;
    justify-content: center;
    align-items: center;
    width: 90vw;
    margin-top: 1rem;
    padding: 2rem;
    position: absolute;
    left: 5vw;
    right: 5vw;
  }

  .right-navbar-content {
    display: flex;
  }

  .nav-menu-wrap {
    justify-content: center;
    align-items: center;
  }

  .nav-link {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
    display: flex;
  }

  .navbar-component {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-right: 1rem;
    position: relative;
  }

  .hero-heading {
    max-width: 50ch;
  }

  .hero-grid {
    display: none;
  }

  .hero-wrapper {
    justify-content: flex-end;
    align-items: stretch;
    height: 100svh;
    display: flex;
  }

  .hover-relative {
    grid-column-gap: .35rem;
    padding: .3rem .55rem .3rem .4rem;
  }

  .circular-text {
    height: 7rem;
  }

  .product-info {
    order: -1;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
  }

  .product-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    display: flex;
  }

  .product-image {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
  }

  .product-description {
    justify-content: flex-start;
    align-items: center;
  }

  .info-tag {
    flex-flow: column;
  }

  .lightbox-link {
    height: 40vh;
  }

  .product-button {
    margin-top: 1rem;
  }

  .footer-heading {
    margin-bottom: 4rem;
  }

  .footer-component {
    min-height: 0;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .footer-social-wrapper {
    margin-bottom: 4rem;
  }

  .footer-text-size {
    font-size: 1.4rem;
  }

  .button-navbar.margin-left {
    margin-left: 0;
  }

  .heading-vw {
    font-size: 2.7rem;
    line-height: 1.2;
  }

  .regular-vw {
    font-size: 1rem;
  }

  .where-section {
    padding: 4rem 2rem;
  }

  .where-heading {
    font-size: 2.5rem;
  }

  .where-grid {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .wis-section {
    padding: 4rem 2rem;
  }

  .wis-wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .wis-heading {
    font-size: 2.25rem;
  }

  .htu-section {
    padding: 4rem 2rem;
  }

  .htu-heading {
    font-size: 2.25rem;
  }

  .htu-steps {
    grid-row-gap: 1rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .uui-layout18_lightbox-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .uui-layout18_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    align-items: start;
    min-height: auto;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero-image {
    display: block;
  }

  .edit-section {
    padding: 4rem 1.5rem;
  }

  .edit-vibe {
    padding: 3rem 0;
  }

  .edit-bg-type {
    opacity: .5;
    font-size: 6rem;
  }

  .edit-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .edit-section-1 {
    padding: 4rem 1.5rem;
  }

  .edit-bg-type-1 {
    opacity: .5;
    font-size: 6rem;
  }

  .glass-section {
    padding: 4rem 1.5rem;
  }

  .glass-grid {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid-2 {
    display: none;
  }

  .hero-wrapper-2 {
    justify-content: center;
    align-items: stretch;
    height: 100svh;
    padding-top: 6rem;
    padding-bottom: 3rem;
    display: flex;
  }

  .heading-7 {
    font-size: 3rem;
  }

  .hero-heading-2 {
    max-width: 32ch;
  }

  .sb-scents-link {
    align-self: center;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .heading-2 {
    font-size: 3rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-style-guide-wrapper {
    padding-top: 8rem;
  }

  .style-guide-header {
    font-size: .875rem;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .text-size-huge {
    line-height: 1.3;
  }

  .heading-1 {
    font-size: 3.5rem;
  }

  .style-guide-menu {
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading-5 {
    font-size: 2.3rem;
    line-height: 1.15;
  }

  .heading-6 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .heading-3 {
    font-size: 2.7rem;
  }

  .style-guide-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .speakers-card {
    height: 100%;
  }

  .faq-bottom-content {
    padding-bottom: 0;
  }

  .team-member-component {
    grid-row-gap: 3rem;
  }

  .button-submit-hover {
    width: 42rem;
    height: 42rem;
  }

  .not-fount-text-size {
    font-size: 14rem;
  }

  .heading-2-instruction {
    font-size: 4rem;
  }

  .style-guide-heading {
    font-size: 6rem;
  }

  .style-guide-heading.mobile {
    font-size: 4rem;
  }

  .changelog-component {
    grid-template-columns: 1fr;
  }

  .style-guide-text {
    font-size: 2rem;
    line-height: 1.15;
  }

  .license-content {
    grid-row-gap: 4rem;
    flex-direction: column;
  }

  .license-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    margin-top: 4.2rem;
    margin-bottom: 5.7rem;
  }

  .heading-4 {
    font-size: 2.5rem;
  }

  .bento-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-top: 6rem;
    margin-bottom: 0;
    padding-bottom: 1.5rem;
  }

  .card-big {
    padding-top: 1.5rem;
    padding-left: 1.5rem;
  }

  .sticky-wrapper {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
    width: 100%;
    margin-top: 4rem;
  }

  .sticky-component {
    width: 100%;
    height: 50vh;
    position: relative;
  }

  .sticky-content {
    width: 100%;
    padding-bottom: 0;
  }

  .sticky-text {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: 4rem;
    margin-left: 2rem;
  }

  .sticky-paragraph {
    max-width: none;
  }

  .sticky-small-image {
    width: 10rem;
    height: 10rem;
    margin-top: 4rem;
    margin-right: 4rem;
  }

  .sticky-medium-image {
    margin-top: 6rem;
  }

  .products-wrapper {
    margin-top: 3rem;
  }

  .products-cards {
    flex-flow: column;
    display: flex;
  }

  .contact-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .navbar-component {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1rem;
  }

  .hero-heading {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: none;
    margin-bottom: 0;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .hero-wrapper {
    justify-content: flex-start;
    height: auto;
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }

  .hero-background {
    border-bottom-right-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    width: 100%;
    height: 42vh;
    max-height: 420px;
    margin-bottom: 2rem;
    position: relative;
    inset: auto;
    overflow: hidden;
  }

  .hero-hover {
    white-space: normal;
    max-width: 8rem;
    padding: .3rem .55rem;
    font-size: .7rem;
  }

  .hover-content {
    font-size: .65rem;
  }

  .hover-relative {
    grid-column-gap: .3rem;
    padding: .25rem .5rem .25rem .35rem;
  }

  .button-hero {
    display: none;
    position: relative;
    left: 0;
  }

  .read-more-tag {
    color: #134e4a;
    background-color: #f5f1e8eb;
  }

  .product-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .credits-wrapper {
    flex-flow: column;
    margin-top: 1rem;
  }

  .footer-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-heading {
    height: 2rem;
  }

  .footer-component {
    padding-top: 4rem;
  }

  .footer-text-size {
    font-size: 1.3rem;
  }

  .heading-vw {
    font-size: 2.5rem;
  }

  .text-size-medium-2 {
    font-size: 1.2rem;
  }

  .delete-this {
    left: 1.5rem;
  }

  .best-seller-badge {
    padding: .22rem .55rem;
    font-size: .6rem;
    top: .5rem;
    right: .5rem;
  }

  .buy-now-button {
    padding: .6rem 1.1rem;
    font-size: .8rem;
  }

  .where-section {
    padding: 3rem 1.5rem;
  }

  .where-heading {
    font-size: 2rem;
  }

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

  .htu-steps {
    grid-row-gap: 1rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .uui-page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .uui-button {
    font-size: 1rem;
  }

  .uui-button:hover {
    border-color: var(--untitled-ui--primary600);
    background-color: var(--untitled-ui--primary600);
  }

  .uui-heading-xsmall {
    font-size: 1.25rem;
  }

  .uui-lightbox_play-icon {
    width: 4rem;
    height: 4rem;
  }

  .uui-button-row {
    align-self: stretch;
  }

  .uui-button-row.is-reverse-mobile-landscape {
    flex-direction: column-reverse;
  }

  .uui-button-wrapper.max-width-full-mobile-landscape {
    width: 100%;
  }

  .uui-layout18_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .uui-layout18_item-list {
    grid-row-gap: 2.5rem;
    margin-bottom: 2rem;
  }

  .uui-button-secondary-gray {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .uui-button-secondary-gray:hover {
    background-color: var(--untitled-ui--white);
    color: var(--untitled-ui--gray700);
  }

  .uui-padding-vertical-xhuge {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-image {
    object-fit: contain;
    object-position: center;
    background-color: #f5f5f0;
    display: none;
  }

  .hero-cta {
    color: #134e4a;
    letter-spacing: .03em;
    background-color: #f5f1e8;
    width: 100%;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 32px #00000073, 0 0 0 1px #f5f1e826;
  }

  .htu-step-desktop-only {
    display: none;
  }

  .htu-cta-wrap {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .htu-cta {
    width: 100%;
    padding: 1.1rem 1.5rem;
    font-size: .95rem;
  }

  .htu-cta-note {
    font-size: .8rem;
  }

  .hero-background-2 {
    background-color: #0a0a0a;
    background-image: linear-gradient(#0000004d 0%, #0000000d 40%, #00000080 70%, #000000d9 100%), url('../images/Scent-Bombs---The-best-air-fresheners---anti-odor-sprays-cars-kitchen-gym-travel-1.webp');
    background-repeat: no-repeat;
    background-size: cover;
  }

  .hero-wrapper-2 {
    justify-content: flex-end;
    padding: 5rem 1.5rem 2.5rem;
  }

  .heading-7 {
    color: #f5f1e8;
    letter-spacing: -.03em;
    text-shadow: 0 2px 16px #000000e6, 0 1px 3px #000000b3;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.02;
  }

  .hero-heading-2 {
    grid-row-gap: .5rem;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    margin: auto 1rem 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-h2 {
    color: #f5f1e8f2;
    text-shadow: 0 1px 10px #000000d9, 0 1px 2px #0009;
    margin-top: .85rem;
    margin-bottom: 0;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.35;
  }

  .sb-01-filigree {
    display: none;
  }

  .sb-scents-link {
    color: #134e4a;
    background-color: #f5f1e8;
    border-width: 2px;
    align-self: center;
    margin-top: 1.5rem;
    padding: 1.1rem 2.2rem;
    font-size: .88rem;
    display: inline-flex;
    box-shadow: 0 10px 32px #0006, 0 0 0 1px #f5f1e826;
  }

  .sb-scents-link:hover {
    color: #134e4a;
    background-color: #f5f1e8;
    box-shadow: 0 10px 28px #f5f1e84d;
  }

  .sb-trust-strip {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .heading-2 {
    font-size: 2.8rem;
  }

  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-style-guide-wrapper {
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-1 {
    font-size: 3rem;
  }

  .style-guide-menu {
    grid-column-gap: 1rem;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .heading-5 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .style-guide-content {
    margin-bottom: 6rem;
  }

  .sticky-menu {
    width: 100%;
  }

  .heading-6 {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .style-guide-menu-wrapper {
    width: 100%;
  }

  .heading-3 {
    font-size: 2.5rem;
  }

  .style-guide-component, .divider-line {
    width: 100%;
  }

  .faq-title-wrapper {
    padding-right: 3.5rem;
  }

  .faq-bottom-content {
    display: flex;
  }

  .button-submit-hover {
    width: 25rem;
    height: 25rem;
  }

  .not-fount-text-size {
    font-size: 7rem;
  }

  .divider-line-instructions {
    width: 100%;
  }

  .heading-2-instruction {
    font-size: 3rem;
    line-height: 1.1;
  }

  .double-button-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    align-items: center;
    width: 100%;
  }

  .hero-changelog-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .style-guide-heading {
    font-size: 5rem;
    line-height: 1.1;
  }

  .style-guide-heading.mobile {
    font-size: 3rem;
  }

  .changelog-component {
    width: 100%;
  }

  .style-guide-text {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .license-component {
    grid-row-gap: 1.75rem;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }

  .heading-4 {
    font-size: 2.2rem;
  }

  .bento-wrapper {
    margin-top: 4rem;
    margin-bottom: 0;
  }

  .content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .products-wrapper {
    margin-top: 2.5rem;
  }

  .products-header {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .products-heading {
    justify-content: flex-start;
    align-items: center;
  }

  .button-wrapper {
    align-self: auto;
  }

  .max-width-60ch-2 {
    max-width: none;
  }

  .form-wrapper, .form {
    width: 100%;
  }

  .menu-button.w--open {
    background-color: #fff9;
  }

  .links-navbar {
    border-top-right-radius: 0;
    border-bottom-left-radius: .5rem;
  }

  .nav-menu {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .hero-heading {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .hero-grid {
    display: none;
  }

  .hero-wrapper {
    justify-content: flex-start;
    height: auto;
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 2.5rem;
  }

  .hero-background {
    height: 38vh;
    max-height: 320px;
    margin-bottom: 1.5rem;
  }

  .read-more-tag {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    border-radius: 1rem;
    flex-flow: row;
    width: auto;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .credits-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    place-items: flex-start center;
  }

  .footer-heading {
    height: auto;
  }

  .footer-links {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-links-wrapper {
    text-align: center;
  }

  .footer-social-wrapper {
    margin-bottom: 2rem;
  }

  .footer-text-size {
    font-size: 1.2rem;
  }

  .overlay-mobile {
    z-index: 2;
    background-image: linear-gradient(0deg, var(--color--background-color), #efefef00);
    height: 50vh;
    display: none;
    position: absolute;
    inset: auto 0% 0;
  }

  .heading-vw {
    font-size: 2.2rem;
  }

  .text-size-medium-2 {
    font-size: 1.125rem;
  }

  .modal-link {
    flex-flow: wrap;
  }

  .wis-section {
    padding: 3rem 1.5rem;
  }

  .wis-heading {
    font-size: 1.8rem;
  }

  .htu-section {
    padding: 3rem 1.5rem;
  }

  .htu-heading {
    font-size: 1.7rem;
  }

  .htu-steps {
    grid-row-gap: .85rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .htu-step {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding: 1.25rem;
  }

  .htu-num {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

  .uui-text-size-medium {
    font-family: Montserrat, sans-serif;
  }

  .uui-heading-xsmall {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
  }

  .hero-image {
    width: 125%;
    display: none;
  }

  .hero-cta {
    color: #134e4a;
    background-color: #f5f1e8;
    width: 100%;
    box-shadow: 0 8px 24px #00000040;
  }

  .edit-section {
    padding: 3rem 1rem;
  }

  .edit-header {
    margin-bottom: 3rem;
  }

  .glass-section {
    padding: 3rem 1rem;
  }

  .glass-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .overlay-mobile-2 {
    z-index: 2;
    background-image: linear-gradient(0deg, #efefef, #efefef00);
    height: 50vh;
    position: absolute;
    inset: auto 0% 0;
  }

  .hero-background-2 {
    background-color: #0a0a0a;
    background-image: linear-gradient(#0000 0% 40%, #00000080 55%, #000000eb 75%, #000000f7 100%), url('../images/Scent-Bombs---The-best-air-fresheners---anti-odor-sprays-10.webp');
    background-repeat: no-repeat;
    background-size: cover;
  }

  .read-more-tag-2 {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    border-radius: 1rem;
    flex-flow: row;
    width: auto;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .heading-7 {
    color: #f5f1e8;
    letter-spacing: -.028em;
    text-shadow: 0 2px 16px #000000d9, 0 1px 3px #0009;
    font-size: 2.1rem;
    line-height: 1.04;
  }

  .heading-7.text-weight-light {
    padding-bottom: 11px;
  }

  .hero-h2 {
    color: #f5f1e8f2;
    text-shadow: 0 1px 10px #000c, 0 1px 2px #00000080;
    margin-top: .75rem;
    margin-bottom: 0;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.4;
  }

  .sb-scents-link {
    color: #134e4a;
    background-color: #f5f1e8;
    border-width: 2px;
    width: 100%;
    margin-top: 1.25rem;
    padding: 1.05rem 1.8rem;
    font-size: .82rem;
    box-shadow: 0 10px 32px #0006, 0 0 0 1px #f5f1e826;
  }

  .sb-scents-link:hover {
    color: #134e4a;
    background-color: #f5f1e8;
    box-shadow: 0 10px 28px #f5f1e847;
  }

  .sb-trust-strip {
    letter-spacing: .12em;
    font-size: .66rem;
    display: block;
  }
}

#w-node-_50f37ce7-9d85-74c6-f47b-7be6fc85d61c-570c77db, #w-node-_50f37ce7-9d85-74c6-f47b-7be6fc85d626-570c77db, #w-node-_50f37ce7-9d85-74c6-f47b-7be6fc85d630-570c77db {
  align-self: start;
}

#w-node-_166a32a4-df69-feaf-899a-25aced6d2465-570c77db, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee4af-570c77e4, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee4c3-570c77e4, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee4c8-570c77e4, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee4df-570c77e4, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee509-570c77e4, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee53f-570c77e4, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee55d-570c77e4, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee55f-570c77e4, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee564-570c77e4, #w-node-_1d033a72-bfd5-f09e-8de5-139b4f643236-570c77e4, #w-node-_03993e21-e067-738e-3b6b-1ee9329895a8-570c77e4, #w-node-e2aba446-b341-f364-b7ff-109c4a3e66dd-570c77e4, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee56d-570c77e4, #w-node-_27cdc4ca-a824-91eb-49eb-ab35f8054e02-570c77e5, #w-node-_338636f3-38f5-d93b-80c1-22af1269d0a3-570c77e6, #w-node-_11830304-ed83-c247-8dbe-1f93339a1055-570c77ed, #w-node-_11830304-ed83-c247-8dbe-1f93339a1075-570c77ed, #w-node-_11830304-ed83-c247-8dbe-1f93339a108e-570c77ed, #w-node-bdc51d0e-da8c-85e8-0820-4fad353d80b5-570c77ee, #w-node-_3d641119-0743-624f-4e9b-b473fee206ae-570c77ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2'), url('../fonts/Satoshi-VariableItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}