/**
 * demo.css
 * https://coidea.website
 *
 * Licensed under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * Copyright 2018, COIDEA
 * https://coidea.website
 */

  @import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700");
  @import url("https://fonts.googleapis.com/css?family=Old+Standard+TT:400,700");

  html,
  body {
    font-family: "Old Standard TT", serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 18px;
    line-height: 28px;
  }

  body {
    background-color: white;
    opacity: 0;
    visibility: hidden;
  }

  strong {
    font-weight: 700;
  }

  section.products .navigation {
    position: fixed;
    display: block;
    width: 28px;
    height: 24px;
    top: 16px;
    right: 16px;
    z-index: 100;
  }
  section.products .navigation .hamburger {
    cursor: pointer;
    width: 26px;
    height: 18px;
    position: relative;
    display: block;
  }
  section.products .navigation .hamburger .line {
    display: block;
    background: black;
    width: 26px;
    height: 2px;
    position: absolute;
    right: 0;
    transition: all 0.4s;
  }
  section.products .navigation .hamburger .line.line-1 {
    top: 0;
    width: 38px;
  }
  section.products .navigation .hamburger .line.line-2 {
    top: 50%;
    width: 32px;
  }
  section.products .navigation .hamburger .line.line-3 {
    top: 100%;
  }
  section.products .navigation .hamburger:hover .line-1, section.products .navigation .hamburger:focus .line-1 {
    transform: translateY(-1px);
  }
  section.products .navigation .hamburger:hover .line-3, section.products .navigation .hamburger:focus .line-3 {
    transform: translateY(1px);
  }
  section.products .navigation .hamburger.active .line-1 {
    transform: translateY(9px) translateX(0) rotate(45deg);
    width: 26px;
  }
  section.products .navigation .hamburger.active .line-2 {
    opacity: 0;
  }
  section.products .navigation .hamburger.active .line-3 {
    transform: translateY(-9px) translateX(0) rotate(-45deg);
  }
  section.products .product {
    position: absolute;
    display: block;
    width: 100%;
    width: 100vw;
    height: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-box-shadow: 0 -7px 31px rgba(0, 0, 0, 0.15), 0 7px 15px rgba(0, 0, 0, 0.11);
    box-shadow: 0 -7px 31px rgba(0, 0, 0, 0.15), 0 7px 15px rgba(0, 0, 0, 0.11);
    transition: box-shadow 0.4s;
    overflow-y: auto;
  }
  section.products .product .product-inner {
    padding: 16px;
  }
  section.products .product .product-inner h2 {
    position: absolute;
    display: block;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    line-height: 34px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    z-index: 2;
    width: 148px;
  }
  @media screen and (max-width: 768px) {
    section.products .product .product-inner h2 {
      width: 120px;
      transform: rotate(90deg);
      top: 56px;
      left: -30px;
    }
  }
  section.products .product .product-inner h2 a {
    color: inherit;
    text-decoration: none;
    outline: 0px none;
    outline: 0px;
    transition: all 0.4s;
  }
  section.products .product .product-inner h2 a span {
    width: 32px;
    height: 32px;
    line-height: 34px;
    font-weight: 300;
    text-align: center;
    position: relative;
    display: inline-block;
    margin-right: 8px;
  }
  section.products .product .product-inner h2 a small {
    font-size: 16px;
    transition: all 0.4s;
  }
  section.products .product .product-inner h2 a:hover small {
    letter-spacing: 2px;
  }
  @media screen and (max-width: 768px) {
    section.products .product .product-inner h2 a:hover small {
      letter-spacing: 0;
    }
  }
  section.products .product .product-inner ul {
    position: absolute;
    display: block;
    width: 32px;
    height: auto;
    margin: 36px 0 8px;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
    z-index: 2;
  }
  @media screen and (max-width: 768px) {
    section.products .product .product-inner ul {
      margin: 118px 0 8px;
    }
  }
  section.products .product .product-inner ul li {
    position: relative;
    display: block;
    width: 32px;
    height: auto;
  }
  section.products .product .product-inner ul li a {
    position: relative;
    display: block;
    width: 28px;
    height: auto;
    padding: 8px 0;
    transition: all 0.4s;
  }
  section.products .product .product-inner ul li a svg {
    width: 15px;
    height: auto;
    fill: black;
    margin: 0 auto;
    display: block;
    transition: all 0.4s;
  }
  section.products .product .product-inner ul li a:hover svg#facebook-icon {
    fill: #3A559F;
  }
  section.products .product .product-inner ul li a:hover svg#twitter-icon {
    fill: #50ABF1;
  }
  section.products .product .product-inner ul li a:hover svg#google-icon {
    fill: #DD4B39;
  }
  section.products .product .product-inner ul:hover li a {
    margin-bottom: 8px;
  }
  section.products .product .product-inner .product-description {
    position: relative;
    display: block;
    padding: 64px 82px 32px;
    overflow: hidden;
  }
  @media screen and (max-width: 992px) {
    section.products .product .product-inner .product-description {
      padding: 32px 54px 32px;
    }
  }
  section.products .product .product-inner .product-description .product-description-detail {
    position: relative;
    display: block;
    width: 38%;
    height: auto;
    overflow: hidden;
    float: left;
  }
  @media screen and (max-width: 1360px) {
    section.products .product .product-inner .product-description .product-description-detail {
      width: 30%;
    }
  }
  @media screen and (max-width: 1140px) {
    section.products .product .product-inner .product-description .product-description-detail {
      width: 65%;
    }
  }
  @media screen and (max-width: 992px) {
    section.products .product .product-inner .product-description .product-description-detail {
      width: 100%;
    }
  }
  section.products .product .product-inner .product-description .product-description-links {
    position: relative;
    display: block;
    width: 22%;
    width: calc( 24% - 128px );
    height: auto;
    overflow: hidden;
    float: left;
    padding: 0 64px;
  }
  @media screen and (max-width: 1140px) {
    section.products .product .product-inner .product-description .product-description-links {
      width: calc( 35% - 128px );
    }
  }
  @media screen and (max-width: 992px) {
    section.products .product .product-inner .product-description .product-description-links {
      width: 100%;
      padding: 0;
    }
  }
  section.products .product .product-inner .product-description .product-description-links .contact-us {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-top: 2px solid black;
  }
  section.products .product .product-inner .product-description .product-description-links .quote {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-bottom: 2px solid black;
    padding: 16px 0;
  }
  section.products .product .product-inner .product-description .product-description-links .quote svg {
    position: relative;
    display: block;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    fill: black;
  }
  section.products .product .product-inner .product-description .product-description-links .quote svg:last-child {
    float: right;
  }
  section.products .product .product-inner .product-description .product-description-links .quote p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    padding: 0 16px;
    margin: 8px 0;
  }
  section.products .product .product-inner .product-description .product-description-links ul {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0 !important;
    padding: 16px 0 !important;
  }
  section.products .product .product-inner .product-description .product-description-links ul li {
    position: relative;
    width: 100%;
  }
  section.products .product .product-inner .product-description .product-description-links ul li a {
    width: 100%;
    height: auto;
    color: black;
    font-size: 16px;
    line-height: 16px;
    padding: 12px 0 11px;
    margin: 0 !important;
    text-decoration: none;
    border-bottom: 1px solid black;
    transition: all 0.4s;
  }
  section.products .product .product-inner .product-description .product-description-links ul li a:hover {
    letter-spacing: 2px;
  }
  section.products .product .product-inner .product-description .product-description-links ul li:last-child a {
    border: none;
  }
  section.products .product .product-inner .product-description .product-description-headline {
    position: relative;
    display: block;
    width: 38%;
    height: auto;
    overflow: hidden;
    float: left;
  }
  @media screen and (max-width: 1360px) {
    section.products .product .product-inner .product-description .product-description-headline {
      width: 46%;
    }
  }
  @media screen and (max-width: 1140px) {
    section.products .product .product-inner .product-description .product-description-headline {
      width: 100%;
    }
  }
  section.products .product .product-inner .product-description .product-description-headline h1 {
    margin: 0;
    padding: 80px 0;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 72px;
    line-height: 62px;
    font-weight: 700;
    text-transform: uppercase;
    transform: scaleY(2);
  }
  @media screen and (max-width: 600px) {
    section.products .product .product-inner .product-description .product-description-headline h1 {
      font-size: 36px;
      line-height: 36px;
    }
  }
  @media screen and (max-width: 400px) {
    section.products .product .product-inner .product-description .product-description-headline h1 {
      font-size: 18px;
      line-height: 18px;
      transform: scaleY(1.4);
    }
  }
  @media screen and (max-width: 768px) {
    section.products .product.active .product-inner h2 {
      transform: rotate(90deg);
      top: 56px;
      left: -30px;
    }
  }
  @media screen and (max-width: 768px) {
    section.products .product.active .product-inner ul {
      margin: 118px 0 8px;
    }
  }
  section.products .product.duststrom {
    background-color: #c7eae4;
    z-index: 1;
    box-shadow: none !important;
  }
  section.products .product.duststrom .product-inner h2 span {
    background-color: black;
    color: #c7eae4;
  }
  section.products .product.parrotpink {
    background-color: #a7e8bd;
    z-index: 2;
  }
  section.products .product.parrotpink .product-inner h2 span {
    background-color: black;
    color: #a7e8bd;
  }
  section.products .product.raspberryrose {
    background-color: #fcbcb8;
    z-index: 3;
  }
  section.products .product.raspberryrose .product-inner h2 span {
    background-color: black;
    color: #fcbcb8;
  }
  section.products .product.burgundy {
    background-color: #efa7a7;
    z-index: 4;
  }
  section.products .product.burgundy .product-inner h2 span {
    background-color: black;
    color: #efa7a7;
  }
  section.products .product.zinnwalditebrown {
    background-color: #ffd972;
    z-index: 5;
  }
  section.products .product.zinnwalditebrown .product-inner h2 span {
    background-color: black;
    color: #ffd972;
  }
  section.products .product:hover {
    -webkit-box-shadow: 0 -15px 31px rgba(0, 0, 0, 0.2), 0 -15px 15px rgba(0, 0, 0, 0.11);
    box-shadow: 0 -15px 31px rgba(0, 0, 0, 0.15), 0 15px 15px rgba(0, 0, 0, 0.16);
  }