/* ******************************************** */
/* TABLE OF CONTENTS
/*  I. Webfonts
/*  II. Globals
/*  III.
/* ******************************************** */

@font-face {
  font-family: 'fontello';
  //src: url('../font/fontello.eot');
  src: url('../font/newfont.eot?12') format('embedded-opentype'),
       url('../font/newfont.woff2?12') format('woff2'),
       url('../font/newfont.woff?12') format('woff'),
       url('../font/newfont.ttf?12') format('truetype'),
       url('../font/newfont.svg?12') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?66214366#fontello') format('svg');
  }
}
*/

 [class^="ico-"]:before, [class*=" ico-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.ico-star-hover:before { content: '\e800'; } /* '' */
.ico-cheese:before { content: '\e801'; } /* '' */
.ico-floral:before { content: '\e802'; } /* '' */
.ico-earthy:before { content: '\e803'; } /* '' */
.ico-citrus:before { content: '\e804'; } /* '' */
.ico-chem:before { content: '\e805'; } /* '' */
.ico-pine:before { content: '\e806'; } /* '' */
.ico-sweet:before { content: '\e807'; } /* '' */
.ico-skunk:before { content: '\e808'; } /* '' */
/*.ico-fruit:before { content: '\e809'; } /* '' */
.ico-fuel:before { content: '\e80a'; } /* '' */
.ico-mold:before { content: '\e80b'; } /* '' */
.ico-metallic:before { content: '\e80c'; } /* '' */
.ico-lawn:before { content: '\e80d'; } /* '' */
.ico-must:before { content: '\e80e'; } /* '' */
.ico-oldsocks:before { content: '\e80f'; } /* '' */
.ico-wetgrass:before { content: '\e810'; } /* '' */
.ico-sleep:before { content: '\e811'; } /* '' */
.ico-amplify:before { content: '\e812'; } /* '' */
.ico-relax:before { content: '\e813'; } /* '' */
.ico-relieve:before { content: '\e814'; } /* '' */
.ico-stars:before { content: '\e815'; } /* '' */
.ico-twitter:before { content: '\e816'; } /* '' */
.ico-facebook:before { content: '\e817'; } /* '' */
.ico-instagram:before { content: '\e818'; } /* '' */
.ico-spice:before { content: '\e819'; } /* '' */
.ico-logo-stacked:before { content: '\e81a'; } /* '' */
.ico-stats:before { content: '\e81b'; } /* '' */
.ico-cancel:before { content: '\e81c'; } /* '' */

html {
  overflow-x: hidden;
  left: 0;
}

body {
  color: #3e3935;
  font-family: 'Interstate';
  opacity: 0;
  transition: all 0.2s;
  background: #fff;
}

body.scrolling {
  overflow: hidden;
}

body.scrolling .img-newsletter {
  display: none;
}

html.wf-active body {
  opacity: 1;
}

.container-fluid {
  max-width: 1170px;
}

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

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

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

#main li p {
  line-height: 40px;
  font-size: 20px;
}

/* TYPOGRAPHY */

.section-title {
  position: relative;
  font-family: 'stratum-1-web';
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 10px;
  font-size: 80px;
  color: #3e3935;
}

.section-title:before {
  display: inline-block;
  content: '';
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 100px;
  height: 60px;
}

#red-flags .section-title:before {
  display: none;
}

#touch .section-title:before {
  height: 87px;
}

#aroma .section-title:before,
#sensation .section-title:before {
  height: 88px;
}

#taste .section-title:before {
  height: 75px;
}

h3 {
  font-family: 'stratum-1-web';
  font-size: 36px;
  text-transform: uppercase;
  color: #fff;
}

/* NAV TOGGLE */

.nav-toggle {
  top: 10px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  right: 10px;
  padding-bottom: 30px;
  padding-top: 30px;
  margin-top: -15px;
}

.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 24px;
  background: white;
  position: absolute;
  display: block;
  content: '';
}

.nav-toggle span:before {
  top: -10px;
}

.nav-toggle span:after {
  bottom: -10px;
}

.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
  transition: all 300ms ease-in-out;
}

.nav-toggle.active span {
  background-color: transparent;
}

.nav-toggle.active span:before,
.nav-toggle.active span:after {
  top: 0;
}

.nav-toggle.active span:before {
  transform: rotate(45deg);
}

.nav-toggle.active span:after {
  transform: rotate(-45deg);
}

/* HERO IMAGE */

.hero {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #5d5e5e;
}

.hero > .img-hero {
  width: 100%;
  background: url('../img/hero.jpg') center center no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
}

.img-newsletter {
  width: 100%;
  background: url('../img/photo-newsletter.jpg') center center no-repeat;
  background-size: cover;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  background-color: #5d5e5e;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.hero > .img-logo {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 160px;
  transform: translateY(-50px);
  background: url('../img/stats.svg') center center no-repeat;
}

/* HEADER NAV */

.navbar-main {
  position: absolute;
  z-index: 10;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Interstate';
  letter-spacing: 1.75px;
  color: #fff;
  line-height: 46px;
  font-size: 14px;
}

.navbar-brand > img {
  height: 46px;
}

/* WELCOME SECTION */

.welcome {
  background: #8e8265;
  text-align: center;
  font-family: 'adobe-caslon-pro', serif;
  padding: 0 40px 60px;
  margin-top: -200px;
}

.welcome > .navbar-nav {
  background: #3e3935;
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
}

.welcome > .navbar-nav.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  transform: translateY(-74px);
}

.welcome .nav-item:first-child {
  display: none;
}

.welcome .nav-item {
  width: 20%;
  text-align: center;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
}

.welcome .nav-link {
  position: relative;
  font-family: 'stratum-1-web';
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  transition: all 0.3s;
  padding-left: 12px;
}

.welcome .nav-link:before {
  display: inline-block;
  font-family: 'fontello';
  content: '\e800';
  width: 12px;
  height: 12px;
  margin-right: 10px;
  top: 50%;
  margin-top: -7px;
  margin-left: -20px;
  position: absolute;
  font-size: 11px;
}

.welcome .nav-link.active,
.welcome .nav-link.active:hover,
.welcome .nav-link.active:focus {
  background: #8e8265 !important;
  color: #fff;
}

.welcome .nav-link.active:hover:before {
  color: #fff;
}

.welcome .nav-link:hover:before, {
  color: #8E8265;
}

.welcome .nav-link:hover {
  color: #8e8265;
}

.welcome > h1 {
  font-weight: bold;
  font-family: 'Interstate';
  text-transform: uppercase;
  color: #3e3935;
  line-height: 48px;
}

.welcome > p {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 36px;
  padding: 40px 10px 0;
  color: #fff;
  letter-spacing: 1.5px;
}

/* MAIN CATEGORY */

.wrap {
  top: 100%;
  width: 100%;
  position: absolute;
  background-size: 50%;
  padding: 0;
  margin: 0;
}

.wrap > .row {
  margin: 0;
  padding-bottom: 100px;
  background: #fff url('../img/pattern.svg') no-repeat top right;
}

section {
  background: #fff;
}

section * {
  z-index: 1
}

section .bg {
  z-index: 0 !important;
}

section img {
  position: relative;
  z-index: 2 !important;
}

#main {
  overflow: hidden;
  background: #fff;
}

#main section {
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 60px;
  width: 100% !important;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  max-width: 1280px;
}

.section-intro {
  font-family: 'adobe-caslon-pro', serif;
  text-align: center;
  font-size: 26px;
  color: #8b7c5e;
  line-height: 50px;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* SECTION: SIGHT */

#sight {
  background: linear-gradient(90deg, #dadfe1 66.666%, white 33.333%);
}

#sight > h1:before {
  background-image: url(../img/ico-sight.svg);
}

#sight h3 {
  color: #8b7c5e;
  font-weight: 600;
  letter-spacing: 5px;
  padding: 20px 0;
  margin: 10px 0 10px;
}

#sight .col-img {
  margin-top: -8.333333%;
  padding-bottom: 8.333333%;
}

#sight div p,
#red-flags div p {
  font-size: 18px;
  line-height: 2;
  padding-left: 0;
  opacity: 1;
  margin-bottom: 30px;
}

#sight .toggle,
#red-flags .toggle {
  background: url('../img/ico-exit.svg') no-repeat;
  height: 20px;
  width: 20px;
  float: left;
  top: 10px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  transform: rotate(0deg);
  z-index: 5;
}

#sight .closed .toggle,
#red-flags .closed .toggle {
  transform: rotate(-45deg);
}

#sight .closed p,
#red-flags .closed p {
  transition: all 0.5s;
}

#sight .indent1 {
  border-left: 2px solid #8b7c5e;
  display: inline-block;
  width: 100%;
  padding-left: 10px;
  line-height: 1.5;
  margin-top: 10px;
  font-size: 16px;
}

/* SECTION: RED FLAGS */

#red-flags {
  background: linear-gradient(-90deg, #dadfe1 66.666%, white 33.333%);
  margin-top: 100px;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}

#red-flags > h1 {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 80px;
  word-spacing: 15px;
}

#red-flags h3 {
  color: #8b7c5e;
  font-weight: 600;
  letter-spacing: 5px;
  padding: 30px 0 20px;
  text-align: left;
  margin-bottom: 0;
}

#red-flags div p {
  font-size: 18px;
  line-height: 2;
  text-align: left;
}

#red-flags .indent1,
#red-flags .indent2 {
  border-left: 2px solid #8b7c5e;
  display: inline-block;
  width: 100%;
  padding-left: 10px;
  line-height: 1.5;
  margin-top: 10px;
  font-size: 16px;
}

#red-flags .indent1:first-child {
  margin-top: 30px;
}

#red-flags .indent2 {
  margin-left: 30px;
}

.row-mildew h3 {
  margin-top: 160px;
}

.row-seeds,
.row-bananas {
  margin-top: 80px;
}

.row-mold .col-img,
.row-hair .col-img {
  margin-top: -60px;
}

.ico-redflag {
  display: inline-block;
  height: 120px;
  margin-left: -10px;
}
/* SECTION: TOUCH */

#touch {
  margin-top: 100px;
  position: relative;
  font-size: 20px;
}

#touch > h1:before {
  background-image: url(../img/ico-touch.svg);
}

#touch > .bg {
  position: absolute;
  background: #eee2d6;
  width: 70%;
  height: 100%;
  right: 10%;
  bottom: 0;
  top: 0;
  left: 20%;
  z-index: -1;
}

#touch ul,
#taste ul,
#power-flower ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
}

#touch li,
#taste li,
#power-flower li {
  line-height: 40px;
  margin-bottom: 20px;
}


#touch .indent1,
#taste .indent1,
#power-flower .indent1 {
  font-family: 'stratum-1-web';
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 3px;
  display: inline-block;
  width: 100%;
  border-left: 3px solid #8b7c5e;
  padding-left: 15px;
  margin: 10px 0 0 40px;
}

#touch .ico-stars:before {
  max-width: 120px;
  width: 100%;
  display: inline-block;
  margin-bottom: 100px;
  margin-top: 40px;
  color: #8e8265;
  font-size: 66px;
}

/* SECTION: AROMA */

#aroma {
  background: linear-gradient(-90deg, #f0e6e2 80%, white 20%);
  margin-top: 100px;
}

#aroma > h1:before {
  background-image: url(../img/ico-aroma.svg);
}

#aroma .cell {
  background: #dbc2b6;
}

#aroma div p {
  padding-left: 5px;
  padding-right: 5px;
  letter-spacing: 1.25px;
  line-height: 2;
  font-size: 20px;
}

/* SECTION: TASTE */

#taste {
  position: relative;
  margin-top: 100px;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #f1f0ef 80%, white 20%);
}

#taste > h1:before {
  background-image: url(../img/ico-taste.svg);
}

#taste table {
  padding: 60px;
}

#taste .cell {
  background: #dddbd9
}

#taste div p {
  padding-left: 5px;
  padding-right: 5px;
  line-height: 2;
  font-size: 20px;
}

#taste ul {
  margin-bottom: 80px;
}

/* SECTION: POWER OF THE FLOWER */

#power-flower {
  position: relative;
  overflow: hidden;
  text-align: center;
}

#power-flower .section-title:before {
  display: none;
}

#power-flower .section-title {
  font-size: 34px;
      width: 75%;
  color: #8b7c5e;
  display: inline-block;
  padding: 20px;
  margin: 60px 20px 60px;
  border: 5px solid #fff;
}

#power-flower > .bg {
  position: absolute;
  background: #f1f0ef;
  width: 90%;
  height: 100%;
  right: 5%;
  bottom: 0;
  top: 0;
  left: 5%;
  z-index: -1;
}

#power-flower img {
  display: inline-block;
  margin-bottom: 40px;
}

#power-flower ul {
  text-align: left;
}


/* SECTION: SENSATION */

#sensation {
  position: relative;
  margin-top: 100px;
  color: #3e3935;
  text-align: center;
  margin-bottom: 60px;
}

#sensation > h1:before {
  background-image: url(../img/ico-sensation.svg);
}

#sensation > .bg {
  position: absolute;
  background: #dadac7;
  width: 85%;
  height: 100%;
  right: 10%;
  bottom: 0;
  top: 0;
  left: 5%;
  z-index: -1;
}


#sensation .subheading {
  font-family: 'Interstate';
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1.25px;
  text-align: center;
  text-transform: uppercase;
  color: #8b7c5e;
  margin-top: 60px;
  margin-bottom: 60px;
}

#sensation p {
  font-size: 20px;
  letter-spacing: 1.5px;
}

#sensation ul {
  list-style: none;
  padding-left: 0;
}

#sensation .highlighted {
  font-family: 'stratum-1-web';
  font-size: 44px;
  line-height: 54px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}

#sensation .divider > span {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: #fff;
  padding: 0 20px;
  margin: 20px 0;
}

/* SECTION: WHAT TO KNOW */

#what-to-know {
  padding-top: 60px;
  background: linear-gradient(-90deg, #dadac7 80%, white 20%);
  font-size: 20px;
}

#what-to-know ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#what-to-know li {
  margin-bottom: 20px;
  float: left;
}

#what-to-know span {
  font-family: 'stratum-1-web';
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 3px;
  display: inline-block;
  width: 100%;
  border-left: 3px solid #8b7c5e;
  padding-left: 15px;
  margin: 10px 0 5px;
  text-transform: uppercase;
  float: left;
}

#what-to-know .img-fluid {
  max-width: 100px;
  margin-right: 50px;
}


/* POSTSCRIPT */

#postscript {
  background: #8e8265;
  padding-bottom: 40px;
}

#postscript img {
  margin-top: -60px;
  padding-bottom: 40px;
}

#postscript h3 {
  padding-top: 100px;
  padding-bottom: 25px;
  font-size: 26px;
  letter-spacing: 3px;
}

#postscript p {
  font-family: "Interstate";
  font-size: 15px;
  line-height: 2;
  letter-spacing: 1.5px;
  padding-bottom: 20px;
  color: #3d3834;
}

/* GLOSSARY */

#glossary {
  position: relative;
  overflow: hidden;
}

#glossary .bg {
  background: #8b7c5e;
  width: 100%;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  height: 10px;
  opacity: 0.5;
}

#glossary .section-title {
  display: inline-block;
  font-size: 38px;
  padding: 20px;
  margin: 120px 0 40px 0;
  border: 3px solid #8b7c5e;
  color: #3e3935;
}

#glossary .section-title:before {
  display: none;
}

#glossary ul {
  list-style: none;
  text-align: left;
}
#glossary li {
  line-height: 32px;
  font-size: 16px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

#glossary strong {
  font-family: 'stratum-1-web';
  text-transform: uppercase;
  font-size: 24px;
  color: #8b7c5e;
  line-height: 32px;
  position: relative;
  bottom: -3px;
  padding-right: 10px;
}

.section-top {
  height: 110px;
  margin-top: 120px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.section-top .ico {
  display: inline-block;
  text-align: center;
  background: #fff;
  width: 30%;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.section-top .ico > img {
  display: inline-block;
  height: 110px;
}

/*
.section-top > .bg {
  position: absolute;
  background: #8b7c5e;
  width: 100%;
  height: 5px;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
  top: 50%;
  margin-top: -2.5px;
} */

/* NEWSLETTER */

#newsletter {
  overflow: hidden;
  background: transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 110px 0;
  background: rgba(93, 94, 94, 0.65);
}

#newsletter img {
  opacity: 0.35 !important;
  width: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#newsletter h3 {
  width: 100%;
  font-size: 26px;
  letter-spacing: 5px;
}


#newsletter .verify > span {
  font-size: 14px;
  width: 100%;
  display: inline-block;
}

#newsletter h3,
#newsletter a {
  z-index: 1;
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#newsletter a {
  color: #fff;
  border: 3px solid #fff;
  border-radius: 3px;
  padding: 7px 20px;
  margin-top: 25px;
  letter-spacing: 1px;
  transition: 0.2s all;
}

#newsletter a:hover {
  background: #fff;
  color: #5d5e5e;
}

#newsletter .form-newsletter {
  position: relative;
  z-index: 10;
  max-width: 450px;
  margin: 0 auto;
  display: inline-block;
}


#newsletter .invalid {
  color: #fff;
}
#newsletter input.form-control,
#newsletter input.form-control:focus {
  display: inline-block;
  width: 300px;
  border-radius: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border: 3px solid #fff;
  background: transparent;
  padding: 6px 6px 5px;
  margin-right: -10px;
  font-weight: 500;
  color: #fff;
  outline: 0;
}

#newsletter input[type="submit"] {
  background: #fff;
  border: 0;
  padding: 7px 12px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  font-weight: 600;
}

#newsletter input {
  margin-top: 20px;
}

#newsletter .verify {
  z-index: 10;
  max-width: 700px;
  position: relative;
  text-align: center;
  font-size: 16px;
  color: #ccc;
  height: 0px;
}

#newsletter .btn-download,
#newsletter .verify {
  opacity: 0;
  transition: all 1s;
}

#newsletter .verify.animated,
#newsletter .btn-download.animated {
  opacity: 1;
  height: auto;
}

#newsletter .subtext {
  color: #fff;
  position: relative;
  z-index: 10;
  top: 15px;
}

#newsletter ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #fff;
}

#newsletter ::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #fff;
  opacity:  1;
}

#newsletter :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

/* FOOTER */

#colophon {
  background: #fff url('../img/pattern-footer.svg') no-repeat bottom right;
  background-size: 60%;
  font-family: 'Interstate';
  font-size: 14px;
  padding-top: 40px;
  overflow: hidden;
  color: #8e8265;
}

#colophon h3 {
  color: inherit;
  font-family: 'Interstate';
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 2px;
}

#colophon img {
  display: inline-block;
  max-height: 115px;
}

#colophon img.logo-bg {
  max-height: 90px;
  margin-top: -145px;
  position: relative;
  z-index: -1;
}

#colophon strong {
  display: inline-block;
  font-family: 'Interstate';
  letter-spacing: 1.5px;
  padding-top: 20px;
  width: 100%;
}

#colophon p {
  padding: 20px 40px 40px;
  letter-spacing: 1.5px;
  line-height: 2;
}

#colophon ul.social {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

#colophon .social i {
  display: inline-block;
  height: 16px;
  width: auto;
  margin-right: 20px;
  width: 16px;
}

#colophon ul a {
  display: inline-block;
  color: #8e8265;
  font-size: 16px;
  margin-bottom: 10px;
  width: 100%;
  opacity: 0.5;
  transition: 0.3s all;
}

#colophon ul a:hover {
  opacity: 1;
  text-decoration: none;
}

.page-bottom {
  background: #3e3935;
  font-size: 13px;
  font-family: 'Interstate';
  text-transform: uppercase;
  color: #fff;
  padding: 5px 0;
}

.page-bottom a {
  color: #fff;
}

.page-bottom ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.page-bottom li {
  float: left;
  padding: 0 20px;
  line-height: 12px;
  border-right: 1px solid #fff;
}

.page-bottom li:last-child {
  border-right: none;
}

/* DIVIDER */

.divider-dotted > span {
  display: inline-block;
  height: 1px;
  border-bottom: 3px dotted black;
  padding: 0 20px;
  margin: 20px 0;
  width: 100%;
}

.divider-dotted > .long {
  max-width: 765px;
}

.divider-dotted > .short {
  max-width: 455px;
}

/* TABLES */

.table strong {
  width: 100%;
  display: inline-block;
  font-size: 16px;
}

.table,
.table-head {
  display: table;
  border-collapse:separate;
  border-spacing:5px;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}

.table-head {
  width: 100%;
  margin-bottom: -5px;
  color: #fff;
  font-family: 'adobe-caslon-pro', serif;
}

.table-label {
  line-height: 20px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.25px;
  padding: 10px 5px 5px;
  display: table-cell;
  width: 100%;
  margin-bottom: -5px;
}

.table-row {
  display: table-row;
}

.cell {
  font-family: 'stratum-1-web';
  font-size: 20px;
  display: table-cell;
  padding: 10px 5px 10px;
  width: 33.3337%;
  vertical-align: top;
}

.cell .ico {
  width: 100%;
  max-width: 90px;
  display: inline-block;
  background: #fff;
  border-radius: 100px;
  margin: 10px auto;
  padding: 0;
}

.cell .ico:before {
  width: 100%;
  line-height: 90px;
  font-size: 3rem;
  color: #8e8265;
}

.cell .ico-cheese:before,
.cell .ico-sweet:before,
.cell .ico-citrus:before {
  font-size: 2rem;
  top: 2px;
  position: relative;
}

.cell .ico-nosmell,
.cell .ico-hay,
.cell .ico-fruit,
.cell .ico-pine,
.cell .ico-sweet,
.cell .ico-metallic,
.cell .ico-chem {
  height: 90px;
  margin-bottom: 0;
  background: #fff url('../img/spritesheet.svg') no-repeat;
}

.cell .ico-nosmell:before,
.cell .ico-hay:before,
.cell .ico-fruit:before,
.cell .ico-pine:before,
.cell .ico-sweet:before,
.cell .ico-metallic:before,
.cell .ico-chem:before {
  content: '';
  display: none;
}

.cell .ico-nosmell {
  background-position: -96px -105px;
  background-size: 400px;
}

.cell .ico-hay {
  background-position: -141px -71px;
  background-size: 300px;
}

.cell .ico-fruit {
  background-position: 13px -185px;
  background-size: 360px;
}

.cell .ico-pine {
  background-position: 10px -284px;
  background-size: 360px;
}

.cell .ico-sweet {
  background-position: -275px -187px;
  background-size: 360px;
}

.cell .ico-metallic {
  background-position: -84px -185px;
  background-size: 360px;
}

.cell .ico-chem {
  background-position: -141px -149px;
  background-size: 300px;
}

/*
.cell .ico:before {
  width: 100%;
  line-height: 90px;
  width: 90px;
  text-align: center;
  background: #fff;
  border-radius: 100px;
} */

.poor-quality .ico:before {
  color: #3f3a36;
}

.good-quality .table-head > div {
  background: #3e3935;
}

.poor-quality .table-head > div {
  background: #8b7c5e;
}

.poor-quality .table-caption {
  padding-top: 60px;
  border-top: 3px dotted #3e3935;
  margin-top: 60px;
}

.good-quality .table-caption,
.poor-quality .table-caption {
  text-transform: uppercase;
  font-size: 18px !important;
  line-height: 30px !important;
  letter-spacing: 1.25px;
}

@media (max-width: 767px) {
  .hero > .img-logo {
    background: url('../img/logo-stacked.svg') center center no-repeat;
    max-height: 40%;
    max-width: 75%;
  }

  #what-to-know li {
    width: 100%;
  }

  #postscript img {
    margin-top: auto;
  }

  #what-to-know div.pull-xs-left {
    max-width: 66.667%;
  }

  #what-to-know .img-fluid {
    margin-right: 20px;
  }

  .page-bottom li {
    text-align: center;
    margin: 5px 0;
    border: 0;
  }

  .hero {
    background-size: cover, cover, cover;
  }

  #colophon .social {
    margin-bottom: 60px !important;
  }

  #colophon h3,
  #colophon li a {
    text-align: center;
  }

  .welcome {
    padding-left: 0;
    padding-right: 0;
  }

  .welcome .nav-link {
    letter-spacing: 1.5px;
    font-size: 16px;
  }

  .welcome .nav-link:before {
    margin-right: 10px;
    margin-top: -9px;
    margin-left: -17px;
    font-size: 10px;
  }
}

@media (max-width: 460px) {
  #what-to-know .img-fluid {
    max-width: 70px;
  }

  .section-title {
    font-size: 48px !important;
  }

  #newsletter input.form-control,
  #newsletter input.form-control:focus {
    width: 230px;
  }

  #newsletter a {
    transition: 0.2s all;
    margin-top: 10px;
    font-size: 12px;
    border-width: 2px;
  }

  #newsletter h3 {
    font-size: 20px;
  }


  #newsletter .invalid {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .cell .ico {
    width: 80px;
    height: 80px;
  }

  .cell .ico-hay {
    background-position: -146px -75px;
  }

  .cell .ico-nosmell {
    background-position: -101px -109px;
  }

  .cell .ico-fruit {
    background-position: 8px -189px;
  }

  .cell .ico-pine {
    background-position: 5px -288px;
  }

  .cell .ico-sweet {
    background-position: -280px -193px;
  }

  .cell .ico-chem {
    background-position: -145px -153px;
  }

  .cell .ico-metallic {
    background-position: -87px -190px;
  }

  .cell .ico:before {
    line-height: 80px;
  }

  #red-flags h1 {
    font-size: 36px;
  }

  .ico-redflag {
    height: 70px;
  }

  .section-title {
    font-size: 60px;
  }

  #touch .indent1,
  #taste .indent1,
  #power-flower .indent1 {
    margin-left: 0;
  }

  .hero > .img-logo {
    transform: none;
  }

  .welcome {
    padding-top: 60px;
    margin-top: 0;
  }

  .welcome > .navbar-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
  }

  .welcome .nav-item {
    display: none;
    width: 100%;
    text-align: center;
  }

  .welcome .nav-item:first-child {
    display: inline-block;
    text-align: right;
    width: 100%;
  }

  .welcome .nav-item:first-child > div {
    display: inline-block;
  }

  .welcome .mobile-open {
    height: 100%;
  }

  .welcome .mobile-open .nav-item {
    display: inline-block;
  }
}

.col-visible {
  display: none;
}

@media (max-width: 980px) {

  #sight div p,
  #red-flags div p {
    padding: 0px 40px 40px;
    display: inline-block !important;
    opacity: 1 !important;
  }

  #sight h3,
  #red-flags h3,
  .row-trichomes,
  .row-size {
    text-align: center;
  }

  .closed p {
    text-align: left !important;
  }

  #sight .img-fluid,
  #red-flags img {
    display: inline-block !important;
  }

  .col-img,
  .col-visible,
  .col-hidden {
    margin-top: auto !important;
    text-align: center;
    padding-bottom: inherit !important;
  }

  #sight .col-hidden img,
  #red-flags .col-hidden img {
    display: none !important;
  }

  #sight .col-hidden img.col-visible,
  #red-flags .col-hidden img.col-visible {
    display: inline-block !important;
  }

  .col-visible {
    display: inline-block;
  }

  .row-mildew h3 {
    margin-top: 0px;
  }

  #what-to-know {
    background: linear-gradient(90deg, #dadac7 80%, white 20%);
  }
}

.amplify, .relieve, .relax, .sleep {
  max-width: 500px;
  margin-bottom: 20px;
}

.amplify h3,
.relieve h3,
.relax h3,
.sleep h3 {
  font-size: 30px;
  letter-spacing: 5px;
  color: #8E8265;
}

/* ANIMATIONS */

.img-fluid[data-anim="true"],
i[data-anim="true"]:before {
  transition: 0.5s all;
  transform: translateY(50px);
  opacity: 0;
  -webkit-backface-visibility: none;
    -webkit-backface-visibility: none;
}
.img-fluid[data-anim="true"].anim-in,
i[data-anim="true"].anim-in:before {
  opacity: 1;
  transform: translateY(0px);
}

#what-to-know .img-fluid[data-anim="true"],
.ico,
.ico-stars[data-anim="true"]:before {
  transition: 0.5s all;
  transform: scale(0.5);
  opacity: 0;
}

#what-to-know .img-fluid[data-anim="true"].anim-in,
.ico.anim-in,
.ico-stars[data-anim="true"].anim-in:before {
  transform: scale(1);
  opacity: 1;
}
