:root {
  --darker-grey: #333;
  --blue: #2196f3;
  --dark-blue: #1565c0;
  --grey-mid: #a8a8a8;
  --cyan: #00bcd4;
  --dark-grey: #5d5d5d;
  --grey: #dbdbdb;
  --light-grey: #f1f1f1;
  --green: #4caf50;
  --crimson: #d32f2f;
  --gold: #ffc107;
  --pink: #d81b60;
  --midnight-blue: #212145;
  --gold-2: #fed700;
  --white: white;
  --black: black;
  --slate-grey: #607d8b;
  --purple: #673ab7;
  --indigo: #3f51b5;
  --teal: #00bfa5;
  --lime: #cddc39;
  --orange: #f45a1e;
  --brown: #795548;
  --deep-ocean: #181832;
}

.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(--darker-grey);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 40px;
}

h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 33px;
}

h4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
}

h5, h6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 22px;
}

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

ul, ol {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 16px;
}

figure {
  margin-bottom: 20px;
}

figcaption {
  color: #3333338f;
  text-align: center;
  margin-top: 7px;
  font-size: 14px;
  line-height: 20px;
}

.button {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 11px 20px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: background-color .15s;
  display: inline-block;
}

.button:hover {
  background-color: var(--dark-blue);
}

.button.w--current {
  background-color: #2e80b6;
}

.button.white {
  color: var(--darker-grey);
  background-color: #fff;
}

.button.white:hover {
  background-color: #ffffffc4;
}

.button.black {
  background-color: var(--darker-grey);
}

.button.black:hover {
  background-color: #000;
}

.button.black.with-field {
  float: left;
  width: 22%;
  margin-left: 2%;
}

.button.full-width {
  width: 100%;
  display: block;
}

.button.small {
  background-color: var(--blue);
  text-transform: uppercase;
  padding: 7px 12px;
  font-size: 11px;
  line-height: 14px;
}

.button.small:hover {
  background-color: var(--dark-blue);
}

.button.tab {
  background-color: var(--grey-mid);
  margin-left: 8px;
  margin-right: 8px;
}

.button.tab:hover {
  background-color: #7e7e7e;
}

.button.tab.w--current {
  background-color: var(--blue);
}

.button.tab.w--current:hover {
  background-color: var(--dark-blue);
}

.button.with-field {
  float: left;
  width: 22%;
  margin-left: 2%;
}

.navigation-link {
  height: 60px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.navigation-link:hover {
  color: var(--blue);
}

.navigation-link.white {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: brother-1816, sans-serif;
  font-size: 12px;
  font-weight: 300;
}

.navigation-link.white:hover {
  color: #fed700;
}

.navigation-link.white.w--current {
  color: #fff;
}

.navigation-link.white.w--current:focus {
  color: var(--cyan);
}

.navigation-bar {
  background-color: #fff;
}

.navigation-bar.dark {
  background-color: #202244;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navigation-bar.top {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 58px;
  margin-bottom: 124px;
}

.navigation-menu.left {
  float: left;
}

.navigation-menu.on-bottom {
  float: none;
  text-align: center;
}

.brand-text {
  color: #fff;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.brand-link {
  height: 60px;
  transition: opacity .2s;
}

.brand-link:hover {
  opacity: .66;
}

.brand-link.right {
  float: right;
}

.brand-link.on-top {
  float: none;
  text-align: center;
  display: block;
}

.brand-link.white {
  color: #fff;
}

.brand-link.left-spacing {
  color: #fff;
  margin-left: 15px;
}

.brand-link.left-spacing.w--current {
  width: 200px;
}

.brand-link.left {
  margin-left: 16px;
}

.latest-products {
  background-color: #fff;
  height: 1040px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.latest-products.centered {
  text-align: center;
}

.latest-products.accent {
  background-color: #f3f3f3;
}

.latest-products.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.hero-slider {
  background-color: #0000;
  height: 705px;
}

.slide {
  background-color: var(--grey);
  padding-top: 82px;
  padding-left: 85px;
  padding-right: 85px;
}

.slide.two {
  background-color: var(--grey);
}

.header-section {
  background-color: var(--dark-grey);
  color: #fff;
  text-align: center;
  padding-top: 104px;
  padding-bottom: 104px;
}

.page-heading {
  margin-top: 0;
  margin-bottom: 11px;
}

.cta-section {
  background-color: var(--grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.cta-section.centered {
  text-align: center;
}

.cta-section.centered-accented {
  color: #fff;
  text-align: center;
  background-color: #202244;
  padding-top: 58px;
  padding-bottom: 0;
}

.cta-heading {
  margin-top: 3px;
  margin-bottom: 0;
  font-weight: 400;
}

.cta-heading.inline-block {
  margin-top: 0;
  margin-right: 13px;
  padding-bottom: 30px;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
  font-weight: 300;
  display: inline-block;
}

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

.white-box {
  background-color: #fff;
  border-radius: 5px;
  padding: 15px;
}

.why-lena-maye {
  color: #fff;
  text-align: center;
  background-image: url('../images/BG_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 650px;
  padding: 56px 20px 113px;
}

.hero-section {
  height: 100vh;
  padding-top: 250px;
}

.hero-section.centered {
  text-align: center;
}

.slider-navigation {
  font-size: 11px;
}

.slider-icon-circle {
  color: #202244;
  width: 50px;
  height: 50px;
  padding: 6px;
  font-size: 33px;
}

.slider-icon-circle.left {
  color: #202244;
}

.hero-subheading {
  margin-bottom: 18px;
}

.hollow-button {
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button:hover {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}

.hollow-button.white {
  color: #fff;
  border-color: #fff;
}

.hollow-button.white:hover {
  color: #ffffffb8;
  border-color: #ffffffa3;
}

.section-heading-dark {
  margin-bottom: 20px;
}

.section-heading-dark.centered {
  color: #181832;
  text-align: center;
  margin-bottom: 28px;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
  font-weight: 300;
}

.main-container {
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

.form-label {
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 13px;
}

.section-subheading.center {
  color: #202244;
  text-align: center;
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.section-title-group {
  margin-bottom: 58px;
}

.section-title-group.centered {
  text-align: center;
}

.form-field {
  border-style: none;
  border-radius: 3px;
  min-height: 41px;
  margin-bottom: 17px;
  margin-right: 1px;
  transition: box-shadow .15s;
  box-shadow: 0 0 0 1px #00000017;
}

.form-field:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

.form-field.text-area {
  min-height: 110px;
}

.form-field.with-button {
  float: left;
  width: 75%;
  margin-bottom: 0;
}

.form-wrapper.squeezed {
  padding-left: 19%;
  padding-right: 19%;
}

.picture-border {
  border: 5px solid #fff;
  box-shadow: 0 0 0 1px #0000001f;
}

.round-image {
  border-radius: 100px;
  margin-bottom: 13px;
}

.social-button {
  background-color: var(--blue);
  border-radius: 100px;
  margin-bottom: 8px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 8px;
  transition: background-color .15s;
}

.social-button:hover {
  background-color: var(--dark-blue);
  opacity: 1;
}

.social-button.border {
  background-color: #0000;
  border: 1px solid #0000005c;
  padding: 6px;
}

.social-button.facebook {
  background-color: #3c5791;
}

.social-button.twitter {
  background-color: #29a9e8;
}

.social-button.red {
  background-color: #d11529;
}

.social-button.pink {
  background-color: #fc488f;
}

.social-button.pink2 {
  background-color: #ed1081;
}

.social-button.orange {
  background-color: #db4e34;
}

.social-button.vimeo {
  background-color: #1ebae7;
}

.social-button.linkdin {
  background-color: #1485c3;
}

.social-button.instagram {
  background-color: #4b769b;
}

.social-button.tumblr {
  background-color: #2e5270;
}

.social-button.webflow {
  background-color: #3278bd;
}

.social-button.medium {
  background-color: #549f63;
}

.social-icon-link {
  opacity: 1;
  padding: 3px;
  transition: opacity .15s;
}

.social-icon-link:hover {
  opacity: .5;
}

.profile-image {
  border-radius: 100px;
  margin-bottom: 15px;
}

.hero-with-nav {
  background-color: var(--grey);
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}

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

.footer.centered-smaller {
  padding-top: 33px;
  padding-bottom: 33px;
}

.footer.accent {
  background-color: #202244;
  background-image: url('../images/WEB-TEXTURE-DEEP-OCEAN-DIVIDE.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 430px;
  padding-top: 62px;
}

.footer.centered-accented {
  background-color: var(--light-grey);
  text-align: center;
}

.float-right {
  float: right;
}

.footer-text {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

.link {
  color: var(--blue);
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.link:hover {
  color: var(--dark-blue);
}

.footer-brand-text {
  font-size: 26px;
  line-height: 33px;
}

.sidemenu-wrapper {
  margin-left: 10px;
  padding-left: 20px;
}

.sidemenu-title {
  margin-bottom: 10px;
}

.sidemenu-link {
  color: #8f8f8f;
  padding-top: 6px;
  padding-bottom: 6px;
  text-decoration: none;
  display: block;
}

.sidemenu-link:hover {
  color: var(--darker-grey);
}

.grid-image {
  margin-bottom: 20px;
}

.info-wrapper {
  margin-bottom: 14px;
}

.info-icon {
  float: left;
}

.info-text {
  margin-left: 34px;
}

.footer-link {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: brother-1816, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 18px;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #fed700;
}

.footer-link.with-icon {
  margin-left: 30px;
}

.hero-title-wrapper {
  margin-bottom: 155px;
}

.icon-left {
  float: left;
  color: #919191;
  padding: 6px;
}

.text-right {
  margin-left: 49px;
}

.left-navigation {
  float: left;
  background-color: var(--grey);
  width: 20%;
  height: 100vh;
}

.nav-link {
  text-align: center;
  padding: 7px 0;
  display: block;
}

.nav-menu {
  float: none;
}

.logo-link {
  float: none;
  text-align: center;
  margin-top: 216px;
  margin-bottom: 50px;
  display: block;
}

.content {
  float: left;
  width: 80%;
  overflow: hidden;
}

.social-footer {
  text-align: center;
  margin-top: 56px;
}

.grid-fours {
  float: left;
  width: 25%;
  padding: 10px;
}

.tab-menu {
  text-align: center;
  margin-bottom: 40px;
}

.flushed-grid {
  float: left;
  width: 25%;
}

.flushed-grid.thirds {
  width: 33.33%;
}

.flushed-grid.sixths {
  width: 16.66%;
}

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

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

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

.success-wrapper {
  background-color: var(--green);
  color: #fff;
  border-radius: 5px;
  padding: 31px;
}

.success-message {
  margin-bottom: 0;
}

.error-wrapper {
  background-color: var(--crimson);
  color: #fff;
  border-radius: 5px;
}

.error-message {
  margin-bottom: 0;
}

.social-link-wrapper {
  text-align: center;
}

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

.custom-container {
  background-color: #fff;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.rich-text h1, .rich-text h3, .rich-text h5, .rich-text h4, .rich-text h6 {
  margin-top: 30px;
}

.image-column {
  text-align: center;
}

.content-column {
  padding-top: 42px;
}

.feature-column, .waterfall-image-column {
  text-align: center;
}

.hero-header-block {
  background-color: #0c0033;
  background-image: url('../images/SUB-HERO_1.jpg'), url('../images/SUB-HERO.jpg');
  background-position: 50%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  height: 260px;
}

.hero-header {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 90px;
  padding-top: 0;
  font-family: brother-1816, sans-serif;
  font-size: 45px;
  font-weight: 400;
}

.hero-sub-header {
  color: #fff;
  text-align: center;
  margin-top: 41px;
  font-family: brother-1816, sans-serif;
  font-size: 25px;
  font-weight: 100;
  line-height: 26px;
}

.yellow-strip {
  background-color: var(--gold);
  padding-bottom: 4px;
  line-height: 10px;
}

.div-block-2, .section-3 {
  width: 100%;
  height: 100%;
}

.article-1-img-1 {
  background-image: url('../images/HAIR_ARTICLE_1_IMG_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.article-1-img-2 {
  background-image: url('../images/HAIR_ARTICLE_1_IMG_2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-4 {
  background-color: var(--crimson);
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.container-2 {
  background-image: url('../images/lm_logo.svg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 70% 70px;
  height: 40px;
  margin-top: 12px;
}

.article-1-img-3 {
  background-image: url('../images/HAIR_ARTICLE_1_IMG_3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-3 {
  width: 100%;
}

.product-title {
  color: #202244;
  text-align: center;
  text-transform: uppercase;
  margin-top: 8px;
  font-family: brother-1816, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.product-copy {
  color: #202244;
  text-align: center;
  text-transform: none;
  margin-top: 10px;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
}

.product-container {
  z-index: 2;
  text-align: center;
  background-image: url('../images/shampoo.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 238px;
  height: 400px;
  position: relative;
}

.title-break {
  text-align: center;
  background-image: url('../images/header_break_white.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 42px;
  height: 20px;
  margin-bottom: 28px;
}

.product-container-2 {
  text-align: center;
  background-image: url('../images/m_c.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 238px;
  height: 400px;
}

.product-divider {
  background-image: url('../images/header_break_dark.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 42px;
  height: 50px;
  margin-top: 8px;
}

.section-heading-light {
  margin-bottom: 20px;
}

.section-heading-light.centered {
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
  font-family: brother-1816, sans-serif;
  font-weight: 300;
}

.container-3 {
  margin-top: 0;
}

.column-v1, .column-2-v1, .column-3-v1 {
  background-image: url('../images/c_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 200px;
  height: 300px;
}

.column-4, .column-5, .column-6 {
  background-image: url('../images/c_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 250px;
  height: 300px;
}

.row {
  margin-top: 0;
}

.fixed-image-section-v1 {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#00000040, #00000040), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-size: auto, 125px;
  background-attachment: scroll, fixed;
  height: 900px;
  padding: 56px 20px 113px;
}

.column-v2, .column-2-v2 {
  background-image: url('../images/circle.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 150px;
  height: 200px;
}

.column-3-v2 {
  background-image: url('../images/circle.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 150px;
  height: 200px;
  padding-top: 7px;
}

.column-7 {
  background-image: url('../images/circle.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 150px;
  height: 200px;
  padding-top: 5px;
}

.column-8 {
  background-image: url('../images/circle.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 150px;
  height: 200px;
}

.column-9 {
  background-image: url('../images/circle.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 150px;
  height: 200px;
  padding-top: 10px;
}

.title-break-white {
  text-align: center;
  background-image: url('../images/header_break_white.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 42px;
  height: 20px;
  margin-bottom: 28px;
}

.title-break-dark {
  z-index: 1;
  text-align: center;
  background-image: url('../images/header_break_dark.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 42px;
  height: 20px;
  margin-bottom: 28px;
  position: relative;
}

.our-story {
  background-color: #fff;
  height: 900px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.our-story.centered {
  text-align: center;
}

.our-story.accent {
  background-color: #f3f3f3;
  background-image: url('../images/BACKGROUND-IMAGE-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 860px;
  padding-top: 176px;
}

.our-story.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.div-block-4 {
  background-color: #0000;
  height: 500px;
  padding-top: 40px;
}

.our-story-p.center {
  color: #0c0033;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 20px;
  font-weight: 100;
}

.testomonials {
  background-color: #202244;
  height: 350px;
}

.testimonial-type {
  color: #fff;
  text-align: center;
  margin-top: 34px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: brother-1816, sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 34px;
}

.icon, .icon-2 {
  margin-top: 90px;
}

.newsletter {
  background-color: var(--grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.newsletter.centered {
  text-align: center;
}

.newsletter.centered-accented {
  color: #fff;
  text-align: center;
  background-color: #fed700;
  background-image: url('../images/NEWSLETTER.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 430px;
  padding-top: 146px;
  padding-bottom: 0;
}

.newsletter-p {
  margin-top: 3px;
  margin-bottom: 0;
  font-weight: 400;
}

.newsletter-p.inline-block {
  color: #202244;
  text-align: center;
  margin-top: 0;
  margin-right: 13px;
  padding-bottom: 0;
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  font-weight: 300;
  display: inline-block;
}

.div-block-5 {
  text-align: center;
  margin-top: 30px;
  padding-top: 0;
}

.link-2 {
  color: #181832;
  background-color: #fff;
  width: 150px;
  font-family: brother-1816, sans-serif;
  font-weight: 400;
}

.link-2:hover {
  color: #202244;
  background-color: #fed700;
}

.instagram-desktop {
  background-color: #202244;
  background-image: url('../images/WEB-TEXTURE-DEEP-OCEAN-DIVIDE.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 550px;
  margin-top: 0;
  padding-top: 41px;
}

.insta-title {
  color: #fff;
  text-align: center;
  padding-top: 42px;
  padding-bottom: 34px;
  font-family: brother-1816, sans-serif;
  font-size: 22px;
}

.heading, .heading-2, .heading-3 {
  color: #fff;
}

.our-story-btn {
  text-align: center;
  margin-top: 55px;
  padding-top: 0;
}

.usp-p {
  margin-top: 70px;
  padding-top: 0;
  font-family: brother-1816, sans-serif;
  font-weight: 100;
}

.container-4 {
  padding-top: 40px;
}

.div-block-6 {
  width: 90%;
}

.div-block-8 {
  text-align: right;
  padding-top: 0;
}

.footer-twit {
  text-align: right;
  margin-top: 21px;
  padding-top: 0;
}

.text-block-4 {
  color: #fff;
  text-align: right;
  margin-top: 63px;
  font-family: brother-1816, sans-serif;
  font-size: 12px;
  font-weight: 100;
}

.row-2 {
  height: 40px;
}

.link-3 {
  color: #202244;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  font-family: brother-1816, sans-serif;
}

.link-3:hover {
  color: var(--gold);
}

.product-btn {
  text-align: center;
  margin-top: -3px;
}

.div-block-9 {
  text-align: center;
  margin-top: 69px;
}

.link-4 {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #202244;
  padding-left: 20px;
  padding-right: 20px;
  font-family: brother-1816, sans-serif;
}

.link-4:hover {
  background-color: var(--gold);
  color: #fff;
}

.text-block-5 {
  color: #fff;
  margin-top: -6px;
  margin-left: 25px;
  font-family: brother-1816, sans-serif;
  font-size: 14px;
  font-weight: 100;
}

.column-10, .column-11, .column-12 {
  text-align: left;
}

.column-13 {
  text-align: left;
  padding-top: 4px;
}

.image {
  opacity: .35;
  text-align: left;
}

.column-14 {
  margin-top: 25px;
  padding-left: 0;
}

.image-2 {
  opacity: .35;
  text-align: center;
}

.image-3, .image-4 {
  opacity: .35;
}

.hairspiration {
  height: 900px;
  padding-top: 41px;
}

.row-3 {
  margin-top: 35px;
}

.container-5 {
  text-align: center;
}

.hair-2 {
  color: #fff;
  text-align: center;
  height: 950px;
  padding: 56px 20px 113px;
}

.hair_tab {
  background-color: #fed700;
  padding: 0;
}

.hair-gap {
  height: 15px;
}

.hair-header {
  color: #202244;
  text-align: left;
  font-family: brother-1816, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.hair-btn {
  color: #202244;
  text-align: left;
  text-transform: uppercase;
  padding-top: 7px;
  font-family: brother-1816, sans-serif;
  font-size: 14px;
}

.hair-btn:hover {
  color: #fff;
}

.blog {
  background-color: var(--grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.blog.centered {
  text-align: center;
}

.blog.centered-accented {
  color: #fff;
  text-align: center;
  background-color: #202244;
  height: 730px;
  padding-top: 64px;
  padding-bottom: 0;
}

.blog-btn {
  color: #181832;
  background-color: #fff;
  width: 150px;
  font-family: brother-1816, sans-serif;
  font-weight: 500;
}

.blog-btn:hover {
  color: #fff;
  background-color: #fed700;
}

.hero-header-mob {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 90px;
  padding-top: 0;
  font-family: brother-1816, sans-serif;
  font-size: 45px;
  font-weight: 400;
}

.hero-sub-header-mob {
  color: #fff;
  text-align: center;
  margin-top: 41px;
  font-family: brother-1816, sans-serif;
  font-size: 25px;
  font-weight: 100;
  line-height: 30px;
}

.hero-header-block-mob {
  background-color: #0c0033;
  background-image: url('../images/SUB-HERO_1.jpg'), url('../images/SUB-HERO.jpg');
  background-position: 50%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  height: 260px;
}

.latest-products-mob {
  background-color: #fff;
  height: 1040px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.latest-products-mob.centered {
  text-align: center;
}

.latest-products-mob.accent {
  background-color: #f3f3f3;
}

.latest-products-mob.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.why-lena-maye-mob {
  color: #fff;
  text-align: center;
  background-image: url('../images/BG_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: auto;
  padding: 56px 20px 50px;
}

.article-1-img-4 {
  background-image: url('../images/HAIR_ARTICLE_1_IMG_4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hp-slider-img-5 {
  background-image: url('../images/HERO-IMAGE-C_4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.column-v2-mob, .column-2-v2-mob {
  background-image: url('../images/circle.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 150px;
  height: 200px;
}

.container-4-mob {
  padding-top: 40px;
}

.hero-slider-tab {
  background-color: #0000;
  height: 705px;
  margin-top: 57px;
}

.latest-products-tab {
  background-color: #fff;
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.latest-products-tab.centered {
  text-align: center;
}

.latest-products-tab.accent {
  background-color: #f3f3f3;
}

.latest-products-tab.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.slide-6 {
  background-image: url('../images/HERO-IMAGE-6.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.usp-p-tab {
  margin-top: 70px;
  padding-top: 0;
  font-family: brother-1816, sans-serif;
  font-weight: 100;
}

.shampoo-products {
  background-color: #fff;
  height: 950px;
  margin-top: 158px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: static;
}

.shampoo-products.centered {
  text-align: center;
}

.shampoo-products.accent {
  background-color: #f3f3f3;
}

.shampoo-products.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.conditioners-products {
  z-index: 1;
  background-color: #202244;
  background-image: url('../images/WEB-TEXTURE-DEEP-OCEAN-DIVIDE.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 960px;
  margin-top: -10px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.conditioners-products.centered {
  text-align: center;
}

.conditioners-products.accent {
  background-color: #f3f3f3;
}

.conditioners-products.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.heading-light {
  margin-bottom: 20px;
}

.heading-light.centered {
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
  font-weight: 300;
}

.product-copy-light {
  color: #fff;
  text-align: center;
  text-transform: none;
  margin-top: 10px;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
}

.product-title-light {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-top: 8px;
  font-family: brother-1816, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.section-subheading-light.center {
  color: #fff;
  text-align: center;
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.leave-in-conditioner-products {
  background-color: #fff;
  height: 960px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.leave-in-conditioner-products.centered {
  text-align: center;
}

.leave-in-conditioner-products.accent {
  background-color: #f3f3f3;
}

.leave-in-conditioner-products.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.hair-butters-products {
  background-color: #0000;
  background-image: url('../images/WEB-TEXTURE-DEEP-OCEAN-DIVIDE.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 960px;
  margin-top: -10px;
  margin-bottom: -5px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.hair-butters-products.centered {
  text-align: center;
}

.hair-butters-products.accent {
  background-color: #f3f3f3;
}

.hair-butters-products.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.treatments-products {
  background-color: #fff;
  height: 960px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.treatments-products.centered {
  text-align: center;
}

.treatments-products.accent {
  background-color: #f3f3f3;
}

.treatments-products.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.styling-products {
  background-color: #202244;
  height: 960px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.styling-products.centered {
  text-align: center;
}

.styling-products.accent {
  background-color: #f3f3f3;
}

.styling-products.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.title-break-light {
  text-align: center;
  background-image: url('../images/header_break_white.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 42px;
  height: 20px;
  margin-bottom: 28px;
}

.hero-haircare {
  background-color: #0c0033;
  background-image: url('../images/SUB-HERO_1.jpg'), url('../images/SUB-HERO.jpg');
  background-position: 50%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  height: 260px;
  margin-top: 0;
}

.product-container-on-dark {
  text-align: center;
  background-image: url('../images/BOTTLE_ON_DARK.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 238px;
  height: 400px;
}

.product-divider-on-dark {
  background-image: url('../images/header_break_white.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 42px;
  height: 50px;
  margin-top: 8px;
}

.div-block-11 {
  height: 60px;
}

.navbar {
  z-index: 3;
  background-color: #202244;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.image-13 {
  margin-top: 13px;
  margin-left: 15px;
}

.link-on-dark {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  font-family: brother-1816, sans-serif;
}

.link-on-dark:hover {
  color: var(--gold);
}

.yellow-strip-menu {
  background-color: var(--gold);
  margin-top: 60px;
  padding-bottom: 4px;
  line-height: 10px;
}

.section-5 {
  background-color: #fed700;
  height: 150px;
  margin-top: 59px;
  padding-top: 59px;
  position: static;
}

.div-block-12 {
  text-align: center;
}

.text-block-7 {
  color: #202244;
  text-transform: uppercase;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.hero-product-desktop {
  background-color: #fff;
  height: 720px;
  margin-top: 59px;
  padding-top: 15px;
}

.hero-product {
  color: #202244;
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 91px;
  padding-top: 0;
  font-family: brother-1816, sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.hero-sub-header-product {
  color: #202244;
  text-align: left;
  margin-top: 15px;
  font-family: brother-1816, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 26px;
}

.producxt-description-1 {
  color: #202244;
  text-align: left;
  margin-top: 29px;
  font-family: brother-1816, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 26px;
}

.producxt-description-2 {
  color: #202244;
  text-align: left;
  margin-top: 0;
  font-family: brother-1816, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
}

.producxt-description {
  color: #202244;
  text-align: left;
  margin-top: 0;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
}

.description-divider {
  color: #374420;
  text-align: left;
  background-image: url('../images/header_break_dark.png');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: 42px;
  width: 30px;
  height: 65px;
  margin-top: 0;
  font-family: brother-1816, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

.product-price {
  color: #202244;
  text-align: left;
  margin-top: 14px;
  font-family: brother-1816, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 26px;
}

.product-image {
  text-align: center;
  margin-top: 51px;
}

.product-instructions-desktop {
  background-color: #fed700;
  background-image: url('../images/NEWSLETTER.jpg');
  background-position: 50%;
  background-size: contain;
  height: auto;
  padding-top: 70px;
  padding-bottom: 80px;
}

.instructions-1 {
  color: #202244;
  text-align: left;
  margin-top: 20px;
  font-family: brother-1816, sans-serif;
  font-weight: 300;
  line-height: 34px;
}

.instructions-heading {
  color: #202244;
  text-transform: uppercase;
  font-family: brother-1816, sans-serif;
  font-weight: 500;
  line-height: 25px;
}

.tab-pane-tab-1 {
  background-color: #fff;
  width: 300px;
  height: 500px;
  padding-top: 20px;
  padding-left: 30px;
}

.tab-pane-tab-2 {
  background-color: #fff;
  width: 300px;
  height: auto;
  padding: 15px 15px 38px 20px;
}

.tab-pane-tab-3 {
  background-color: #fff;
  width: 300px;
  height: 450px;
}

.tab-box-type {
  color: #202244;
  width: 250px;
  padding-top: 19px;
  font-family: brother-1816, sans-serif;
  font-weight: 300;
  line-height: 32px;
}

.tab-box-type-2 {
  color: #202244;
  width: 260px;
  padding-top: 16px;
  font-family: brother-1816, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
}

.tab-title {
  color: #202244;
  text-align: center;
  text-transform: uppercase;
  font-family: brother-1816, sans-serif;
  font-size: 14px;
}

.tab-link-tab-1 {
  background-color: var(--gold);
  width: 150px;
}

.tab-link-tab-1.w--current {
  background-color: #fff;
  width: 150px;
}

.tab-link-tab-1.w--current:focus {
  background-color: var(--pink);
}

.tab-link-tab-2 {
  background-color: var(--gold);
  width: 150px;
  padding-left: 15px;
}

.tab-link-tab-2:active, .tab-link-tab-2:focus {
  background-color: #fff;
}

.tab-link-tab-2.w--current {
  background-color: #fff;
  width: 150px;
}

.testomonial-product {
  background-color: #202244;
  background-image: url('../images/WEB-TEXTURE-DEEP-OCEAN-DIVIDE.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 450px;
}

.testimonial-header {
  background-color: #202244;
  background-image: url('../images/WEB-TEXTURE-DEEP-OCEAN-DIVIDE.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 190px;
  padding-top: 60px;
}

.testimonial-rating {
  text-align: center;
  margin-top: 70px;
}

.slide-nav {
  padding-bottom: 46px;
}

.button-2 {
  color: #202244;
  text-align: center;
  letter-spacing: 5px;
  background-color: #fed700;
  width: 150px;
  height: 55px;
  padding-top: 16px;
  font-size: 25px;
}

.bumper {
  height: 350px;
}

.column-23 {
  text-align: center;
  background-color: #fed700;
  height: 350px;
  padding-top: 80px;
}

.column-24 {
  background-color: var(--grey);
  text-align: center;
  height: 350px;
  padding-top: 80px;
}

.columns {
  height: 300px;
}

.image-14 {
  background-image: url('../images/IMAGE_1.png');
  background-position: 0 0;
  background-size: 203px;
}

.column-25 {
  background-image: url('../images/IMAGE_1.png');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: cover;
  height: 350px;
}

.column-26 {
  background-image: url('../images/IMAGE_2.png');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: cover;
  height: 350px;
}

.bumper-type-1 {
  color: #202244;
  text-align: center;
  margin-bottom: 28px;
  padding-top: 25px;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.bumper-type-header-1 {
  color: #202244;
  text-align: center;
  text-transform: uppercase;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.button-3 {
  color: #202244;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  font-family: brother-1816, sans-serif;
  font-size: 14px;
}

.button-3:hover {
  color: #fff;
  background-color: #202244;
}

.bumper-type-header-2 {
  color: #202244;
  text-align: center;
  text-transform: uppercase;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.bumper-type-2 {
  color: #202244;
  text-align: center;
  margin-bottom: 28px;
  padding-top: 25px;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.html-embed {
  text-align: center;
  height: 350px;
}

.div-block-13 {
  margin-top: 19px;
}

.html-embed-2 {
  text-align: center;
  height: 350px;
  margin-top: 45px;
}

.instagram-tablet, .instagram-mobile {
  height: 450px;
  margin-top: 0;
  padding-top: 41px;
}

.sub-categories {
  z-index: 3;
  background-color: #fed700;
  width: 100%;
  height: 100px;
  margin-top: 59px;
  padding-top: 37px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.section-6 {
  text-align: center;
  background-color: #fed700;
}

.link-5 {
  color: #202244;
  font-weight: 400;
}

.link-5:hover, .link-5.w--current:hover {
  font-weight: 500;
}

.link-6 {
  color: #202244;
  font-size: 18px;
  font-weight: 400;
}

.link-6:hover {
  font-size: 18px;
  font-weight: 500;
}

.link-6:focus {
  font-size: 22px;
  font-weight: 500;
}

.link-6.w--current {
  font-size: 18px;
}

.navbar-gallery {
  z-index: 3;
  background-color: #202244;
  height: 158px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.product-more-like-this {
  background-color: #fff;
  height: auto;
  margin-top: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  position: static;
}

.product-more-like-this.centered {
  text-align: center;
}

.product-more-like-this.accent {
  background-color: #f3f3f3;
}

.product-more-like-this.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.link-7 {
  color: #fff;
}

.link-7:hover {
  color: #fed700;
}

.tabs-menu {
  width: 300px;
}

.hero-product-mobile {
  background-color: #fff;
  height: 720px;
  margin-top: 0;
  padding-top: 30px;
}

.product-instructions-tabelt, .product-instructions-mobile {
  background-color: #fed700;
  background-image: url('../images/NEWSLETTER.jpg');
  background-position: 50%;
  background-size: contain;
  height: 680px;
  padding-top: 70px;
}

.hero-product-tablet {
  background-color: #fff;
  height: 720px;
  margin-top: 0;
  padding-top: 30px;
}

.what-people-are-saying {
  color: #202244;
  text-align: left;
  margin-top: 10px;
  font-family: brother-1816, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.link-8 {
  color: #202244;
  font-size: 14px;
  font-weight: 500;
}

.link-8:hover {
  color: #fed700;
}

.section-7 {
  background-color: #0000;
  height: 100%;
}

.body {
  background-color: #0000;
  background-image: url('../images/LM_SPLASH_3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-logo-desktop {
  text-align: center;
  background-color: #0000;
  margin-top: 0;
  padding-top: 150px;
}

.div-block-17 {
  margin-top: 0;
}

.splash-p {
  color: #fff;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 21px;
}

.div-block-18 {
  margin-top: 0;
}

.div-block-19 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-bottom: 0;
}

.div-block-20 {
  background-color: #0000;
  margin-top: 42px;
}

.splash-header {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  font-family: brother-1816, sans-serif;
  font-size: 25px;
  font-weight: 400;
}

.div-block-21 {
  margin-top: 20px;
}

.splash-p2 {
  color: #fff;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 17px;
  font-weight: 200;
}

.header-logo-mobile {
  text-align: center;
  background-color: #0000;
  margin-top: 0;
  padding-top: 120px;
}

.slide-nav-2 {
  padding-bottom: 45px;
}

.div-block-22 {
  background-color: #0000;
  height: 40px;
  margin-top: -3px;
  padding-bottom: 0;
}

.blue-divider-top {
  background-color: #0000;
  background-image: url('../images/divider.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 40px;
  margin-top: 0;
  padding-bottom: 0;
}

.story-hero {
  background-image: url('../images/LM_SPLASH_3.jpg');
  background-position: 50%;
  background-size: cover;
  height: 600px;
  margin-top: 60px;
  padding-top: 180px;
}

.text-block-8 {
  color: #fff;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 35px;
  font-weight: 300;
}

.div-block-23 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.timeline-desktop {
  background-image: url('../images/WEB-TEXTURE-WHITE-v2.jpg');
  background-position: 0 0;
  background-size: 1586px;
  height: 2250px;
  padding-top: 60px;
}

.story-im-right {
  z-index: 2;
  text-align: center;
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 0;
}

.story-p-left {
  color: #202244;
  text-align: center;
  margin-bottom: 16px;
  padding-left: 0;
  padding-right: 60px;
  font-family: brother-1816, sans-serif;
  font-weight: 300;
  line-height: 26px;
}

.stroy-year-left {
  color: #202244;
  text-align: center;
  margin-top: 31px;
  margin-bottom: 19px;
  padding-right: 60px;
  font-family: brother-1816, sans-serif;
  font-size: 30px;
}

.story-name-left {
  color: #202244;
  text-align: center;
  margin-bottom: 20px;
  padding-right: 60px;
  font-family: brother-1816, sans-serif;
  font-size: 20px;
}

.story-type-left {
  z-index: 2;
  padding-top: 30px;
  padding-left: 0;
  padding-right: 10px;
}

.image-16 {
  z-index: 3;
  text-align: center;
  position: relative;
}

.div-block-24 {
  z-index: 3;
  text-align: center;
  margin-top: 0;
  padding-top: 5px;
  position: relative;
}

.columns-3, .container-14, .div-block-25 {
  z-index: 2;
  position: relative;
}

.div-block-26 {
  z-index: 3;
  text-align: left;
  background-color: #0000;
  margin-top: -2133px;
  margin-bottom: -1px;
  position: relative;
}

.image-17 {
  text-align: center;
}

.story-p-right {
  color: #202244;
  text-align: center;
  margin-bottom: 16px;
  padding-left: 60px;
  padding-right: 0;
  font-family: brother-1816, sans-serif;
  font-weight: 300;
  line-height: 26px;
}

.stroy-year-right {
  color: #202244;
  text-align: center;
  margin-top: 31px;
  margin-bottom: 19px;
  padding-left: 60px;
  padding-right: 0;
  font-family: brother-1816, sans-serif;
  font-size: 30px;
}

.story-name-right {
  color: #202244;
  text-align: center;
  margin-bottom: 20px;
  padding-left: 60px;
  padding-right: 0;
  font-family: brother-1816, sans-serif;
  font-size: 20px;
}

.story-type-right {
  z-index: 2;
  text-align: center;
  padding-top: 30px;
  padding-left: 0;
  padding-right: 46px;
}

.story-img-left {
  padding-left: 25px;
  padding-right: 0;
}

.text-block-9 {
  color: #202244;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 40px;
}

.div-block-27 {
  z-index: 2;
  margin-top: 54px;
  margin-bottom: -10px;
  position: relative;
}

.div-block-28 {
  z-index: 2;
  background-color: #fed700;
  background-image: url('../images/NEWSLETTER.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  margin-top: -95px;
  padding-top: 104px;
  position: relative;
}

.div-block-29 {
  z-index: 3;
  text-align: center;
  background-color: #0000;
  margin-top: 69px;
  position: relative;
}

.image-18 {
  text-align: center;
}

.container-15 {
  margin-top: 42px;
}

.text-block-10 {
  color: #202244;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
  font-weight: 300;
}

.text-block-11 {
  color: #202244;
  text-align: center;
  margin-top: 70px;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.why-section-2 {
  background-color: #202244;
  height: auto;
  padding-top: 51px;
}

.container-16 {
  padding-top: 34px;
}

.image-19 {
  text-align: center;
}

.why-divider-blue {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-bottom: 0;
}

.why-p-white {
  color: #fff;
  text-align: center;
  margin-top: 70px;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.why-header-white {
  color: #fff;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
  font-weight: 300;
}

.why-divider-white {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-bottom: 0;
}

.why-section-1 {
  background-color: #fff;
  height: auto;
}

.text-block-12 {
  color: #fff;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
}

.text-block-13 {
  color: #fff;
  padding-right: 25px;
  font-family: brother-1816, sans-serif;
  font-weight: 300;
  line-height: 28px;
}

.why-sub-head {
  color: #fff;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 93px;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
}

.why-two-columb {
  margin-top: 33px;
  margin-bottom: 33px;
  padding-top: 34px;
}

.why-ingredients {
  margin-top: 55px;
  margin-bottom: 68px;
  padding-top: 34px;
}

.why-sub-head-2 {
  padding-top: 60px;
}

.why-sub-head-two, .why-sub-head-two2 {
  color: #fed700;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
  font-size: 28px;
}

.text-block-14 {
  color: #fed700;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
  font-weight: 200;
  line-height: 38px;
}

.why-section-3 {
  background-color: #fed700;
  height: auto;
}

.why-sub-head-blue {
  color: #202244;
  text-align: center;
  margin-top: 50px;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
  line-height: 30px;
}

.why-sub-sub-head {
  color: #202244;
  text-align: center;
  margin-top: 70px;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
  font-weight: 200;
  line-height: 40px;
}

.why-section-4 {
  background-color: #fff;
  height: auto;
}

.text-block-15 {
  color: #202244;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
}

.why-section-5 {
  background-color: #202244;
  height: 700px;
}

.text-block-16 {
  color: #fff;
  font-family: brother-1816, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
}

.why-section-6 {
  background-color: #fed700;
  height: 700px;
}

.text-block-16-blue {
  color: #202244;
  font-family: brother-1816, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
}

.why-section-7 {
  background-color: #fff;
  height: 610px;
}

.text-block-11-large {
  color: #202244;
  text-align: center;
  margin-top: 70px;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 50px;
}

.text-block-17 {
  color: #202244;
  padding-right: 30px;
  font-family: brother-1816, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-12-quote {
  color: #fff;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 28px;
  font-weight: 200;
  line-height: 50px;
}

.whom {
  font-family: brother-1816, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.text-block-18 {
  color: #202244;
  text-align: center;
  margin-top: 22px;
  font-family: brother-1816, sans-serif;
  font-size: 20px;
}

.image-20, .column-30 {
  text-align: center;
}

.button-4 {
  color: #202244;
  text-align: left;
  background-color: #fed700;
  width: 460px;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.button-4:hover {
  color: #fff;
  background-color: #202244;
}

.column-31, .column-32, .column-33, .column-34, .column-35, .column-36 {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.image-21 {
  text-align: center;
}

.hairspiration-row-1 {
  padding-top: 34px;
}

.slider, .slider-2 {
  height: 600px;
  margin-top: 60px;
}

.container-17 {
  margin-top: 263px;
}

.text-block-19 {
  color: #202244;
  padding-bottom: 18px;
  font-family: brother-1816, sans-serif;
  font-size: 25px;
  font-weight: 300;
}

.button-5 {
  color: #202244;
  background-color: #fed700;
  font-family: brother-1816, sans-serif;
}

.button-5:hover {
  color: #fff;
  background-color: #202244;
}

.section-9 {
  background-color: #fed700;
  height: 450px;
  padding-top: 80px;
}

.columns-4 {
  text-align: center;
}

.text-block-20 {
  color: #202244;
  margin-top: 28px;
  font-family: brother-1816, sans-serif;
  font-size: 26px;
}

.text-block-21 {
  color: #202244;
  text-align: center;
  margin-top: 22px;
  padding-left: 40px;
  padding-right: 40px;
  font-family: brother-1816, sans-serif;
  font-weight: 300;
  line-height: 28px;
}

.column-37, .column-38 {
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
}

.image-22 {
  margin-top: 32px;
}

.hero-header-article {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 90px;
  padding-top: 0;
  font-family: brother-1816, sans-serif;
  font-size: 35px;
  font-weight: 400;
}

.hair_desktop {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.hairspiration-thumbs-desktop, .hairspiration-thumbs-tablet {
  background-color: #fff;
  height: 1570px;
}

.hero-header-hairinspiration-article {
  background-color: #0c0033;
  background-image: url('../images/WEB-TEXTURE-DEEP-OCEAN-DIVIDE.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 260px;
}

.hero-hairisnspiration-slider-tab {
  background-color: #0000;
  height: 705px;
  margin-top: 57px;
}

.hp-slider-img-1 {
  background-image: url('../images/HERO-IMAGE-C_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hp-slider-img-2 {
  background-image: url('../images/HERO-IMAGE-C_2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hp-slider-img-3 {
  background-image: url('../images/HERO-IMAGE-C_3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hp-slider-img-4 {
  background-image: url('../images/HERO-IMAGE-C_5.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hp-slider-img-6 {
  background-image: url('../images/HERO-IMAGE-C_7.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-8 {
  background-image: url('../images/HAIRINSPIRATIOPN-HERO-IMAGE_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.icon-5, .icon-6 {
  color: #202244;
}

.slide-9 {
  background-image: url('../images/HAIRINSPIRATIOPN-HERO-IMAGE_2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-10 {
  background-image: url('../images/HAIRINSPIRATIOPN-HERO-IMAGE_5.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-11 {
  background-image: url('../images/HAIRINSPIRATIOPN-HERO-IMAGE_6.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-hero {
  background-image: url('../images/LM-ABOUT_LM-IMAGE_2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  margin-top: 60px;
  padding-top: 180px;
}

.why-lm-hero {
  background-image: url('../images/LM-why_LM-IMAGE_2.jpg');
  background-position: 50%;
  background-size: cover;
  height: 600px;
  margin-top: 60px;
  padding-top: 179px;
}

.timeline-tablet, .timeline-mobile {
  background-image: url('../images/WEB-TEXTURE-WHITE-v2.jpg');
  background-position: 0 0;
  background-size: 1586px;
  height: 2250px;
  padding-top: 60px;
}

.about-section-1 {
  background-color: #fff;
  background-image: url('../images/WEB-TEXTURE-WHITE-v2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 850px;
}

.about-section-2 {
  background-color: #202244;
  height: auto;
  padding-top: 51px;
}

.about-section-3 {
  background-color: #fed700;
  height: auto;
}

.header-why {
  color: #202244;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-size: 35px;
  font-weight: 300;
}

.section-subheading-white.center {
  color: #fff;
  text-align: center;
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.hp-btn-2 {
  color: #181832;
  background-color: #fff;
  width: 150px;
  font-family: brother-1816, sans-serif;
  font-weight: 400;
}

.hp-btn-2:hover {
  color: #fff;
  background-color: #202244;
}

.hero-mission-statement {
  background-color: #0000;
  height: 380px;
}

.mission-statement {
  color: #202244;
  text-align: center;
  margin-top: 54px;
  font-family: brother-1816, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
}

.instructions {
  background-color: #fff;
  height: 850px;
  padding-top: 70px;
}

.instructions-p1 {
  background-color: #f7f7f7;
  height: auto;
  padding-top: 70px;
  padding-bottom: 70px;
}

.instructions-p2 {
  background-color: #f7f7f7;
  height: 1160px;
  padding-top: 70px;
}

.instructions-p3 {
  background-color: #fff;
  height: auto;
  padding-top: 70px;
  padding-bottom: 90px;
}

.instructions-p4 {
  background-color: #f3f3f3;
  height: 1100px;
  padding-top: 70px;
}

.instructions-p5 {
  background-color: #fff;
  height: 1250px;
  padding-top: 70px;
}

.p-type-1 {
  color: #181832;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.p-type-header {
  color: #181832;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: brother-1816, sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 30px;
}

.pn-about-section-1 {
  background-color: #fff;
  background-image: url('../images/WEB-TEXTURE-WHITE-v2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 5500px;
}

.tc-about-section-1 {
  background-color: #fff;
  background-image: url('../images/WEB-TEXTURE-WHITE-v2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.grid {
  grid-template: "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 / 1fr 1.25fr;
}

.faq-section-1 {
  background-color: #fff;
  background-image: url('../images/WEB-TEXTURE-WHITE-v2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 12000px;
}

.shipping-section-1 {
  background-color: #fff;
  background-image: url('../images/WEB-TEXTURE-WHITE-v2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 1500px;
}

.cancel-section-1 {
  background-color: #fff;
  background-image: url('../images/WEB-TEXTURE-WHITE-v2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 2500px;
}

.contact-us-section-1 {
  background-color: #fff;
  background-image: url('../images/WEB-TEXTURE-WHITE-v2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 1500px;
}

.ingredients-about-section {
  background-color: #fff;
  background-image: url('../images/WEB-TEXTURE-WHITE-v2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 13000px;
}

.product-container-3 {
  z-index: 2;
  text-align: center;
  background-image: url('../images/leave_in_m.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 238px;
  height: 400px;
  position: relative;
}

.product-container-4 {
  z-index: 2;
  text-align: center;
  background-image: url('../images/shampoo.jpg');
  background-position: 50%;
  background-repeat: repeat-y;
  background-size: cover;
  height: 400px;
  position: relative;
}

.product-container-4_new {
  z-index: 2;
  text-align: center;
  background-image: url('../images/ch_trio.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 220px;
  height: 400px;
  position: relative;
}

.italic-text {
  font-style: italic;
}

.hero-default {
  background-image: url('../images/LM-why_LM-IMAGE_2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  margin-top: 60px;
  padding-top: 180px;
}

.columns-5 {
  padding-top: 40px;
  display: block;
  overflow: visible;
}

.container-19 {
  margin-bottom: 29px;
}

.columns-6 {
  margin-bottom: 48px;
}

.columns-7 {
  margin-bottom: 44px;
}

.columns-8 {
  margin-bottom: 54px;
}

.link-9 {
  color: var(--midnight-blue);
  font-family: brother-1816, sans-serif;
  font-weight: 700;
}

.top-tab-type, .top-tab-type.w--current {
  margin-top: 20px;
  margin-left: 40px;
}

.text-block-22 {
  color: var(--gold-2);
}

.top-tab-type-2, .top-tab-type-2.w--current {
  margin-top: 20px;
  margin-left: 6px;
}

.text-block-22-2 {
  color: var(--white);
}

.container-m-social {
  display: none;
}

.mb-links {
  color: #fff;
  text-align: right;
  margin-top: 63px;
  font-family: brother-1816, sans-serif;
  font-size: 12px;
  font-weight: 100;
}

.mb-sm-links {
  text-align: right;
  padding-top: 0;
}

.mb-btm-link {
  color: #fff;
  text-align: right;
  margin-top: 63px;
  font-family: brother-1816, sans-serif;
  font-size: 12px;
  font-weight: 100;
}

.mb-address {
  color: #fff;
  margin-top: -6px;
  margin-left: 25px;
  font-family: brother-1816, sans-serif;
  font-size: 14px;
  font-weight: 100;
}

.hero-gift-desktop {
  background-color: #fff;
  height: auto;
  margin-top: 59px;
  padding-top: 15px;
  padding-bottom: 70px;
}

.card-description-2-copy {
  color: #202244;
  text-align: left;
  margin-top: 19px;
  font-family: brother-1816, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.card-sub-header-product {
  color: #202244;
  text-align: left;
  margin-top: 15px;
  font-family: brother-1816, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 26px;
}

.hero-gift-product-tablet-copy, .hero-gift-product-mobile-copy {
  background-color: #fff;
  height: 720px;
  margin-top: 0;
  padding-top: 30px;
}

.trust-pilot {
  background-color: var(--grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.trust-pilot.centered {
  text-align: center;
}

.trust-pilot.centered-accented {
  background-color: var(--midnight-blue);
  color: #1a1a3e;
  text-align: center;
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.our-story-btn-copy, .why-lm-btn {
  text-align: center;
  margin-top: 55px;
  padding-top: 0;
}

.link-10 {
  color: #181832;
  background-color: #fff;
  width: 150px;
  font-family: brother-1816, sans-serif;
  font-weight: 400;
}

.link-10:hover {
  color: #202244;
  background-color: #fed700;
}

.container-20 {
  max-width: 1100px;
}

.navigation-link-blog {
  height: 60px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.navigation-link-blog:hover {
  color: var(--blue);
}

.navigation-link-blog.white {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: brother-1816, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

.navigation-link-blog.white:hover, .navigation-link-blog.white.w--current {
  color: #fed700;
}

.navigation-link-blog.white.w--current:focus {
  color: var(--cyan);
}

.navigation-link-sample {
  height: 60px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.navigation-link-sample:hover {
  color: var(--blue);
}

.navigation-link-sample.white {
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: brother-1816, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.navigation-link-sample.white:hover {
  color: #fed700;
}

.navigation-link-sample.white.w--current {
  color: #fff;
}

.navigation-link-sample.white.w--current:focus {
  color: var(--cyan);
}

.button-blue {
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  background-color: #212145;
  width: auto;
  height: 55px;
  padding-top: 16px;
  font-size: 25px;
}

.product-instructions-scalp {
  background-color: #fed700;
  background-image: url('../images/SCALP.jpg');
  background-position: 50%;
  background-size: cover;
  height: auto;
  padding-top: 70px;
  padding-bottom: 80px;
}

.product-instructions-oil {
  background-color: #fed700;
  background-image: url('../images/OIL.jpg');
  background-position: 50%;
  background-size: cover;
  height: auto;
  padding-top: 70px;
  padding-bottom: 80px;
}

.product-instructions-mist {
  background-color: #fed700;
  background-image: url('../images/MOISTURE-MIST.jpg');
  background-position: 50%;
  background-size: cover;
  height: auto;
  padding-top: 70px;
  padding-bottom: 80px;
}

.instructions-heading-white {
  color: #fff;
  text-transform: uppercase;
  font-family: brother-1816, sans-serif;
  font-weight: 500;
  line-height: 25px;
}

.instructions-1-white {
  color: #fff;
  text-align: left;
  margin-top: 20px;
  font-family: brother-1816, sans-serif;
  font-weight: 300;
  line-height: 34px;
}

.link-9-white {
  color: var(--midnight-blue);
  font-family: brother-1816, sans-serif;
  font-weight: 700;
}

.product-container-5 {
  z-index: 2;
  text-align: center;
  background-image: url('../images/scalp_2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 238px;
  height: 400px;
  position: relative;
}

.product-container-6 {
  text-align: center;
  background-image: url('../images/oil---shadow.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 238px;
  height: 400px;
}

.product-container-7 {
  z-index: 2;
  text-align: center;
  background-image: url('../images/alo---shadow.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 238px;
  height: 400px;
  position: relative;
}

.product-instructions-tabelt---oil, .product-instructions-mobile---oil, .product-instructions-mobile---scalp, .product-instructions-tabelt---scalp, .product-instructions-tabelt---mist, .product-instructions-mobile---mist {
  background-color: #fed700;
  background-image: url('../images/NEWSLETTER.jpg');
  background-position: 50%;
  background-size: contain;
  height: 680px;
  padding-top: 70px;
}

.paragraph {
  margin-top: 60px;
  font-family: brother-1816, sans-serif;
}

.slide-12 {
  background-image: url('../images/HERO-IMAGE-C_9.jpg');
  background-position: 50%;
  background-size: cover;
}

html.w-mod-js [data-ix="fade-in-bottom-page-loads"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="fade-in-left-scroll-in"] {
  opacity: 0;
  transform: translate(-50px);
}

html.w-mod-js [data-ix="fade-in-right-scroll-in"] {
  opacity: 0;
  transform: translate(50px);
}

html.w-mod-js [data-ix="fade-in-top-scroll-in"] {
  opacity: 0;
  transform: translate(0, -50px);
}

html.w-mod-js [data-ix="fade-in-bottom-scroll-in"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="bounce-in-scroll-in"] {
  opacity: 0;
  transform: scale(.6);
}

html.w-mod-js [data-ix="scale-on-scroll"] {
  opacity: 0;
  transform: scale(.01);
}

@media screen and (max-width: 991px) {
  .navigation-link.white {
    color: #202244;
    font-weight: 400;
  }

  .hamburger-button:hover {
    color: var(--blue);
  }

  .hamburger-button.w--open {
    background-color: var(--darker-grey);
  }

  .hamburger-button.left {
    float: left;
  }

  .hamburger-button.white {
    color: #fff;
    background-color: #202244;
  }

  .hamburger-button.white:hover {
    background-color: #fed700;
  }

  .navigation-menu {
    background-color: #fff;
  }

  .hero-slider, .slider-arrow-link.right, .slider-arrow-link.left {
    height: 400px;
  }

  .form-wrapper.squeezed {
    padding-left: 10%;
    padding-right: 10%;
  }

  .footer.accent {
    background-size: cover;
    height: auto;
  }

  .left-navigation {
    float: none;
    width: 100%;
    height: auto;
  }

  .nav-link {
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-menu {
    background-color: var(--darker-grey);
    padding: 17px;
  }

  .logo-link {
    float: left;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 10px;
  }

  .content {
    width: 100%;
    height: auto;
  }

  .social-footer {
    margin-top: 0;
  }

  .content-column {
    padding-top: 0;
  }

  .container-2 {
    margin-top: 10px;
  }

  .column-3-v2 {
    background-size: 200px;
    height: 250px;
  }

  .column-7, .column-8, .column-9 {
    background-size: 200px;
  }

  .our-story.accent {
    height: 700px;
    padding-top: 99px;
  }

  .testomonials {
    padding-left: 78px;
    padding-right: 78px;
  }

  .testimonial-type {
    font-size: 21px;
    line-height: 31px;
  }

  .icon {
    margin-left: 9px;
  }

  .icon-2 {
    margin-right: 10px;
  }

  .newsletter.centered-accented {
    height: 360px;
    padding-top: 124px;
    padding-left: 62px;
    padding-right: 62px;
  }

  .usp-p {
    margin-top: 90px;
    font-size: 20px;
    line-height: 26px;
  }

  .hair-2 {
    height: 850px;
  }

  .hero-header-mob {
    font-size: 40px;
  }

  .hero-sub-header-mob {
    font-size: 25px;
  }

  .why-lena-maye-mob {
    height: 770px;
  }

  .column-v2-mob, .column-2-v2-mob {
    background-size: 200px;
    height: 250px;
  }

  .container-4-mob {
    padding-top: 0;
  }

  .hero-slider-tab {
    z-index: 1;
    height: 600px;
    margin-top: 10px;
  }

  .latest-products-tab {
    height: auto;
  }

  .container-6 {
    height: 38%;
  }

  .column-16, .column-17, .column-18 {
    text-align: center;
  }

  .container-8 {
    text-align: center;
    display: none;
  }

  .logo-footer {
    margin-top: 74px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .column-19, .column-20, .column-21, .column-22 {
    text-align: center;
  }

  .container-9 {
    text-align: center;
    display: none;
  }

  .container-10 {
    margin-top: 66px;
  }

  .text-block-6 {
    color: #fff;
    text-align: center;
    font-family: brother-1816, sans-serif;
    font-size: 13px;
    font-weight: 200;
  }

  .image-9 {
    opacity: .35;
    display: block;
  }

  .image-10, .image-11, .image-12 {
    opacity: .35;
  }

  .usp-p-tab {
    margin-top: 68px;
    font-size: 20px;
    line-height: 26px;
  }

  .shampoo-products {
    height: 1600px;
    margin-top: 60px;
  }

  .conditioners-products, .leave-in-conditioner-products, .hair-butters-products, .treatments-products, .styling-products {
    height: 1600px;
  }

  .navbar {
    height: 60px;
  }

  .text-block-7 {
    line-height: 40px;
  }

  .hero-product {
    text-align: center;
    margin-top: 28px;
    font-size: 40px;
  }

  .hero-sub-header-product {
    text-align: center;
    font-size: 23px;
  }

  .producxt-description-1, .producxt-description-2, .producxt-description, .description-divider {
    text-align: center;
    font-size: 20px;
  }

  .product-price {
    text-align: right;
    padding-right: 10px;
    font-size: 50px;
  }

  .product-instructions-desktop {
    height: 790px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .tab-pane-tab-1 {
    width: 290px;
    height: auto;
  }

  .tab-pane-tab-2 {
    width: 290px;
    height: auto;
    padding-left: 15px;
  }

  .tab-pane-tab-3 {
    height: auto;
  }

  .tab-box-type-2 {
    font-size: 13px;
  }

  .tab-link-tab-1, .tab-link-tab-1.w--current, .tab-link-tab-2, .tab-link-tab-2.w--current {
    width: 142px;
  }

  .testomonial-product {
    background-size: cover;
    padding-left: 78px;
    padding-right: 78px;
  }

  .bumper {
    height: 700px;
  }

  .html-embed-2 {
    text-align: center;
  }

  .instagram-tablet {
    background-color: #202244;
    background-image: url('../images/WEB-TEXTURE-DEEP-OCEAN-DIVIDE.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 850px;
  }

  .sub-categories {
    height: 170px;
  }

  .navbar-gallery {
    height: 60px;
  }

  .product-more-like-this {
    height: auto;
  }

  .nav-menu-2 {
    background-color: #fff;
  }

  .icon-3 {
    color: #fff;
  }

  .nav-menu-3 {
    background-color: #fff;
  }

  .icon-4 {
    color: #fff;
  }

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

  .hero-product-mobile {
    height: 1350px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .image-15, .container-11, .container-12 {
    text-align: center;
  }

  .product-instructions-tabelt {
    height: auto;
    padding-bottom: 70px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .product-instructions-mobile {
    height: 790px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .product-mobile-image, .product-tablet-image {
    text-align: center;
  }

  .hero-product-tablet {
    height: 1260px;
    margin-top: 60px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .menu-button-2:hover, .menu-button-2:active {
    background-color: #fed700;
  }

  .column-28 {
    text-align: center;
    padding-right: 10px;
  }

  .column-29 {
    padding-left: 58px;
  }

  .div-block-14 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .columns-2 {
    margin-top: 40px;
  }

  .what-people-are-saying {
    text-align: center;
    font-size: 20px;
  }

  .div-block-17 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .splash-p {
    font-size: 20px;
    line-height: 29px;
  }

  .html-embed-3 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .splash-p2 {
    font-size: 18px;
    line-height: 29px;
  }

  .story-hero {
    height: 500px;
    padding-top: 133px;
  }

  .text-block-8 {
    font-size: 30px;
  }

  .story-p-left {
    font-size: 15px;
    line-height: 24px;
  }

  .div-block-26 {
    margin-top: -2174px;
  }

  .story-p-right {
    font-size: 15px;
    line-height: 24px;
  }

  .text-block-9 {
    font-size: 23px;
  }

  .text-block-11 {
    font-weight: 300;
  }

  .why-section-2 {
    height: auto;
    padding-top: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-16 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .why-section-1 {
    height: 470px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-block-13 {
    font-weight: 300;
  }

  .why-sub-head {
    font-family: brother-1816, sans-serif;
    font-weight: 200;
  }

  .why-section-3 {
    height: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .why-sub-head-blue {
    font-weight: 300;
    line-height: 35px;
  }

  .why-section-4 {
    height: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .why-section-5 {
    height: 740px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .why-section-6 {
    height: 840px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .why-section-7 {
    height: 670px;
  }

  .text-block-17 {
    font-weight: 300;
  }

  .text-block-12-quote {
    font-size: 25px;
    line-height: 40px;
  }

  .button-4 {
    width: 245px;
    font-size: 14px;
    line-height: 25px;
  }

  .slider-2 {
    margin-top: -6px;
  }

  .text-block-19 {
    font-size: 20px;
  }

  .section-9 {
    padding-top: 63px;
  }

  .hero-header-article {
    font-size: 35px;
  }

  .hairspiration-thumbs-desktop, .hairspiration-thumbs-tablet {
    height: 1300px;
  }

  .hero-header-hairinspiration-article {
    background-image: url('../images/WEB-TEXTURE-DEEP-OCEAN-DIVIDE.jpg');
    background-position: 50%;
    background-size: cover;
  }

  .hero-hairisnspiration-slider-tab {
    z-index: 1;
    height: 500px;
    margin-top: 12px;
  }

  .slide-8 {
    padding-left: 100px;
  }

  .icon-5, .icon-6 {
    color: #202244;
  }

  .slide-9 {
    background-image: url('../images/HAIRINSPIRATIOPN-HERO-IMAGE_4.jpg');
    padding-left: 100px;
  }

  .slide-10 {
    background-image: url('../images/HAIRINSPIRATIOPN-HERO-IMAGE_3.jpg');
    padding-left: 100px;
  }

  .slide-11 {
    padding-left: 100px;
  }

  .about-hero {
    height: 500px;
    padding-top: 130px;
  }

  .why-lm-hero {
    height: 500px;
    padding-top: 124px;
  }

  .timeline-tablet {
    padding-top: 26px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-23 {
    margin-top: 68px;
  }

  .image-24 {
    margin-top: 20px;
  }

  .image-25 {
    margin-top: 78px;
  }

  .image-26 {
    margin-top: 31px;
  }

  .timeline-mobile {
    padding-top: 26px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-section-1 {
    height: 1120px;
    padding-left: 40px;
    padding-right: 38px;
  }

  .about-section-2 {
    height: auto;
    padding-top: 1px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-section-3 {
    height: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .header-why {
    font-size: 30px;
  }

  .mission-statement {
    font-size: 25px;
  }

  .instructions {
    height: 1400px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .instructions-p1 {
    height: auto;
    padding-left: 29px;
    padding-right: 31px;
  }

  .instructions-p2 {
    height: 1400px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .instructions-p3 {
    height: auto;
    padding-left: 29px;
    padding-right: 31px;
  }

  .instructions-p4 {
    height: 1400px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .instructions-p5 {
    height: 1550px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .pn-about-section-1 {
    height: 6520px;
    padding-left: 40px;
    padding-right: 38px;
  }

  .tc-about-section-1 {
    height: auto;
    padding-left: 40px;
    padding-right: 38px;
  }

  .faq-section-1 {
    height: 14020px;
    padding-left: 40px;
    padding-right: 38px;
  }

  .shipping-section-1 {
    height: 1520px;
    padding-left: 40px;
    padding-right: 38px;
  }

  .cancel-section-1 {
    height: 3220px;
    padding-left: 40px;
    padding-right: 38px;
  }

  .contact-us-section-1 {
    height: 1520px;
    padding-left: 40px;
    padding-right: 38px;
  }

  .ingredients-about-section {
    height: 15320px;
    padding-left: 40px;
    padding-right: 38px;
  }

  .hero-default {
    height: 500px;
    padding-top: 130px;
  }

  .container-m-social {
    text-align: center;
    display: block;
  }

  .container-tab {
    text-align: center;
    display: none;
  }

  .columns-9 {
    display: block;
  }

  .tab-links {
    text-align: center;
  }

  .tab-links-section {
    text-align: center;
    margin-top: 70px;
  }

  .tab-links-section-1 {
    text-align: center;
    margin-top: 0;
  }

  .mb-bottom-link {
    color: #fff;
    text-align: center;
    font-family: brother-1816, sans-serif;
    font-size: 13px;
    font-weight: 200;
  }

  .card-description-2-copy {
    text-align: center;
    font-size: 20px;
  }

  .card-sub-header-product {
    text-align: center;
    margin-top: 27px;
    font-size: 23px;
  }

  .hero-gift-product-tablet-copy {
    height: auto;
    margin-top: 60px;
    padding-bottom: 60px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .hero-gift-product-mobile-copy {
    height: 1350px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .trust-pilot.centered-accented {
    height: auto;
    padding: 50px 62px;
  }

  .navigation-link-blog.white, .navigation-link-sample.white {
    color: #202244;
    font-weight: 400;
  }

  .product-instructions-scalp, .product-instructions-oil, .product-instructions-mist {
    height: 790px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .product-instructions-tabelt---oil {
    background-image: url('../images/OIL.jpg');
    background-size: cover;
    height: auto;
    padding-bottom: 70px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .product-instructions-mobile---oil, .product-instructions-mobile---scalp {
    height: 790px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .product-instructions-tabelt---scalp {
    background-image: url('../images/SCALP.jpg');
    background-size: cover;
    height: auto;
    padding-bottom: 70px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .product-instructions-tabelt---mist {
    background-image: url('../images/MOISTURE-MIST.jpg');
    background-size: cover;
    height: auto;
    padding-bottom: 70px;
    padding-left: 29px;
    padding-right: 31px;
  }

  .product-instructions-mobile---mist {
    height: 790px;
    padding-left: 29px;
    padding-right: 31px;
  }
}

@media screen and (max-width: 767px) {
  .brand-link.on-top {
    float: left;
  }

  .brand-link.left-spacing {
    padding-left: 0;
  }

  .latest-products {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-slider {
    height: 528px;
  }

  .slide {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cta-section {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-heading {
    margin-bottom: 10px;
  }

  .form-wrapper.squeezed {
    padding-left: 0;
    padding-right: 9px;
  }

  .picture-border {
    margin-bottom: 13px;
  }

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

  .grid-fours {
    width: 33.33%;
  }

  .image-column {
    margin-bottom: 10px;
  }

  .content-column {
    text-align: center;
    margin-bottom: 13px;
  }

  .container, .our-story {
    padding-left: 20px;
    padding-right: 20px;
  }

  .newsletter {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .newsletter-p {
    margin-bottom: 10px;
  }

  .blog {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .latest-products-mob {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-slider-tab {
    height: 428px;
  }

  .latest-products-tab, .shampoo-products, .conditioners-products, .leave-in-conditioner-products, .hair-butters-products, .treatments-products, .styling-products {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-pane-tab-1 {
    margin-bottom: 30px;
  }

  .instagram-mobile {
    height: 1350px;
  }

  .product-more-like-this {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-instructions-mobile {
    height: auto;
  }

  .section-9 {
    height: 650px;
    padding-top: 1px;
  }

  .text-block-20 {
    margin-top: 65px;
  }

  .hero-header-article {
    margin-top: 70px;
    font-size: 35px;
  }

  .hero-header-hairinspiration-article {
    height: 230px;
  }

  .hero-hairisnspiration-slider-tab {
    height: 368px;
  }

  .top-tab-type, .top-tab-type.w--current, .top-tab-type-2, .top-tab-type-2.w--current {
    display: none;
  }

  .trust-pilot {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-instructions-mobile---oil, .product-instructions-mobile---scalp, .product-instructions-mobile---mist {
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .button.tab {
    margin-bottom: 9px;
  }

  .navigation-link.white {
    color: #202244;
    background-color: #fff;
    font-weight: 400;
  }

  .hamburger-button.w--open {
    background-color: #fed700;
  }

  .hamburger-button.white {
    background-color: #202244;
  }

  .hamburger-button.white:hover {
    background-color: #fed700;
  }

  .hero-slider {
    height: 550px;
  }

  .slide {
    padding-left: 53px;
    padding-right: 53px;
  }

  .slider-arrow-link.right {
    padding-right: 0;
  }

  .slider-icon-circle {
    color: #202244;
    margin-right: 0;
    padding-right: 0;
  }

  .slider-icon-circle.left {
    color: #202244;
    margin-left: 1px;
    padding-left: 0;
  }

  .footer.accent {
    height: 1100px;
  }

  .grid-fours {
    width: 50%;
  }

  .column-3-v2, .column-7, .column-8, .column-9 {
    background-size: 250px;
    height: 250px;
    margin-top: 25px;
  }

  .our-story.accent {
    height: 900px;
    padding-top: 48px;
  }

  .div-block-4 {
    height: 800px;
  }

  .testomonials {
    height: auto;
    padding-top: 0;
    padding-left: 53px;
    padding-right: 53px;
  }

  .testimonial-type {
    font-size: 17px;
    line-height: 27px;
  }

  .icon {
    margin-top: 130px;
    margin-left: 5px;
  }

  .icon-2 {
    margin-top: 130px;
    margin-right: 5px;
  }

  .newsletter.centered-accented {
    height: auto;
    padding-top: 110px;
  }

  .usp-p {
    margin-top: 86px;
    font-size: 22px;
    line-height: 28px;
  }

  .div-block-8, .text-block-4 {
    text-align: center;
  }

  .hair-2 {
    height: 1350px;
  }

  .hero-header-mob {
    margin-top: 49px;
    padding-left: 35px;
    padding-right: 35px;
    font-size: 38px;
    line-height: 43px;
  }

  .hero-sub-header-mob {
    margin-top: 17px;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 19px;
  }

  .hero-header-block-mob {
    height: 310px;
  }

  .latest-products-mob {
    height: 2740px;
  }

  .why-lena-maye-mob {
    height: 1950px;
  }

  .column-v2-mob {
    background-size: 250px;
    height: 250px;
  }

  .column-2-v2-mob {
    background-size: 250px;
    height: 250px;
    margin-top: 25px;
  }

  .container-4-mob {
    padding-top: 0;
  }

  .hero-slider-tab {
    height: 400px;
    margin-top: 22px;
  }

  .latest-products-tab {
    height: auto;
  }

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

  .container-6 {
    height: auto;
    margin-top: 71px;
  }

  .image-5 {
    opacity: .35;
    text-align: center;
  }

  .column-15, .column-16 {
    text-align: center;
  }

  .column-17, .column-18 {
    text-align: center;
    margin-top: 20px;
  }

  .container-7 {
    text-align: center;
  }

  .image-6, .image-7, .image-8 {
    opacity: .35;
  }

  .usp-p-tab {
    margin-top: 86px;
    font-size: 22px;
    line-height: 28px;
  }

  .shampoo-products, .conditioners-products, .leave-in-conditioner-products, .hair-butters-products, .treatments-products, .styling-products {
    height: 2740px;
  }

  .hero-haircare {
    height: 310px;
  }

  .image-13 {
    margin-left: 0;
  }

  .hero-product-desktop {
    height: 1450px;
  }

  .hero-product {
    margin-top: 18px;
    padding-left: 0;
    padding-right: 0;
    font-size: 30px;
    line-height: 43px;
  }

  .hero-sub-header-product {
    margin-top: 2px;
    padding-left: 0;
    padding-right: 0;
    font-size: 23px;
  }

  .producxt-description-1 {
    margin-top: 35px;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 19px;
  }

  .producxt-description-2 {
    margin-top: 4px;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 19px;
  }

  .producxt-description {
    margin-top: 32px;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 19px;
  }

  .description-divider {
    width: 10px;
    height: 60px;
    margin-top: 0;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 19px;
  }

  .product-price {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 40px;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 40px;
  }

  .product-instructions-desktop {
    height: 1390px;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .tab-pane-tab-1 {
    width: 270px;
    height: auto;
    padding-left: 16px;
  }

  .tab-pane-tab-2 {
    width: 270px;
    height: auto;
  }

  .tab-pane-tab-3 {
    height: auto;
  }

  .tab-box-type {
    text-align: left;
  }

  .tab-box-type-2 {
    text-align: left;
    width: 240px;
    font-size: 13px;
  }

  .tab-link-tab-1, .tab-link-tab-1.w--current, .tab-link-tab-2, .tab-link-tab-2.w--current {
    width: 270px;
  }

  .testomonial-product {
    background-size: cover;
    height: auto;
    padding-top: 0;
    padding-left: 53px;
    padding-right: 53px;
  }

  .bumper {
    height: 1400px;
  }

  .instagram-mobile {
    background-color: #202244;
    height: 1430px;
  }

  .product-more-like-this {
    height: auto;
  }

  .tabs-menu {
    width: 270px;
  }

  .icon-3 {
    color: #fff;
    background-color: #0000;
  }

  .menu-button {
    background-color: #202244;
  }

  .hero-product-mobile {
    height: 1240px;
    margin-top: 60px;
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .column-27 {
    text-align: center;
    margin-top: 30px;
  }

  .product-instructions-tabelt {
    height: 1390px;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .product-instructions-mobile {
    height: auto;
    padding: 30px 20px 50px;
  }

  .container-13 {
    text-align: center;
    margin-top: 73px;
  }

  .hero-product-tablet {
    height: 1200px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .menu-button-2 {
    background-color: #202244;
  }

  .menu-button-2.w--open:hover {
    background-color: #fed700;
  }

  .div-block-15 {
    margin-top: 29px;
  }

  .instructions-divider-mobile {
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .what-people-are-saying {
    margin-top: 35px;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 19px;
  }

  .header-logo-desktop {
    margin-top: 0;
    padding-top: 62px;
  }

  .div-block-17 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .splash-p {
    line-height: 30px;
  }

  .div-block-18 {
    margin-top: 0;
  }

  .div-block-19 {
    margin-top: 20px;
    margin-bottom: 21px;
  }

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

  .splash-header {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 25px;
  }

  .html-embed-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .splash-p2 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 17px;
    line-height: 24px;
  }

  .header-logo-mobile {
    margin-top: 0;
    padding-top: 62px;
  }

  .story-hero {
    height: 400px;
    padding-top: 58px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .text-block-8 {
    font-size: 22px;
    line-height: 30px;
  }

  .story-p-left, .stroy-year-left, .story-name-left {
    padding-right: 0;
  }

  .story-type-left {
    text-align: center;
    padding-top: 0;
    padding-right: 0;
  }

  .story-p-right, .stroy-year-right, .story-name-right {
    padding-left: 0;
  }

  .story-type-right {
    padding-top: 0;
    padding-right: 0;
  }

  .text-block-9 {
    font-size: 22px;
    line-height: 35px;
  }

  .div-block-28 {
    height: 440px;
    padding-top: 89px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-10 {
    font-size: 22px;
    line-height: 30px;
  }

  .text-block-11 {
    margin-top: 37px;
    font-size: 15px;
    line-height: 30px;
  }

  .why-section-2 {
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .container-16 {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .why-header-white {
    font-size: 22px;
    line-height: 30px;
  }

  .why-section-1 {
    height: 600px;
    margin-top: 2px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-block-12 {
    font-size: 25px;
    line-height: 35px;
  }

  .text-block-13 {
    text-align: center;
    margin-top: 39px;
    padding-right: 0;
    font-size: 15px;
  }

  .why-sub-head {
    font-size: 25px;
    line-height: 35px;
  }

  .why-two-columb {
    margin-top: -7px;
  }

  .why-section-3 {
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .why-sub-head-blue, .why-sub-sub-head {
    font-size: 25px;
  }

  .why-section-4, .why-section-5 {
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-block-16 {
    text-align: center;
    margin-bottom: 40px;
  }

  .why-section-6 {
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-block-16-blue {
    text-align: center;
    margin-bottom: 53px;
  }

  .why-section-7 {
    height: 890px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-block-11-large {
    font-size: 25px;
    line-height: 40px;
  }

  .text-block-17 {
    text-align: center;
    padding-right: 0;
    font-weight: 300;
  }

  .text-block-12-quote {
    font-size: 22px;
    line-height: 35px;
  }

  .image-20 {
    margin-top: 42px;
  }

  .button-4 {
    margin-bottom: 20px;
  }

  .hairspiration-row-1 {
    padding-top: 0;
  }

  .section-9 {
    height: 850px;
    padding-top: 0;
  }

  .text-block-20 {
    margin-top: 69px;
  }

  .hero-header-article {
    margin-top: 49px;
    padding-left: 35px;
    padding-right: 35px;
    font-size: 30px;
    line-height: 43px;
    text-decoration: none;
  }

  .hairspiration-thumbs-desktop, .hairspiration-thumbs-tablet {
    height: 3950px;
    margin-top: 60px;
  }

  .hero-header-hairinspiration-article {
    height: 220px;
  }

  .hero-hairisnspiration-slider-tab {
    height: 350px;
    margin-top: 34px;
  }

  .about-hero {
    height: 300px;
    padding-top: 28px;
  }

  .why-lm-hero {
    height: 400px;
    padding-top: 70px;
  }

  .timeline-tablet {
    height: 3250px;
  }

  .image-23 {
    margin-top: 16px;
    margin-bottom: 12px;
  }

  .image-24 {
    margin-top: 43px;
    margin-bottom: 18px;
  }

  .image-25 {
    margin-top: 23px;
    margin-bottom: 22px;
  }

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

  .timeline-mobile {
    height: 3250px;
    padding-top: 50px;
  }

  .image-27 {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 16px;
  }

  .container-18 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-section-1 {
    height: 1500px;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-section-2, .about-section-3 {
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-why {
    font-size: 22px;
    line-height: 30px;
  }

  .hero-mission-statement {
    height: auto;
  }

  .mission-statement {
    margin-top: 17px;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 19px;
  }

  .instructions {
    height: 2280px;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .instructions-p1 {
    height: auto;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .instructions-p2 {
    height: 2330px;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .instructions-p3, .instructions-p4 {
    height: 2280px;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .instructions-p5 {
    height: 2380px;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-type-1 {
    margin-top: 48px;
  }

  .pn-about-section-1 {
    height: 10800px;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .tc-about-section-1 {
    height: auto;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .faq-section-1 {
    height: 20800px;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .shipping-section-1 {
    height: 2800px;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .cancel-section-1 {
    height: 5300px;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-us-section-1 {
    height: 1800px;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .ingredients-about-section {
    height: 25100px;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-default {
    height: 300px;
    padding-top: 28px;
  }

  .top-tab-type, .top-tab-type.w--current, .top-tab-type-2, .top-tab-type-2.w--current {
    display: none;
  }

  .container-m-social {
    display: block;
  }

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

  .mb-fb {
    text-align: center;
    margin-right: 20px;
  }

  .mb-insta {
    margin-left: 30px;
  }

  .mb-links {
    text-align: center;
    margin-top: 10px;
  }

  .mb-sm-links {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 10px;
  }

  .mb-btm-link {
    text-align: center;
    margin-top: 30px;
  }

  .mb-link-section {
    margin-top: 50px;
  }

  .mb-address {
    margin-left: 0;
  }

  .mb-bottom-link {
    margin-top: 20px;
    display: none;
  }

  .hero-gift-desktop {
    height: 1450px;
  }

  .card-description-2-copy {
    margin-top: 17px;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 19px;
  }

  .card-sub-header-product {
    margin-top: 9px;
    padding-left: 0;
    padding-right: 0;
    font-size: 23px;
  }

  .hero-gift-product-tablet-copy {
    height: 1200px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-gift-product-mobile-copy {
    height: auto;
    margin-top: 60px;
    padding: 15px 10px 40px;
  }

  .trust-pilot.centered-accented {
    height: auto;
    padding-top: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .navigation-link-blog.white, .navigation-link-sample.white {
    color: #202244;
    background-color: #fff;
    font-weight: 400;
  }

  .button-blue {
    margin-top: 30px;
  }

  .product-instructions-scalp, .product-instructions-oil, .product-instructions-mist {
    height: 1390px;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .instructions-heading-white {
    text-align: left;
  }

  .product-instructions-tabelt---oil {
    height: 1390px;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .product-instructions-mobile---oil {
    background-image: url('../images/OIL.jpg');
    background-size: cover;
    height: auto;
    padding: 30px 20px 50px;
  }

  .product-instructions-mobile---scalp {
    background-image: url('../images/SCALP.jpg');
    background-size: cover;
    height: auto;
    padding: 30px 20px 50px;
  }

  .product-instructions-tabelt---scalp, .product-instructions-tabelt---mist {
    height: 1390px;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .product-instructions-mobile---mist {
    background-image: url('../images/MOISTURE-MIST.jpg');
    background-size: cover;
    height: auto;
    padding: 30px 20px 50px;
  }
}

#w-node-_0c419d95-98d0-dde5-6b64-7b739861ce69-d7cf9029 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a14a2d29-330d-0d48-3a11-838ffb7d8466-d7cf9029 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ddcef1d0-a996-ea68-da66-050413278baa-d7cf9029 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-c0b58285-ace6-ea6f-3865-1234c09aea8c-d7cf9029 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_35ca12a2-81b6-fee0-0b25-d2319de45017-d7cf9029 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-b4377af5-5b44-477a-fe5b-a0574e511871-d7cf9029 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_7cb5ea86-f294-4362-4295-60d6ed056d4d-d7cf9029 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-_281f1e2a-3658-6440-6f77-6f4f94b0bc0d-d7cf9029 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_26c90ab2-5e1a-91d6-5365-46fd6d854870-d7cf9029 {
  grid-area: 5 / 1 / 6 / 2;
}

#w-node-_5a0ab2bf-6498-75e5-a2dc-7b4b59699bdd-d7cf9029 {
  grid-area: 5 / 2 / 6 / 3;
}

#w-node-d3e15692-600e-dcab-9b8d-597de17ded50-d7cf9029 {
  grid-area: 6 / 1 / 7 / 2;
}

#w-node-_974bce8a-e10a-f341-3693-2176a50e23b1-d7cf9029 {
  grid-area: 6 / 2 / 7 / 3;
}

#w-node-aaa40509-c77a-0046-c482-5ae84decbe85-d7cf9029 {
  grid-area: 7 / 1 / 8 / 2;
}

#w-node-ad7beca4-04ef-b5e3-ad2c-5b219b5e6fac-d7cf9029 {
  grid-area: 7 / 2 / 8 / 3;
}

#w-node-af6a0e8a-3bb3-c704-f536-c9456c7d6a0f-d7cf9029 {
  grid-area: 8 / 1 / 9 / 2;
}

#w-node-_6e453a88-fcb5-61ea-b87f-5ac41518da58-d7cf9029 {
  grid-area: 8 / 2 / 9 / 3;
}

#w-node-_2587a487-667c-3bab-41d8-4a84a4969cbf-d7cf9029 {
  grid-area: 9 / 1 / 10 / 2;
}

#w-node-_34c633db-d0af-1896-0139-8c394cb613ee-d7cf9029 {
  grid-area: 9 / 2 / 10 / 3;
}


