@font-face {
  font-family: Otf;
  src: url('../fonts/OTF.zip') format("undefined");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neue Haas;
  src: url('../fonts/NeueHaasDisplayRoman.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neue Haas;
  src: url('../fonts/NeueHaasDisplayLight.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Canela;
  src: url('../fonts/CanelaDeck-Regular-Trial.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Canela;
  src: url('../fonts/CanelaDeck-Thin-Trial.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Canela;
  src: url('../fonts/CanelaDeck-Light-Trial.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Domaine Sans Display;
  src: url('../fonts/Domaine-Sans-Display-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Domaine Sans Display;
  src: url('../fonts/Domaine-Sans-Display-Semibold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: Domainesanstext;
  src: url('../fonts/DomaineSansText-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Domainesanstext;
  src: url('../fonts/DomaineSansText-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Domainesanstext;
  src: url('../fonts/DomaineSansText-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: block;
}

:root {
  --black: #111010;
  --brand-colour: #c5ced9;
  --white: white;
  --airy-red: #d04219;
  --glossy-grey: #565759;
  --scalp-blue: #122781;
  --kore-1: #1f1c4e;
  --light-grey: #f7f7f7;
  --dark-grey: #9b9b9b;
  --brand-colour-second: #bfb5a6;
  --light-text: #565759;
  --kore-light: #f5e6dd;
}

.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;
}

body {
  color: var(--black);
  font-family: Canela, sans-serif;
  font-size: 16px;
  line-height: 1;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Canela, sans-serif;
  font-size: 2.7rem;
  font-weight: 300;
  line-height: 1;
}

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Canela, sans-serif;
  font-size: 2.1rem;
  font-weight: 100;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

p {
  font-family: Canela, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
}

a {
  color: var(--brand-colour);
  font-family: Canela, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 0;
  text-decoration: none;
}

.invese-link {
  color: #fff;
}

.col-dummy-colour {
  background-color: #d4d4d4;
}

.cta-button {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border: 1px solid #fff0;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  padding: 1em 3em;
  font-family: Neue Haas, sans-serif;
  font-weight: 400;
  transition: all .35s;
  display: flex;
  box-shadow: 1px 1px 6px #c5ccd8;
}

.cta-button:hover {
  border-color: var(--black);
  background-color: var(--white);
  color: var(--black);
  transform: translate(0);
}

.cta-button.ghost-button {
  border: 1px solid var(--brand-colour);
  color: var(--brand-colour);
  background-color: #0000;
}

.cta-button.ghost-button:hover {
  background-color: var(--brand-colour);
  color: #fff;
  border-color: #25bcca;
}

.cta-button.ghost-button.inverse-ghost {
  color: #fff;
  border-color: #fff;
}

.cta-button.ghost-button.inverse-ghost:hover, .cta-button.inverse-button {
  color: var(--brand-colour);
  background-color: #fff;
}

.cta-button.inverse-button:hover {
  border: 1px solid var(--white);
  background-color: var(--brand-colour);
  color: #fff;
}

.cta-button.inverse-button:active {
  background-color: var(--brand-colour);
}

.cta-button.min-width {
  letter-spacing: .02rem;
  min-width: 230px;
  margin-top: auto;
  padding: 1.5em 1em;
  font-family: Canela, sans-serif;
  font-size: .9rem;
  font-weight: 300;
}

.cta-button.min-width.white {
  color: #000;
  background-color: #fff;
}

.cta-button.red {
  background-color: var(--airy-red);
}

.cta-button.red:hover {
  border-color: var(--airy-red);
  background-color: var(--white);
  color: var(--airy-red);
}

.cta-button.grey {
  background-color: var(--glossy-grey);
}

.cta-button.grey:hover {
  border-color: var(--glossy-grey);
  background-color: var(--white);
  color: var(--glossy-grey);
}

.cta-button.blue {
  background-color: var(--scalp-blue);
}

.cta-button.blue:hover {
  border-color: var(--scalp-blue);
  background-color: var(--white);
  color: var(--scalp-blue);
}

.cta-button.negative-top-margin {
  position: relative;
  top: -1em;
}

.cta-button.buy-now {
  margin-left: auto;
  margin-right: auto;
  font-family: Canela, sans-serif;
  font-size: .9rem;
  font-weight: 300;
  position: relative;
  top: -1em;
}

.cta-button.buy-now.red.no-top-margin, .cta-button.buy-now.grey.no-top-margin, .cta-button.buy-now.blue.no-top-margin {
  top: 0;
}

.cta-button.buy-now.kore-1 {
  background-color: var(--kore-1);
  margin-top: 1rem;
  font-family: Domainesanstext, sans-serif;
  font-weight: 700;
}

.cta-button.buy-now.kore-1:hover {
  border-color: var(--kore-1);
  background-color: var(--light-grey);
  color: var(--kore-1);
}

.cta-button.iframe {
  box-shadow: none;
  background-color: #000;
  border-color: #fff;
  font-size: 1.4rem;
}

.cta-button.iframe:hover {
  background-color: #fff;
}

.cta-button.iframe.kore {
  background-color: var(--kore-1);
  font-family: Domainesanstext, sans-serif;
  font-size: 1rem;
}

.cta-button.iframe.kore:hover {
  background-color: var(--white);
  color: var(--kore-1);
}

.flex-col-wrap {
  flex-wrap: wrap;
  display: flex;
}

.flex-col-wrap.inverse-colours {
  background-color: var(--brand-colour);
  padding-top: 26px;
  padding-bottom: 0;
}

.flex-col-wrap.nav-distribute {
  flex: 1;
}

.flex-col-wrap.footer-2-menu-wrapper {
  flex: 1;
  padding-left: 40px;
}

.style-tile {
  text-transform: uppercase;
  border-bottom: 1px solid #d4d4d4;
  margin: 40px 15px 20px;
  padding-bottom: 20px;
}

.style-name {
  color: #d4d4d4;
  text-transform: uppercase;
  border-top: 1px solid #d4d4d4;
  border-bottom: 0 #d4d4d4;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 14px;
  font-size: 12px;
}

.colour-box {
  border: 1px solid #8a8a8a;
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
  margin-right: 25px;
  display: inline-block;
}

.colour-box.colour-brand-main {
  background-color: var(--brand-colour);
}

.colour-box.colour-dark-grey {
  background-color: var(--dark-grey);
}

.colour-box.colour-black {
  background-color: var(--black);
  margin-left: 0;
}

.colour-box.colour-brand-second {
  background-color: var(--brand-colour-second);
}

.colour-box.colour-light-grey {
  background-color: var(--light-grey);
}

.colour-box.colour-white {
  background-color: var(--white);
  margin-left: 0;
}

.colour-box.gradient-brand-main {
  background-image: linear-gradient(135deg, var(--brand-colour), #3663f7 31%, #2f5ffc 66%, var(--brand-colour));
}

.colour-box.gradient-black {
  background-image: linear-gradient(143deg, black, #131313 28%, #0e0e0e 68%, var(--black));
}

.colour-box.gradient-white {
  background-image: linear-gradient(135deg, #f0f0f0, var(--white) 37%, var(--white) 68%, #ececec);
}

.colour-box.gradient-brand-second {
  background-image: linear-gradient(135deg, var(--brand-colour-second), #fc4043 31%, #f84043 66%, var(--brand-colour-second));
}

.colour-box.gradient-dark-grey {
  background-image: linear-gradient(135deg, transparent, var(--dark-grey) 0%, #a8a8a8 32%, #9b9b9b 67%, var(--dark-grey));
}

.colour-box.gradient-light-grey {
  background-image: linear-gradient(135deg, var(--light-grey), transparent 0%, #f5f3f3 32%, var(--light-grey) 67%, #fff);
}

.flex-three-col {
  width: 33.333%;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.flex-three-col.text-link-colour {
  padding-top: 19px;
}

.flex-three-col.nav-center {
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.flex-three-col.nav-side {
  justify-content: flex-end;
  align-items: center;
  width: 22%;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.flex-three-col.nav-side.left {
  justify-content: flex-start;
}

.flex-three-col.footer-menu {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.my-contain {
  z-index: 99;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.my-contain.nav-contain-1 {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  max-width: 1250px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  display: flex;
}

.my-contain.nav-contain-2 {
  flex: 1;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.my-contain.nav-contain-4 {
  flex: 1;
  padding: 10px 15px;
}

.my-contain.flex-vert-distributed {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.my-contain.centered {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.small-p {
  color: var(--light-text);
  margin-bottom: 10px;
  font-size: .8rem;
  line-height: 1.4;
}

.flex-two-col {
  width: 50%;
  margin-bottom: 15px;
  padding: 10px 15px;
}

.flex-vert-centered {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-vert-centered.char-restrict-medium {
  max-width: 60ch;
}

.flex-vert-centered.character-restriction {
  z-index: 10;
  position: relative;
}

.spacer-small {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
}

.spacer-small.border {
  border: 1px solid #000;
}

.spacer-medium {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: block;
}

.spacer-medium.border {
  border: 1px solid #000;
}

.spacer-large {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 45px;
  padding-bottom: 45px;
  display: block;
}

.spacer-large.border {
  border: 1px solid #000;
}

.line-long {
  background-color: var(--black);
  width: 100%;
  height: 1px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.line-medium {
  background-color: var(--black);
  width: 75%;
  height: 1px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.line-short {
  background-color: var(--black);
  width: 37%;
  height: 1px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.section {
  background-color: var(--light-grey);
  justify-content: center;
  align-items: center;
  height: 100dvh;
  padding: 5.5rem 3rem 5.5rem 3em;
  display: flex;
  position: relative;
}

.section.hero {
  justify-content: center;
  display: flex;
}

.section.flex-vert-centered.off-white {
  background-color: #f7f7f7;
  overflow: hidden;
}

.section.flex-vert-centered.off-white.full {
  height: 100vh;
}

.section.flex-vert-centered.black {
  color: var(--white);
  background-color: #111010;
  overflow: hidden;
}

.section.flex-vert-centered.black.no-min-height {
  display: none;
}

.section.no-min-height {
  min-height: 0;
}

.section.black-bg {
  color: var(--white);
  background-color: #000;
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/q_B3OUKQ.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 100vh;
  padding-top: 8rem;
  display: flex;
}

.section.black-bg.kore {
  background-image: linear-gradient(#1f1c4ec4, #1f1c4ec4), url('../images/kore-bg-2.png');
  background-position: 0 0, 50%;
  background-size: auto, contain;
  justify-content: center;
  align-items: center;
  padding-bottom: 10rem;
}

.section.bg-kore-light {
  background-color: #f5e6dd;
}

.section.ampules {
  background-color: #eae8e7;
}

.navbar-1 {
  color: var(--white);
  background-color: #0000;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navlink {
  color: var(--white);
  padding-left: 2em;
  padding-right: 2em;
}

.navbar-2 {
  align-items: center;
  display: flex;
}

.nav-logo-2.hidden-large-screen {
  display: none;
}

.navbar-3, .nav-menu {
  align-items: center;
  display: flex;
}

.nav-menu.flex {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-3-menu-wrapper {
  flex: 1;
  display: flex;
}

.flex-distribute {
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.navbar-second-meny-wrapper {
  align-items: center;
  display: flex;
}

.card-small {
  background-color: var(--light-grey);
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 35px;
  transition: all .3s;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  box-shadow: 1px 1px 10px #9b9b9b;
}

.card-small:hover {
  box-shadow: 1px 1px 20px #9b9b9b94;
}

.social-link {
  margin-top: 10px;
  padding-left: 20px;
}

.footerparagraph {
  padding-top: 7px;
  padding-bottom: 7px;
}

.footer-link {
  color: var(--light-text);
  margin-bottom: 15px;
  padding-top: 10px;
  padding-bottom: 1px;
  text-decoration: none;
  display: block;
}

.nav-menu-expand {
  flex: 1;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.nav-menu-split-wrapper {
  align-items: center;
  width: 30%;
  display: flex;
}

.navbar-4 {
  align-items: center;
  display: flex;
}

.navbar-4.sticky {
  position: sticky;
  top: 0;
}

.logo-temp {
  margin-bottom: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.right-padding {
  padding-right: 30px;
}

.social-links-container-2 {
  text-align: right;
  display: inline-block;
}

.social-link-2 {
  margin-top: 10px;
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.copywrite-text-left {
  margin-top: 25px;
  font-size: .7rem;
  line-height: 1.2;
}

.gradient-text {
  background-image: linear-gradient(104deg, var(--brand-colour), #98f51f);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.highlighted-text {
  background-color: #fcff35;
  padding-top: 15px;
  padding-bottom: 15px;
  display: inline;
}

.shadow {
  box-shadow: -1px 5px 20px -4px #00000021;
}

.shadow-heavy {
  box-shadow: -1px 5px 20px 5px #00000021;
}

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

.text-shadow {
  text-shadow: -6px 6px 20px #3f3f3f7a;
}

.logo-nav {
  width: 100px;
}

.char-restrict-large {
  color: var(--black);
  max-width: 20ch;
}

.char-restrict-large.is-kore {
  font-family: Domaine Sans Display, sans-serif;
  font-weight: 600;
}

.badge-small {
  width: 80px;
}

.two-button-wrapper {
  justify-content: center;
  display: flex;
}

.two-button-wrapper.text-links {
  justify-content: space-around;
  width: 100%;
}

.two-button-wrapper.top-margin {
  margin-top: 1.5em;
}

.two-button-wrapper.product-buttons {
  margin-left: auto;
  margin-right: auto;
}

.spacer-button-vert {
  width: .7em;
  height: .7em;
}

.omg-text {
  font-size: 6rem;
  font-weight: 400;
}

.page-button-wrapper {
  z-index: 999;
  background-image: linear-gradient(#0000, #fff9);
  justify-content: space-between;
  padding: 1em;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.page-button-wrapper.black-gradient {
  background-image: linear-gradient(to bottom, #0000, var(--black));
}

.page-button {
  cursor: pointer;
  width: 50px;
  height: 100%;
}

.grid-ingredients {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1040px;
  margin-top: 7em;
}

.grid-ingredients.is-kore {
  place-items: center;
}

.ingredient-wrapper {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: flex;
}

.indredient-image {
  object-fit: contain;
  width: 80px;
  transform: scale(1.5);
}

.incredient-text-wrapper {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.incredient-text-wrapper.is-kore {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  max-width: 310px;
}

.grid-products {
  z-index: 50;
  grid-column-gap: 6.25em;
  grid-row-gap: 6.25em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 1040px;
  position: relative;
}

.grid-products.kore {
  grid-template-columns: 1fr 1fr;
}

.product-wrapper {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.product-wrapper.hide {
  display: none;
}

.product-name-div {
  color: var(--light-grey);
  cursor: pointer;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.product-name-div.red {
  background-color: var(--airy-red);
}

.product-name-div.red:hover {
  border: 1px solid var(--airy-red);
  color: var(--airy-red);
  background-color: #d0421900;
}

.product-name-div.grey {
  background-color: var(--glossy-grey);
}

.product-name-div.grey:hover {
  border: 1px solid var(--glossy-grey);
  color: var(--glossy-grey);
  background-color: #56575900;
}

.product-name-div.blue {
  background-color: var(--scalp-blue);
}

.product-name-div.blue:hover {
  border: 1px solid var(--scalp-blue);
  color: var(--scalp-blue);
  background-color: #fff0;
}

.product-name-div.kore-1 {
  background-color: var(--kore-1);
}

.product-name-div.kore-1:hover {
  border: 1px solid var(--airy-red);
  color: var(--airy-red);
  background-color: #d0421900;
}

.product-image {
  width: 170px;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

.product-image.kore-1 {
  object-fit: contain;
  height: 250px;
}

.product-image.kore-1.wide {
  width: 270px;
  height: 300px;
}

.grid-product-detailed {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  width: 100%;
  max-width: 1040px;
  margin-top: 2.6em;
}

.product-description-wrapper {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: flex;
}

.list {
  padding-left: 1.6em;
}

.image-product-wrapper {
  flex-direction: row;
  justify-content: center;
  padding-left: 4em;
  display: flex;
}

.image-product-left, .image-product-right {
  flex: 1;
  height: 100%;
  position: relative;
}

.image-product {
  z-index: 99;
  flex: 1;
  height: 440px;
  position: relative;
}

.image-product.right {
  z-index: 90;
  bottom: -108px;
  left: -20%;
}

.image-product.right.is-kore {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-button {
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
  position: absolute;
}

.image-button.airy-left {
  inset: 140px 14% auto auto;
}

.image-button.airy-right {
  inset: auto 18% 100px auto;
}

.image-button.glossy-left {
  inset: 140px 14% auto auto;
}

.image-button.glossy-right {
  inset: auto 18% 100px auto;
}

.hero-centered-wrapper {
  flex-direction: column;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
}

.hero-centered-wrapper.char-restrict-medium {
  max-width: 50ch;
}

.background {
  z-index: 0;
  background-image: url('../images/OMG_PATTERN.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  inset: 0%;
}

.background.alt {
  opacity: 1;
  background-image: url('../images/OMG_PATTERN_WHITE.png');
  background-size: cover;
  height: 100%;
}

.background.black {
  opacity: 1;
  background-color: #000;
  background-image: url('../images/OMG_PATTERN_WHITE.png');
  background-size: cover;
  height: 100%;
}

.background.kore {
  background-image: url('../images/kore-bg-2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
}

.char-restrict-extra-large {
  max-width: 10ch;
}

.text-block {
  font-weight: 600;
}

.omg-large {
  width: 270px;
}

.grey-text {
  color: var(--glossy-grey);
}

.curved-text-wrapper {
  width: 240px;
  margin-bottom: -1.1em;
}

.curved-text-wrapper.scalp {
  width: 190px;
  margin-bottom: -.5em;
}

.product-image-angle {
  width: 180px;
  min-width: 180px;
  margin-left: 10%;
}

.product-image-angle.is-iframe {
  width: 160px;
  min-width: 140px;
  transform: rotate(-7deg);
}

.product-image-angle.is-iframe.right {
  transform: rotate(7deg);
}

.product-image-angle.is-iframe.right.is-kore {
  width: 70%;
  transform: none;
}

.product-image-angle.is-iframe.right.kore {
  width: 140px;
  min-width: 120px;
}

.product-image-angle.is-iframe.is-kore {
  width: 120px;
  min-width: 120px;
}

.red-text {
  color: var(--airy-red);
}

.dropdown-trigger {
  align-items: center;
  display: flex;
}

.accordian-item {
  width: 100%;
  padding-bottom: 1em;
  overflow: hidden;
}

.accordian-toggle {
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  padding: 1.25em 0 1.25em 0;
  display: flex;
  overflow: hidden;
}

.caps {
  text-transform: uppercase;
}

.dropdown-button-wrapper {
  justify-content: center;
  align-items: center;
  width: 15px;
  min-width: 15px;
  height: 15px;
  min-height: 15px;
  margin-top: -.41em;
  margin-right: .5em;
  display: flex;
  position: relative;
}

.plus-menu-hor {
  background-color: #ceb28b;
  width: 100%;
  padding-top: 1px;
  padding-bottom: 1px;
  position: absolute;
}

.plus-menu-hor.red {
  background-color: var(--airy-red);
}

.plus-menu-hor.grey-text {
  background-color: var(--glossy-grey);
}

.plus-menu-hor.blue {
  background-color: var(--scalp-blue);
}

.plus-menu-hor.grey {
  background-color: var(--glossy-grey);
}

.plus-menu-hor.red-copy {
  background-color: var(--airy-red);
}

.plus-menu-hor.kore-1 {
  background-color: var(--kore-1);
}

.plus-menu-vert {
  background-color: #ceb28b;
  height: 100%;
  padding-left: 1px;
  padding-right: 1px;
}

.plus-menu-vert.ingredient-wrapper {
  background-color: var(--airy-red);
}

.plus-menu-vert.grey {
  background-color: var(--glossy-grey);
}

.plus-menu-vert.blue {
  background-color: var(--scalp-blue);
}

.plus-menu-vert.kore-1 {
  background-color: var(--kore-1);
}

.dropdown-content {
  z-index: 98;
  background-color: #fff0;
  display: block;
  position: relative;
}

.spacer-tiny {
  height: 1em;
}

.all-caps {
  text-transform: uppercase;
  font-family: Neue Haas, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
}

.all-caps.blue-text {
  color: var(--scalp-blue);
}

.all-caps.kore-1-text {
  color: var(--kore-1);
}

.close-button-wrapper {
  justify-content: space-between;
  width: 100vw;
  padding: 1em;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.no-scroll {
  overflow: hidden;
}

.text-link {
  color: var(--white);
  line-height: 1.6;
  text-decoration: underline;
}

.grid-wrapper {
  padding-top: 3.8em;
}

.swipe-text {
  font-size: .9em;
}

.link-arrow {
  color: #fff;
  align-items: center;
  display: flex;
}

.link-arrow.black {
  color: #16171e;
  align-items: stretch;
  display: flex;
  transform: rotate(180deg);
}

.swipe-more-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 1.5em;
  display: none;
}

.arrow-wrapper {
  align-items: center;
  height: 100%;
  display: flex;
}

.close {
  color: #000;
}

.hide-scrollbar {
  flex-direction: column;
  display: flex;
}

.product-wrapper-header {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.collection_page_logo {
  object-fit: contain;
  width: 24rem;
  height: 24rem;
  margin-top: -20rem;
  margin-left: -12rem;
  position: absolute;
  inset: 50% 0% auto 50%;
}

.grid_upgrades {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  width: 100%;
  max-width: 1040px;
  margin-top: 7em;
  margin-bottom: 20px;
  position: relative;
}

.grid_upgrades.hide {
  display: none;
}

.upgrade_wrapper {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.upgrade_image {
  filter: invert();
  object-fit: contain;
  width: 80px;
  height: 99px;
  transform: scale(1.5);
}

.upgrade_image.middle {
  height: 80px;
  margin-bottom: 19px;
}

.upgrade_image.hide {
  display: none;
}

.upgrade-text-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.js-scroll-sync, .css-overflow {
  display: none;
}

.brand-page {
  background-image: linear-gradient(#f7f7f7, #f7f7f7);
  flex-direction: column;
  display: flex;
}

.cta-iframe-button-wrapper {
  justify-content: center;
  display: flex;
}

.kore-logo {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24rem;
  height: 9rem;
  display: flex;
  position: relative;
}

.kore-product-name-div {
  color: var(--black);
  cursor: pointer;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  height: 120px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.kore-product-name-div.red {
  background-color: var(--airy-red);
}

.kore-product-name-div.red:hover {
  border: 1px solid var(--airy-red);
  color: var(--airy-red);
  background-color: #d0421900;
}

.kore-product-name-div.grey {
  background-color: var(--glossy-grey);
}

.kore-product-name-div.grey:hover {
  border: 1px solid var(--glossy-grey);
  color: var(--glossy-grey);
  background-color: #56575900;
}

.kore-product-name-div.blue {
  background-color: var(--scalp-blue);
}

.kore-product-name-div.blue:hover {
  border: 1px solid var(--scalp-blue);
  color: var(--scalp-blue);
  background-color: #fff0;
}

.kore-product-name-div.kore-1 {
  background-color: var(--kore-1);
}

.kore-product-name-div.kore-1:hover {
  border: 1px solid var(--airy-red);
  color: var(--airy-red);
  background-color: #d0421900;
}

.kore-text {
  text-transform: uppercase;
  font-family: PT Sans, sans-serif;
  font-weight: 400;
}

.grid-issues {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  place-items: center;
}

.issues-tile {
  background-color: var(--kore-1);
  color: var(--light-grey);
  cursor: pointer;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  padding: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.issues-tile.red {
  background-color: var(--airy-red);
}

.issues-tile.red:hover {
  border: 1px solid var(--airy-red);
  color: var(--airy-red);
  background-color: #d0421900;
}

.issues-tile.grey {
  background-color: var(--glossy-grey);
}

.issues-tile.grey:hover {
  border: 1px solid var(--glossy-grey);
  color: var(--glossy-grey);
  background-color: #56575900;
}

.issues-tile.blue {
  background-color: var(--scalp-blue);
}

.issues-tile.blue:hover {
  border: 1px solid var(--scalp-blue);
  color: var(--scalp-blue);
  background-color: #fff0;
}

.issues-tile.kore-1 {
  background-color: var(--kore-1);
}

.issues-tile.kore-1:hover {
  border: 1px solid var(--airy-red);
  color: var(--airy-red);
  background-color: #d0421900;
}

.kore-p {
  font-family: Domainesanstext, sans-serif;
  font-weight: 400;
}

.kore-p.hide {
  display: none;
}

.text-tiny {
  font-size: .8rem;
}

.is-kore-heading {
  letter-spacing: -1px;
  font-family: Domainesanstext, sans-serif;
  font-weight: 400;
}

.is-kore-heading.char-restrict-kore {
  font-family: Domainesanstext, sans-serif;
  font-weight: 400;
}

.overlay {
  z-index: 1;
  opacity: 1;
  background-color: #1f1c4ee0;
  position: absolute;
  inset: 0%;
}

.padding-bottom.padding-small {
  padding-bottom: 1rem;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 14px;
  }

  h3 {
    font-size: 1.9rem;
  }

  p {
    font-size: .95rem;
  }

  .cta-button.red {
    background-color: var(--airy-red);
  }

  .flex-col-wrap.nav-distribute {
    justify-content: space-between;
  }

  .flex-col-wrap.footer-2-menu-wrapper {
    padding-left: 20px;
  }

  .flex-three-col.nav-center {
    flex: 0 auto;
    width: auto;
  }

  .flex-three-col.nav-side {
    justify-content: flex-end;
    width: 20%;
  }

  .flex-three-col.nav-side.left {
    justify-content: flex-start;
  }

  .my-contain.nav-contain-2 {
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
  }

  .small-p {
    font-size: .8rem;
  }

  .section {
    height: auto;
  }

  .navlink.hide-tab, .nav-logo-2.hidden-small-screen {
    display: none;
  }

  .nav-logo-2.hidden-large-screen {
    display: block;
  }

  .navbar-3-menu-wrapper {
    justify-content: flex-end;
  }

  .navbar-second-meny-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    margin-right: 15px;
  }

  .card-small {
    padding: 25px;
  }

  .card-small:hover {
    background-color: var(--light-grey);
  }

  .social-link {
    padding-left: 0;
  }

  .footerparagraph {
    font-size: 16px;
    line-height: 25px;
  }

  .footer-link {
    font-size: 16px;
  }

  .footersocialleftpad {
    padding-bottom: 0;
    padding-left: 15px;
  }

  .nav-menu-split-wrapper {
    flex-direction: column;
  }

  .social-link-2 {
    padding-left: 0;
  }

  .grid-ingredients {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-top: 5.5em;
  }

  .indredient-image {
    width: 100px;
  }

  .grid-products {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
  }

  .grid-product-detailed {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    grid-template-columns: 1fr 1fr;
  }

  .product-description-wrapper, .list-item, .list {
    width: 100%;
  }

  .image-product-wrapper {
    justify-content: flex-end;
  }

  .image-product {
    max-height: 440px;
  }

  .image-button.airy-left, .image-button.airy-right, .image-button.glossy-left, .image-button.glossy-right {
    right: 0%;
  }

  .background {
    background-size: auto 190%;
  }

  .background.alt, .background.black {
    background-size: auto 150%;
  }

  .curved-text-wrapper {
    margin-bottom: -1em;
  }

  .product-image-angle.is-iframe {
    width: 80%;
    min-width: 150px;
  }

  .dropdown-content {
    width: 100%;
  }

  .paragraph {
    font-weight: 300;
  }

  .all-caps {
    font-size: 1.5rem;
  }

  .product-wrapper-header {
    flex-direction: column;
    display: flex;
  }

  .collection_page_logo {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .grid_upgrades {
    grid-template-columns: 1fr;
    max-width: 98%;
    margin-top: 5.5em;
  }

  .upgrade_wrapper {
    max-width: 21rem;
  }

  .upgrade_image {
    width: 100px;
  }

  .grid-issues {
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  .cta-button.min-width {
    min-width: 200px;
  }

  .cta-button.buy-now {
    padding-left: 1.2em;
    padding-right: 1.2em;
  }

  .cta-button.buy-now.red.no-top-margin, .cta-button.buy-now.grey.no-top-margin, .cta-button.buy-now.blue.no-top-margin {
    width: 100%;
  }

  .flex-col-wrap {
    flex-direction: column;
  }

  .flex-col-wrap.nav-distribute {
    flex-flow: row;
  }

  .flex-col-wrap.footer-2-menu-wrapper {
    padding-left: 0;
  }

  .colour-box {
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 15px;
  }

  .colour-box.colour-black, .colour-box.colour-white {
    margin-left: 10px;
  }

  .flex-three-col {
    width: 100%;
  }

  .flex-three-col.nav-side {
    width: 40%;
  }

  .flex-two-col {
    width: 100%;
  }

  .flex-vert-centered {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section {
    padding-left: 2em;
    padding-right: 2em;
  }

  .flex-distribute {
    flex-direction: column;
    align-items: center;
  }

  .card-small {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .copywrite-text-left {
    margin-top: 18px;
  }

  .character-restriction {
    max-width: 36ch;
  }

  .two-button-wrapper.is-iframe {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    width: 100%;
  }

  .grid-ingredients {
    margin-top: 3em;
  }

  .indredient-image {
    width: 80px;
  }

  .grid-products {
    grid-column-gap: 5em;
    grid-row-gap: 5em;
    width: 100vw;
    margin-bottom: 1.5em;
    padding-left: 3em;
    padding-right: 3em;
    display: flex;
  }

  .grid-products.kore {
    overflow: scroll;
  }

  .product-wrapper {
    min-width: 13rem;
  }

  .product-name-div {
    width: 120px;
    height: 120px;
  }

  .product-image.kore-1 {
    height: 230px;
  }

  .grid-product-detailed {
    grid-template-columns: 1fr;
  }

  .image-product-wrapper {
    justify-content: space-between;
    padding-top: 1em;
    padding-bottom: 1.7em;
    padding-left: 0;
  }

  .image-product {
    flex: 1;
    height: auto;
    left: 10%;
  }

  .image-product.right {
    max-height: 400px;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .image-product.left {
    justify-content: flex-end;
    max-height: 370px;
    display: flex;
    top: -30px;
    left: auto;
  }

  .image-button {
    display: none;
  }

  .background.alt, .background.black {
    background-size: 150%;
  }

  .omg-large {
    width: 240px;
  }

  .product-image-angle {
    width: 40%;
    min-width: 140px;
    margin-left: 0%;
  }

  .product-image-angle.is-iframe {
    width: 120px;
    min-width: 0;
  }

  .product-image-angle.is-iframe.right.is-kore {
    width: 40%;
    max-width: 10rem;
  }

  .product-image-angle.is-iframe.right.kore {
    width: 60px;
    min-width: 90px;
  }

  .product-image-angle.is-iframe.is-kore {
    width: 70px;
    min-width: 90px;
  }

  .close-button-wrapper {
    inset: 0% 0% auto;
  }

  .product-wrapper-header {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .grid_upgrades {
    margin-top: 3em;
  }

  .upgrade_image {
    width: 80px;
  }

  .kore-logo {
    width: 18rem;
  }

  .kore-text {
    font-size: 1.6rem;
  }

  .issues-tile {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 16px;
  }

  h3 {
    font-size: 1.7rem;
  }

  .cta-button.min-width.white {
    border-color: #000;
  }

  .cta-button.red {
    position: relative;
    top: -2vh;
  }

  .flex-three-col.nav-center {
    padding-right: 0;
  }

  .flex-three-col.nav-side.hidden-mob {
    display: none;
  }

  .my-contain.nav-contain-4 {
    padding-right: 0;
  }

  .my-contain.flex-vert-distributed {
    padding-bottom: 2em;
  }

  .my-contain.flex-vert-centered {
    padding-left: 0;
    padding-right: 0;
  }

  .small-p {
    font-size: 13px;
    line-height: 22px;
  }

  .spacer-medium {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .spacer-large {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section {
    padding-top: 3em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .section.flex-vert-centered.black {
    justify-content: flex-start;
    padding-top: 5em;
  }

  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .two-button-wrapper {
    flex-direction: column;
  }

  .two-button-wrapper.top-margin {
    margin-top: 1em;
  }

  .two-button-wrapper.product-buttons {
    flex-direction: row;
  }

  .two-button-wrapper.is-iframe {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .page-button-wrapper {
    z-index: 100;
  }

  .page-button-wrapper.black-gradient {
    background-image: linear-gradient(#fff0, #00000070 78%);
  }

  .page-button-wrapper.white {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0;
    background-size: auto;
  }

  .grid-ingredients {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .ingredient-wrapper {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
    flex-direction: column;
    align-items: center;
  }

  .indredient-image {
    margin-bottom: .35em;
    transform: scale(1.2);
  }

  .incredient-text-wrapper {
    text-align: center;
    align-items: center;
    max-width: 30ch;
  }

  .grid-products {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    width: 100vw;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .product-wrapper {
    width: 150px;
  }

  .grid-product-detailed {
    padding-bottom: 3em;
    position: relative;
  }

  .product-description-wrapper {
    width: 100%;
  }

  .image-product {
    flex: 0 auto;
    height: auto;
  }

  .image-product.right {
    display: flex;
  }

  .image-product.left {
    left: 0;
  }

  .background {
    opacity: .23;
    background-size: auto 120%;
    overflow: visible;
  }

  .background.alt, .background.black {
    background-image: linear-gradient(#00000073, #fff0 24%), url('../images/OMG_PATTERN_WHITE.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, auto 120%;
  }

  .omg-large {
    width: 200px;
  }

  .grey-text {
    margin-bottom: 5px;
  }

  .product-image-angle {
    width: 60%;
    min-width: 100px;
    margin-left: 0%;
  }

  .product-image-angle.is-iframe {
    min-width: 120px;
    max-width: 120px;
  }

  .product-image-angle.is-iframe.right.is-kore {
    width: 70%;
    max-width: 12rem;
  }

  .accordian-toggle {
    width: 100%;
  }

  .caps {
    line-height: 1.2;
  }

  .dropdown-content {
    width: 100%;
  }

  .all-caps.red-text, .all-caps.grey-text, .all-caps.blue-text, .all-caps.kore-1-text {
    font-size: 6vw;
  }

  .close-button-wrapper {
    z-index: 100;
  }

  .close-button-wrapper.black-gradient {
    background-image: linear-gradient(#fff0, #00000070 78%);
  }

  .close-button-wrapper.white {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0;
    background-size: auto;
  }

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

  .grid-wrapper {
    padding-top: 2.2em;
  }

  .swipe-text {
    display: block;
  }

  .link-arrow.black {
    color: var(--black);
    width: 30%;
  }

  .swipe-more-wrapper {
    justify-content: center;
    display: flex;
  }

  .collection_page_logo {
    height: 22rem;
  }

  .grid_upgrades {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .upgrade_wrapper {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
    flex-direction: column;
    align-items: center;
  }

  .upgrade_image {
    margin-bottom: .35em;
    transform: scale(1.2);
  }

  .upgrade-text-wrapper {
    text-align: center;
    align-items: center;
    max-width: 30ch;
  }

  .kore-logo {
    width: 14rem;
  }

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

#w-node-_2378aa99-afe4-4332-2ee0-bc4f4fdded2b-36bffff2, #w-node-_9bd0990a-db21-71b0-a6be-a618f5571e80-36bffff2, #w-node-_9bcf091a-33d6-4447-7380-d7a27e023caf-36bffff2, #w-node-_849dfd99-7a9e-97cc-887d-066e06bef141-36bffff2, #w-node-_849dfd99-7a9e-97cc-887d-066e06bef142-36bffff2, #w-node-_849dfd99-7a9e-97cc-887d-066e06bef143-36bffff2, #w-node-_7d406b9e-786c-f61b-c856-79add05579ba-36bffff2, #w-node-_7d406b9e-786c-f61b-c856-79add05579bb-36bffff2, #w-node-_7d406b9e-786c-f61b-c856-79add05579bc-36bffff2, #w-node-_09721d6f-ffc1-8a01-aa00-6afd3b9df782-36bffff2, #w-node-_09721d6f-ffc1-8a01-aa00-6afd3b9df783-36bffff2, #w-node-_09721d6f-ffc1-8a01-aa00-6afd3b9df784-36bffff2, #w-node-_34986906-eecc-a7e7-38f5-3582c84daf18-36bffff2, #w-node-_34986906-eecc-a7e7-38f5-3582c84daf19-36bffff2, #w-node-_34986906-eecc-a7e7-38f5-3582c84daf1a-36bffff2, #w-node-_2378aa99-afe4-4332-2ee0-bc4f4fdded2b-9ea44fa2, #w-node-_9bd0990a-db21-71b0-a6be-a618f5571e80-9ea44fa2, #w-node-f39aecd1-df93-f5a9-49e3-3ea761331c12-9ea44fa2, #w-node-f39aecd1-df93-f5a9-49e3-3ea761331c16-9ea44fa2, #w-node-_3dfac84f-721a-5a12-25f4-748c314f8441-9ea44fa2, #w-node-_3dfac84f-721a-5a12-25f4-748c314f8445-9ea44fa2, #w-node-_2378aa99-afe4-4332-2ee0-bc4f4fdded2b-2c393cae, #w-node-_762f9760-71de-9ab5-abee-3eacaeff0504-2c393cae, #w-node-_2378aa99-afe4-4332-2ee0-bc4f4fdded2b-7c7d2a2c, #w-node-_762f9760-71de-9ab5-abee-3eacaeff0504-7c7d2a2c, #w-node-_2378aa99-afe4-4332-2ee0-bc4f4fdded2b-9b7f7f88, #w-node-_762f9760-71de-9ab5-abee-3eacaeff0504-9b7f7f88, #w-node-_2378aa99-afe4-4332-2ee0-bc4f4fdded2b-69910e8b, #w-node-_9bd0990a-db21-71b0-a6be-a618f5571e80-69910e8b, #w-node-_9bcf091a-33d6-4447-7380-d7a27e023caf-69910e8b, #w-node-_849dfd99-7a9e-97cc-887d-066e06bef141-69910e8b, #w-node-_849dfd99-7a9e-97cc-887d-066e06bef142-69910e8b, #w-node-_849dfd99-7a9e-97cc-887d-066e06bef143-69910e8b, #w-node-_7d406b9e-786c-f61b-c856-79add05579ba-69910e8b, #w-node-_7d406b9e-786c-f61b-c856-79add05579bb-69910e8b, #w-node-_7d406b9e-786c-f61b-c856-79add05579bc-69910e8b, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c991-0305c0fe, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c992-0305c0fe, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c993-0305c0fe, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c998-0305c0fe, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c999-0305c0fe, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c99a-0305c0fe, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c99f-0305c0fe, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c9a0-0305c0fe, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c9a1-0305c0fe, #w-node-_7d29c141-1bc8-4460-673d-681138b9464e-0305c0fe, #w-node-_7d29c141-1bc8-4460-673d-681138b94653-0305c0fe, #w-node-_7d29c141-1bc8-4460-673d-681138b94656-0305c0fe, #w-node-_7d29c141-1bc8-4460-673d-681138b9465a-0305c0fe, #w-node-_7d29c141-1bc8-4460-673d-681138b9465d-0305c0fe, #w-node-_7d29c141-1bc8-4460-673d-681138b94661-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4e9-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4ea-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4eb-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4f4-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4f5-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4f6-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b500-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b501-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b502-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b50c-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b50d-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b50e-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b518-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b519-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b51a-0305c0fe, #w-node-_1fa1529d-099c-29fc-ec78-1e369a812f23-0305c0fe, #w-node-_1fa1529d-099c-29fc-ec78-1e369a812f5a-0305c0fe, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f415-0305c0fe, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f3e0-0305c0fe, #w-node-_17df82fc-da19-5e75-728c-99c9c8210e68-0305c0fe, #w-node-_17df82fc-da19-5e75-728c-99c9c8210e9d-0305c0fe, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c991-9b3d3e65, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c992-9b3d3e65, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c993-9b3d3e65, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c998-9b3d3e65, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c999-9b3d3e65, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c99a-9b3d3e65, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c99f-9b3d3e65, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c9a0-9b3d3e65, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c9a1-9b3d3e65, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4e9-9b3d3e65, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4eb-9b3d3e65, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4f4-9b3d3e65, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4f6-9b3d3e65, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b500-9b3d3e65, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b502-9b3d3e65, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b50c-9b3d3e65, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b50e-9b3d3e65, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b518-9b3d3e65, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b51a-9b3d3e65, #w-node-bd132b01-f588-ade5-2eac-b3856015afce-9b3d3e65, #w-node-bd132b01-f588-ade5-2eac-b3856015afd0-9b3d3e65, #w-node-_7d29c141-1bc8-4460-673d-681138b9464e-9b3d3e65, #w-node-_7d29c141-1bc8-4460-673d-681138b94653-9b3d3e65, #w-node-_99dd6d62-2d0b-4556-c778-329d67b9d08d-9b3d3e65, #w-node-_99dd6d62-2d0b-4556-c778-329d67b9d092-9b3d3e65, #w-node-a78d2340-99c1-5c56-c7dc-ac56ba49313d-9b3d3e65, #w-node-a78d2340-99c1-5c56-c7dc-ac56ba493142-9b3d3e65, #w-node-a1e424fe-4a91-90fd-c816-8cb514a60d4a-9b3d3e65, #w-node-a1e424fe-4a91-90fd-c816-8cb514a60d4f-9b3d3e65, #w-node-b7731333-8f40-5fbe-5745-c9d79cb85620-9b3d3e65, #w-node-b7731333-8f40-5fbe-5745-c9d79cb8564f-9b3d3e65, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f415-9b3d3e65, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f3e0-9b3d3e65, #w-node-_1fa1529d-099c-29fc-ec78-1e369a812f23-9b3d3e65 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1fa1529d-099c-29fc-ec78-1e369a812f5a-9b3d3e65, #w-node-_0a517a56-4ccb-f1e4-07d4-e1d95ac16552-9b3d3e65 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_0a517a56-4ccb-f1e4-07d4-e1d95ac16557-9b3d3e65, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c991-bfef720b, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c992-bfef720b, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c993-bfef720b, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c998-bfef720b, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c999-bfef720b, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c99a-bfef720b, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c99f-bfef720b, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c9a0-bfef720b, #w-node-_1eb0cb5f-c19e-7c02-3b33-9f11be69c9a1-bfef720b, #w-node-_7d29c141-1bc8-4460-673d-681138b9464e-bfef720b, #w-node-_7d29c141-1bc8-4460-673d-681138b94653-bfef720b, #w-node-_99dd6d62-2d0b-4556-c778-329d67b9d08d-bfef720b, #w-node-_99dd6d62-2d0b-4556-c778-329d67b9d092-bfef720b, #w-node-_7d29c141-1bc8-4460-673d-681138b94656-bfef720b, #w-node-_7d29c141-1bc8-4460-673d-681138b9465a-bfef720b, #w-node-b6b708da-d949-5c1f-04d5-711325298caa-bfef720b, #w-node-b6b708da-d949-5c1f-04d5-711325298caf-bfef720b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bee5879a-b818-7c1c-22df-9f567ecd05ad-bfef720b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

#w-node-_4f062cb3-2f21-b40f-0db4-df415d2cc163-bfef720b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_1fa1529d-099c-29fc-ec78-1e369a812f23-bfef720b, #w-node-_1fa1529d-099c-29fc-ec78-1e369a812f5a-bfef720b, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f415-bfef720b, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f3e0-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4e9-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4ea-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4eb-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4f4-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4f5-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b4f6-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b500-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b501-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b502-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b50c-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b50d-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b50e-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b518-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b519-bfef720b, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b51a-bfef720b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_34986906-eecc-a7e7-38f5-3582c84daf18-36bffff2, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b518-0305c0fe, #w-node-_4d80f84f-8286-8ac2-b363-20a82458b518-9b3d3e65 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-bee5879a-b818-7c1c-22df-9f567ecd05ad-bfef720b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: end;
  }

  #w-node-_4f062cb3-2f21-b40f-0db4-df415d2cc163-bfef720b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_4d80f84f-8286-8ac2-b363-20a82458b518-bfef720b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_762f9760-71de-9ab5-abee-3eacaeff0504-2c393cae, #w-node-_762f9760-71de-9ab5-abee-3eacaeff0504-7c7d2a2c, #w-node-_762f9760-71de-9ab5-abee-3eacaeff0504-9b7f7f88, #w-node-_1fa1529d-099c-29fc-ec78-1e369a812f5a-0305c0fe, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f415-0305c0fe, #w-node-_17df82fc-da19-5e75-728c-99c9c8210e9d-0305c0fe, #w-node-b7731333-8f40-5fbe-5745-c9d79cb8564f-9b3d3e65, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f415-9b3d3e65, #w-node-_1fa1529d-099c-29fc-ec78-1e369a812f5a-9b3d3e65, #w-node-_0a517a56-4ccb-f1e4-07d4-e1d95ac16552-9b3d3e65, #w-node-_1fa1529d-099c-29fc-ec78-1e369a812f5a-bfef720b, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f415-bfef720b {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2378aa99-afe4-4332-2ee0-bc4f4fdded2b-9ea44fa2, #w-node-_7d29c141-1bc8-4460-673d-681138b9464e-0305c0fe {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1fa1529d-099c-29fc-ec78-1e369a812f5a-0305c0fe, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f415-0305c0fe, #w-node-_17df82fc-da19-5e75-728c-99c9c8210e9d-0305c0fe {
    justify-self: center;
  }

  #w-node-_7d29c141-1bc8-4460-673d-681138b9464e-9b3d3e65, #w-node-_99dd6d62-2d0b-4556-c778-329d67b9d08d-9b3d3e65, #w-node-a78d2340-99c1-5c56-c7dc-ac56ba49313d-9b3d3e65, #w-node-a1e424fe-4a91-90fd-c816-8cb514a60d4a-9b3d3e65 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b7731333-8f40-5fbe-5745-c9d79cb8564f-9b3d3e65, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f415-9b3d3e65, #w-node-_1fa1529d-099c-29fc-ec78-1e369a812f5a-9b3d3e65, #w-node-_0a517a56-4ccb-f1e4-07d4-e1d95ac16552-9b3d3e65 {
    justify-self: center;
  }

  #w-node-_7d29c141-1bc8-4460-673d-681138b9464e-bfef720b, #w-node-_99dd6d62-2d0b-4556-c778-329d67b9d08d-bfef720b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1fa1529d-099c-29fc-ec78-1e369a812f5a-bfef720b, #w-node-_4ef52c5d-80c1-5749-563b-00e18ec1f415-bfef720b {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Otf';
  src: url('../fonts/OTF.zip') format('undefined');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas';
  src: url('../fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas';
  src: url('../fonts/NeueHaasDisplayLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('../fonts/CanelaDeck-Regular-Trial.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('../fonts/CanelaDeck-Thin-Trial.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('../fonts/CanelaDeck-Light-Trial.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Domaine Sans Display';
  src: url('../fonts/Domaine-Sans-Display-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Domaine Sans Display';
  src: url('../fonts/Domaine-Sans-Display-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Domaine Sans Display';
  src: url('../fonts/Domaine-Sans-Display-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Domainesanstext';
  src: url('../fonts/DomaineSansText-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Domainesanstext';
  src: url('../fonts/DomaineSansText-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Domainesanstext';
  src: url('../fonts/DomaineSansText-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Domainesanstext';
  src: url('../fonts/DomaineSansText-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: block;
}