@font-face {
  font-family: 'barkentina';
  src: url('../fonts/barkentina.eot');
  src: url('../fonts/barkentina.eot?#iefix') format('embedded-opentype'),
    url('../fonts/barkentina.woff') format('woff'),
    url('../fonts/barkentina.ttf') format('truetype');
}

@font-face {
  font-family: 'magpie-paper-works';
  src: url('../fonts/magpie-paper-works.eot');
  src: url('../fonts/magpie-paper-works.eot?#iefix') format('embedded-opentype'),
    url('../fonts/magpie-paper-works.woff') format('woff'),
    url('../fonts/magpie-paper-works.ttf') format('truetype');
}

@font-face {
  font-family: 'icomoon-social';
  src: url('../fonts/icomoon-social.eot?7nuigq');
  src: url('../fonts/icomoon-social.eot?7nuigq#iefix')
      format('embedded-opentype'),
    url('../fonts/icomoon-social.ttf?7nuigq') format('truetype'),
    url('../fonts/icomoon-social.woff?7nuigq') format('woff'),
    url('../fonts/icomoon-social.svg?7nuigq#icomoon-social') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^='soc-'],
[class*=' soc-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon-social' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.soc-soundcloud:before {
  content: '\e900';
}
.soc-brand:before {
  content: '\e900';
}
.soc-social:before {
  content: '\e900';
}
.soc-twitter:before {
  content: '\e901';
}
.soc-brand1:before {
  content: '\e901';
}
.soc-tweet:before {
  content: '\e901';
}
.soc-social1:before {
  content: '\e901';
}
.soc-facebook:before {
  content: '\e902';
}
.soc-brand2:before {
  content: '\e902';
}
.soc-social2:before {
  content: '\e902';
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* ----------------------------------------
    ROOT STUFF
----------------------------------------- */
:root {
  --brand: #f8b340;
  --brand-lite: #deb887;
  --dark-gray: #2d2b30;
  --green: #91b970;
  --blue: #56bff9;
  --orange: #ff8f5d;
  --turkish: #41bbbb;
  --ghost: rgba(255, 255, 255, 0.4);
  --sml-header-height: 150px;
}

html {
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  background: #e2e1e0;
}

body {
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

#root {
  position: relative;
}

.hidden {
  visibility: hidden !important;
}

.hidden-lg {
  display: block;
}

.mt-40 {
  margin-top: 40px !important;
}

.upper {
  text-transform: uppercase;
  height: auto !important;
  line-height: initial !important;
  padding: 12px 0;
  margin-bottom: 64px !important;
}

.center {
  margin: 0 auto;
  text-align: center;
}

.v-align-parent {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  height: inherit;
}

.v-align-child {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.button {
  display: inline-block;
  width: 150px;
  height: 50px;
  line-height: 50px;
  position: relative;
  margin: 0 auto;
  text-align: center;
  color: white;
  text-decoration: none;
}

.responsive {
  width: 100%;
  max-width: 720px;
  height: auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  margin: 26px 0;
}

/* ----------------------------------------
    HEADER STUFF
----------------------------------------- */

#header {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: var(--dark-gray);
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  z-index: 100;
}

#header * {
  margin: 0;
  padding: 0;
}

/*@media (min-width: 700px) and (orientation: landscape) { ... }*/

#header::after {
  display: none;
}

#header::before {
  display: block;
  content: '';
  position: absolute;
  background-color: var(--dark-gray);
  z-index: 901;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  opacity: 0.6;
  pointer-events: none;
}

#header::after {
  display: block;
  content: '';
  position: absolute;
  background-color: var(--dark-gray);
  z-index: 900;
  width: 100%;
  height: var(--sml-header-height);
  bottom: 0;
  left: 0;
  opacity: 0.6;
  pointer-events: none;
}

#header.open {
  -webkit-transform: translate3d(0, -100%, 0) translate3d(0, 150px, 0);
  transform: translate3d(0, -100%, 0) translate3d(0, 150px, 0);
}

.logo-path {
  fill: var(--brand);
}

.brand {
  display: none;
}

#reveal {
  display: block;
  position: absolute;
  bottom: 32px;
  left: calc(50% - 32px);
  /* transform: translateX(-100%);
  -webkit-transform: translateX(-100%); */
  border-radius: 50%;
  width: 64px;
  height: 64px;
  border-style: none;
  background-color: transparent;
  border: 2px solid var(--brand);
  color: white;
  cursor: pointer;
  z-index: 920;
  pointer-events: none;
}

#reveal:active,
#reveal:focus {
  outline: none;
}

#reveal div {
  position: relative;
  width: 100%;
  height: 100%;
}

#reveal .reveal-chev {
  position: absolute;
  left: 9px;
  top: 11px;
  z-index: 110;
  transform-origin: center;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 1s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#reveal .reveal-chev:last-child {
  z-index: 120;
}

#reveal .reveal-chev.dismiss:first-child {
  top: 5px;
}

#reveal .reveal-chev.dismiss:last-child {
  -webkit-transform: rotate(900deg);
  transform: rotate(900deg);
  top: 15px;
}

.mobile-view-heading {
  font-family: barkentina;
  font-size: 36px;
  text-align: center;
  line-height: 36px;
  /* margin: -96px 0 196px 0 !important; */
}

/* ----------------------------------------
    SLIDER STUFF
----------------------------------------- */

.slider-container {
  position: relative;
  width: 100%;
  /* height: calc(100vh - 150px); */
  height: 100vh;
  background-color: var(--dark-gray);
  opacity: 1;
  -webkit-transition: all 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slider-container.hide {
  opacity: 0;
}

.slider-container ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style-type: none;
  height: inherit;
  width: 100%;
  overflow: hidden;
  perspective: 1000px;
  perspective-origin: center;
}

.slider-container ul li {
  display: block;
  visibility: hidden;
  /*
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
*/
  width: 100%;
  height: inherit;
  -webkit-transform-origin: 50% 120%;
  transform-origin: 50% 120%;
  position: absolute;
  top: 0;
  left: 0;
}

.slider-container ul li.active {
  width: 100%;
  height: inherit;
  visibility: visible;
}

.slider-container ul li img {
  width: 100%;
  height: auto;
}

/* .indicators-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  bottom: 0;
  z-index: 930;
  height: var(--sml-header-height);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  left: calc(50% - 45px);
} */

.indicators-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  display: flex;
  /* bottom: 0; */
  left: 0;
  justify-content: center;
  z-index: 930;
  height: 150px;
  height: 60px;
  width: 100vw;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  left: 0;
  /* background-color: var(--dark-gray); */
}

#header ul .indicator {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  float: left;
  margin: 0 6px;
  padding: 0;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-clip: padding-box;
  background-color: transparent;
  border: 6px solid transparent;
  box-shadow: 0 0 0 1px var(--brand);
  cursor: pointer;
}

#header ul .indicator.active {
  background-color: var(--brand);
}

/* ----------------------------------------
    MAIN CONTENT
----------------------------------------- */
.main-content {
  position: relative;
  min-height: 100vh;
  background: #e2e1e0;
  padding: 15px 0 0 0;
}

#content {
  text-align: center;
  color: var(--dark-gray);
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  padding: 0 12px;
  margin-bottom: 220px;
}

#about {
  text-align: center;
  color: var(--dark-gray);
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  padding: 0 12px;
}

.content-title {
  font-family: 'magpie-paper-works', serif;
  margin: 48px 0 2px;
}

.content-subtitle,
.imprint-subheadline {
  font-weight: 400;
  margin: 0 0 32px 0;
}

.text-content {
  max-width: 720px;
  margin: 0 auto;
  line-height: 24px;
}

#about img {
  display: block;
  text-align: center;
  margin: 0 auto 12px;
  border-radius: 2px;
  border: 6px solid white;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2), 0 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2), 0 1px 4px rgba(0, 0, 0, 0.3);
}

.product-list {
  display: flex;
  flex-flow: column-reverse nowrap;
  max-width: 720px;
  margin: 0 auto;
  justify-content: space-between;
}

.product-list img {
  cursor: pointer !important;
}

.socials a {
  border-radius: 50%;
  width: 64px;
  height: 64px !important;
  font-size: 32px;
  margin: 32px 16px 32px 16px !important;
}

.nav-container {
  width: 100%;
  background: var(--dark-gray);
  position: fixed;
  bottom: 0;
  z-index: 1;
}

.nav-footer-meta {
  text-align: center;
  margin-bottom: 32px;
  max-width: 720px;
  margin: 0 auto 0;
  padding: 12px 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  min-height: 160px;
  height: auto;
}

.nav-footer-meta a,
.nav-footer-meta a:hover,
.nav-footer-meta a:active,
.nav-footer-meta a:visited {
  text-decoration: none;
  font-family: 'magpie-paper-works', serif;
  color: white;
}

/*-------------------------------------------
  Breakpoints
--------------------------------------------*/
@media all and (min-width: 1200px) {
}

@media all and (min-width: 1020px) {
  .main-content {
    padding: 150px 0 0 0;
  }
  #about {
    overflow-y: scroll !important;
    max-height: calc(100vh - 200px);
  }
  .product-list {
    flex-flow: row-reverse nowrap;
  }
  .nav-footer-meta {
    flex-flow: row nowrap;
    min-height: 50px;
  }
  #reveal {
    pointer-events: all;
  }
}

@media all and (min-width: 992px) {
  .hidden-lg {
    display: none;
  }
  #header {
    position: absolute;
  }

  .brand {
    display: block;
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 910;
  }
  #content {
    margin-bottom: 60px;
  }
}
@media all and (min-width: 768px) {
}
@media all and (min-width: 575px) {
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

.animateInLeft,
.animateInRight,
.animateOutLeft,
.animateOutRight {
  -webkit-animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  /* 
  -webkit-animation: slide-out-bottom 0.8s both;
  animation: slide-out-bottom 0.8s both; */
}

.animateOutRight {
  animation-name: animateOutRight;
  /* animation-name: slide-out-top; */
}

.animateInLeft {
  animation-name: animateInLeft;
  /* animation-name: slide-in-bottom; */
}

.animateInRight {
  animation-name: animateInRight;
  /* animation-name: slide-in-top; */
}

.animateOutLeft {
  animation-name: animateOutLeft;
  /* animation-name: slide-out-bottom; */
}

/* ----------------------------------------------
 * Generated by Animista on 2019-4-28 1:33:23
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation animateOutRight
 * ----------------------------------------
 */
@-webkit-keyframes animateOutRightOld {
  from {
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 20deg) translate3d(100%, 0, 0);
    opacity: 0;
  }
}
@keyframes animateOutRightOld {
  from {
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 20deg) translate3d(100%, 0, 0);
    transform: rotate3d(0, 0, 1, 20deg) translate3d(100%, 0, 0);
    opacity: 0;
  }
}

/**
 * ----------------------------------------
 * animation rotate-out-2-br-ccw
 * ----------------------------------------
 */
@-webkit-keyframes animateOutLeftOld {
  from {
  } /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: rotate3d(0, 0, 1, -20deg) translate3d(-100%, 0, 0);
    opacity: 0;
  }
}
@keyframes animateOutLeftOld {
  from {
  } /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
  to {
    -webkit-transform: rotate3d(0, 0, 1, -20deg) translate3d(-100%, 0, 0);
    transform: rotate3d(0, 0, 1, -20deg) translate3d(-100%, 0, 0);
    opacity: 0;
  }
}

/**
 * ----------------------------------------
 * animation animateInLeft
 * ----------------------------------------
 */
@-webkit-keyframes animateInLeftOld {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -20deg) translate3d(-100%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  }
}
@keyframes animateInLeftOld {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -20deg) translate3d(-100%, 0, 0);
    transform: rotate3d(0, 0, 1, -20deg) translate3d(-100%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  }
}

/**
 * ----------------------------------------
 * animation animateInRight
 * ----------------------------------------
 */
@-webkit-keyframes animateInRightOld {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 20deg) translate3d(100%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  }
}
@keyframes animateInRightOld {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 20deg) translate3d(100%, 0, 0);
    transform: rotate3d(0, 0, 1, 20deg) translate3d(100%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  }
}

/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------


.slide-in-top {
  -webkit-animation: slide-in-top 0.8s both;
  animation: slide-in-top 0.8s both;
}

 */

@-webkit-keyframes animateInRight {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes animateInRight {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------

.slide-in-bottom {
  -webkit-animation: slide-in-bottom 0.8s both;
  animation: slide-in-bottom 0.8s both;
}

 */

@-webkit-keyframes animateInLeft {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes animateInLeft {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-out-top
 * ----------------------------------------

.slide-out-top {
  -webkit-animation: slide-out-top 0.8s both;
  animation: slide-out-top 0.8s both;
}

 */

@-webkit-keyframes animateOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
}
@keyframes animateOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
}

/**
 * ----------------------------------------
 * animation slide-out-bottom
 * ----------------------------------------

.slide-out-bottom {
  -webkit-animation: slide-out-bottom 0.8s both;
  animation: slide-out-bottom 0.8s both;
}

 */

@-webkit-keyframes animateOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
}
@keyframes animateOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
}
